:root {
  --ink: #f4f0e8;
  --muted: #a9b3b5;
  --line: rgba(244, 240, 232, 0.12);
  --paper: #0a1930;
  --soft: #112240;
  --navy: #020c1b;
  --green: #c49a55;
  --blue: #c9ab6f;
  --gold: #c49a55;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-2: rgba(255, 255, 255, 0.075);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}
body { margin: 0; color: var(--ink); background: var(--paper); overflow-x: clip; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.7; }
:focus-visible { outline: 3px solid rgba(15, 138, 120, 0.35); outline-offset: 3px; }
.skip-link { position: absolute; left: -999px; top: 12px; z-index: 100; padding: 10px 14px; background: white; color: var(--navy); }
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  min-height: 78px;
  padding: 10px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 25, 48, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

main > section,
.site-footer {
  scroll-margin-top: 78px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 205px; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand strong, .brand small { display: block; line-height: 1; letter-spacing: 0; }
.brand strong { color: var(--gold); font-family: Georgia, "Times New Roman", serif; font-size: 23px; font-weight: 500; }
.brand small { margin-top: 5px; color: #c9ab6f; font-size: 9px; font-weight: 900; text-transform: uppercase; }

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 19;
  display: flex;
  flex-direction: column;
  width: min(320px, 100vw);
  gap: 8px;
  padding: 100px 30px 30px;
  border-left: 1px solid var(--line);
  color: #d6e5e5;
  background: rgba(10, 25, 48, 0.96);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition:
    opacity 400ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(24px);
  font-size: 16px;
  font-weight: 800;
}
.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.site-nav a {
  padding: 13px 14px;
  border-radius: 12px;
}
.site-nav a:hover {
  background: rgba(255, 255, 255, 0.07);
}
.site-nav a:hover { color: var(--green); }
.nav-toggle { grid-column: 4; grid-row: 1; justify-self: end; display: block; width: 52px; height: 52px; border: none; border-radius: 999px; background: var(--gold); box-shadow: 0 4px 14px rgba(196, 154, 85, 0.4); cursor: pointer; transition: transform 0.2s ease, background 0.2s ease; }
.nav-toggle:hover { background: #d0aa6e; transform: scale(1.05); }
.nav-toggle span { display: block; width: 24px; height: 3px; margin: 5px auto; background: var(--navy); border-radius: 3px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-toggle span {
  transition:
    transform 180ms ease-out,
    opacity 180ms ease-out;
}

.header-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 0;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.button-primary, .header-cta { color: #061316; background: linear-gradient(135deg, var(--green), var(--blue)); box-shadow: 0 10px 26px rgba(196, 154, 85, 0.14); }
.header-cta { grid-column: 3; grid-row: 1; justify-self: end; }
.button-secondary { color: var(--ink); background: rgba(255, 255, 255, 0.08); border: 1px solid var(--line); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero {
  position: relative;
  height: 100svh;
  min-height: 0;
  display: grid;
  align-items: center;
  overflow: clip;
  contain: layout paint;
}
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.02);
  transition: transform 120ms linear;
  animation: heroImageReveal 900ms ease-out both;
  will-change: transform;
}
.hero-media video {
  opacity: 0;
}
.hero-media.has-video video {
  opacity: 1;
}
.hero-media.has-video img {
  opacity: 0;
}
.hero-overlay { background: linear-gradient(90deg, rgba(10, 25, 48, 0.88), rgba(10, 25, 48, 0.58) 54%, rgba(10, 25, 48, 0.2)); }
.hero-content { position: relative; max-width: 980px; padding: clamp(34px, 7vh, 70px) clamp(20px, 6vw, 76px) clamp(38px, 7vh, 76px); color: white; }
.hero-content > * {
  animation: heroReveal 720ms ease-out both;
}
.hero-content > *:nth-child(2) { animation-delay: 110ms; }
.hero-content > *:nth-child(3) { animation-delay: 200ms; }
.hero-content > *:nth-child(4) { animation-delay: 290ms; }
.hero-content > *:nth-child(5) { animation-delay: 380ms; }
.hero h1 { max-width: 840px; margin: 10px 0 18px; font-size: clamp(42px, 5.7vw, 72px); line-height: 1; letter-spacing: 0; font-weight: 850; }
.hero p { max-width: 760px; color: rgba(255, 255, 255, 0.88); font-size: clamp(17px, 1.7vw, 22px); }
.eyebrow { margin: 0 0 10px; color: var(--green); font-size: 12px; font-weight: 950; letter-spacing: 0; text-transform: uppercase; }
.hero .eyebrow { color: #bdeee4; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trust-badges span { padding: 8px 12px; border: 1px solid rgba(244, 240, 232, 0.18); border-radius: 999px; color: var(--ink); background: rgba(255, 255, 255, 0.055); font-size: 13px; font-weight: 800; }
.trust-badges.dark span { color: var(--ink); border-color: var(--line); background: var(--surface-2); }
.credential-badges {
  align-items: center;
}
.trust-badges .credential-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 13px 7px 8px;
  border-color: rgba(196, 154, 85, 0.42);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
  color: #f5dfa7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
}
.credential-badge img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.28));
}

.section, .page-hero {
  display: grid;
  align-content: center;
  padding: clamp(34px, 5vw, 62px) clamp(20px, 5vw, 72px);
}
.hero,
.section,
.page-hero {
  min-height: calc(100svh - 78px);
}
.page-hero { background: linear-gradient(135deg, #112240, #0a1930); border-bottom: 1px solid var(--line); }
.page-hero h1, .section h2 { margin: 0; max-width: 860px; font-size: clamp(32px, 4.5vw, 56px); line-height: 1.05; letter-spacing: 0; font-weight: 850; }
.page-hero p, .lead { max-width: 760px; font-size: 19px; }
.section-heading { max-width: 800px; margin-bottom: clamp(18px, 3vh, 30px); }
.soft { background: var(--soft); }
.split { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr); gap: 38px; align-items: start; }
.grid { display: grid; gap: clamp(12px, 1.6vw, 18px); }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card, .mini-card, .contact-details article, .contact-form {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover, .service-slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.35);
}
.card a.text-link::after, .service-slide a.text-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
}
.card { padding: clamp(18px, 2vw, 24px); }
.card h3, .card h2 { margin: 0 0 10px; font-size: clamp(19px, 2vw, 23px); }
.card p { margin: 0 0 10px; }
.service-card { min-height: auto; }
#services {
  overflow: hidden;
}

