:root {
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --color-primary: #000000;
  --color-primary-light: #1a1a1a;
  --color-accent: #f37021;
  --color-accent-hover: #d9611c;
  --color-secondary: #0067b1;
  --color-secondary-hover: #005999;
  --color-silver: #d1d3d4;
  --color-surface: #ececec;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-silver);
  background-color: var(--color-primary);
  background-image:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(0, 103, 177, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 10% 100%, rgba(0, 103, 177, 0.08) 0%, transparent 50%);
  line-height: 1.6;
}

.font-display { font-family: var(--font-display); }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.logo-img {
  height: 2.5rem;
  width: auto;
  display: block;
}

.header-inner .logo-img,
.header-inner .header-logo {
  height: 4.5rem;
  width: auto;
  display: block;
}

@media (min-width: 640px) {
  .header-inner .logo-img,
  .header-inner .header-logo { height: 5.5rem; }
}

@media (min-width: 1024px) {
  .header-inner .logo-img,
  .header-inner .header-logo { height: 5.5rem; }
}

@media (min-width: 1280px) {
  .header-inner .logo-img,
  .header-inner .header-logo { height: 6rem; }
}

.site-footer .footer-logo {
  height: 6rem;
  width: auto;
  display: block;
}

@media (min-width: 640px) {
  .site-footer .footer-logo { height: 8rem; }
}

@media (min-width: 1024px) {
  .site-footer .footer-logo { height: 10rem; }
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(209, 211, 212, 0.12);
}

.header-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 0;
}

.header-inner > a:first-child {
  flex-shrink: 0;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.nav-desktop {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.75rem, 1.25vw, 1.25rem);
  flex: 1 1 auto;
  min-width: 0;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
  color: var(--color-silver);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-desktop a:hover { color: var(--color-accent); }

.nav-desktop a.is-active {
  color: var(--color-accent);
}

.nav-desktop .btn-primary {
  flex-shrink: 0;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 103, 177, 0.25);
  border: 1px solid rgba(0, 103, 177, 0.4);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-secondary:hover { background: rgba(0, 103, 177, 0.4); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(243, 112, 33, 0.25);
  border: 1px solid rgba(243, 112, 33, 0.4);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover { background: rgba(243, 112, 33, 0.4); }

.btn-dark {
  background: rgba(26, 26, 26, 0.35);
  border: 1px solid rgba(209, 211, 212, 0.25);
  color: #fff;
}

.btn-dark:hover { background: rgba(26, 26, 26, 0.55); }

.menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-mobile {
  display: none;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(209, 211, 212, 0.1);
  padding: 1rem 1.25rem;
}

.nav-mobile.open { display: block; }

.nav-mobile a {
  display: block;
  padding: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  color: var(--color-silver);
}

.nav-mobile a:hover { background: var(--color-primary-light); color: #fff; }

@media (min-width: 1080px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
}

/* Page hero */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 1.25rem 4rem;
  color: #fff;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  isolation: isolate;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.55));
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 110% 75% at 50% 45%, rgba(0, 103, 177, 0.16) 0%, transparent 72%),
    radial-gradient(ellipse 85% 55% at 12% 88%, rgba(0, 103, 177, 0.1) 0%, transparent 68%),
    radial-gradient(ellipse 85% 55% at 88% 12%, rgba(0, 103, 177, 0.08) 0%, transparent 68%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
  width: 100%;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin: 0;
}

.page-hero p {
  margin: 0.75rem 0 0;
  opacity: 0.85;
  max-width: 36rem;
}

/* Layout */
.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 5rem 0;
  background-color: var(--color-primary);
  color: var(--color-silver);
}

.section > .container {
  position: relative;
  z-index: 1;
}

/* Soft blue ambient wash across full sections */
.section::before,
.legal-content::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 110% 75% at 50% 45%, rgba(0, 103, 177, 0.16) 0%, transparent 72%),
    radial-gradient(ellipse 85% 55% at 12% 88%, rgba(0, 103, 177, 0.1) 0%, transparent 68%),
    radial-gradient(ellipse 85% 55% at 88% 12%, rgba(0, 103, 177, 0.08) 0%, transparent 68%);
}

