/* ============================================================
   Driven Detailing — 2026 service-menu theme
   Thin letterspaced display type, mono labels, hairline rules,
   numbered indices, deep blue-black ground.
   ============================================================ */

:root{
  /* Ground — near-black, shifted slightly blue rather than neutral grey */
  --bg:          #05070c;
  --bg-alt:      #070a11;
  --panel:       #0a0e17;
  --panel-top:   #0e1422;

  --blue:        #1a5cff;
  --blue-soft:   #4d7fff;
  --blue-dim:    rgba(26, 92, 255, 0.4);
  --gold:        #e0a530;

  --line:        rgba(255, 255, 255, 0.09);
  --line-soft:   rgba(255, 255, 255, 0.055);

  --text:        #e9ecf2;
  --dim:         #8b93a3;
  --mute:        #5c6474;

  --radius:      2px;
  --wrap:        1180px;

  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-body:    'Montserrat', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: 84px; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul, ol{ list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4{ margin: 0; font-family: var(--font-display); font-weight: 200; }
p{ margin: 0; }
:focus-visible{ outline: 2px solid var(--blue-soft); outline-offset: 3px; }

.wrap{
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 22px;
}

/* ---------- Cursor ambient light ---------- */
.cursor-glow{
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(260px circle at var(--x, 50%) var(--y, 50%), rgba(77,127,255,0.15), rgba(77,127,255,0.04) 32%, transparent 60%);
  mix-blend-mode: screen;
}
.cursor-glow.active{ opacity: 1; }

/* ---------- Scroll reveal ---------- */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in-view{ opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce){
  .cursor-glow{ display: none; }
  .reveal{ opacity: 1; transform: none; transition: none; }
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}

/* ---------- Shared type ---------- */
.section-title{
  font-size: clamp(1.7rem, 4.6vw, 2.9rem);
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  line-height: 1.15;
  text-wrap: balance;
}
.section-sub{
  margin-top: 14px;
  max-width: 60ch;
  color: var(--dim);
  font-size: 0.93rem;
}

/* Mono rail across the top of a section, like the flyer header */
.rail{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.63rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--mute);
}

/* Small uppercase mono label used above lists */
.pkg-label{
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--mute);
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn .icon{ width: 15px; height: 15px; fill: currentColor; }
.btn-primary{
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-primary:hover{ background: #2f6bff; transform: translateY(-1px); box-shadow: 0 8px 26px rgba(26,92,255,0.35); }
.btn-outline{
  background: transparent;
  border-color: rgba(255,255,255,0.22);
  color: var(--text);
}
.btn-outline:hover{ border-color: var(--blue); background: rgba(26,92,255,0.08); }
.btn-ghost{
  background: rgba(255,255,255,0.04);
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover{ background: rgba(255,255,255,0.08); }
.btn-lg{ padding: 16px 30px; font-size: 0.76rem; }

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5,7,12,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-block: 13px;
}
.brand{ display: flex; align-items: center; gap: 11px; }
.badge{ width: 42px; height: 42px; flex-shrink: 0; transition: transform 0.4s ease; }
.badge picture, .badge img{ width: 100%; height: 100%; display: block; border-radius: 50%; object-fit: cover; }
.brand:hover .badge{ transform: rotate(6deg) scale(1.05); }
.wordmark{
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  line-height: 1.15;
  color: var(--text);
}
.wordmark-sub{
  font-family: var(--font-mono);
  font-size: 0.5em;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--blue-soft);
}
.wordmark.small{ font-size: 0.92rem; }

.main-nav{
  display: none;
  align-items: center;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--dim);
}
.main-nav a{ transition: color 0.2s ease; }
.main-nav a:hover{ color: var(--text); }

.header-cta{ display: none; align-items: center; gap: 10px; }

.nav-toggle{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span{
  display: block;
  height: 1px;
  width: 18px;
  margin-inline: auto;
  background: var(--text);
}

.mobile-panel{
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 14px 22px 20px;
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
}
.mobile-panel.open{ display: flex; }
.mobile-panel a{
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--dim);
}
.mobile-cta-row{ display: flex; gap: 10px; margin-top: 14px; }
.mobile-cta-row .btn{ flex: 1; }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  overflow: hidden;
  /* no bottom padding on phones — the photo runs to the section edge */
  padding-block: 46px 0;
  text-align: center;
  isolation: isolate;
  /* brand glow behind the type; on desktop the photo covers it */
  background: radial-gradient(circle at 50% 24%, rgba(26,92,255,0.20), transparent 62%);
}
/* Hero photograph.
   Phones: sits in normal flow below the text at its full 3:2 aspect, so the
   whole shot — car and all — is visible rather than cropped to a slot.
   Desktop (>=800px): the same element is absolutely positioned behind the
   text and cover-cropped as a full-bleed background. */
