/* =========================================================
   Parma NCC di Pietro Ferrari — design system
   Adapted from an editorial private-aviation reference:
   obsidian ink + marble white + indigo-black bands, a single
   warm terracotta accent, one typeface at every scale, pill
   buttons, hairline dividers, zero elevation/shadows.
   ========================================================= */

:root{
  --ink: #000d10;
  --accent: #bc7155;
  --white: #ffffff;
  --dark-1: #0f0f1c;
  --dark-2: #151623;
  --gray: #8e8e95;
  --gray-text: #63636a;
  --bone: #d5d3d4;

  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --page-max: 1240px;
  --edge: clamp(1.25rem, 4vw, 3.5rem);

  --radius-pill: 1000px;

  --gap-11: 11px; --gap-13: 13px; --gap-15: 15px; --gap-16: 16px; --gap-17: 17px;
  --gap-21: 21px; --gap-22: 22px; --gap-23: 23px; --gap-31: 31px; --gap-34: 34px;
  --gap-38: 38px; --gap-53: 53px; --gap-59: 59px; --gap-60: 60px; --gap-68: 68px;
  --gap-119: 119px;

  --ease-out: cubic-bezier(.16,1,.3,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.61;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; border-radius: 0; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{ margin: 0; font-family: var(--font); font-weight: 700; letter-spacing: -0.02em; }
p{ margin: 0; }
button{ font-family: inherit; cursor: pointer; background: none; border: none; }

:focus-visible{ outline: 2px solid var(--accent); outline-offset: 3px; }

.wrap{
  max-width: var(--page-max);
  margin: 0 auto;
  padding-left: var(--edge);
  padding-right: var(--edge);
}

/* ---------- bands (full-bleed alternating sections) ---------- */
.band{ padding: clamp(3.5rem, 8vw, 7.5rem) 0; }
.band-tight{ padding: clamp(2.5rem, 5vw, 4rem) 0; }
.band--white{ background: var(--white); color: var(--ink); }
.band--dark1{ background: var(--dark-1); color: var(--white); }
.band--dark2{ background: var(--dark-2); color: var(--white); }
.band--dark1 .muted, .band--dark2 .muted{ color: var(--bone); }
.muted{ color: var(--gray-text); }

/* ---------- kicker / eyebrow ---------- */
.kicker{
  font-size: 17px;
  letter-spacing: 0.2px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: var(--gap-21);
}

/* ---------- buttons: pill, no exceptions ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 15px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 17px;
  border: 1px solid transparent;
  transition: transform .3s var(--ease-out), background .3s var(--ease-out), color .3s var(--ease-out), border-color .3s var(--ease-out);
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-fill{ background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-fill:hover{ background: #001318; }
.btn-ghost{ background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover{ background: var(--ink); color: var(--white); }
.band--dark1 .btn-ghost, .band--dark2 .btn-ghost{ color: var(--white); border-color: var(--white); }
.band--dark1 .btn-ghost:hover, .band--dark2 .btn-ghost:hover{ background: var(--white); color: var(--ink); }
.btn-accent{ background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-accent:hover{ background: #a75f45; }
.btn-row{ display: flex; gap: var(--gap-13); flex-wrap: wrap; }

/* ---------- header / nav ---------- */
/* Every page opens on a fullscreen hero, so the header always starts
   transparent, floating over the image, and turns solid once the
   visitor scrolls past it (see .is-scrolled, toggled in main.js). */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  transition: background .4s var(--ease-out), backdrop-filter .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.site-header .header-phone{ color: var(--white); transition: color .4s var(--ease-out); }
.site-header .lang{ color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.35); }
.site-header .lang:hover, .site-header .lang.is-active{ color: var(--white); border-color: rgba(255,255,255,.8); }
.site-header .btn-ghost{ color: var(--white); border-color: rgba(255,255,255,.6); }
.site-header .btn-ghost:hover{ background: var(--white); color: var(--ink); }
.site-header .nav-toggle{ background: var(--white); }
.site-header .nav-toggle span, .site-header .nav-toggle span::before, .site-header .nav-toggle span::after{ background: var(--ink); }

/* pill nav — glass capsule floating on the transparent header */
.site-header .pill-nav{
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  transition: background .4s var(--ease-out), border-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out);
}
.site-header .pill-nav .nav-item{ color: var(--white); }
.site-header .pill-nav .nav-item:hover{ background: rgba(255,255,255,.18); }
.site-header .pill-nav .nav-item.is-active{ background: var(--white); color: var(--ink); }
/* the dropdown panel is always solid white, so its links must stay dark regardless of header state */
.site-header .has-dropdown .dropdown a{ color: var(--ink); }
.site-header .has-dropdown .dropdown a:hover{ color: var(--white); }

.site-header.is-scrolled{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.site-header.is-scrolled .header-phone{ color: var(--ink); }
.site-header.is-scrolled .lang{ color: var(--gray-text); border-color: var(--bone); }
.site-header.is-scrolled .lang:hover, .site-header.is-scrolled .lang.is-active{ color: var(--ink); border-color: var(--ink); }
.site-header.is-scrolled .btn-ghost{ color: var(--ink); border-color: var(--ink); }
.site-header.is-scrolled .btn-ghost:hover{ background: var(--ink); color: var(--white); }
.site-header.is-scrolled .nav-toggle{ background: var(--ink); }
.site-header.is-scrolled .nav-toggle span, .site-header.is-scrolled .nav-toggle span::before, .site-header.is-scrolled .nav-toggle span::after{ background: var(--white); }
.site-header.is-scrolled .pill-nav{
  background: var(--white);
  border-color: var(--ink);
  box-shadow: 0 1px 2px rgba(0,0,0,.08);
  backdrop-filter: none;
}
.site-header.is-scrolled .pill-nav .nav-item{ color: var(--ink); }
.site-header.is-scrolled .pill-nav .nav-item:hover{ background: rgba(0,13,16,.06); }
.site-header.is-scrolled .pill-nav .nav-item.is-active{ background: var(--ink); color: var(--white); }
/* mobile menu panel is always solid white, regardless of hero state */
.site-header .main-nav.is-open .nav-item{ color: var(--ink); }
.site-header .wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--gap-21);
  padding-bottom: var(--gap-21);
  gap: 2rem;
}
.brand{ display: flex; align-items: center; flex-shrink: 0; }
.brand img{ height: 76px; width: auto; }

.main-nav{ display: flex; align-items: center; }

/* pill nav — one floating capsule holding every nav item */
.pill-nav{
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: var(--radius-pill);
  padding: 5px;
  box-shadow: 0 1px 2px rgba(0,0,0,.08);
}
.nav-item{
  font-size: 15px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  color: var(--ink);
  white-space: nowrap;
  transition: background .25s var(--ease-out), color .25s var(--ease-out);
}
.nav-item:hover{ background: rgba(0,13,16,.06); }
.nav-item.is-active{ background: var(--ink); color: var(--white); }

.has-dropdown{ position: relative; }
.dropdown{
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 300px;
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: 18px;
  padding: var(--gap-13);
  opacity: 0;
  visibility: hidden;
  translate: 0 6px;
  transition: opacity .25s var(--ease-out), translate .25s var(--ease-out), visibility .25s;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown{ opacity: 1; visibility: visible; translate: 0 0; }
.dropdown a{ display: block; padding: .7rem .8rem; font-size: 16px; border-radius: 10px; }
.dropdown a:hover{ background: var(--ink); color: var(--white); }

.header-cta{ display: flex; align-items: center; gap: var(--gap-21); flex-shrink: 0; }
.header-phone{ font-size: 17px; font-weight: 700; color: var(--ink); }

.lang-switch{ display: flex; gap: 6px; }
.lang{ padding: 4px 8px; border: 1px solid transparent; border-radius: var(--radius-pill); font-size: 13px; font-weight: 700; letter-spacing: .02em; transition: color .25s var(--ease-out), border-color .25s var(--ease-out); }

.nav-toggle{
  display: none;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--ink);
  position: relative;
  flex-shrink: 0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content: ""; position: absolute; left: 12px; right: 12px; height: 1.5px; background: var(--white);
  transition: transform .3s var(--ease-out), opacity .3s var(--ease-out), top .3s var(--ease-out);
}
.nav-toggle span{ top: 21px; }
.nav-toggle span::before{ top: -6px; }
.nav-toggle span::after{ top: 6px; }
.nav-toggle[aria-expanded="true"] span{ background: transparent; }
.nav-toggle[aria-expanded="true"] span::before{ top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after{ top: 0; transform: rotate(-45deg); }

@media (max-width: 980px){
  .main-nav{
    position: fixed; top: 73px; right: 0; left: 0; height: calc(100vh - 73px);
    background: var(--white);
    flex-direction: column; align-items: flex-start;
    padding: var(--gap-38) var(--edge);
    display: flex;
    transform: translateX(100%);
    transition: transform .5s var(--ease-out);
    overflow-y: auto;
  }
  .main-nav.is-open{ transform: translateX(0); }
  .pill-nav{
    display: flex; flex-direction: column; align-items: flex-start; gap: 0;
    width: 100%; background: none; border: none; box-shadow: none; padding: 0;
  }
  .pill-nav li{ width: 100%; border-bottom: 1px solid var(--bone); }
  .nav-item{ display: block; padding: 1.1rem 0; font-size: 22px; border-radius: 0; }
  .nav-item.is-active{ background: none; color: var(--accent); }
  .dropdown{ position: static; transform: none; border: none; border-radius: 0; opacity: 1; visibility: visible; translate: 0; display: none; padding: 0 0 .5rem 1rem; min-width: 0; }
  .has-dropdown.is-open .dropdown{ display: block; }
  .header-cta .header-phone, .header-cta .btn-ghost{ display: none; }
  .nav-toggle{ display: block; }
  /* Tighten the header row so brand + IT/EN + toggle always fit small phones. */
  .site-header .wrap{ gap: .75rem; }
  .header-cta{ gap: .6rem; }
  .brand img{ height: 54px; }
}
@media (max-width: 400px){
  /* On the narrowest phones, shrink further so the toggle never clips the edge. */
  .wrap{ padding-left: 1rem; padding-right: 1rem; }
  .brand img{ height: 46px; }
  .lang{ padding: 4px 6px; font-size: 12px; }
}

/* ============================================================
   FULLSCREEN OVERLAY HERO — image fills the viewport, the
   kicker/title/lede sit on top of it (home + every inner page).
   ============================================================ */
.hero-overlay{
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: clip;
  background: var(--ink);
  color: var(--white);
}
/* inner pages: shorter hero, homepage keeps the full 100vh treatment */
.hero-overlay--compact{
  min-height: 50vh;
  min-height: 50svh;
}
.hero-overlay--compact .hero-overlay__inner{
  padding-block: clamp(6.5rem, 15vh, 8.5rem) clamp(2rem, 5vh, 3rem);
}
.hero-overlay--compact .hero-scroll{ display: none; }

/* outer layer: JS translates this for the parallax drift */
.hero-overlay__bg{
  position: absolute;
  inset: -12% 0;
  height: 124%;
  z-index: 0;
  will-change: transform;
}
/* inner layer: pure CSS ambient zoom — kept on a separate element so the
   two transforms (parallax translate + Ken Burns scale) never collide */
.hero-overlay__bg img{
  width: 100%; height: 100%; object-fit: cover;
  transform-origin: 50% 50%;
  animation: heroAmbientZoom 26s cubic-bezier(.4,0,.6,1) infinite alternate;
  will-change: transform;
}
@keyframes heroAmbientZoom{ 0%{ transform: scale(1); } 100%{ transform: scale(1.1); } }

.hero-overlay__scrim{
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 50% 15%, rgba(0,13,16,0) 0%, rgba(0,13,16,.18) 55%, rgba(0,13,16,.5) 100%),
    linear-gradient(180deg, rgba(0,13,16,.6) 0%, rgba(0,13,16,.25) 34%, rgba(0,13,16,.42) 62%, rgba(0,13,16,.86) 100%);
}