.section::after,
.legal-content::after {
  content: none;
}

.section-glow-alt::before,
.page-hero-glow-alt::before,
.legal-content-glow-alt::before {
  background:
    radial-gradient(ellipse 100% 70% at 30% 60%, rgba(0, 103, 177, 0.14) 0%, transparent 70%),
    radial-gradient(ellipse 90% 60% at 75% 25%, rgba(0, 103, 177, 0.1) 0%, transparent 68%);
}

.section-glow-wide::before {
  background:
    radial-gradient(ellipse 120% 80% at 50% 50%, rgba(0, 103, 177, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 70% 50% at 85% 20%, rgba(0, 103, 177, 0.12) 0%, transparent 65%);
}

.section-glow-wide::after {
  content: none;
}

.legal-content {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  max-width: 48rem;
  margin: 0 auto;
  padding: 3rem 0 5rem;
  background-color: var(--color-primary);
  color: var(--color-silver);
}

.legal-content > * {
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  margin: 0;
  color: var(--color-silver);
}

.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin: 0 0 0.75rem;
}

/* Glass card */
.glass-card {
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(209, 211, 212, 0.12);
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  color: var(--color-silver);
}

/* Services grid */
.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

.service-card {
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.service-card-img {
  height: 11rem;
  background-size: cover;
  background-position: center;
}

.service-card-body { padding: 1.5rem; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.service-card p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: rgba(209, 211, 212, 0.7);
}

/* Contact layout */
.contact-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 1fr 1.4fr; }
}

.sidebar-card {
  background: rgba(26, 26, 26, 0.9);
  border: 1px solid rgba(209, 211, 212, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  color: var(--color-silver);
}

.sidebar-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 1.5rem;
  color: var(--color-silver);
}

.contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.contact-item svg {
  flex-shrink: 0;
  color: var(--color-accent);
}

.faq-item {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(209, 211, 212, 0.12);
}

.faq-item h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
  color: var(--color-silver);
}

.faq-item p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(209, 211, 212, 0.7);
}

.faq-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-faq {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 6rem 0;
  background-color: var(--color-primary);
  color: var(--color-silver);
}

.section-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 110% 75% at 50% 45%, rgba(0, 103, 177, 0.16) 0%, transparent 72%),
    radial-gradient(ellipse 85% 55% at 12% 88%, rgba(0, 103, 177, 0.1) 0%, transparent 68%),
    radial-gradient(ellipse 85% 55% at 88% 12%, rgba(0, 103, 177, 0.08) 0%, transparent 68%);
}

.section-faq > .container {
  position: relative;
  z-index: 1;
}

.container-faq {
  max-width: 72rem;
}

.faq-label {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-secondary);
}

.faq-title {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-silver);
}