.service-slider {
  display: grid;
  gap: 18px;
  overflow: hidden;
}

.service-track {
  display: flex;
  gap: 18px;
  overflow: visible;
  transition: transform 680ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.service-slide {
  position: relative;
  flex-shrink: 0;
  width: 320px;
  transition: width 680ms cubic-bezier(0.4, 0, 0.2, 1);
  min-height: min(490px, calc(100svh - 320px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
  isolation: isolate;
}
.service-slide.is-active {
  width: 540px;
}
@media (max-width: 1000px) {
  .service-slide { width: 280px; }
  .service-slide.is-active { width: 460px; }
}
@media (max-width: 680px) {
  .service-slide { width: 85vw; }
  .service-slide.is-active { width: 85vw; }
}

.service-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 25, 48, 0.06), rgba(10, 25, 48, 0.7) 62%, rgba(10, 25, 48, 0.94)),
    linear-gradient(90deg, rgba(10, 25, 48, 0.42), transparent 54%);
}

.service-slide img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.02);
  transition:
    transform 760ms ease-out,
    filter 760ms ease-out;
  filter: saturate(0.9) contrast(0.95);
}

.service-slide.is-active img,
.service-slide:hover img,
.service-slide:focus-within img {
  transform: scale(1.07);
  filter: saturate(1.05) contrast(1.03);
}

.service-slide-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: grid;
  gap: 10px;
  padding: clamp(20px, 2.4vw, 30px);
}

.service-slide-content span {
  color: #bdeee4;
  font-size: 12px;
  font-weight: 950;
}

.service-slide h3 {
  margin: 0;
  font-size: clamp(23px, 2.5vw, 32px);
  line-height: 1;
}