.hero-overlay__inner{
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(7rem, 16vh, 10rem) clamp(3.5rem, 9vh, 6rem);
}
.hero-overlay .kicker{ color: rgba(255,255,255,.8); }

.hero-overlay .wordmark{
  font-size: clamp(2.8rem, 10vw, 8.5rem);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -0.02em;
  color: var(--white);
}
.hero-overlay .wordmark-tag{
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--accent);
  margin-top: var(--gap-13);
}
.hero-overlay .page-title{
  font-size: clamp(2.1rem, 5.6vw, 4.2rem);
  line-height: 1.03;
  max-width: 18ch;
  color: var(--white);
}

.hero-overlay__foot{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--gap-22);
  margin-top: clamp(1.6rem, 4vw, 2.6rem);
}
.hero-overlay .hero-lede{
  max-width: 44ch;
  font-size: 20px;
  color: rgba(255,255,255,.86);
  margin-top: var(--gap-23);
}

/* frosted-glass lead panel — reserved for the homepage hero only */
.hero-lead-panel{
  position: relative;
  isolation: isolate;
  max-width: 52ch;
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.55;
  color: rgba(255,255,255,.95);
  padding: clamp(1.5rem, 2.4vw, 2.2rem) clamp(1.6rem, 2.6vw, 2.4rem);
  background: linear-gradient(135deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.04) 100%);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255,255,255,.18);
  border-left: 2px solid var(--accent);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 30px 70px -30px rgba(0,0,0,.55);
}
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))){
  .hero-lead-panel{ background: rgba(10,10,12,.66); }
}

.hero-overlay .btn-ghost{ color: var(--white); border-color: rgba(255,255,255,.7); }
.hero-overlay .btn-ghost:hover{ background: var(--white); color: var(--ink); }

.hero-scroll{
  position: absolute; left: 50%; bottom: clamp(18px, 3vh, 30px); transform: translateX(-50%);
  z-index: 3; width: 26px; height: 42px; border: 1px solid rgba(255,255,255,.6);
  border-radius: 20px; display: flex; justify-content: center; padding-top: 7px;
}
.hero-scroll__dot{ width: 4px; height: 8px; border-radius: 2px; background: var(--white); animation: heroScrollDot 1.8s var(--ease-out) infinite; }
@keyframes heroScrollDot{ 0%{ opacity: 0; transform: translateY(-4px); } 40%{ opacity: 1; } 80%, 100%{ opacity: 0; transform: translateY(12px); } }

/* staggered entrance for hero content (kicker → title → lede/foot) */
[data-hero-el]{ opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
[data-hero-el].is-visible{ opacity: 1; transform: translateY(0); }

/* ---------- editorial headline block ---------- */
.editorial-head h2{ font-size: clamp(1.9rem, 4vw, 3.3rem); line-height: 1.04; max-width: 22ch; }
.editorial-head .kicker{ margin-bottom: var(--gap-23); }

/* ---------- two column layout ---------- */
.split{ display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--gap-68); align-items: start; }
.split-reverse{ grid-template-columns: .9fr 1.1fr; }
.split-reverse > *:first-child{ order: 2; }
@media (max-width: 900px){
  .split, .split-reverse{ grid-template-columns: 1fr; gap: var(--gap-38); }
  .split-reverse > *:first-child{ order: 0; }
}

.figure img{ width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.figure figcaption{ margin-top: var(--gap-13); font-size: 13px; color: var(--gray-text); }
.split .figure img{ aspect-ratio: 3/4; }

/* ---------- hairline feature list ---------- */
.hairline-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-38); }
.hairline-grid-2{ grid-template-columns: repeat(2, 1fr); }
.hairline-item{ border-top: 1px solid var(--gray); padding-top: var(--gap-23); }
.band--dark1 .hairline-item, .band--dark2 .hairline-item{ border-color: rgba(255,255,255,.25); }
.hairline-item h3{ font-size: 21px; font-weight: 700; margin-bottom: var(--gap-13); }
.hairline-item p{ font-size: 17px; color: var(--gray-text); }
.band--dark1 .hairline-item p, .band--dark2 .hairline-item p{ color: var(--bone); }
@media (max-width: 860px){ .hairline-grid, .hairline-grid-2{ grid-template-columns: 1fr; } }

/* stacked full-width hairline list (used for FAQ-adjacent lists) */
.hairline-stack .hairline-item{ border-top: 1px solid var(--gray); padding: var(--gap-31) 0; }
.hairline-stack .hairline-item:last-child{ border-bottom: 1px solid var(--gray); }

/* ---------- service index list ---------- */
.service-list .hairline-item{ display: grid; grid-template-columns: 1.4fr 2fr auto; gap: var(--gap-38); align-items: center; padding: var(--gap-34) 0; }
.service-list .hairline-item h3{ font-size: 26px; margin: 0; }
.service-list .hairline-item p{ margin: 0; }
.service-list .arrow{ font-size: 17px; font-weight: 700; justify-self: end; transition: transform .3s var(--ease-out); }
.service-list a.hairline-item:hover .arrow{ transform: translateX(6px); }
.service-list a.hairline-item{ display: grid; }
@media (max-width: 760px){
  .service-list .hairline-item{ grid-template-columns: 1fr; gap: var(--gap-13); }
  .service-list .arrow{ justify-self: start; }
}

/* ---------- stats row ---------- */
.stat-row{ display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap-38); }
.stat-row .stat{ border-top: 1px solid rgba(255,255,255,.25); padding-top: var(--gap-23); }
.stat b{ display: block; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; letter-spacing: -0.02em; }
.stat span{ font-size: 15px; color: var(--bone); }
@media (max-width: 760px){ .stat-row{ grid-template-columns: repeat(2,1fr); } }