.hero-photo{
  position: relative;
  margin-top: 38px;
}
.hero-photo img{
  display: block;
  width: 100%;
  height: auto;
}
/* fades the top of the photo into the dark ground so it doesn't look pasted on */
.hero-photo::before{
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 34%;
  background: linear-gradient(180deg, var(--bg), transparent);
  pointer-events: none;
}

/* Scrim over the photo on desktop — the shot is bright and back-lit, so the
   type needs a dark bed. Not used on phones, where text and photo are
   separate. */
.hero-scrim{ display: none; }

@media (min-width: 800px){
  .hero{ padding-block: 46px 74px; }
  .hero-photo{
    position: absolute;
    inset: 0;
    z-index: -2;
    margin-top: 0;
    pointer-events: none;
  }
  .hero-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 58%;
  }
  .hero-photo::before{ display: none; }

  .hero-scrim{
    display: block;
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
      radial-gradient(circle at 50% 30%, rgba(26,92,255,0.18), transparent 62%),
      linear-gradient(180deg,
        rgba(5,7,12,0.92) 0%,
        rgba(5,7,12,0.68) 34%,
        rgba(5,7,12,0.72) 62%,
        rgba(5,7,12,0.95) 88%,
        var(--bg) 100%);
  }
}
.rail-hero{ margin-bottom: 54px; }
.hero-content{ position: relative; }
.hero-badge{
  width: 148px;
  margin: 0 auto 26px;
  filter: drop-shadow(0 0 26px rgba(26,92,255,0.45));
}
.hero-badge img{ width: 100%; height: 100%; display: block; border-radius: 50%; object-fit: cover; }
.hero-wordmark{
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  line-height: 1.1;
  /* nudge right to offset the trailing letter-space so it reads centred */
  text-indent: 0.28em;
}
.hero-wordmark span{
  display: block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 0.3em;
  font-weight: 300;
  letter-spacing: 0.62em;
  color: var(--blue-soft);
  text-indent: 0.62em;
}
.tagline{
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: clamp(0.7rem, 2vw, 0.84rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--dim);
  text-indent: 0.34em;
}
.hero-actions{
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.hero-actions .btn{ width: 100%; max-width: 340px; }
.hero-meta{
  margin-top: 34px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--mute);
}

/* ---------- Callout ---------- */
.callout{
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(26,92,255,0.10), rgba(26,92,255,0.02));
  padding-block: 34px;
  text-align: center;
}
.callout h2{
  font-size: clamp(1.05rem, 3vw, 1.4rem);
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.callout p{ margin-top: 10px; color: var(--dim); font-size: 0.9rem; }

/* ---------- Packages & plans (shared card frame) ---------- */
.packages{ padding-block: 78px; }

.package-grid, .plan-grid{
  display: grid;
  gap: 20px;
  margin-top: 42px;
}

.package-card, .plan-card{
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-top), var(--panel) 62%);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.package-card:hover, .plan-card:hover{
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

/* Featured card — blue frame with a full-width tab above it */
.pkg-featured, .plan-featured{
  border-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(26,92,255,0.35), 0 18px 60px rgba(26,92,255,0.12);
}
.pkg-featured:hover, .plan-featured:hover{ border-color: var(--blue-soft); }
.pkg-tab{
  position: absolute;
  left: -1px;
  right: -1px;
  top: -30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  text-indent: 0.26em;
}

.pkg-top{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 20px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.pkg-index{ font-size: 1.05rem; font-weight: 500; letter-spacing: 0.1em; color: var(--text); }
.pkg-featured .pkg-index, .plan-featured .pkg-index{ color: var(--blue-soft); }
.pkg-time{ color: var(--mute); }

.package-card h3, .plan-card h3{
  font-size: 1.35rem;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1.2;
}
.plan-card h3 span{ color: var(--blue-soft); }
.plan-featured h3 span{ color: var(--blue-soft); }

.pkg-desc, .plan-desc{
  margin-top: 10px;
  margin-bottom: 26px;
  color: var(--dim);
  font-size: 0.9rem;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-soft);
}

.pkg-everything{
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--blue-soft);
}