.service-slide p {
  display: -webkit-box;
  max-width: 520px;
  margin: 0;
  overflow: hidden;
  color: rgba(238, 247, 246, 0.78);
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.service-slider-controls {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.slider-control {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
  font: inherit;
  font-size: 28px;
  line-height: 1;
}

.slider-dots {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 8px;
}

.slider-dots button {
  width: 30px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(244, 240, 232, 0.2);
  cursor: pointer;
  transition:
    width 260ms ease-out,
    background 260ms ease-out;
}

.slider-dots button.is-active {
  width: 54px;
  background: linear-gradient(135deg, var(--green), var(--blue));
}
.autoplay-indicator {
  height: 4px;
  background: rgba(244, 240, 232, 0.08);
  border-radius: 999px;
  margin-top: 24px;
  overflow: hidden;
  position: relative;
}
.autoplay-progress {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}
.text-link { display: inline-flex; margin-top: 8px; color: var(--green); font-weight: 900; }
.feature-list { display: grid; gap: 14px; }
.feature-list article { display: grid; gap: 6px; padding: 20px; border-left: 2px solid var(--green); border-radius: 14px; background: var(--surface); box-shadow: var(--shadow); }
.feature-list strong { font-size: 18px; }
.feature-list span { color: var(--muted); }

.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.steps article { padding: clamp(20px, 2.4vw, 28px); border-radius: 18px; background: var(--surface); box-shadow: var(--shadow); }
.steps span { display: grid; width: 44px; height: 44px; place-items: center; margin-bottom: 22px; border-radius: 50%; color: #061316; background: var(--green); font-weight: 950; }
.pricing-preview, .cta-band, .contact-strip { display: flex; justify-content: space-between; gap: 28px; align-items: center; }
.price-mini { min-width: min(520px, 100%); display: grid; gap: 10px; }
.price-mini div { display: flex; justify-content: space-between; gap: 20px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.price-mini span, .price-card strong { color: var(--green); font-weight: 950; white-space: nowrap; }
.quote p { font-size: 18px; }
.certifications { background: var(--navy); color: white; }
.certifications p { color: #bdeee4; }
.about-hero {
  background:
    linear-gradient(135deg, rgba(10, 25, 48, 0.88), rgba(17, 34, 64, 0.94)),
    url("https://images.unsplash.com/photo-1563453392212-326f5e854473?auto=format&fit=crop&w=1600&q=78") center/cover;
}
.about-intro {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.about-intro h2,
.about-statement h2 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
}
.about-certifications {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.about-certifications article {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  box-shadow: var(--shadow);
}
.about-certifications img {
  width: min(150px, 70%);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.3));
}
.about-certifications strong {
  color: #f5dfa7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 600;
}
.about-certifications span {
  color: var(--muted);
}
.about-statement {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}
.about-statement p {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}
.certification-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}
.certification-showcase article {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(196, 154, 85, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(196, 154, 85, 0.12), transparent 45%),
    var(--surface);
  box-shadow: var(--shadow);
  text-align: center;
}
.cert-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(196, 154, 85, 0.18), rgba(196, 154, 85, 0.04));
  border: 1px solid rgba(196, 154, 85, 0.3);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  color: #f5dfa7;
}
.cert-icon svg {
  width: 34px;
  height: 34px;
}
.certification-showcase strong {
  color: #f5dfa7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
}
.certification-showcase span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.faq details { padding: 22px 0; border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-size: 19px; font-weight: 950; }
.faq summary::marker { color: var(--green); }
.mini-card { padding: 20px; font-weight: 850; }
.price-card { display: grid; align-content: start; gap: 10px; }
.price-card strong { display: block; font-size: 27px; }
.pricing-note { margin-top: 22px; font-weight: 800; }
.legal-page {
  align-content: start;
  gap: 26px;
}
.legal-page .section-heading a,
.legal-grid a {
  color: #f5dfa7;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.legal-grid .card {
  align-content: start;
}
.legal-grid h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 600;
}
.legal-grid p {
  margin: 0 0 10px;
  color: var(--muted);
}
.legal-grid p:last-child {
  margin-bottom: 0;
}
.cta-band { min-height: min(520px, calc(100svh - 156px)); margin: clamp(34px, 5vw, 64px) clamp(20px, 5vw, 72px); padding: clamp(30px, 5vw, 54px); border: 1px solid var(--line); border-radius: 20px; color: white; background: linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025)); }
.cta-band p { color: rgba(255, 255, 255, 0.78); }
.cta-band .eyebrow { color: #bdeee4; }
.contact-strip { padding: 22px clamp(20px, 5vw, 72px); background: var(--soft); border-block: 1px solid var(--line); font-weight: 900; }

.contact-layout { display: grid; grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr); gap: 24px; }
.contact-details { display: grid; gap: 14px; align-content: start; }
.contact-details article { display: grid; gap: 6px; padding: 20px; }
.contact-details strong { color: var(--ink); }
.contact-details span, .contact-details a { color: var(--muted); }
.contact-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; padding: 24px; }
.contact-form label { display: grid; gap: 8px; color: var(--ink); font-weight: 850; }
.contact-form .full, .contact-form button { grid-column: 1 / -1; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; background: #112240; color: var(--ink); font: inherit; }
.map-placeholder { margin: 0 clamp(20px, 5vw, 72px) clamp(60px, 8vw, 100px); min-height: 320px; display: grid; place-items: center; border: 1px dashed rgba(159, 184, 194, 0.55); border-radius: 20px; background: var(--surface); color: var(--muted); text-align: center; font-weight: 850; }

.site-footer { padding: 54px clamp(20px, 5vw, 72px) 96px; color: white; background: #020c1b; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.7fr 0.9fr 0.9fr auto; gap: 28px; }
.footer-logo { width: 190px; margin-bottom: 18px; }
.site-footer p, .site-footer span, .site-footer a { display: block; color: rgba(255, 255, 255, 0.72); line-height: 1.7; }
.site-footer h2 { margin: 0 0 14px; color: white; font-size: 16px; }
.site-footer a:hover { color: white; }
.cert-line { color: #bdeee4 !important; font-weight: 850; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 16px; }
.mobile-sticky { display: none; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ai-chat {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 40;
  font-size: 14px;
}

.fab-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.fab-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: #fff;
  text-decoration: none;
}

.fab-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
}

.fab-call {
  background: var(--gold);
  color: var(--navy);
}

.fab-wa {
  background: #25D366;
}

.ai-chat-toggle {
  background: linear-gradient(135deg, var(--green), var(--blue));
  border: 1px solid rgba(196, 154, 85, 0.34);
  color: #061316;
}

.ai-chat-panel {
  position: absolute;
  right: 0;
  bottom: 62px;
  display: grid;
  grid-template-rows: auto minmax(180px, 1fr) auto auto;
  width: min(380px, calc(100vw - 36px));
  max-height: min(620px, calc(100svh - 120px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(10, 25, 48, 0.97);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.98);
  transition:
    opacity 220ms ease-out,
    transform 220ms ease-out;
  backdrop-filter: blur(18px);
}

.ai-chat.is-open .ai-chat-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.ai-chat-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.ai-chat-head strong,
.ai-chat-head span {
  display: block;
}

.ai-chat-head strong {
  color: #f5dfa7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 600;
}

.ai-chat-head span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.ai-chat-close {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
  font: inherit;
  font-size: 22px;
}

.ai-chat-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow-y: auto;
  padding: 16px;
}

.chat-message {
  max-width: 88%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.chat-message.bot {
  justify-self: start;
  background: rgba(255, 255, 255, 0.055);
}

.chat-message.user {
  justify-self: end;
  color: #061316;
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.chat-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.chat-message a {
  color: #f5dfa7;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ai-chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  overflow: hidden;
  padding: 0 16px 14px;
}

.ai-chat-suggestions button {
  flex: 1 1 auto;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.ai-chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--line);
}

.ai-chat-form input {
  min-width: 0;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
  font: inherit;
}

.ai-chat-form button {
  min-height: 44px;
  padding: 0 15px;
  border: 0;
  border-radius: 999px;
  color: #061316;
  background: linear-gradient(135deg, var(--green), var(--blue));
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 680ms ease-out,
    transform 680ms ease-out;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.image-reveal {
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 720ms ease-out,
    transform 720ms ease-out;
  will-change: opacity, transform;
}

.image-reveal.is-visible {
  opacity: 1;
  transform: scale(1);
}

.cta-band.reveal {
  transform: translateY(26px) scale(0.985);
}

.cta-band.reveal.is-visible {
  transform: translateY(0) scale(1);
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageReveal {
  from {
    opacity: 0;
    transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.06);
  }
  to {
    opacity: 1;
    transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .image-reveal {
    opacity: 1;
    transform: none;
  }
  .hero-media img {
    transform: none;
    transition: none;
  }
}

@media (max-width: 1000px) {

  .site-header { grid-template-columns: 1fr auto; }
  .brand { grid-column: 1; grid-row: 1; justify-self: start; }
  .nav-toggle { grid-column: 2; grid-row: 1; display: block; justify-self: end; }
  .header-cta { display: none; }
  .site-nav { display: grid; }
  .site-nav.is-open { display: grid; }
  .site-nav.is-open a { padding: 14px 0; border-top: 1px solid var(--line); }
  .split, .contact-layout, .footer-grid { grid-template-columns: 1fr; }
  .cards-3, .cards-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-preview, .cta-band, .contact-strip { align-items: stretch; flex-direction: column; }
}

@media (min-width: 1001px) and (max-height: 820px) {
  .section, .page-hero {
    padding-block: 30px;
  }

  .section-heading p {
    margin-bottom: 0;
  }

  .cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-card {
    padding: 18px;
  }

  .service-card p {
    line-height: 1.55;
    -webkit-line-clamp: 3;
  }

  .hero h1 {
    font-size: clamp(40px, 5.4vw, 68px);
  }

  .trust-badges {
    margin-top: 18px;
  }
}

@media (min-width: 1001px) {
  #services.section {
    height: calc(100svh - 78px);
    min-height: 0;
    padding-block: clamp(22px, 3vh, 34px);
  }

  #services .section-heading {
    margin-bottom: 18px;
  }

  #services .section-heading h2 {
    font-size: clamp(30px, 3.6vw, 46px);
  }

  #services .section-heading p {
    margin-bottom: 0;
  }

  #services .service-track {
    grid-auto-columns: minmax(300px, calc((100% - 36px) / 3));
  }
}