@media (min-width: 768px) {
  .faq-title {
    font-size: 2.25rem;
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .faq-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.faq-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  transition: border-color 0.2s;
}

.faq-card.glass-card {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.faq-card:hover {
  border-color: rgba(209, 211, 212, 0.2);
}

.faq-card.is-open {
  border-color: rgba(0, 103, 177, 0.4);
}

.faq-question {
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 100%;
  padding: 1.25rem 1.5rem;
  border: none;
  background: none;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.faq-question-top {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.faq-number {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-accent);
}

.faq-toggle {
  display: flex;
  height: 2rem;
  width: 2rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(209, 211, 212, 0.2);
  background: rgba(0, 0, 0, 0.3);
  color: rgba(209, 211, 212, 0.7);
  transition: transform 0.2s, border-color 0.2s, background 0.2s, color 0.2s;
}

.faq-card.is-open .faq-toggle {
  transform: rotate(180deg);
  border-color: rgba(0, 103, 177, 0.5);
  background: rgba(0, 103, 177, 0.2);
  color: var(--color-secondary);
}

.faq-question-text {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-silver);
}

.faq-answer-wrap {
  display: grid;
  transition: grid-template-rows 0.3s ease, opacity 0.3s ease;
  grid-template-rows: 0fr;
  opacity: 0;
}

.faq-card.is-open .faq-answer-wrap {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer {
  margin: 0;
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid rgba(209, 211, 212, 0.1);
  padding-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(209, 211, 212, 0.75);
}

.faq-footer-card {
  margin-top: 3rem;
  padding: 2rem;
  text-align: center;
}

.faq-footer-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-silver);
}

.faq-footer-card p {
  margin: 0.75rem auto 0;
  max-width: 32rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(209, 211, 212, 0.75);
}

.faq-footer-card .btn-secondary {
  margin-top: 1.5rem;
}

/* Form */
.contact-form {
  padding: 2rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: var(--color-silver);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(209, 211, 212, 0.2);
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  background: var(--color-primary-light);
  color: var(--color-silver);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group textarea { min-height: 8rem; resize: vertical; }

.form-optional { font-weight: 400; color: rgba(209, 211, 212, 0.5); }

.alert {
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.alert-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Tint service landing page */
.tint-benefits-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
  align-items: stretch;
}

@media (min-width: 640px) {
  .tint-benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .tint-benefits-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.tint-benefit-card {
  display: flex;
  flex-direction: column;
  background: var(--color-primary-light);
  border: 1px solid rgba(209, 211, 212, 0.1);
  border-radius: 1rem;
  padding: 0;
  text-align: center;
  overflow: hidden;
  height: 100%;
}

.tint-benefit-media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-primary);
}

.tint-benefit-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.tint-benefit-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem 1.5rem 1.5rem;
}

.tint-benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--color-silver);
}

.tint-benefit-card p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(209, 211, 212, 0.75);
  line-height: 1.6;
}

/* Service detail blocks */
.service-detail {
  scroll-margin-top: 5.5rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(209, 211, 212, 0.1);
}

.service-detail:last-of-type { border-bottom: none; }

@media (min-width: 900px) {
  .service-detail { grid-template-columns: 1fr 1fr; }
}

.service-detail-img {
  height: 16rem;
  border-radius: 1rem;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.service-detail h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-silver);
}

.service-detail-intro {
  margin: 1rem 0 1.5rem;
  color: rgba(209, 211, 212, 0.75);
  line-height: 1.7;
}

.service-detail h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--color-silver);
}

.service-features {
  margin: 0;
  padding-left: 1.25rem;
  color: rgba(209, 211, 212, 0.8);
}

.portfolio-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

.portfolio-card {
  background: var(--color-primary-light);
  border: 1px solid rgba(209, 211, 212, 0.1);
  border-radius: 1rem;
  overflow: hidden;
}

.portfolio-card-img {
  height: 16rem;
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .portfolio-card-img { height: 22rem; }
}

@media (min-width: 1024px) {
  .portfolio-card-img { height: 26rem; }
}

.portfolio-card-body {
  padding: 1.5rem;
}

.portfolio-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-silver);
}

.portfolio-card-body p {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(209, 211, 212, 0.7);
}

.values-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

.value-card {
  background: var(--color-primary-light);
  border: 1px solid rgba(209, 211, 212, 0.1);
  border-radius: 1rem;
  padding: 1.75rem;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-accent);
}

.value-card p {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: rgba(209, 211, 212, 0.75);
  line-height: 1.65;
}

.about-intro {
  max-width: 42rem;
  margin: 1rem auto 0;
  text-align: center;
  color: rgba(209, 211, 212, 0.75);
}


.process-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
}

.process-step {
  background: var(--color-primary-light);
  border: 1px solid rgba(209, 211, 212, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
}

.process-step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 0.75rem 0 0.5rem;
  color: var(--color-silver);
}

.process-step p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(209, 211, 212, 0.7);
}

.cta-banner {
  margin-top: 4rem;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(209, 211, 212, 0.1);
  color: var(--color-silver);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cta-banner::before,
.cta-banner::after {
  content: "";
  position: absolute;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  filter: blur(56px);
  pointer-events: none;
  z-index: 0;
}

.cta-banner::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  filter: none;
  background:
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(0, 103, 177, 0.14) 0%, transparent 70%);
}