/* Em-dash bullet list, as on the flyer */
.pkg-list{
  margin-top: 16px;
  margin-bottom: auto; /* pushes the footer block to the card bottom */
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 0.88rem;
  color: var(--text);
}
.pkg-list li{ position: relative; padding-left: 22px; }
.pkg-list li::before{
  content: "—";
  position: absolute;
  left: 0;
  color: var(--blue-soft);
}

.pkg-foot{ margin-top: 34px; }
.pkg-bestfor{
  margin-top: 9px;
  color: var(--dim);
  font-size: 0.87rem;
}
.pkg-from{
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}

.pkg-price{
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pkg-price li{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}
.pkg-price span{
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--dim);
}
.pkg-price strong{
  font-family: var(--font-mono);
  font-size: 1.55rem;
  font-weight: 300;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.pkg-featured .pkg-price strong{ color: var(--blue-soft); }

/* ---------- Enhancements ---------- */
.enhancements{
  padding-block: 78px;
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
}
.enh-grid{
  margin-top: 42px;
  display: grid;
  gap: 0;
}
.enh-grid li{
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-soft);
}
.enh-id{
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: var(--blue-soft);
  flex-shrink: 0;
  width: 2.6em;
}
.enh-name{ font-size: 0.95rem; color: var(--text); }
.enh-dots{
  flex: 1;
  min-width: 14px;
  border-bottom: 1px dotted rgba(255,255,255,0.18);
  transform: translateY(-4px);
}
.enh-price{
  font-family: var(--font-mono);
  font-size: 1.12rem;
  font-weight: 300;
  color: var(--text);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.enh-price em{
  font-style: normal;
  font-size: 0.52em;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mute);
  margin-right: 5px;
}

/* Why Driven */
.why-title{
  margin-top: 64px;
  text-align: center;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
}
.why-grid{
  margin-top: 34px;
  display: grid;
  gap: 26px;
  text-align: center;
}
.why-index{
  display: block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--blue-soft);
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
  width: 34px;
  margin-inline: auto;
}
.why-grid strong{
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text);
}
.why-grid p{ margin-top: 10px; color: var(--dim); font-size: 0.86rem; }

/* ---------- Membership ---------- */
.membership{ padding-block: 78px; border-top: 1px solid var(--line); }

.plan-price{
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.plan-price li{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 4px 14px;
}
.pp-tier{
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--dim);
}
.pp-now{
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.plan-featured .pp-now{ color: var(--blue-soft); }
.pp-was{
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mute);
}

.terms{
  margin-top: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 20px 24px;
}
.terms summary{
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--blue-soft);
}
.terms-list{
  margin-top: 20px;
  display: grid;
  gap: 14px;
  counter-reset: term;
  font-size: 0.86rem;
  color: var(--dim);
}
.terms-list li{
  counter-increment: term;
  position: relative;
  padding-left: 38px;
}
.terms-list li::before{
  content: counter(term, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--blue-soft);
}
.plan-cta{ margin-top: 40px; text-align: center; }

/* ---------- Our work / before & after ---------- */
.work{
  padding-block: 78px;
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  text-align: center;
}
.work .rail, .work .section-sub{ text-align: left; }
.work .section-sub{ margin-inline: 0; }

.ba-grid{
  margin-top: 42px;
  display: grid;
  gap: 22px;
  text-align: left;
}
.ba-item{ margin: 0; }
.ba-item figcaption{
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--dim);
}

.ba{
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  user-select: none;
  cursor: ew-resize;
  /* pan-y lets a vertical swipe still scroll the page, while horizontal
     gestures are delivered to our pointer handlers */
  touch-action: pan-y;
}
.ba-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* The "before" layer is clipped from the right by the slider position.
   clip-path avoids needing a wrapper sized to the container. */