@media (max-width: 680px) {
  .brand { min-width: 0; }
  .brand strong { font-size: 22px; }
  .brand small { font-size: 8px; }
  .hero { height: calc(100svh - 132px); min-height: 560px; align-items: center; }
  .hero-content { padding-block: 22px; }
  .hero h1 { font-size: clamp(32px, 10.6vw, 44px); }
  .hero p { font-size: 16px; line-height: 1.55; }
  .trust-badges { gap: 8px; margin-top: 18px; }
  .trust-badges span { padding: 8px 10px; font-size: 12px; }
  .trust-badges .credential-badge {
    padding: 6px 10px 6px 7px;
    font-size: 12px;
  }
  .credential-badge img {
    width: 28px;
    height: 28px;
  }
  .section, .page-hero {
    min-height: auto;
    padding-block: 54px;
  }
  .hero-overlay { background: linear-gradient(0deg, rgba(12, 37, 51, 0.9), rgba(12, 37, 51, 0.38)); }
  .button, .header-cta { width: 100%; }
  .cards-3, .cards-4, .steps, .contact-form, .about-intro, .about-certifications { grid-template-columns: 1fr; }
  .about-statement { display: grid; }
  .about-certifications article { min-height: 220px; }
  .service-track {
    grid-auto-columns: minmax(270px, 84%);
    overflow: visible;
  }
  .service-slide {
    min-height: 300px;
  }
  #services {
    padding-block: 28px;
  }
  #services .section-heading {
    margin-bottom: 16px;
  }
  #services .section-heading h2 {
    font-size: clamp(28px, 8vw, 34px);
  }
  #services .section-heading p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
  }
  .service-slide-content {
    gap: 7px;
    padding: 16px;
  }
  .service-slide h3 {
    font-size: 22px;
  }
  .service-slide p {
    -webkit-line-clamp: 2;
    font-size: 14px;
    line-height: 1.45;
  }
  .service-slider-controls {
    gap: 10px;
  }
  .slider-control {
    width: 40px;
    height: 40px;
  }
  .certification-showcase {
    grid-template-columns: 1fr 1fr;
  }
  .certification-showcase article {
    min-height: 180px;
    padding: 18px;
  }
  .certification-showcase strong {
    font-size: 19px;
  }
  .service-slider {
    margin-inline: -6px;
  }
  .slider-dots button {
    width: 18px;
  }
  .slider-dots button.is-active {
    width: 34px;
  }
  .contact-form .full, .contact-form button { grid-column: auto; }
  .legal-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .mobile-sticky { position: fixed; left: 0; right: 0; bottom: 0; z-index: 30; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); background: #081821; box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.25); }
  .mobile-sticky a { display: grid; min-height: 54px; place-items: center; color: var(--ink); font-size: 13px; font-weight: 950; }
  .ai-chat {
    right: 14px;
    bottom: 68px;
  }
  .ai-chat-toggle {
    min-height: 42px;
    padding: 0 14px;
  }
  .ai-chat-panel {
    bottom: 54px;
    max-height: calc(100svh - 150px);
  }
  body { padding-bottom: 54px; }
}