/* ---------- FAQ ---------- */
.faq-item{ border-top: 1px solid var(--gray); }
.faq-item:last-child{ border-bottom: 1px solid var(--gray); }
.faq-item summary{
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: var(--gap-31) 0;
  font-size: 21px; font-weight: 700;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item .plus{ position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-item .plus::before, .faq-item .plus::after{ content: ""; position: absolute; background: var(--ink); transition: transform .3s var(--ease-out), opacity .3s var(--ease-out); }
.faq-item .plus::before{ left: 0; right: 0; top: 8px; height: 1.5px; }
.faq-item .plus::after{ top: 0; bottom: 0; left: 8px; width: 1.5px; }
.faq-item[open] .plus::after{ transform: rotate(90deg); opacity: 0; }
.faq-item p{ padding-bottom: var(--gap-31); color: var(--gray-text); max-width: 68ch; font-size: 17px; }

/* ---------- founder ---------- */
.founder-sign{ font-size: 21px; font-weight: 700; margin-top: var(--gap-23); }
.founder-sign span{ display: block; font-size: 15px; font-weight: 400; color: var(--gray-text); }

/* ---------- contact ---------- */
.field{ margin-bottom: var(--gap-21); }
.field label{ display: block; font-size: 15px; font-weight: 700; margin-bottom: .5rem; }
.field input, .field select, .field textarea{
  width: 100%;
  padding: .9rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus{ outline: 2px solid var(--accent); outline-offset: 1px; }
.field-row{ display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-21); }
@media (max-width: 640px){ .field-row{ grid-template-columns: 1fr; } }

.contact-info dt{ font-size: 15px; letter-spacing: .04em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-top: var(--gap-31); }
.contact-info dt:first-child{ margin-top: 0; }
.contact-info dd{ margin: .5rem 0 0; font-size: 21px; font-weight: 700; }
.contact-info dd a:hover{ color: var(--accent); }

.form-banner{ border: 1px solid var(--ink); padding: var(--gap-21); margin-bottom: var(--gap-31); font-weight: 700; }
.form-banner.error{ border-color: var(--accent); color: var(--accent); }

/* ---------- footer ---------- */
.site-footer{ background: var(--ink); color: var(--bone); padding-top: var(--gap-68); }
.footer-top{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--gap-38); padding-bottom: var(--gap-53); }
.footer-brand img{ height: 64px; margin-bottom: var(--gap-21); filter: brightness(0) invert(1); }
.footer-brand p{ max-width: 32ch; font-size: 16px; }
.footer-col h4{ font-size: 15px; letter-spacing: .04em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: var(--gap-21); }
.footer-col li{ margin-bottom: .7rem; font-size: 16px; }
.footer-col a:hover{ color: var(--white); }
.footer-bottom{ border-top: 1px solid rgba(213,211,212,.2); padding: var(--gap-21) 0; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 14px; }
@media (max-width: 860px){ .footer-top{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-top{ grid-template-columns: 1fr; } }

/* ---------- reveal on scroll ---------- */
[data-reveal]{ opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
[data-reveal].is-visible{ opacity: 1; transform: translateY(0); }

/* hero word-by-word entrance */
.reveal-word{ display: inline-block; overflow: hidden; vertical-align: top; }
.reveal-word span{ display: inline-block; transform: translateY(110%); opacity: 0; transition: transform .8s var(--ease-out), opacity .8s var(--ease-out); }
.reveal-word.is-visible span{ transform: translateY(0); opacity: 1; }

/* ---------- utility ---------- */
.mt-lg{ margin-top: var(--gap-68); }
.max-prose{ max-width: 62ch; }
.breadcrumb{ font-size: 15px; color: var(--gray-text); display:flex; gap:.5rem; align-items:center; margin-bottom: var(--gap-21); }
.breadcrumb a:hover{ color: var(--accent); }
.rule{ border: none; border-top: 1px solid var(--gray); }
.anchor{ display: block; height: 0; }

/* ---------- floating WhatsApp button ---------- */
.whatsapp-float{
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 300;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #25d366;
  color: var(--white);
  padding: .85rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,.4);
  transition: transform .3s var(--ease-out), background .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.whatsapp-float:hover{ background: #1ebd5a; transform: translateY(-2px); box-shadow: 0 14px 36px -8px rgba(0,0,0,.45); }
.whatsapp-float svg{ width: 24px; height: 24px; fill: var(--white); flex-shrink: 0; }
.whatsapp-float span{ white-space: nowrap; }
@media (max-width: 560px){
  .whatsapp-float{ padding: .8rem; }
  .whatsapp-float span{ display: none; }
}
@media (prefers-reduced-motion: reduce){
  .whatsapp-float{ transition: none; }
}


.hp-field{
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}


.consent-block{
  margin-top: 1.35rem;
  color: var(--ink);
}
.consent-block--compact{ margin-top: 1.8rem; }
.consent-title{
  display: block;
  margin-bottom: .65rem;
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
}
.consent-title span{ color: var(--accent); }
.consent-row{
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--ink);
  font-size: .95rem;
  line-height: 1.45;
}
.consent-row input{
  width: 22px;
  height: 22px;
  margin: 0;
  flex: 0 0 22px;
  accent-color: var(--accent);
}
.consent-note{
  margin-top: .85rem;
  border: 1px solid var(--bone);
  padding: 1rem;
  color: var(--gray-text);
  font-size: .92rem;
  line-height: 1.55;
  background: #fbfaf8;
}
.consent-note a{ color: var(--ink); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.cancellation-box{
  margin-top: clamp(2.5rem, 5vw, 4rem);
  max-width: 62rem;
}
.cancellation-box h2{
  color: #2d3d4f;
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: -.02em;
  margin-bottom: 1.4rem;
}
.cancellation-box ul{
  list-style: square;
  padding-left: 2rem;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.55;
}
.legal-page{ max-width: 980px; }
.legal-card{
  border: 1px solid var(--bone);
  background: #fbfaf8;
  padding: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 2rem;
}
.legal-updated{
  color: var(--accent);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.legal-card h2,
.legal-section h2{
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  margin-bottom: .8rem;
}
.legal-card p,
.legal-section p,
.legal-section li{
  color: var(--gray-text);
  line-height: 1.7;
}
.legal-grid{
  display: grid;
  gap: 1.2rem;
}
.legal-section{
  border-top: 1px solid var(--bone);
  padding-top: 1.4rem;
}
.legal-section ul{
  list-style: square;
  padding-left: 1.4rem;
  margin: .8rem 0;
}
.legal-section a{ color: var(--ink); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }


.cookie-banner{
  position: fixed;
  left: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 140;
  width: min(420px, calc(100vw - 2rem));
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem;
  background: rgba(255,255,255,.96);
  color: var(--ink);
  border: 1px solid rgba(213,211,212,.95);
  border-radius: 28px;
  box-shadow: 0 24px 70px -28px rgba(0,13,16,.5);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s var(--ease-out), transform .28s var(--ease-out);
}
.cookie-banner.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner__mark{
  width: .78rem;
  height: .78rem;
  margin-top: .42rem;
  color: var(--accent);
  line-height: .78rem;
  font-size: .78rem;
}
.cookie-banner__eyebrow{
  margin-bottom: .25rem;
  color: var(--accent);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.cookie-banner h2{
  font-size: 1.28rem;
  line-height: 1.15;
  margin-bottom: .55rem;
}
.cookie-banner p:not(.cookie-banner__eyebrow){
  color: var(--gray-text);
  font-size: .94rem;
  line-height: 1.55;
}
.cookie-banner__actions{
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.cookie-banner__actions .btn{
  padding: .75rem 1rem;
  font-size: .92rem;
}
.cookie-banner__settings{
  color: var(--ink);
  font-size: .9rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.cookie-banner__close{
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: #f4f0ed;
  font-size: 1.4rem;
  line-height: 1;
}
.cookie-banner__close:hover{ background: var(--ink); color: var(--white); }
@media (max-width: 560px){
  .cookie-banner{
    right: 1rem;
    grid-template-columns: 1fr auto;
  }
  .cookie-banner__mark{ display: none; }
  .cookie-banner__actions{ align-items: stretch; }
  .cookie-banner__actions .btn{ flex: 1 1 auto; justify-content: center; }
  .cookie-banner__settings{ flex-basis: 100%; text-align: center; padding-top: .25rem; }
}
@media (prefers-reduced-motion: reduce){
  .cookie-banner{ transition: none; }
}


.cookie-float{
  position: fixed;
  left: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 139;
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 44px -18px rgba(0,13,16,.58);
  opacity: 0;
  transform: translateY(10px) scale(.96);
  pointer-events: none;
  transition: opacity .24s var(--ease-out), transform .24s var(--ease-out), background .24s var(--ease-out);
}
.cookie-float span{
  width: 1rem;
  height: 1rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(188,113,85,.55);
  border-radius: 50%;
  font-size: .65rem;
  line-height: 1;
}
.cookie-float.is-visible{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.cookie-float:hover{
  background: #151623;
  transform: translateY(-2px) scale(1.02);
}
@media (max-width: 560px){
  .cookie-float{
    width: 3rem;
    height: 3rem;
  }
}


.not-found-hero{
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  padding: clamp(7rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 7rem);
}
.not-found-hero__bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(0,13,16,.96) 0%, rgba(0,13,16,.78) 45%, rgba(21,22,35,.58) 100%),
    url('images/hero.jpeg') center/cover no-repeat;
  transform: scale(1.04);
}
.not-found-hero__inner{
  position: relative;
  max-width: 880px;
}
.not-found-code{
  margin: 0 0 1rem;
  color: rgba(255,255,255,.12);
  font-size: clamp(5rem, 18vw, 12rem);
  line-height: .82;
  font-weight: 800;
  letter-spacing: -.08em;
}
.not-found-hero h1{
  max-width: 10ch;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: .92;
  letter-spacing: -.065em;
}
.not-found-hero .hero-lede{
  max-width: 46rem;
  margin-top: 1.4rem;
  color: var(--bone);
}
.not-found-hero .btn-row{ margin-top: 2rem; }
.not-found-hero .btn-fill{ background: var(--white); color: var(--ink); border-color: var(--white); }
.not-found-hero .btn-fill:hover{ background: transparent; color: var(--white); }
.not-found-hero .btn-ghost{ color: var(--white); border-color: rgba(255,255,255,.72); }
.not-found-hero .btn-ghost:hover{ background: var(--white); color: var(--ink); }
@media (max-width: 720px){
  .not-found-code{ font-size: clamp(4.5rem, 28vw, 7rem); }
  .not-found-hero h1{ max-width: 11ch; }
}


.footer-bottom--legal{
  align-items: flex-start;
  gap: .8rem;
  flex-wrap: wrap;
}
.footer-bottom--legal span{
  max-width: 100%;
}
.footer-bottom--legal a{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ---------- premium homepage refinement ---------- */
.hero-premium__grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
}
.hero-premium__copy{ max-width: 900px; }
.hero-overlay .wordmark{ max-width: 11ch; }
.hero-premium__card{
  align-self: end;
  padding: clamp(1.35rem, 2.2vw, 2rem);
  color: rgba(255,255,255,.94);
  background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.045));
  border: 1px solid rgba(255,255,255,.18);
  border-top-color: rgba(255,255,255,.32);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 32px 80px -44px rgba(0,0,0,.72);
}
.hero-premium__card span,
.premium-proof span{
  display: block;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}
.hero-premium__card strong{
  display: block;
  margin-top: .65rem;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.hero-premium__card ul{ margin-top: 1.4rem; display: grid; gap: .7rem; }
.hero-premium__card li{
  position: relative;
  padding-left: 1.2rem;
  color: rgba(255,255,255,.78);
  font-size: 15px;
}
.hero-premium__card li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}
.premium-proof{
  position: relative;
  z-index: 4;
  margin-top: -1px;
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.premium-proof__inner{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.premium-proof__inner > div{
  padding: clamp(1.15rem, 2.5vw, 1.8rem) clamp(1rem, 2vw, 1.6rem);
  border-left: 1px solid rgba(255,255,255,.12);
}
.premium-proof__inner > div:last-child{ border-right: 1px solid rgba(255,255,255,.12); }
.premium-proof strong{
  display: block;
  margin-top: .45rem;
  font-size: clamp(.98rem, 1.35vw, 1.16rem);
  line-height: 1.25;
}
.home-method{ background: linear-gradient(180deg, #fff 0%, #faf8f6 100%); }
.premium-method-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.2vw, 1.6rem);
}
.premium-method-card{
  position: relative;
  min-height: 260px;
  padding: clamp(1.5rem, 2.6vw, 2.3rem);
  border: 1px solid rgba(0,13,16,.1);
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(250,248,246,.72)),
    radial-gradient(90% 80% at 20% 0%, rgba(188,113,85,.18), transparent 62%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.premium-method-card::before{
  content: "0" counter(method-card);
  counter-increment: method-card;
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  color: rgba(0,13,16,.08);
  font-size: clamp(3.4rem, 7vw, 5.6rem);
  line-height: .8;
  font-weight: 800;
  letter-spacing: -.08em;
}
.premium-method-grid{ counter-reset: method-card; }
.premium-method-card h3{ font-size: clamp(1.35rem, 2vw, 1.8rem); margin-bottom: .85rem; }
.premium-method-card p{ color: var(--gray-text); }
.premium-service-list{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.16);
}
.premium-service-list .hairline-item{
  grid-template-columns: 1fr auto;
  grid-template-areas: "title arrow" "body body";
  gap: .8rem 1.5rem;
  padding: clamp(1.35rem, 2.6vw, 2rem);
  border: 0;
  background: rgba(255,255,255,.035);
  transition: background .28s var(--ease-out), transform .28s var(--ease-out);
}
.premium-service-list .hairline-item h3{ grid-area: title; font-size: clamp(1.25rem, 2vw, 1.65rem); }
.premium-service-list .hairline-item p{ grid-area: body; max-width: 56ch; }
.premium-service-list .arrow{ grid-area: arrow; color: var(--accent); }
.premium-service-list a.hairline-item:hover{
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}
.premium-service-list .hairline-item:last-child{ grid-column: 1 / -1; }
.premium-service-list .hairline-item:last-child p{ max-width: 72ch; }
.premium-founder{
  align-items: center;
  padding: clamp(1rem, 2vw, 1.4rem);
  border: 1px solid rgba(0,13,16,.08);
  background: linear-gradient(135deg, #fff 0%, #f8f5f2 100%);
}
.premium-founder .figure img{
  aspect-ratio: 4/5;
  filter: saturate(.9) contrast(1.04);
}
.home-fleet{
  background:
    radial-gradient(80% 80% at 10% 0%, rgba(188,113,85,.18), transparent 58%),
    linear-gradient(180deg, var(--dark-2), #070b0d);
}
.premium-fleet__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: stretch;
}
.premium-fleet__media{
  margin: 0;
  min-height: 360px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.14);
  overflow: hidden;
}
.premium-fleet__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.05);
}
.premium-fleet__details{
  display: grid;
  grid-template-columns: 1fr;
  align-content: end;
  gap: clamp(1.2rem, 3vw, 2rem);
}
.premium-final{
  background:
    linear-gradient(120deg, rgba(0,13,16,.94), rgba(15,15,28,.9)),
    url('../images/hero.jpeg') center/cover no-repeat;
  color: var(--white);
}
.premium-final__inner{
  display: grid;
  align-items: start;
  justify-content: start;
  gap: clamp(1.3rem, 3vw, 2rem);
}
.premium-final .btn-ghost{ color: var(--white); border-color: rgba(255,255,255,.72); }
.premium-final .btn-ghost:hover{ background: var(--white); color: var(--ink); }
@media (max-width: 980px){
  .hero-premium__grid,
  .premium-fleet__grid,
  .premium-final__inner{ grid-template-columns: 1fr; display: grid; }
  .hero-premium__card{ max-width: 560px; }
  .premium-proof__inner{ grid-template-columns: repeat(2, 1fr); }
  .premium-method-grid,
  .premium-service-list{ grid-template-columns: 1fr; }
}
@media (max-width: 620px){
  .hero-overlay{ min-height: 100dvh; }
  .hero-premium__card{ display: none; }
  .premium-proof__inner{ grid-template-columns: 1fr; }
  .premium-proof__inner > div,
  .premium-proof__inner > div:last-child{ border-right: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .premium-method-card{ min-height: 220px; }
  .premium-founder{ padding: 0; border: 0; background: transparent; }
  .premium-fleet__media{ min-height: 260px; }
}

/* Premium hero QA: keep the side card only where it has enough room. */
@media (max-width: 1100px){
  .hero-premium__grid{
    grid-template-columns: 1fr;
  }
  .hero-premium__card{
    display: none;
  }
  .hero-overlay .wordmark{
    max-width: 10ch;
  }
}

/* Premium hero mobile QA: keep title readable and CTA above the first fold. */
@media (max-width: 620px){
  .hero-overlay__inner{
    padding-block: 5.8rem 4.25rem;
  }
  .hero-overlay .kicker{
    font-size: 13px;
    line-height: 1.25;
    margin-bottom: .85rem;
  }
  .hero-overlay .wordmark{
    font-size: clamp(2.45rem, 13.5vw, 3.35rem);
    line-height: .98;
    max-width: 9ch;
    letter-spacing: -.045em;
  }
  .hero-overlay .wordmark-tag{
    max-width: 20rem;
    color: #d99478;
    font-size: .98rem;
    line-height: 1.35;
  }
  .hero-overlay__foot{
    margin-top: 1.1rem;
    gap: .9rem;
  }
  .hero-lead-panel{
    max-width: 100%;
    padding: 1rem 1.05rem;
    font-size: 15px;
    line-height: 1.45;
    background: rgba(0,13,16,.58);
  }
  .hero-overlay .btn-row{
    gap: .65rem;
  }
  .hero-overlay .btn{
    padding: 12px 15px;
    font-size: 15px;
  }
}

/* Responsive hardening for premium homepage hero.
   The hero must fit browser chrome heights and avoid giant type on wide screens. */
.hero-premium__grid{
  grid-template-columns: minmax(0, 920px) minmax(260px, 340px);
  align-items: center;
}
.hero-overlay .wordmark{
  font-size: clamp(3.4rem, 6.4vw, 6.6rem);
  line-height: .94;
  max-width: 13.5ch;
  letter-spacing: -.045em;
}
.hero-overlay__inner{
  padding-block: clamp(7rem, 13vh, 8.8rem) clamp(2.25rem, 5vh, 4rem);
}
.hero-overlay__foot{
  max-width: 900px;
}
.hero-lead-panel{
  max-width: 46rem;
}
.hero-premium__card{
  margin-bottom: clamp(3.5rem, 8vh, 6.5rem);
}
@media (max-height: 820px) and (min-width: 900px){
  .hero-overlay .wordmark{
    font-size: clamp(3.2rem, 5.6vw, 5.5rem);
    line-height: .95;
  }
  .hero-overlay__inner{
    padding-block: 6.3rem 2.2rem;
  }
  .hero-overlay__foot{
    margin-top: 1.2rem;
  }
  .hero-lead-panel{
    padding: 1.15rem 1.35rem;
    font-size: 16px;
  }
  .hero-premium__card{
    padding: 1.15rem 1.3rem;
    margin-bottom: clamp(2rem, 5vh, 3.5rem);
  }
  .hero-premium__card ul{ margin-top: 1rem; gap: .5rem; }
  .hero-premium__card strong{ font-size: 1.3rem; }
}
@media (max-width: 1239px){
  .hero-premium__grid{
    grid-template-columns: minmax(0, 960px);
  }
  .hero-premium__card{
    display: none;
  }
}
@media (min-width: 1240px){
  .hero-overlay .wordmark{
    max-width: 12.8ch;
  }
}
@media (max-width: 1280px){
  .hero-overlay .wordmark{
    font-size: clamp(3rem, 7vw, 5.6rem);
    max-width: 11.5ch;
  }
}
@media (max-width: 900px){
  .hero-overlay .wordmark{
    font-size: clamp(2.75rem, 10vw, 4.6rem);
    max-width: 10.5ch;
  }
  .hero-overlay__inner{
    padding-block: 6.5rem 4.5rem;
  }
  .hero-lead-panel{
    max-width: 42rem;
  }
}


/* ---------- SEO content block for high-intent NCC searches ---------- */
.home-seo-intro{
  padding-top: clamp(3.5rem, 7vw, 6.5rem);
  background: linear-gradient(180deg, #fff 0%, #fbfaf8 100%);
}
.seo-intro{
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1fr);
  gap: clamp(1.8rem, 5vw, 4.5rem);
  align-items: start;
}
.seo-intro__body{
  display: grid;
  gap: 1rem;
  color: var(--gray-text);
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
  line-height: 1.68;
}
.seo-service-cards{
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(1.2rem, 2vw, 2rem);
  background: rgba(0,13,16,.12);
  border: 1px solid rgba(0,13,16,.12);
}
.seo-service-cards article{
  padding: clamp(1.3rem, 2.5vw, 2rem);
  background: rgba(255,255,255,.92);
}
.seo-service-cards h3{
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  margin-bottom: .75rem;
}
.seo-service-cards p{
  color: var(--gray-text);
  font-size: 16px;
  line-height: 1.58;
}
@media (max-width: 900px){
  .seo-intro,
  .seo-service-cards{
    grid-template-columns: 1fr;
  }
}


/* Fleet image integration: dark cutout asset blended with the section. */
.premium-fleet__media{
  background:
    radial-gradient(90% 75% at 50% 52%, rgba(188,113,85,.16), transparent 64%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
  border-color: rgba(255,255,255,.1);
  display: grid;
  place-items: center;
}
.premium-fleet__media img{
  width: min(118%, 920px);
  height: auto;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 34px 54px rgba(0,0,0,.42)) saturate(.96) contrast(1.08);
}
@media (max-width: 620px){
  .premium-fleet__media img{
    width: 132%;
  }
}


/* Fleet image final asset: real transparent PNG supplied by client. */
.premium-fleet__media{
  min-height: clamp(300px, 33vw, 460px);
  background:
    radial-gradient(85% 70% at 50% 62%, rgba(188,113,85,.18), transparent 68%),
    linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  border-color: rgba(255,255,255,.09);
  overflow: visible;
}
.premium-fleet__media img{
  width: min(112%, 980px);
  height: auto;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 34px 54px rgba(0,0,0,.46)) saturate(.96) contrast(1.06);
}
@media (max-width: 900px){
  .premium-fleet__media{
    overflow: hidden;
  }
  .premium-fleet__media img{
    width: 118%;
  }
}

/* Fleet PNG should float directly on the dark section: no visible frame. */
.premium-fleet__media{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}
.premium-fleet__media img{
  display: block;
}

/* Fleet section compact layout: align media and copy vertically, reduce height. */
.home-fleet{
  padding: clamp(3.2rem, 5.2vw, 5.25rem) 0 !important;
}
.premium-fleet .editorial-head{
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3.5rem);
  align-items: end;
  margin-bottom: clamp(1.8rem, 3vw, 2.6rem);
}
.premium-fleet .editorial-head h2{
  max-width: 13.5ch;
  font-size: clamp(2rem, 3.6vw, 4.6rem);
}
.premium-fleet .editorial-head .kicker{
  align-self: start;
  margin-bottom: 0;
}
.premium-fleet__grid{
  align-items: center !important;
  gap: clamp(1.5rem, 4vw, 4rem) !important;
}
.premium-fleet__media{
  min-height: 0 !important;
  align-self: center;
}
.premium-fleet__media img{
  width: min(104%, 760px) !important;
  margin-inline: auto;
}
.premium-fleet__details{
  align-content: center !important;
  gap: clamp(1.1rem, 2.2vw, 1.75rem) !important;
}
.premium-fleet__details .hairline-item{
  padding-top: clamp(1rem, 1.8vw, 1.45rem);
}
.premium-fleet__details .hairline-item h3{
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
}
@media (max-width: 900px){
  .premium-fleet .editorial-head,
  .premium-fleet__grid{
    grid-template-columns: 1fr;
  }
  .premium-fleet .editorial-head{
    margin-bottom: 1.4rem;
  }
  .premium-fleet .editorial-head h2{
    max-width: 18ch;
  }
  .premium-fleet__media img{
    width: min(118%, 720px) !important;
  }
}

/* Fleet section layout restore: previous spacious composition, keeping transparent PNG. */
.home-fleet{
  padding: clamp(3.5rem, 8vw, 7.5rem) 0 !important;
}
.premium-fleet .editorial-head{
  display: block !important;
  margin-bottom: 0 !important;
}
.premium-fleet .editorial-head h2{
  max-width: 22ch !important;
  font-size: clamp(1.9rem, 4vw, 3.3rem) !important;
}
.premium-fleet .editorial-head .kicker{
  margin-bottom: var(--gap-23) !important;
}
.premium-fleet__grid{
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: clamp(1.4rem, 4vw, 3rem) !important;
  align-items: stretch !important;
}
.premium-fleet__media{
  min-height: 360px !important;
  display: grid !important;
  place-items: center !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}
.premium-fleet__media img{
  width: min(112%, 900px) !important;
  height: auto !important;
  max-width: none !important;
  object-fit: contain !important;
}
.premium-fleet__details{
  display: grid !important;
  grid-template-columns: 1fr !important;
  align-content: end !important;
  gap: clamp(1.2rem, 3vw, 2rem) !important;
}
@media (max-width: 900px){
  .premium-fleet__grid{
    grid-template-columns: 1fr !important;
  }
  .premium-fleet__media{
    min-height: 260px !important;
    overflow: hidden !important;
  }
  .premium-fleet__media img{
    width: 118% !important;
  }
}

/* Fleet section final alignment: title closer, media and copy aligned at top. */
.home-fleet{
  padding: clamp(3.2rem, 5.5vw, 5.8rem) 0 clamp(3.4rem, 5.8vw, 6rem) !important;
}
.premium-fleet .editorial-head{
  margin-bottom: clamp(1.25rem, 2.2vw, 2rem) !important;
}
.premium-fleet .editorial-head h2{
  max-width: 17ch !important;
}
.premium-fleet__grid{
  align-items: start !important;
  gap: clamp(1.7rem, 4.5vw, 4.75rem) !important;
}
.premium-fleet__media{
  min-height: 0 !important;
  align-self: start !important;
  padding-top: clamp(.15rem, .8vw, .6rem);
}
.premium-fleet__media img{
  width: min(104%, 820px) !important;
  margin-inline: auto;
}
.premium-fleet__details{
  align-content: start !important;
  padding-top: clamp(.25rem, .9vw, .8rem);
}
.premium-fleet__details .hairline-item{
  padding-top: clamp(1rem, 1.6vw, 1.35rem) !important;
}
@media (min-width: 1400px){
  .premium-fleet__media img{
    width: min(100%, 780px) !important;
  }
}
@media (max-width: 900px){
  .premium-fleet .editorial-head{
    margin-bottom: 1rem !important;
  }
  .premium-fleet__media{
    padding-top: 0;
  }
  .premium-fleet__details{
    padding-top: 0;
  }
}

/* Fleet section gap correction: bring vehicle grid closer to title. */
.premium-fleet .editorial-head{
  margin-bottom: clamp(.55rem, 1vw, 1rem) !important;
}
.premium-fleet__grid{
  margin-top: 0 !important;
}


/* Fleet section hierarchy: white surface, dark typography, premium car cutout. */
.home-fleet{
  background: linear-gradient(180deg, #ffffff 0%, #f8f6f3 100%) !important;
  color: var(--ink) !important;
}
.home-fleet .kicker{
  color: var(--accent) !important;
}
.home-fleet .hairline-item,
.home-fleet .premium-fleet__details .hairline-item{
  border-color: rgba(0,13,16,.18) !important;
}
.home-fleet .hairline-item p,
.home-fleet .premium-fleet__details .hairline-item p{
  color: var(--gray-text) !important;
}
.home-fleet .premium-fleet__media img{
  filter: drop-shadow(0 34px 52px rgba(0,13,16,.18)) saturate(.98) contrast(1.04) !important;
}
.js-text-reveal{
  will-change: transform, opacity;
}
@media (prefers-reduced-motion: reduce){
  .js-text-reveal{
    will-change: auto;
  }
}


/* Fleet car emphasis: larger, horizontally reflected, slides in from left on viewport. */
.premium-fleet__media{
  justify-content: start !important;
}
.premium-fleet__media img{
  width: min(132%, 1040px) !important;
  transform: scaleX(-1);
  transform-origin: center;
}
.js-car-slide img{
  will-change: transform, opacity;
}
@media (min-width: 1400px){
  .premium-fleet__media img{
    width: min(128%, 1100px) !important;
  }
}
@media (max-width: 900px){
  .premium-fleet__media img{
    width: 132% !important;
  }
}
@media (prefers-reduced-motion: reduce){
  .js-car-slide img{
    will-change: auto;
  }
}


/* Fleet car scroll motion final: starts outside left viewport, ends inside media column. */
.premium-fleet__media{
  overflow: visible !important;
  justify-content: start !important;
  position: relative;
  z-index: 1;
}
.premium-fleet__details{
  position: relative;
  z-index: 2;
}
.premium-fleet__media img{
  width: min(96%, 720px) !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  opacity: 0;
  transform: translate3d(-120vw, 0, 0) scaleX(-1) !important;
  transition: transform 1.05s cubic-bezier(.16, 1, .3, 1), opacity .42s ease-out;
}
.js-car-slide.is-car-visible img{
  opacity: 1;
  transform: translate3d(0, 0, 0) scaleX(-1) !important;
}
@media (min-width: 1400px){
  .premium-fleet__media img{
    width: min(94%, 760px) !important;
  }
}
@media (max-width: 900px){
  .premium-fleet__media{
    overflow: hidden !important;
  }
  .premium-fleet__media img{
    width: min(112%, 720px) !important;
  }
}
@media (prefers-reduced-motion: reduce){
  .premium-fleet__media img,
  .js-car-slide.is-car-visible img{
    opacity: 1;
    transform: scaleX(-1) !important;
    transition: none !important;
  }
}


/* Fleet car scrubbed scroll motion: larger final size, soft interactive entrance. */
.js-car-slide{
  --car-progress: 0;
}
.premium-fleet__grid{
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr) !important;
}
.premium-fleet__media{
  overflow: visible !important;
  justify-content: start !important;
}
.premium-fleet__media img{
  width: min(116%, 920px) !important;
  margin-left: clamp(-1.25rem, -1.8vw, -.35rem) !important;
  margin-right: auto !important;
  opacity: calc(.16 + (var(--car-progress) * .84));
  transform: translate3d(calc((1 - var(--car-progress)) * -72vw), 0, 0) scaleX(-1) !important;
  transition: opacity .18s linear;
}
@media (min-width: 1500px){
  .premium-fleet__media img{
    width: min(118%, 1040px) !important;
  }
}
@media (max-width: 1100px){
  .premium-fleet__grid{
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  }
  .premium-fleet__media img{
    width: min(110%, 760px) !important;
  }
}
@media (max-width: 900px){
  .premium-fleet__grid{
    grid-template-columns: 1fr !important;
  }
  .premium-fleet__media{
    overflow: hidden !important;
  }
  .premium-fleet__media img{
    width: min(124%, 760px) !important;
    margin-left: -8% !important;
  }
}
@media (prefers-reduced-motion: reduce){
  .js-car-slide{
    --car-progress: 1;
  }
  .premium-fleet__media img{
    opacity: 1;
    transform: scaleX(-1) !important;
  }
}

/* Fleet car final placement: keep large size but stop before text column. */
.premium-fleet__media img{
  margin-left: clamp(-4rem, -5vw, -2rem) !important;
}
@media (max-width: 900px){
  .premium-fleet__media img{
    margin-left: -10% !important;
  }
}

/* Fleet section alignment refinement: tighter title-to-car rhythm and centered visual axis. */
.home-fleet{
  padding-top: clamp(3rem, 6vw, 5rem) !important;
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem) !important;
}
.home-fleet .editorial-head{
  margin-bottom: clamp(1rem, 2.1vw, 1.85rem) !important;
}
.home-fleet .editorial-head h2{
  max-width: 13.8ch !important;
  margin-bottom: 0 !important;
}
.home-fleet .premium-fleet__grid{
  align-items: center !important;
  column-gap: clamp(2rem, 4.2vw, 4.25rem) !important;
  row-gap: clamp(1.5rem, 3vw, 2.5rem) !important;
  margin-top: clamp(.75rem, 1.6vw, 1.35rem) !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr) !important;
}
.home-fleet .premium-fleet__media{
  align-self: center !important;
  min-height: clamp(310px, 30vw, 430px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
}
.home-fleet .premium-fleet__media img{
  width: min(126%, 980px) !important;
  margin-left: clamp(-1.25rem, -2.2vw, -.25rem) !important;
  margin-right: 0 !important;
}
.home-fleet .premium-fleet__details{
  align-self: center !important;
  margin-top: clamp(.25rem, 1vw, .75rem) !important;
}
@media (min-width: 1500px){
  .home-fleet .premium-fleet__media img{
    width: min(128%, 1080px) !important;
  }
}
@media (max-width: 1100px){
  .home-fleet .premium-fleet__grid{
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    column-gap: clamp(1.5rem, 3vw, 2.5rem) !important;
  }
  .home-fleet .premium-fleet__media img{
    width: min(122%, 820px) !important;
    margin-left: -5% !important;
  }
}
@media (max-width: 900px){
  .home-fleet .premium-fleet__grid{
    grid-template-columns: 1fr !important;
    margin-top: 1rem !important;
  }
  .home-fleet .premium-fleet__media{
    min-height: auto !important;
    justify-content: flex-start !important;
    overflow: hidden !important;
  }
  .home-fleet .premium-fleet__media img{
    width: min(132%, 760px) !important;
    margin-left: -14% !important;
  }
}

/* Fleet section final spacing: wider canvas, tighter title/car relation, reduced media-details gap. */
.home-fleet .premium-fleet{
  max-width: min(100% - 4rem, 1380px) !important;
}
.home-fleet .editorial-head{
  max-width: 100% !important;
  margin-bottom: clamp(.35rem, .9vw, .85rem) !important;
}
.home-fleet .editorial-head h2{
  max-width: 15.8ch !important;
  font-size: clamp(3.35rem, 5.9vw, 5.75rem) !important;
  line-height: .94 !important;
}
.home-fleet .premium-fleet__grid{
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr) !important;
  column-gap: clamp(.75rem, 1.8vw, 2rem) !important;
  margin-top: clamp(.2rem, .65vw, .55rem) !important;
}
.home-fleet .premium-fleet__media{
  min-height: clamp(300px, 27vw, 390px) !important;
  justify-content: flex-start !important;
}
.home-fleet .premium-fleet__media img{
  width: min(132%, 1060px) !important;
  margin-left: clamp(-2rem, -2.6vw, -.75rem) !important;
}
.home-fleet .premium-fleet__details{
  max-width: 600px !important;
  margin-left: clamp(-.5rem, -1.1vw, 0rem) !important;
}
@media (min-width: 1500px){
  .home-fleet .premium-fleet{
    max-width: min(100% - 5rem, 1500px) !important;
  }
  .home-fleet .premium-fleet__media img{
    width: min(134%, 1180px) !important;
  }
}
@media (max-width: 1100px){
  .home-fleet .premium-fleet{
    max-width: min(100% - 2rem, 1180px) !important;
  }
  .home-fleet .editorial-head h2{
    font-size: clamp(2.75rem, 6vw, 4.4rem) !important;
  }
  .home-fleet .premium-fleet__grid{
    column-gap: 1rem !important;
  }
  .home-fleet .premium-fleet__media img{
    width: min(128%, 860px) !important;
    margin-left: -8% !important;
  }
}
@media (max-width: 900px){
  .home-fleet .premium-fleet{
    max-width: min(100% - 1.5rem, 760px) !important;
  }
  .home-fleet .editorial-head h2{
    max-width: 12.5ch !important;
    font-size: clamp(2.45rem, 12vw, 4rem) !important;
  }
  .home-fleet .premium-fleet__grid{
    margin-top: .35rem !important;
    row-gap: .75rem !important;
  }
  .home-fleet .premium-fleet__media img{
    width: min(138%, 760px) !important;
    margin-left: -18% !important;
  }
  .home-fleet .premium-fleet__details{
    margin-left: 0 !important;
  }
}

/* Fleet car endpoint: large vehicle, tighter but non-overlapping relation with copy column. */
.home-fleet .premium-fleet__media img{
  --car-final-x: -13vw;
  transform: translate3d(calc(var(--car-final-x) + ((1 - var(--car-progress)) * -72vw)), 0, 0) scaleX(-1) !important;
}
@media (max-width: 1100px){
  .home-fleet .premium-fleet__media img{
    --car-final-x: -10vw;
  }
}
@media (max-width: 900px){
  .home-fleet .premium-fleet__media img{
    --car-final-x: 0px;
    transform: translate3d(calc((1 - var(--car-progress)) * -72vw), 0, 0) scaleX(-1) !important;
  }
}
@media (prefers-reduced-motion: reduce){
  .home-fleet .premium-fleet__media img{
    transform: translate3d(var(--car-final-x), 0, 0) scaleX(-1) !important;
  }
}

/* Fleet section corrective pass: compact vertical rhythm and no text overlap. */
.home-fleet{
  padding-top: clamp(2.5rem, 4.5vw, 4rem) !important;
  padding-bottom: clamp(3rem, 5vw, 4.75rem) !important;
}
.home-fleet .premium-fleet{
  max-width: min(100% - 3rem, 1420px) !important;
}
.home-fleet .editorial-head{
  margin-bottom: 0 !important;
}
.home-fleet .editorial-head h2{
  max-width: 15ch !important;
  font-size: clamp(3rem, 4.9vw, 5rem) !important;
  line-height: .95 !important;
}
.home-fleet .premium-fleet__grid{
  grid-template-columns: minmax(0, .98fr) minmax(460px, 1.02fr) !important;
  column-gap: clamp(1.75rem, 3vw, 3.25rem) !important;
  align-items: center !important;
  margin-top: clamp(-1.35rem, -1.8vw, -.55rem) !important;
}
.home-fleet .premium-fleet__media{
  min-height: clamp(280px, 24vw, 360px) !important;
  justify-content: flex-start !important;
  align-items: center !important;
  overflow: visible !important;
}
.home-fleet .premium-fleet__media img{
  --car-final-x: 0px !important;
  width: min(108%, 840px) !important;
  max-width: none !important;
  margin-left: clamp(-1.25rem, -1.4vw, -.5rem) !important;
  transform: translate3d(calc(var(--car-final-x) + ((1 - var(--car-progress)) * -72vw)), 0, 0) scaleX(-1) !important;
}
.home-fleet .premium-fleet__details{
  max-width: 620px !important;
  margin-left: 0 !important;
  align-self: center !important;
}
@media (min-width: 1600px){
  .home-fleet .premium-fleet{
    max-width: min(100% - 5rem, 1500px) !important;
  }
  .home-fleet .premium-fleet__media img{
    width: min(110%, 900px) !important;
  }
}
@media (max-width: 1200px){
  .home-fleet .premium-fleet__grid{
    grid-template-columns: minmax(0, .95fr) minmax(390px, 1.05fr) !important;
    column-gap: 1.5rem !important;
  }
  .home-fleet .premium-fleet__media img{
    width: min(106%, 760px) !important;
  }
}
@media (max-width: 900px){
  .home-fleet .premium-fleet{
    max-width: min(100% - 1.5rem, 760px) !important;
  }
  .home-fleet .editorial-head h2{
    max-width: 12.8ch !important;
    font-size: clamp(2.35rem, 11vw, 3.8rem) !important;
  }
  .home-fleet .premium-fleet__grid{
    grid-template-columns: 1fr !important;
    margin-top: .35rem !important;
    row-gap: .75rem !important;
  }
  .home-fleet .premium-fleet__media{
    min-height: auto !important;
    overflow: hidden !important;
  }
  .home-fleet .premium-fleet__media img{
    width: min(128%, 720px) !important;
    margin-left: -15% !important;
  }
}

/* ---------- bento service grid (homepage) ---------- */
.bento-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(178px, auto);
  grid-auto-flow: row dense;
  gap: clamp(.8rem, 1.4vw, 1.15rem);
}
.bento-tile{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(1.25rem, 2vw, 1.8rem);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.035);
  transition: border-color .35s var(--ease-out), background .35s var(--ease-out), transform .35s var(--ease-out);
}
.bento-tile--xl{ grid-column: span 2; grid-row: span 2; min-height: 380px; }
.bento-tile--wide{ grid-column: span 2; }
.bento-tile:hover{ border-color: rgba(217,148,120,.55); background: rgba(255,255,255,.07); transform: translateY(-3px); }
.bento-tile:focus-visible{ outline: 2px solid var(--accent); outline-offset: 3px; }