.ba-before{ clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }

.ba-line{
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  width: 2px;
  margin-left: -1px;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 0 18px rgba(0,0,0,0.6);
  pointer-events: none;
}
.ba-line::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255,255,255,0.9);
  border-radius: 50%;
  background: rgba(5,7,12,0.55);
  backdrop-filter: blur(2px);
}
.ba-tag{
  position: absolute;
  top: 14px;
  padding: 6px 12px;
  background: rgba(5,7,12,0.72);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text);
  pointer-events: none;
}
.ba-tag-l{ left: 14px; }
.ba-tag-r{ right: 14px; }

/* Native range input drives the slider so keyboard control comes free */
.ba-range{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  /* keyboard-focusable but pointer input is handled on .ba instead, so a
     touch-drag works anywhere on the frame rather than only on the thumb */
  pointer-events: none;
  appearance: none;
  background: transparent;
}
.ba-range::-webkit-slider-thumb{ appearance: none; width: 46px; height: 100%; }
.ba-range::-moz-range-thumb{ width: 46px; height: 100%; border: 0; opacity: 0; }
.ba-range:focus-visible + .ba-line,
.ba:has(.ba-range:focus-visible) .ba-line{ box-shadow: 0 0 0 2px var(--blue-soft); }

/* extra breathing room while the before/after slider above it is hidden */
.work-cta{ margin-top: 42px !important; }