/* ── Social links ── */
.social-links { display: flex; gap: 10px; }
.social-links a { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid rgba(255,255,255,0.12); border-radius: 50%; color: rgba(255,255,255,0.6); transition: color 200ms, border-color 200ms, background 200ms; }
.social-links a:hover { color: var(--green); border-color: var(--green); background: rgba(112,214,196,0.08); }
.social-links svg { display: block; }

/* ── Footer QR ── */
.footer-qr { display: grid; justify-items: center; gap: 8px; }
.footer-qr img { width: 100px; height: 100px; border-radius: 10px; border: 2px solid rgba(244,240,232,0.15); }
.footer-qr span { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 700; }

/* ── Google Reviews (hidden until reviews exist) ── */
.google-reviews[data-has-reviews="false"] { display: none !important; }

/* ── Booking page ── */
.booking-section {
  min-height: auto;
  padding-block: clamp(24px, 4vw, 48px);
}

.booking-container {
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
}

/* Stepper */
.booking-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: clamp(28px, 4vw, 48px);
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow-x: auto;
}

.stepper-step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
}

.stepper-num {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  transition: all 320ms ease-out;
}

.stepper-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  transition: color 320ms ease-out;
}

.stepper-step.is-active .stepper-num {
  border-color: var(--green);
  color: #061316;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 6px 18px rgba(112, 214, 196, 0.22);
}