.cta-banner::after {
  content: none;
}

.cta-banner h2,
.cta-banner p,
.cta-banner a {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0;
}

.cta-banner p {
  margin: 0.75rem 0 1.5rem;
  opacity: 0.85;
}

.contact-callout {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: rgba(0, 103, 177, 0.08);
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 103, 177, 0.2);
}

.contact-callout h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
}

.contact-callout p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(209, 211, 212, 0.75);
}

.map-embed {
  margin-top: 1rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(209, 211, 212, 0.15);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

.contact-map-section {
  margin-top: 4rem;
  padding-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.contact-map-card {
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  background: rgba(26, 26, 26, 0.92);
  border: 1px solid rgba(209, 211, 212, 0.12);
  border-radius: 1.25rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

@media (min-width: 768px) {
  .contact-map-card { padding: 2.5rem; }
}

.contact-map-address {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  color: rgba(209, 211, 212, 0.75);
}

.contact-map-card .map-embed-large {
  margin-top: 0;
}

.map-embed-large iframe {
  height: 22rem;
}

@media (min-width: 768px) {
  .map-embed-large iframe { height: 28rem; }
}

@media (min-width: 1024px) {
  .map-embed-large iframe { height: 32rem; }
}

.contact-map-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-accent);
  transition: color 0.2s;
}

.contact-map-link:hover {
  color: #fff;
}

/* Footer */
.site-footer {
  background: var(--color-primary);
  color: #fff;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 0;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(5, 1fr); }
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.footer-links a {
  color: rgba(209, 211, 212, 0.85);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}

.footer-links a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

/* Legal pages */
.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: var(--color-silver);
}

.legal-content .legal-updated {
  font-size: 0.875rem;
  color: rgba(209, 211, 212, 0.55);
  margin: 0 0 2.5rem;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--color-silver);
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
  color: var(--color-silver);
}

.legal-content p,
.legal-content li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(209, 211, 212, 0.8);
}

.legal-content ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
}

.legal-content li { margin-bottom: 0.375rem; }

.legal-content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
  margin: 0 0 1rem;
}

.footer-grid > div:nth-child(2) .footer-label { color: var(--color-accent); }
.footer-grid > div:nth-child(3) .footer-label { color: #fff; }
.footer-grid > div:nth-child(4) .footer-label { color: var(--color-secondary); }
.footer-grid > div:nth-child(5) .footer-label { color: var(--color-silver); opacity: 0.6; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.footer-service-area {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  color: rgba(209, 211, 212, 0.55);
  line-height: 1.5;
}

.footer-designed-by {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: rgba(209, 211, 212, 0.65);
}

.footer-designed-by a {
  color: inherit;
  transition: color 0.2s;
}

.footer-designed-by a:hover {
  color: var(--color-accent);
}

.footer-copyright {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(209, 211, 212, 0.5);
}

.footer-grid a:hover { color: #fff; }

/* Subpage header — dark brand bar */
.subpage .site-header {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
}

.subpage .site-header .logo,
.subpage .site-header .nav-desktop a,
.subpage .menu-toggle {
  color: var(--color-silver);
}

.subpage .site-header .nav-desktop a:hover {
  color: var(--color-accent);
}

.subpage .site-header:not(.scrolled) {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
}

/* Floating contact widgets */
.floating-widgets {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.floating-widget {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s, background 0.2s;
  border: 1px solid transparent;
}

.floating-widget:hover {
  transform: scale(1.05);
}

.floating-widget-phone {
  background: rgba(0, 103, 177, 0.25);
  border-color: rgba(0, 103, 177, 0.4);
}

.floating-widget-phone:hover {
  background: rgba(0, 103, 177, 0.4);
}

.floating-widget-whatsapp {
  background: rgba(37, 211, 102, 0.25);
  border-color: rgba(37, 211, 102, 0.4);
}

.floating-widget-whatsapp:hover {
  background: rgba(37, 211, 102, 0.4);
}