.btn-instagram{
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 17px 26px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
  box-shadow: 0 10px 34px rgba(220,39,67,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-instagram:hover{ transform: translateY(-2px); box-shadow: 0 16px 44px rgba(220,39,67,0.45); }
.btn-instagram > svg:first-child{ width: 32px; height: 32px; flex-shrink: 0; }
.ig-text{ display: flex; flex-direction: column; text-align: left; line-height: 1.3; }
.ig-text strong{
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.ig-text em{ font-style: normal; font-size: 0.74rem; opacity: 0.92; }
.ig-arrow{ width: 19px; height: 19px; flex-shrink: 0; transition: transform 0.2s ease; }
.btn-instagram:hover .ig-arrow{ transform: translateX(4px); }
.work-note{
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mute);
}

/* ---------- Reviews ---------- */
.reviews{ padding-block: 78px; border-top: 1px solid var(--line); text-align: center; }
.reviews .rail{ text-align: left; }
.stars{ margin-top: 18px; font-size: 1.5rem; color: #fbbc04; letter-spacing: 0.16em; }
.reviews-sub{
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--dim);
}
.google-badge{
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.google-badge .icon{ width: 16px; height: 16px; }
.google-badge:hover{ border-color: var(--blue); }

.testimonials{
  margin-top: 46px;
  display: grid;
  gap: 16px;
  text-align: left;
}
.testimonial{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.testimonial:hover{ border-color: rgba(255,255,255,0.2); transform: translateY(-3px); }
.t-google{ position: absolute; top: 19px; right: 18px; width: 16px; height: 16px; opacity: 0.8; }
.t-head{ display: flex; align-items: center; gap: 11px; padding-right: 24px; }
.t-avatar{
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
}
.av-1{ background: #2f8f83; }
.av-2{ background: #8a5fa8; }
.av-3{ background: #b5603f; }
.t-who{ display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.t-name{ font-size: 0.9rem; font-weight: 400; color: var(--text); }
.t-meta{ font-family: var(--font-mono); font-size: 0.62rem; color: var(--mute); }
.t-rating{ display: flex; align-items: center; gap: 10px; }
.t-stars{ color: #fbbc04; letter-spacing: 0.1em; font-size: 0.84rem; }
.t-date{ font-family: var(--font-mono); font-size: 0.62rem; color: var(--mute); }
/* the attribute chip Google shows when a reviewer tags their visit */
.t-tag{
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--dim);
}
.testimonial blockquote{ margin: 0; font-size: 0.88rem; line-height: 1.65; color: var(--dim); }

/* ---------- Service area ---------- */
.area{ padding-block: 78px; border-top: 1px solid var(--line); background: var(--bg-alt); }
.area-inner{ display: grid; gap: 30px; }
.area-text p{ margin-top: 14px; color: var(--dim); font-size: 0.92rem; }
.area-text strong{ color: var(--text); font-weight: 400; }
.area-note{
  margin-top: 16px !important;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--blue-soft) !important;
}
.area-map{
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.area-map iframe{ width: 100%; height: 100%; border: 0; filter: grayscale(0.2) invert(0.92) contrast(0.88); }
.map-link{
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 8px 14px;
  background: rgba(5,7,12,0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.map-link:hover{ border-color: var(--blue); }

/* ---------- Hours ---------- */
.hours{ padding-block: 66px; border-top: 1px solid var(--line); }
.hours-table{ max-width: 460px; margin-top: 28px; display: flex; flex-direction: column; }
.hours-row{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.92rem;
  color: var(--dim);
}
.hours-row strong{
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}

/* ---------- Requirement note ---------- */
.requirement-section{ padding-block: 40px 0; }
.requirement{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 11px;
  padding: 16px 20px;
  border: 1px solid var(--blue-dim);
  background: rgba(26,92,255,0.06);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--dim);
}
.requirement .icon{ width: 20px; height: 20px; flex-shrink: 0; color: var(--blue-soft); }
.requirement strong{ color: var(--text); font-weight: 400; }

/* ---------- Contact ---------- */
.contact{
  padding-block: 78px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(26,92,255,0.12), transparent 62%);
}
.contact-eyebrow{
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--blue-soft);
  margin-bottom: 16px;
}
.contact-sub{ margin-top: 14px; color: var(--dim); font-size: 0.92rem; }
.phone-link{
  display: block;
  margin-top: 30px;
  font-family: var(--font-mono);
  font-size: clamp(1.9rem, 7vw, 3.1rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  transition: color 0.2s ease;
}
.phone-link:hover{ color: var(--blue-soft); }
.contact-actions{
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.contact-actions .btn{ width: 100%; max-width: 320px; }
.contact-fine{
  margin: 40px auto 0;
  max-width: 62ch;
  font-size: 0.76rem;
  line-height: 1.7;
  color: var(--mute);
}
.founder{
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--dim);
}

/* ---------- Footer ---------- */
.site-footer{ border-top: 1px solid var(--line); padding-block: 32px; }
.footer-inner{
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.footer-mark{ display: flex; align-items: center; gap: 11px; }
.footer-badge{ width: 36px; height: 36px; flex-shrink: 0; border-radius: 50%; object-fit: cover; }
.footer-tagline{
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mute);
}
.footer-cta{ display: flex; gap: 10px; width: 100%; max-width: 300px; }
.footer-cta .btn{ flex: 1; }
.footer-meta{
  font-family: var(--font-mono);
  font-size: 0.6rem;
  line-height: 2;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mute);
}
.footer-meta a:hover{ color: var(--blue-soft); }

/* ---------- Breakpoints ---------- */
@media (min-width: 640px){
  /* Fill down the left column first (E01–E06), then the right (E07–E12),
     matching the printed menu rather than snaking across rows. */
  .enh-grid{
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, auto);
    grid-auto-flow: column;
    column-gap: 48px;
  }
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
  .requirement{ align-items: center; }
}

@media (min-width: 760px){
  .hero-actions{ flex-direction: row; justify-content: center; }
  .hero-actions .btn{ width: auto; }
  .contact-actions{ flex-direction: row; justify-content: center; }
  .contact-actions .btn{ width: auto; }
  .area-inner{ grid-template-columns: 1fr 1fr; align-items: center; }
  .footer-inner{ flex-direction: row; justify-content: space-between; text-align: left; }
  .footer-cta{ width: auto; }
  .footer-meta{ text-align: right; }
}

@media (min-width: 1000px){
  .main-nav{ display: flex; }
  .header-cta{ display: flex; }
  .nav-toggle{ display: none; }
  .package-grid{ grid-template-columns: repeat(3, 1fr); }
  .plan-grid{ grid-template-columns: repeat(3, 1fr); }
  .ba-grid{ grid-template-columns: repeat(3, 1fr); }
  .testimonials{ grid-template-columns: repeat(3, 1fr); }
  .why-grid{ grid-template-columns: repeat(4, 1fr); }
  /* give the featured card room for its tab without shifting the row */
  .package-grid, .plan-grid{ margin-top: 54px; }
}