.stepper-step.is-active .stepper-label { color: var(--ink); }

.stepper-step.is-done .stepper-num {
  border-color: var(--green);
  color: #061316;
  background: var(--green);
}

.stepper-step.is-done .stepper-label { color: var(--green); }

.stepper-line {
  flex: 1;
  min-width: 20px;
  height: 2px;
  margin: 0 8px;
  background: var(--line);
  border-radius: 999px;
  transition: background 320ms ease-out;
}

.stepper-line.is-done { background: var(--green); }

/* Steps */
.booking-form {
  position: relative;
  overflow: hidden;
}

.booking-step {
  display: none;
  animation: stepFadeIn 380ms ease-out;
}

.booking-step.is-active { display: block; }

.booking-step.slide-out-left { display: block; animation: slideOutLeft 380ms ease-out forwards; }
.booking-step.slide-out-right { display: block; animation: slideOutRight 380ms ease-out forwards; }
.booking-step.slide-in-right { animation: slideInRight 380ms ease-out; }
.booking-step.slide-in-left { animation: slideInLeft 380ms ease-out; }

@keyframes stepFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideOutLeft { to { opacity: 0; transform: translateX(-30px); } }
@keyframes slideOutRight { to { opacity: 0; transform: translateX(30px); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }

.step-header { margin-bottom: 28px; }
.step-header h1, .step-header h2 { margin: 0 0 8px; font-size: clamp(26px, 3.6vw, 38px); font-weight: 850; line-height: 1.1; }
.step-header p { margin: 0; color: var(--muted); font-size: 16px; }

/* Service option cards */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.option-card {
  cursor: pointer;
  position: relative;
}

.option-card input { position: absolute; opacity: 0; width: 0; height: 0; }

.option-card-inner {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  transition: all 220ms ease-out;
  text-align: center;
}

.option-card input:checked + .option-card-inner {
  border-color: var(--green);
  background: rgba(112, 214, 196, 0.08);
  box-shadow: 0 0 0 1px var(--green), 0 8px 24px rgba(112, 214, 196, 0.12);
}

.option-card:hover .option-card-inner { border-color: rgba(112, 214, 196, 0.4); background: rgba(255, 255, 255, 0.06); }

.option-icon { font-size: 28px; margin-bottom: 4px; }
.option-title { font-size: 14px; font-weight: 900; color: var(--ink); }
.option-desc { font-size: 12px; color: var(--muted); line-height: 1.4; }

/* Frequency / pill options */
.frequency-cards { display: flex; flex-wrap: wrap; gap: 10px; }

.pill-option { cursor: pointer; position: relative; }
.pill-option input { position: absolute; opacity: 0; width: 0; height: 0; }
.pill-option span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
  transition: all 200ms ease-out;
}
.pill-option input:checked + span {
  border-color: var(--green);
  color: #061316;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 6px 18px rgba(112, 214, 196, 0.16);
}
.pill-option:hover span { border-color: rgba(112, 214, 196, 0.4); color: var(--ink); }