.bento-tile__bg{
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  transform: scale(1.02);
  transition: transform .9s var(--ease-out);
  filter: saturate(.85) contrast(1.02);
}
.bento-tile:hover .bento-tile__bg{ transform: scale(1.08); }
.bento-tile__scrim{
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,13,16,.30) 0%, rgba(0,13,16,.38) 38%, rgba(0,13,16,.82) 68%, rgba(0,13,16,.96) 100%);
}
.bento-tile__shine{
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,.15) 50%, transparent 58%);
  transform: translateX(-135%);
}
.bento-tile:hover .bento-tile__shine{ transform: translateX(135%); transition: transform 1s var(--ease-out); }
.bento-tile__body{ position: relative; z-index: 3; }
.bento-tile__kicker{
  display: block; color: var(--accent); text-transform: uppercase;
  font-size: 11.5px; font-weight: 800; letter-spacing: .15em; margin-bottom: .6rem;
}
.bento-tile--media .bento-tile__kicker{
  display: inline-block;
  color: #e6a488;
  background: rgba(0,13,16,.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 1.1em;
  padding: .32em .85em;
  margin-bottom: .75rem;
}
.bento-tile__body h3{ color: var(--white); font-size: clamp(1.2rem, 1.7vw, 1.55rem); font-weight: 700; margin: 0 0 .5rem; letter-spacing: -.02em; }
.bento-tile--xl .bento-tile__body h3{ font-size: clamp(1.5rem, 2.3vw, 2.1rem); }
.bento-tile__body p{ color: #eceae9; font-size: 16px; line-height: 1.55; margin: 0; max-width: 46ch; }
.bento-tile--media .bento-tile__body h3,
.bento-tile--media .bento-tile__body p{ text-shadow: 0 1px 14px rgba(0,13,16,.55); }
.bento-tile__arrow{
  position: absolute; top: 1.15rem; right: 1.25rem; z-index: 3;
  color: var(--accent); font-size: 1.25rem; line-height: 1;
  transition: transform .3s var(--ease-out);
}
.bento-tile:hover .bento-tile__arrow{ transform: translateX(5px); }

/* Featured tile: persistent accent hairline + periodic ambient shimmer. */
.bento-tile--featured{ border-color: rgba(188,113,85,.5); }
.bento-tile--featured .bento-tile__shine{ animation: bentoShine 7s var(--ease-out) infinite; }
@keyframes bentoShine{
  0%{ transform: translateX(-135%); }
  30%{ transform: translateX(135%); }
  100%{ transform: translateX(135%); }
}
@media (prefers-reduced-motion: reduce){
  .bento-tile--featured .bento-tile__shine{ animation: none; }
}

@media (max-width: 980px){
  .bento-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: auto; }
  .bento-tile{ min-height: 165px; }
  .bento-tile--xl{ grid-column: span 2; grid-row: auto; min-height: 300px; }
}
@media (max-width: 620px){
  .bento-grid{ grid-template-columns: 1fr; gap: .8rem; }
  .bento-tile--xl, .bento-tile--wide{ grid-column: span 1; }
  .bento-tile--xl{ min-height: 250px; }
  .bento-tile{ min-height: 0; }
}

/* ---------- interactive hero pointer glow ---------- */
.hero-overlay__glow{
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0;
  transition: opacity .6s var(--ease-out);
  background: radial-gradient(380px circle at var(--glow-x, 50%) var(--glow-y, 40%),
    rgba(230,164,136,.34) 0%, rgba(188,113,85,.15) 42%, transparent 70%);
  mix-blend-mode: screen;
  will-change: background;
}
.hero-overlay__glow.is-active{ opacity: 1; }

/* ============================================================
   PREMIUM CONTACT FORM — panelled form with grouped sections,
   native date/time pickers and a dark direct-contact card.
   ============================================================ */
.contact-layout{ grid-template-columns: 1.35fr .85fr; }

.form-panel{
  background: linear-gradient(180deg, #fdfcfb 0%, #faf8f6 100%);
  border: 1px solid rgba(0,13,16,.12);
  padding: clamp(1.5rem, 3vw, 2.75rem);
}
.form-panel__title{ font-size: clamp(1.5rem, 2.2vw, 1.9rem); margin-top: .35rem; letter-spacing: -.02em; }
.form-panel__lede{ margin-top: .6rem; color: var(--gray-text); font-size: 15.5px; }
.form-panel form{ margin-top: 1.9rem; }

.form-section{ border: 0; padding: 0; margin: 0 0 2.1rem; min-width: 0; }
.form-section:last-of-type{ margin-bottom: 1.4rem; }
.form-section__mark{
  display: block; width: 100%;
  padding-bottom: .65rem; margin-bottom: 1.3rem;
  border-bottom: 1px solid rgba(0,13,16,.12);
  color: var(--accent);
  font-size: 12.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .16em;
}

.field label .req{ color: var(--accent); }
.field label .opt{
  font-weight: 500; color: var(--gray-text); font-size: 12.5px;
  text-transform: uppercase; letter-spacing: .08em; margin-left: .35rem;
}

/* refined inputs: hairline resting state, ink+accent focus */
.form-panel .field input,
.form-panel .field select,
.form-panel .field textarea{
  border: 1px solid rgba(0,13,16,.28);
  background: var(--white);
  padding: .95rem 1.05rem;
  transition: border-color .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.form-panel .field input:hover,
.form-panel .field select:hover,
.form-panel .field textarea:hover{ border-color: rgba(0,13,16,.55); }
.form-panel .field input:focus,
.form-panel .field select:focus,
.form-panel .field textarea:focus{
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(188,113,85,.25);
}
.form-panel .field input::placeholder,
.form-panel .field textarea::placeholder{ color: #9b9a99; }

/* selects: custom chevron, no native arrow */
.form-panel .field select{
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23000d10' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
  cursor: pointer;
}

/* native date/time pickers, aligned with the text inputs */
.form-panel .field input[type="date"],
.form-panel .field input[type="time"]{
  min-height: 54px;
  cursor: pointer;
  -webkit-appearance: none;
}
.form-panel .field input[type="date"]::-webkit-calendar-picker-indicator,
.form-panel .field input[type="time"]::-webkit-calendar-picker-indicator{
  opacity: .75; cursor: pointer;
}

.field-row--3{ grid-template-columns: 1.2fr 1fr 1fr; }
@media (max-width: 640px){ .field-row--3{ grid-template-columns: 1fr; } }

.form-submit{
  width: 100%;
  justify-content: center;
  gap: .6rem;
  padding: 17px 26px;
  font-size: 17px;
}
.form-submit span{ transition: transform .3s var(--ease-out); }
.form-submit:hover span{ transform: translateX(5px); }
.form-reassurance{
  margin-top: .9rem; text-align: center;
  color: var(--gray-text); font-size: 14px;
}

/* dark direct-contact card in the aside */
.contact-aside{ position: sticky; top: 96px; }
.contact-card{
  background: linear-gradient(160deg, var(--dark-2) 0%, var(--ink) 100%);
  color: var(--white);
  padding: clamp(1.5rem, 2.5vw, 2.1rem);
}
.contact-card__mark{
  display: block; color: #d99478;
  font-size: 12.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .16em;
}
.contact-card__title{ margin-top: .8rem; font-size: 1.35rem; font-weight: 700; letter-spacing: -.02em; line-height: 1.2; }
.contact-card__phone{
  display: block; margin-top: 1rem;
  font-size: clamp(1.4rem, 2vw, 1.7rem); font-weight: 800; letter-spacing: -.02em;
  color: var(--white);
}
.contact-card__phone:hover{ color: #d99478; }
.contact-card__hint{ margin-top: .7rem; color: var(--bone); font-size: 14.5px; line-height: 1.5; }
.contact-card__actions{ display: flex; gap: .7rem; margin-top: 1.4rem; flex-wrap: wrap; }
.contact-card .btn-ghost{ color: var(--white); border-color: rgba(255,255,255,.65); }
.contact-card .btn-ghost:hover{ background: var(--white); color: var(--ink); }

.contact-aside .contact-info{ margin-top: 2.2rem; }
.contact-info__small{ font-size: 1.02rem !important; font-weight: 600 !important; color: var(--gray-text); }

@media (max-width: 900px){
  .contact-layout{ grid-template-columns: 1fr; }
  .contact-aside{ position: static; }
}

/* Premium date/time picker — shadcn-inspired composition for the PHP form. */
.field-picker{
  position: relative;
  min-width: 0;
}
.premium-picker-trigger{
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .85rem;
  border: 1px solid rgba(0,13,16,.24);
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf8 100%);
  color: var(--ink);
  padding: .95rem 1rem;
  font: inherit;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
  transition: border-color .22s var(--ease-out), box-shadow .22s var(--ease-out), transform .22s var(--ease-out), background .22s var(--ease-out);
}
.premium-picker-trigger:hover{
  border-color: rgba(0,13,16,.55);
  background: #ffffff;
}
.premium-picker-trigger:focus-visible,
.premium-picker-trigger[aria-expanded="true"]{
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(188,113,85,.22), 0 18px 40px rgba(0,13,16,.08);
}
.premium-picker-trigger[aria-expanded="true"]{
  transform: translateY(-1px);
}
.premium-picker-trigger__text{
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.premium-picker-trigger.is-empty .premium-picker-trigger__text{
  color: #8b8580;
  font-weight: 500;
}
.premium-picker-trigger__icon{
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(188,113,85,.11);
  color: var(--ink);
}
.premium-picker-trigger__icon svg{
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.premium-date-popover,
.premium-time-popover{
  position: absolute;
  z-index: 60;
  left: 0;
  top: calc(100% + 10px);
  width: min(360px, calc(100vw - 2rem));
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(0,13,16,.12);
  box-shadow: 0 24px 70px rgba(0,13,16,.18), 0 8px 22px rgba(0,13,16,.08);
  padding: 14px;
  backdrop-filter: blur(18px);
  animation: premiumPickerIn .18s var(--ease-out) both;
}
.premium-time-popover{
  width: min(390px, calc(100vw - 2rem));
}
@keyframes premiumPickerIn{
  from{ opacity: 0; transform: translateY(8px) scale(.985); }
  to{ opacity: 1; transform: translateY(0) scale(1); }
}
.premium-date-popover__head,
.premium-time-popover__head,
.premium-picker-foot{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.premium-date-title{
  font-weight: 800;
  letter-spacing: -.02em;
  text-transform: capitalize;
}
.premium-date-nav,
.premium-picker-foot button,
.premium-time-popover__head button{
  min-width: 38px;
  min-height: 38px;
  border: 1px solid rgba(0,13,16,.12);
  background: #fbfaf8;
  color: var(--ink);
  font: inherit;
  font-weight: 750;
  cursor: pointer;
  transition: background .2s var(--ease-out), border-color .2s var(--ease-out), color .2s var(--ease-out);
}
.premium-date-nav{
  border-radius: 999px;
  font-size: 22px;
  line-height: 1;
}
.premium-date-nav:hover,
.premium-picker-foot button:hover,
.premium-time-popover__head button:hover{
  background: var(--ink);
  border-color: var(--ink);
  color: #ffffff;
}
.premium-date-weekdays,
.premium-date-grid{
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}
.premium-date-weekdays{
  margin: 14px 0 7px;
  color: #77716d;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
}
.premium-date-grid button,
.premium-date-grid span{
  height: 38px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-size: 13px;
}
.premium-date-grid button{
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background .18s var(--ease-out), color .18s var(--ease-out), box-shadow .18s var(--ease-out);
}
.premium-date-grid button:hover{
  background: rgba(188,113,85,.14);
}
.premium-date-grid button.is-today{
  box-shadow: inset 0 0 0 1px rgba(188,113,85,.7);
}
.premium-date-grid button.is-selected{
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0,13,16,.2);
}
.premium-date-grid button:disabled{
  color: #c8c2be;
  cursor: not-allowed;
  background: transparent;
  box-shadow: none;
}
.premium-date-grid span{
  color: transparent;
}
.premium-picker-foot{
  border-top: 1px solid rgba(0,13,16,.1);
  margin-top: 12px;
  padding-top: 12px;
}
.premium-picker-foot button,
.premium-time-popover__head button{
  border-radius: 999px;
  padding: 0 14px;
  font-size: 12px;
}
.premium-time-popover__head{
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 12px;
}
.premium-time-grid{
  max-height: 248px;
  overflow: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  padding-right: 4px;
  overscroll-behavior: contain;
}
.premium-time-grid::-webkit-scrollbar{ width: 8px; }
.premium-time-grid::-webkit-scrollbar-thumb{ background: rgba(0,13,16,.22); border-radius: 99px; }
.premium-time-option{
  min-height: 38px;
  border: 1px solid rgba(0,13,16,.1);
  border-radius: 999px;
  background: #fbfaf8;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition: background .18s var(--ease-out), color .18s var(--ease-out), border-color .18s var(--ease-out), transform .18s var(--ease-out);
}
.premium-time-option:hover{
  background: rgba(188,113,85,.14);
  border-color: rgba(188,113,85,.35);
}
.premium-time-option.is-selected{
  background: var(--ink);
  border-color: var(--ink);
  color: #ffffff;
  transform: translateY(-1px);
}
@media (max-width: 760px){
  .premium-date-popover,
  .premium-time-popover{
    width: min(100%, calc(100vw - 2rem));
  }
  .premium-time-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (prefers-reduced-motion: reduce){
  .premium-date-popover,
  .premium-time-popover{ animation: none; }
  .premium-picker-trigger,
  .premium-date-grid button,
  .premium-time-option{ transition: none; }
}

/* Premium picker compact polish inside the 3-column contact row. */
.form-panel .field-row--3{
  grid-template-columns: minmax(150px, 1.05fr) minmax(150px, 1.05fr) minmax(130px, .9fr);
}
.premium-picker-trigger{
  padding-inline: .9rem .8rem;
  font-size: 15.5px;
}
.premium-picker-trigger__icon{
  width: 30px;
  height: 30px;
}
.premium-picker-trigger__icon svg{
  width: 16px;
  height: 16px;
}
@media (max-width: 760px){
  .form-panel .field-row--3{
    grid-template-columns: 1fr;
  }
}

/* CodePen-inspired premium pickers: clean calendar and hour/minute spinner. */
.premium-date-popover,
.premium-time-popover{
  border: 0 !important;
  border-radius: 2px !important;
  background: #ffffff !important;
  box-shadow: 0 18px 45px rgba(0,0,0,.16) !important;
  color: #222 !important;
}
.premium-date-popover{
  width: 315px !important;
  padding: 18px 22px 16px !important;
}
.premium-time-popover--spinner{
  width: 320px !important;
  padding: 24px 24px 18px !important;
}
.premium-date-popover__head{
  margin-bottom: 24px !important;
}
.premium-date-title{
  color: #222 !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  text-transform: capitalize !important;
}
.premium-date-nav{
  border: 0 !important;
  background: transparent !important;
  color: #222 !important;
  min-width: 28px !important;
  min-height: 28px !important;
  font-size: 28px !important;
  font-weight: 400 !important;
  border-radius: 0 !important;
}
.premium-date-nav:hover{
  color: var(--accent) !important;
  background: transparent !important;
}
.premium-date-weekdays{
  margin: 0 0 10px !important;
  color: #c9c9c9 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}
.premium-date-grid{
  gap: 7px 8px !important;
}
.premium-date-grid button,
.premium-date-grid span{
  height: 32px !important;
  border-radius: 999px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
}
.premium-date-grid button:hover{
  background: rgba(33,159,160,.12) !important;
}
.premium-date-grid button.is-selected{
  background: #21a6a7 !important;
  color: #ffffff !important;
  box-shadow: none !important;
  position: relative;
}
.premium-date-grid button.is-selected::after{
  content: '';
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}
.premium-date-grid button.is-today:not(.is-selected){
  box-shadow: inset 0 0 0 1px rgba(33,166,167,.5) !important;
}
.premium-date-grid button:disabled{
  color: #d6d6d6 !important;
}
.premium-picker-foot{
  border-top: 0 !important;
  justify-content: center !important;
  margin-top: 16px !important;
  padding-top: 4px !important;
}
.premium-picker-foot [data-date-clear]{ display: none !important; }
.premium-picker-foot button{
  border: 0 !important;
  background: transparent !important;
  color: #222 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  min-height: 32px !important;
}
.premium-picker-foot button:hover{
  color: var(--accent) !important;
  background: transparent !important;
}
.premium-time-modal__head{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 26px;
}
.premium-time-modal__head strong{
  grid-column: 2;
  color: #222;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}
.premium-time-close{
  grid-column: 3;
  justify-self: end;
  border: 0;
  background: transparent;
  color: #222;
  font: inherit;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.premium-time-spinner{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 22px;
}
.premium-time-unit{
  display: grid;
  justify-items: center;
  gap: 0;
}
.premium-time-unit > span{
  margin-bottom: 14px;
  color: #222;
  font-size: 17px;
  font-weight: 500;
}
.premium-time-unit button,
.premium-time-unit output{
  width: 78px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dde1e5;
  background: #f2f2f2;
  color: #222;
  font: inherit;
}
.premium-time-unit button{
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: background .18s var(--ease-out), color .18s var(--ease-out);
}
.premium-time-unit button:first-of-type{
  border-radius: 4px 4px 0 0;
}
.premium-time-unit button:last-of-type{
  border-radius: 0 0 4px 4px;
}
.premium-time-unit button:hover{
  background: #e9f6f6;
  color: #168889;
}
.premium-time-unit output{
  min-height: 72px;
  border-top: 0;
  border-bottom: 0;
  background: #ffffff;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: .02em;
}
.premium-time-separator{
  align-self: center;
  padding-top: 28px;
  color: #222;
  font-size: 34px;
  line-height: 1;
}
.premium-time-confirm{
  width: 100%;
  min-height: 46px;
  margin-top: 34px;
  border: 0;
  background: transparent;
  color: #222;
  font: inherit;
  font-size: 17px;
  cursor: pointer;
}
.premium-time-confirm:hover{
  color: var(--accent);
}
.premium-native-select{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.premium-select-control{
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(0,13,16,.22);
  border-radius: 0;
  background:
    linear-gradient(45deg, transparent 50%, currentColor 50%) calc(100% - 23px) 50% / 7px 7px no-repeat,
    linear-gradient(135deg, currentColor 50%, transparent 50%) calc(100% - 18px) 50% / 7px 7px no-repeat,
    #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  padding: 0 52px 0 18px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color .18s var(--ease-out), box-shadow .18s var(--ease-out), background-color .18s var(--ease-out);
}
.premium-select-control:hover,
.premium-select-control:focus{
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(195,113,82,.12);
  outline: 0;
}
.premium-select-popover{
  position: absolute;
  z-index: 30;
  left: 0;
  top: calc(100% + 10px);
  width: min(315px, 100%);
  padding: 8px;
  border: 0 !important;
  border-radius: 2px !important;
  background: #ffffff !important;
  box-shadow: 0 18px 45px rgba(0,0,0,.16) !important;
  color: #222 !important;
}
.premium-select-option{
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #222;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  padding: 0 16px;
  cursor: pointer;
  transition: background .18s var(--ease-out), color .18s var(--ease-out);
}
.premium-select-option:hover{
  background: rgba(33,159,160,.12);
}
.premium-select-option.is-selected{
  background: #21a6a7;
  color: #fff;
}
@media (max-width: 760px){
  .premium-date-popover,
  .premium-time-popover--spinner,
  .premium-select-popover{
    width: min(315px, calc(100vw - 2rem)) !important;
    max-width: calc(100vw - 2rem) !important;
  }
}

/* Inner-page mobile hero: proportional, not fullscreen. */
@media (max-width: 620px){
  .hero-overlay.hero-overlay--compact{
    min-height: clamp(430px, 64svh, 560px);
    align-items: flex-end;
  }
  .hero-overlay.hero-overlay--compact .hero-overlay__inner{
    padding-block: 6.25rem 2.5rem;
  }
  .hero-overlay.hero-overlay--compact .page-title{
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1.05;
    max-width: 11ch;
  }
  .hero-overlay.hero-overlay--compact .hero-lede{
    margin-top: .95rem;
    max-width: 24ch;
    font-size: 17px;
    line-height: 1.45;
  }
  .hero-overlay.hero-overlay--compact .hero-overlay__bg{
    inset: -6% 0;
    height: 112%;
  }
  .hero-overlay.hero-overlay--compact .hero-overlay__bg img{
    object-position: 52% 42%;
  }
}

/* Premium CTA system: shared background image, readable scrim and subtle parallax. */
.premium-cta{
  position: relative;
  isolation: isolate;
  overflow: clip;
  min-height: clamp(360px, 36vw, 500px);
  display: flex;
  align-items: center;
  padding: 0;
  color: var(--white);
  background: var(--dark-1);
}
.premium-cta__bg{
  position: absolute;
  inset: -14% 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0,13,16,.28), rgba(0,13,16,.08)),
    url('../images/hero.jpeg') center 58% / cover no-repeat;
  transform: translate3d(0, var(--cta-parallax-y, 0px), 0) scale(1.06);
  will-change: transform;
}
.premium-cta__scrim{
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 90% at 14% 50%, rgba(195,113,82,.26), rgba(195,113,82,0) 64%),
    linear-gradient(90deg, rgba(0,13,16,.94) 0%, rgba(0,13,16,.78) 44%, rgba(9,12,24,.54) 100%);
}
.premium-cta::after{
  content: '';
  position: absolute;
  inset: clamp(18px, 2vw, 28px);
  z-index: -1;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  pointer-events: none;
}
.premium-cta__inner{
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: start;
  align-items: start;
  gap: clamp(1.3rem, 3vw, 2rem);
  padding-block: clamp(4rem, 7vw, 6rem);
}
.premium-cta__inner::before{
  content: '';
  position: absolute;
  top: clamp(1rem, 2vw, 1.5rem);
  bottom: clamp(1rem, 2vw, 1.5rem);
  left: var(--edge);
  width: min(680px, calc(100% - var(--edge) * 2));
  z-index: -1;
  border-left: 2px solid var(--accent);
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 35px 90px -45px rgba(0,0,0,.75);
  backdrop-filter: blur(14px) saturate(135%);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
}
.premium-cta .kicker{
  color: #d79275;
}
.premium-cta .editorial-head,
.premium-cta .btn-row{
  padding-left: clamp(1.35rem, 2.2vw, 2rem);
}
.premium-cta h2{
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3.45rem);
  line-height: 1.06;
  letter-spacing: -.03em;
}
.premium-cta .btn-row{
  justify-content: flex-start;
  align-items: center;
  margin-top: .3rem;
}
.premium-cta .btn{
  min-height: 54px;
  box-shadow: 0 18px 42px -22px rgba(0,0,0,.75);
}
.premium-cta .btn-ghost{
  color: var(--white);
  border-color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.premium-cta .btn-ghost:hover{
  background: var(--white);
  color: var(--ink);
}
@media (max-width: 860px){
  .premium-cta{
    min-height: auto;
  }
  .premium-cta__inner{
    grid-template-columns: 1fr;
    align-items: start;
    padding-block: clamp(3.6rem, 12vw, 5rem);
  }
  .premium-cta__inner::before{
    inset: .9rem var(--edge);
    width: auto;
  }
  .premium-cta .btn-row{
    justify-content: flex-start;
    padding-left: 0;
  }
  .premium-cta .editorial-head{ padding-left: 0; }
  .premium-cta .btn{
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce){
  .premium-cta__bg{
    transform: none !important;
  }
}

/* CTA banner final structure: heading + supporting text + two side-by-side actions. */
.premium-cta{
  min-height: auto;
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}
.premium-cta__bg{
  background:
    linear-gradient(90deg, rgba(0,13,16,.24), rgba(0,13,16,.08)),
    url('../images/hero.jpeg') center 58% / cover no-repeat;
}
.premium-cta__scrim{
  background:
    radial-gradient(70% 110% at 24% 45%, rgba(195,113,82,.24), rgba(195,113,82,0) 62%),
    linear-gradient(90deg, rgba(0,13,16,.94) 0%, rgba(0,13,16,.82) 58%, rgba(7,9,20,.66) 100%);
}
.premium-cta::after{
  inset: clamp(16px, 1.8vw, 24px);
  border-radius: 28px;
}
.premium-cta__inner,
.premium-final__inner{
  display: block;
  max-width: 880px;
  padding: clamp(2rem, 4.5vw, 3.5rem);
  border: 1px solid rgba(255,255,255,.16);
  border-left: 2px solid var(--accent);
  border-radius: 0 28px 28px 0;
  background: linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.045));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 35px 90px -45px rgba(0,0,0,.75);
  backdrop-filter: blur(16px) saturate(135%);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
}
.premium-cta__inner::before{
  display: none;
}
.premium-cta .editorial-head,
.premium-cta .btn-row{
  padding-left: 0;
}
.premium-cta h2{
  max-width: 17ch !important;
  font-size: clamp(2.25rem, 4.4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.premium-cta__text{
  max-width: 56ch;
  margin-top: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.82);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
}
.premium-cta .btn-row{
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(.8rem, 1.5vw, 1.05rem);
  margin-top: clamp(1.7rem, 3vw, 2.4rem);
}
.premium-cta .btn{
  min-height: 58px;
  justify-content: center;
  white-space: nowrap;
}
.premium-cta .btn-accent{
  background: #c37152;
  border-color: #c37152;
}
.premium-cta .btn-accent:hover{
  background: #a95f43;
  border-color: #a95f43;
}
@media (max-width: 700px){
  .premium-cta{
    padding: clamp(3.2rem, 12vw, 4.5rem) 0;
  }
  .premium-cta__inner,
  .premium-final__inner{
    border-radius: 0 22px 22px 0;
    padding: 1.7rem 1.25rem;
  }
  .premium-cta h2{
    max-width: 12ch !important;
    font-size: clamp(2rem, 9vw, 2.65rem);
  }
  .premium-cta__text{
    font-size: 16px;
  }
  .premium-cta .btn-row{
    flex-wrap: wrap;
  }
  .premium-cta .btn{
    flex: 1 1 100%;
    width: 100%;
    white-space: normal;
  }
}
@media (min-width: 701px){
  .premium-cta .btn{
    flex: 0 0 auto;
  }
}

/* GSAP parallax CTA, based on the provided reference. */
.premium-cta{
  height: clamp(380px, 38vw, 470px);
  min-height: 380px;
  padding: 0;
  align-items: center;
}
.premium-cta__bg{
  inset: auto 0 auto 0;
  top: 50%;
  height: 150%;
  transform: translate3d(0, calc(-50% + var(--cta-parallax-y, 0px)), 0) scale(var(--cta-scale, 1));
  background:
    linear-gradient(90deg, rgba(0,13,16,.18), rgba(0,13,16,.04)),
    url('../images/hero.jpeg') center 58% / cover no-repeat;
  transition: transform .8s var(--ease-out);
}
.premium-cta:hover .premium-cta__bg{
  --cta-scale: 1.05;
}
.premium-cta__inner,
.premium-final__inner{
  margin-left: max(var(--edge), calc((100vw - var(--page-max)) / 2 + var(--edge)));
  width: min(760px, calc(100% - var(--edge) * 2));
}
.premium-cta .btn-row{
  width: fit-content;
}
.premium-cta .btn{
  padding-inline: clamp(1.25rem, 2vw, 1.65rem);
}
@media (max-width: 700px){
  .premium-cta{
    height: auto;
    min-height: 440px;
  }
  .premium-cta__bg{
    height: 135%;
  }
  .premium-cta__inner,
  .premium-final__inner{
    margin-inline: var(--edge);
    width: auto;
  }
  .premium-cta .btn-row{
    width: 100%;
  }
}