/* Form fields */
.form-group { display: grid; gap: 8px; margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-label { color: var(--ink); font-size: 14px; font-weight: 850; }
.req { color: var(--green); }

.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form input[type="date"],
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0b202b;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  transition: border-color 200ms;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--green);
  outline: none;
  box-shadow: 0 0 0 3px rgba(112, 214, 196, 0.12);
}

.booking-form textarea { resize: vertical; min-height: 90px; }
.booking-form select { cursor: pointer; }

/* Extras grid */
.extras-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }

.extra-card { cursor: pointer; position: relative; }
.extra-card input { position: absolute; opacity: 0; width: 0; height: 0; }

.extra-inner {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  text-align: center;
  transition: all 220ms ease-out;
}

.extra-card input:checked + .extra-inner {
  border-color: var(--green);
  background: rgba(112, 214, 196, 0.08);
  box-shadow: 0 0 0 1px var(--green);
}

.extra-card:hover .extra-inner { border-color: rgba(112, 214, 196, 0.35); }

.extra-icon { font-size: 24px; }
.extra-inner > span:nth-child(2) { font-size: 13px; font-weight: 800; color: var(--ink); }
.extra-price { font-size: 11px; color: var(--green); font-weight: 900; }

/* Validation errors */
.field-error { color: #e8625a; font-size: 13px; font-weight: 700; margin-top: 4px; }
.has-error { border-color: #e8625a !important; }

/* Navigation buttons */
.booking-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.booking-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.booking-price span {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 800;
}
.booking-price strong {
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.booking-nav {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.booking-nav .button { min-width: 140px; }

/* Review card */
.review-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  overflow: hidden;
}

.review-section { padding: 0 20px; }
.review-section h3 {
  margin: 0;
  padding: 16px 0 10px;
  font-size: 12px;
  font-weight: 900;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--line);
}

.review-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(244, 240, 232, 0.06);
  font-size: 14px;
}

.review-row span { color: var(--muted); }
.review-row strong { color: var(--ink); font-weight: 700; text-align: right; }
.review-note { margin-top: 16px; font-size: 13px; color: var(--muted); }
.review-note a { color: var(--green); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* Success state */
.booking-success {
  text-align: center;
  padding: 60px 24px;
}

.success-icon {
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  color: #061316;
  background: linear-gradient(135deg, var(--green), var(--blue));
  font-size: 36px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(112, 214, 196, 0.2);
}

.booking-success h2 { margin: 0 0 12px; font-size: 32px; }
.booking-success p { max-width: 480px; margin: 0 auto 28px; color: var(--muted); font-size: 16px; }

/* Booking mobile */
@media (max-width: 680px) {
  .service-cards { grid-template-columns: 1fr 1fr; }
  .extras-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-stepper { padding: 14px 12px; gap: 0; }
  .stepper-label { display: none; }
  .stepper-num { width: 32px; height: 32px; font-size: 13px; }
  .stepper-line { min-width: 12px; margin: 0 4px; }
  .booking-nav .button { min-width: 0; flex: 1; }
}
