/* ==========================================================================
   LUXE DETAIL GARAGE — STYLESHEET
   Premium mobile auto detailing, Salt Lake Valley, Utah.

   TABLE OF CONTENTS
   1.  Tokens & Reset
   2.  Typography
   3.  Layout Utilities
   4.  Navigation
   5.  Buttons
   6.  Hero (home + subpage banners)
   7.  About / Stats
   8.  Services
   9.  Gallery (photo grid)
   10. Why Choose Us
   11. Service Area
   12. Testimonials
   13. FAQ
   14. Contact / Quote Form
   15. CTA Banners
   16. Footer
   17. Sticky Mobile Bar
   18. Scroll Reveal / Motion
   19. Responsive Breakpoints (inline throughout)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS & RESET
   -------------------------------------------------------------------------- */
:root{
  /* Color palette — monochrome base with a single restrained bronze accent
     (nods to brushed-metal automotive trim, used sparingly by design). */
  --void:#0a0a0b;          /* primary background */
  --charcoal:#1a1a1c;      /* raised surfaces / cards */
  --charcoal-2:#232326;    /* hover surfaces */
  --steel:#8e8e93;         /* secondary text */
  --platinum:#c9cacc;      /* body text on dark */
  --white:#fafafa;         /* headings / high-emphasis text */
  --accent:#b08d4f;        /* bronze accent — CTAs, highlights only */
  --accent-dim:#8a6f3f;
  --line: rgba(250,250,250,0.09);        /* hairline dividers */
  --line-strong: rgba(250,250,250,0.22); /* borders, focus rings — tuned for 3:1 UI-component contrast */
  --radius: 14px;
  --ease: cubic-bezier(.16,.84,.44,1);
  --header-h: 84px;
}

*{margin:0; padding:0; box-sizing:border-box;}
html{scroll-behavior:smooth;}

/* Respect users who've asked for less motion */
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important;}
}

body{
  background:var(--void);
  color:var(--white);
  font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
  line-height:1.5;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

img, svg{display:block; max-width:100%;}
a{color:inherit; text-decoration:none;}
ul{list-style:none;}
button{font-family:inherit; cursor:pointer; background:none; border:0; color:inherit;}
:focus-visible{outline:2px solid var(--accent); outline-offset:3px;}

/* --------------------------------------------------------------------------
   2. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1,h2,h3{font-weight:800; letter-spacing:-0.02em; line-height:1.05;}

.eyebrow{
  font-family:'JetBrains Mono',monospace;
  font-size:12px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--accent);
  display:flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{content:""; width:22px; height:1px; background:var(--accent);}

/* --------------------------------------------------------------------------
   3. LAYOUT UTILITIES
   -------------------------------------------------------------------------- */
.wrap{max-width:1240px; margin:0 auto; padding:0 32px;}
@media (max-width:640px){ .wrap{padding:0 20px;} }

section{padding:120px 0; position:relative;}
@media (max-width:640px){ section{padding:80px 0;} }

.section-head{max-width:640px; margin-bottom:64px;}
.section-head h2{font-size:clamp(32px,4.2vw,52px); margin-top:16px;}
.section-head p{color:var(--steel); margin-top:16px; font-size:16px;}
.section-head.center{margin-left:auto; margin-right:auto; text-align:center;}
.section-head.center .eyebrow{justify-content:center;}
.section-head.center .eyebrow::before{display:none;}

/* --------------------------------------------------------------------------
   4. NAVIGATION
   -------------------------------------------------------------------------- */
header{
  position:fixed; top:0; left:0; right:0; z-index:200;
  padding:22px 0;
  transition:background .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
  border-bottom:1px solid transparent;
}
header.scrolled{
  background:rgba(10,10,11,0.86);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
  padding:14px 0;
}
nav{display:flex; align-items:center; justify-content:space-between;}
.logo{font-weight:900; font-size:19px; letter-spacing:-0.01em;}
.logo span{color:var(--accent);}

.nav-links{display:flex; gap:36px; font-size:14px; font-weight:500;}
.nav-links a{color:var(--platinum); transition:color .25s; position:relative; padding:4px 0;}
.nav-links a:hover{color:var(--white);}
.nav-links a[aria-current="page"]{color:var(--white);}
.nav-links a[aria-current="page"]::after{
  content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px; background:var(--accent);
}

.nav-cta{display:flex; gap:12px; align-items:center;}
.menu-toggle{display:none; padding:6px;}

/* Mobile nav drawer */
.mobile-nav{
  position:fixed; inset:0; z-index:190;
  background:rgba(10,10,11,0.98); backdrop-filter:blur(10px);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:28px;
  opacity:0; visibility:hidden; transform:translateY(-12px);
  transition:opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.mobile-nav.open{opacity:1; visibility:visible; transform:translateY(0);}
.mobile-nav a{font-size:26px; font-weight:700;}
.mobile-nav a[aria-current="page"]{color:var(--accent);}
.mobile-nav .btn{margin-top:12px;}

@media (max-width:900px){
  .nav-links{display:none;}
  .menu-toggle{display:block;}
  .nav-cta .btn-ghost{display:none;}
}

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:13px 26px;
  border-radius:100px;
  font-size:14px; font-weight:600;
  transition:transform .3s var(--ease), background .3s, border-color .3s, color .3s;
  white-space:nowrap;
}
.btn-primary{background:var(--white); color:var(--void);}
.btn-primary:hover{transform:translateY(-2px); background:var(--accent); color:var(--void);}
.btn-ghost{border:1px solid var(--line-strong); color:var(--white); background:transparent;}
.btn-ghost:hover{border-color:var(--accent); color:var(--accent); transform:translateY(-2px);}
.btn-sm{padding:10px 20px; font-size:13px;}
.btn-block{width:100%;}

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */
.hero{
  position:relative;
  min-height:100vh;
  display:flex; flex-direction:column; justify-content:center;
  padding-top:120px; padding-bottom:80px;
  overflow:hidden;
}
/* Real photography layer — drop images/hero/hero.jpg in place and it renders
   automatically. Implemented as an <img> (not a CSS background) so the
   browser can prioritize it as the page's LCP element and so it benefits
   from normal image optimization/caching.

   --hero-object-position controls framing for the CURRENT temporary hero
   photo (a portrait/vertical shot being cropped into a wide banner). Tuned
   so the vehicle stays the focal point on both desktop and mobile. Change
   this one variable (and its mobile override below) if the photo shifts —
   no other file needs to change. This entire rule can be deleted once a
   proper horizontal hero photo replaces the temporary one. */
.hero{ --hero-object-position: 50% 30%; }
.hero-photo{
  position:absolute; inset:0; z-index:-2;
  width:100%; height:100%;
  object-fit:cover; object-position:var(--hero-object-position);
}
@media (max-width:640px){
  /* Narrower viewports show a tighter vertical sliver of the same photo —
     nudge down slightly so the vehicle isn't cropped out at the top. */
  .hero{ --hero-object-position: 50% 22%; }
}
.hero-bg{
  position:absolute; inset:0; z-index:-1;
  background:
    radial-gradient(circle at 82% 18%, rgba(176,141,79,0.16), transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(176,141,79,0.08), transparent 40%),
    /* Lightened ~30% from the previous overlay so the hero photo reads clearly. */
    linear-gradient(180deg, rgba(10,10,11,0.66) 0%, rgba(10,10,11,0.57) 45%, rgba(10,10,11,0.68) 100%);
}
/* Protects headline legibility over bright photo areas without darkening the
   whole frame — sits only behind the left text column. */
.hero-text-scrim{
  position:absolute; inset:0; z-index:-1;
  background:linear-gradient(100deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.30) 45%, transparent 70%);
}
.hero-grid{
  position:absolute; inset:0; z-index:-1; opacity:0.5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black, transparent);
}
.hero-content{display:grid; grid-template-columns:1.3fr 0.9fr; gap:60px; align-items:end;}
@media (max-width:900px){ .hero-content{grid-template-columns:1fr;} }

.hero h1{font-size:clamp(48px, 8vw, 96px); line-height:0.94; margin-top:22px;}
.hero h1 em{
  font-style:normal;
  background:linear-gradient(100deg, var(--accent), #e4c98a 60%, var(--accent));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero-sub{font-size:clamp(16px,2vw,20px); color:var(--platinum); font-weight:500; margin-top:20px; max-width:460px;}
.hero-desc{color:var(--steel); font-size:15px; margin-top:14px; max-width:440px;}
.hero-actions{display:flex; gap:14px; margin-top:36px; flex-wrap:wrap;}

.hero-panel{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:linear-gradient(180deg, var(--charcoal), rgba(26,26,28,0.4));
  padding:28px;
  backdrop-filter:blur(6px);
}
.hero-panel-spec{
  font-family:'JetBrains Mono',monospace; font-size:12px; color:var(--steel);
  display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px dashed var(--line);
}
.hero-panel-spec:last-child{border-bottom:none;}
.hero-panel-spec b{color:var(--white); font-weight:600;}

.hero-scroll{
  position:absolute; bottom:36px; left:50%; transform:translateX(-50%);
  font-family:'JetBrains Mono',monospace; font-size:11px; letter-spacing:0.15em;
  color:var(--steel); text-transform:uppercase;
  display:flex; flex-direction:column; align-items:center; gap:10px;
}
.hero-scroll .line{width:1px; height:34px; background:linear-gradient(var(--steel), transparent); animation:scrollpulse 2s infinite ease-in-out;}
@keyframes scrollpulse{0%,100%{opacity:0.3;} 50%{opacity:1;}}

/* Compact banner hero used on About / Services / Gallery / Contact subpages */
.page-hero{
  min-height:46vh;
  padding-top:calc(var(--header-h) + 60px);
  padding-bottom:60px;
  display:flex; align-items:flex-end;
  border-bottom:1px solid var(--line);
}
.page-hero h1{font-size:clamp(38px,6vw,64px); margin-top:16px;}
.page-hero p{color:var(--steel); font-size:16px; margin-top:14px; max-width:520px;}
.page-hero-crumbs{font-family:'JetBrains Mono',monospace; font-size:12px; color:var(--steel); margin-top:18px;}
.page-hero-crumbs a{color:var(--platinum);}
.page-hero-crumbs a:hover{color:var(--accent);}

/* --------------------------------------------------------------------------
   7. ABOUT / STATS
   -------------------------------------------------------------------------- */
.about{border-top:1px solid var(--line);}
.about-grid{display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;}
@media (max-width:900px){ .about-grid{grid-template-columns:1fr; gap:48px;} }
.about-copy p{color:var(--platinum); font-size:16px; margin-bottom:18px;}
.about-copy p:last-child{margin-bottom:0;}

.about-stats{display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden;}
.about-stat{background:var(--charcoal); padding:32px 24px;}
.about-stat .num{font-family:'JetBrains Mono',monospace; font-size:34px; font-weight:600; color:var(--accent);}
.about-stat .lbl{font-size:13px; color:var(--steel); margin-top:6px;}

.values-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; margin-top:60px;}
@media (max-width:760px){ .values-grid{grid-template-columns:1fr;} }
.value-item{background:var(--void); padding:34px 28px;}
.value-item h4{font-size:17px; margin-bottom:8px;}
.value-item p{color:var(--steel); font-size:14px;}

/* --------------------------------------------------------------------------
   8. SERVICES
   -------------------------------------------------------------------------- */
.services{border-top:1px solid var(--line); background:linear-gradient(180deg, transparent, rgba(255,255,255,0.015), transparent);}
.service-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden;}
@media (max-width:760px){ .service-grid{grid-template-columns:1fr;} }
.service-card{background:var(--void); padding:44px 38px; transition:background .35s var(--ease); position:relative;}
.service-card:hover{background:var(--charcoal);}
.service-num{font-family:'JetBrains Mono',monospace; font-size:12px; color:var(--accent); letter-spacing:0.1em;}
.service-icon{
  width:46px; height:46px; border-radius:10px;
  border:1px solid var(--line-strong);
  display:flex; align-items:center; justify-content:center;
  margin:18px 0 20px;
  color:var(--accent);
}
.service-card h3{font-size:24px; margin-bottom:10px;}
.service-card .desc{color:var(--steel); font-size:14.5px; margin-bottom:20px;}
.service-includes{
  font-family:'JetBrains Mono',monospace; font-size:12px; color:var(--platinum);
  border-top:1px dashed var(--line); padding-top:16px; margin-bottom:24px;
  display:flex; flex-direction:column; gap:8px;
}
.service-includes li{display:flex; gap:10px; align-items:baseline;}
.service-includes li::before{content:"—"; color:var(--accent);}

/* Pricing note strip used on the Services page */
.pricing-note{
  margin-top:40px; padding:24px 28px; border:1px solid var(--line); border-radius:var(--radius);
  background:var(--charcoal); color:var(--steel); font-size:14px;
}
.pricing-note b{color:var(--white);}

/* --------------------------------------------------------------------------
   9. GALLERY — clean photo grid (temporary: before/after comparison system
   removed until there are enough matched before/after pairs; see README)
   -------------------------------------------------------------------------- */
.gallery{border-top:1px solid var(--line);}
.gallery-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
@media (max-width:900px){ .gallery-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:600px){ .gallery-grid{grid-template-columns:1fr;} }

.gallery-item{
  aspect-ratio:4/5; border-radius:12px; overflow:hidden; position:relative;
  border:1px solid var(--line); background:var(--charcoal);
}
.gallery-item .photo{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:center;
  transition:transform .6s var(--ease);
}
.gallery-item:hover .photo{transform:scale(1.06);}
.gallery-note{color:var(--steel); font-size:13px; margin-top:20px; font-family:'JetBrains Mono',monospace;}

/* --------------------------------------------------------------------------
   10. WHY CHOOSE US
   -------------------------------------------------------------------------- */
.why{border-top:1px solid var(--line);}
.why-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden;}
@media (max-width:900px){ .why-grid{grid-template-columns:repeat(2,1fr);} }
.why-item{background:var(--void); padding:32px 26px;}

/* Trust bar — compact, scannable checkmark pills (used on the homepage,
   right under the hero, in place of a longer feature-card grid). */
.trust-bar{display:flex; flex-wrap:wrap; gap:12px; justify-content:center;}
.trust-pill{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13.5px; font-weight:600; color:var(--platinum);
  border:1px solid var(--line-strong); border-radius:100px; padding:10px 18px;
}
.trust-pill svg{color:var(--accent); flex-shrink:0;}

/* Pricing — compact "starting at" summary (homepage) and full per-size
   table (Services page). Reuses the existing monospace spec-sheet motif. */
.price-from{display:flex; align-items:baseline; gap:8px; margin:14px 0 18px;}
.price-from .price-amt{font-family:'JetBrains Mono',monospace; font-size:28px; font-weight:600; color:var(--accent);}
.price-from .price-amt::before{content:"$"; display:none;} /* amount already includes $ */
.price-from .price-lbl{font-size:12px; color:var(--steel); text-transform:uppercase; letter-spacing:0.06em;}

.price-table{
  font-family:'JetBrains Mono',monospace; font-size:13px;
  border-top:1px dashed var(--line); border-bottom:1px dashed var(--line);
  margin:16px 0 20px; padding:14px 0;
}
.price-row{display:flex; justify-content:space-between; padding:6px 0; color:var(--platinum);}
.price-row span:last-child{color:var(--accent); font-weight:600;}

.pricing-note{
  margin-top:40px; padding:24px 28px; border:1px solid var(--line); border-radius:var(--radius);
  background:var(--charcoal); color:var(--steel); font-size:14px;
}
.pricing-note b{color:var(--white);}

/* Policy / expectations sections (Before Your Appointment, Realistic
   Results, Insurance & Policies) — plain, legible, no decorative distraction. */
.policy{border-top:1px solid var(--line);}
/* Compact variant: same content, less vertical space. Applied to all three
   policy sections so they read as reference material, not a full "chapter"
   each — important info stays, just takes less scroll. */
.policy.policy-compact{padding:64px 0;}
.policy-compact .section-head{margin-bottom:32px;}
.policy-compact .section-head h2{font-size:clamp(24px,3vw,32px); margin-top:10px;}
.policy-compact .section-head p{margin-top:10px; font-size:14.5px;}
.policy-compact .policy-list{gap:8px; margin-bottom:14px;}
.policy-compact .policy-list li{font-size:14px;}
.policy-compact .value-item{padding:26px 22px;}
.policy-compact .value-item h4{font-size:15.5px;}
.policy-compact .value-item p{font-size:13.5px;}
.policy-grid{max-width:760px;}
.policy-list{display:flex; flex-direction:column; gap:12px; margin-bottom:20px;}
.policy-list li{
  font-size:15px; color:var(--platinum); padding-left:26px; position:relative;
}
.policy-list li::before{
  content:"—"; position:absolute; left:0; color:var(--accent); font-family:'JetBrains Mono',monospace;
}
.policy-note{color:var(--steel); font-size:14px; line-height:1.7;}
.why-item .ic{color:var(--accent); margin-bottom:16px;}
.why-item h4{font-size:16px; font-weight:700; margin-bottom:6px;}
.why-item p{font-size:13.5px; color:var(--steel);}

/* --------------------------------------------------------------------------
   11. SERVICE AREA
   -------------------------------------------------------------------------- */
.area{border-top:1px solid var(--line);}
.area-grid{display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;}
@media (max-width:900px){ .area-grid{grid-template-columns:1fr;} }
.area-map{
  border:1px solid var(--line); border-radius:var(--radius);
  aspect-ratio:1/1; position:relative; overflow:hidden;
  background:radial-gradient(circle at 50% 50%, rgba(176,141,79,0.12), transparent 60%), var(--charcoal);
}
.area-map .ring{
  position:absolute; border:1px solid var(--line-strong); border-radius:50%;
  top:50%; left:50%; transform:translate(-50%,-50%);
  animation:ringpulse 3.5s infinite ease-out;
}
.r1{width:30%; height:30%;} .r2{width:55%; height:55%; animation-delay:0.6s;} .r3{width:80%; height:80%; animation-delay:1.2s;}
@keyframes ringpulse{0%{opacity:0.7;} 50%{opacity:0.15;} 100%{opacity:0.7;}}
.area-map .dot{position:absolute; top:50%; left:50%; width:10px; height:10px; border-radius:50%; background:var(--accent); transform:translate(-50%,-50%); box-shadow:0 0 0 6px rgba(176,141,79,0.2);}
.area-list{display:flex; flex-wrap:wrap; gap:10px; margin-top:24px;}
.area-list span{
  font-family:'JetBrains Mono',monospace; font-size:12.5px;
  border:1px solid var(--line-strong); padding:8px 14px; border-radius:100px; color:var(--platinum);
}

/* --------------------------------------------------------------------------
   12. TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonials{border-top:1px solid var(--line); background:linear-gradient(180deg, transparent, rgba(255,255,255,0.015), transparent);}
.t-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
@media (max-width:900px){ .t-grid{grid-template-columns:1fr;} }
.t-card{border:1px solid var(--line); border-radius:var(--radius); padding:32px; background:var(--charcoal);}
.t-stars{color:var(--accent); font-size:14px; letter-spacing:2px; margin-bottom:16px;}
.t-card p{font-size:15px; color:var(--platinum); margin-bottom:24px;}
.t-who{display:flex; justify-content:space-between; align-items:center; font-size:13px;}
.t-name{font-weight:700; color:var(--white);}
.t-veh{color:var(--steel); font-family:'JetBrains Mono',monospace; font-size:11.5px;}
.testimonial-note{color:var(--steel); font-size:13px; margin-top:24px; font-family:'JetBrains Mono',monospace;}

/* --------------------------------------------------------------------------
   13. FAQ
   -------------------------------------------------------------------------- */
.faq{border-top:1px solid var(--line);}
.faq-list{max-width:760px;}
.faq-item{border-bottom:1px solid var(--line);}
.faq-q{
  width:100%; color:var(--white);
  display:flex; justify-content:space-between; align-items:center;
  padding:24px 0; font-size:17px; font-weight:600; text-align:left;
}
.faq-q .plus{font-family:'JetBrains Mono',monospace; color:var(--accent); font-size:20px; transition:transform .3s var(--ease); flex-shrink:0; margin-left:20px;}
.faq-item.open .plus{transform:rotate(45deg);}
.faq-a{max-height:0; overflow:hidden; transition:max-height .4s var(--ease);}
.faq-a p{color:var(--steel); font-size:15px; padding-bottom:24px; max-width:600px;}

/* --------------------------------------------------------------------------
   14. CONTACT / QUOTE FORM
   -------------------------------------------------------------------------- */
.contact{border-top:1px solid var(--line);}
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:70px;}
@media (max-width:900px){ .contact-grid{grid-template-columns:1fr; gap:48px;} }

.contact-actions{display:flex; flex-direction:column; gap:14px; margin-top:8px;}
.contact-btn{
  display:flex; align-items:center; justify-content:space-between;
  border:1px solid var(--line-strong); border-radius:12px; padding:20px 24px;
  transition:border-color .3s, background .3s, transform .3s var(--ease);
}
.contact-btn:hover{border-color:var(--accent); background:var(--charcoal); transform:translateX(4px);}
.contact-btn .lbl{font-size:15px; font-weight:600;}
.contact-btn .val{font-family:'JetBrains Mono',monospace; font-size:13px; color:var(--steel);}
.contact-btn .arrow{color:var(--accent);}

form.quote-form{display:flex; flex-direction:column; gap:16px;}
.field{display:flex; flex-direction:column; gap:8px;}
.field label{font-size:12px; font-family:'JetBrains Mono',monospace; color:var(--steel); letter-spacing:0.05em; text-transform:uppercase;}
.field input, .field select, .field textarea{
  background:var(--charcoal); border:1px solid var(--line-strong); border-radius:8px;
  padding:14px 16px; color:var(--white); font-family:inherit; font-size:14.5px;
}
.field input:focus, .field select:focus, .field textarea:focus{border-color:var(--accent);}
.field textarea{resize:vertical; min-height:100px;}
.field-error{font-size:12px; color:#e08a8a; display:none;}
.field.has-error input, .field.has-error select, .field.has-error textarea{border-color:#e08a8a;}
.field.has-error .field-error{display:block;}
.form-note{font-size:12px; color:var(--steel); font-family:'JetBrains Mono',monospace;}
.form-success{display:none; padding:18px; border:1px solid var(--accent); border-radius:10px; color:var(--accent); font-size:14px; margin-top:6px;}
.form-success.error{border-color:#e08a8a; color:#e08a8a;}

/* --------------------------------------------------------------------------
   BOOKING WIZARD — multi-step version of the quote form. Built entirely
   from existing tokens (--accent, --charcoal, --line-strong, --radius,
   JetBrains Mono for labels) — no new colors or fonts introduced.
   -------------------------------------------------------------------------- */
.booking-steps{display:flex; align-items:center; gap:6px; margin-bottom:36px;}
.booking-step-dot{
  width:30px; height:30px; border-radius:50%; flex-shrink:0;
  border:1px solid var(--line-strong);
  display:flex; align-items:center; justify-content:center;
  font-family:'JetBrains Mono',monospace; font-size:12px; color:var(--steel);
  transition:border-color .3s, background .3s, color .3s;
}
.booking-step-dot.active{border-color:var(--accent); color:var(--accent); background:rgba(176,141,79,0.1);}
.booking-step-dot.done{background:var(--accent); border-color:var(--accent); color:var(--void);}
.booking-step-line{flex:1 1 auto; height:1px; background:var(--line-strong); min-width:8px;}
.booking-step-line.done{background:var(--accent);}
@media (max-width:520px){
  .booking-step-dot{width:24px; height:24px; font-size:11px;}
}

.booking-panel{display:none;}
.booking-panel.active{display:block;}
.booking-panel h4{font-size:13px; font-family:'JetBrains Mono',monospace; text-transform:uppercase; letter-spacing:0.06em; color:var(--steel); margin-bottom:18px;}

.package-options{display:flex; flex-direction:column; gap:10px;}
.package-option{
  position:relative; display:flex; justify-content:space-between; align-items:center;
  border:1px solid var(--line-strong); border-radius:10px; padding:16px 18px;
  cursor:pointer; transition:border-color .25s, background .25s;
}
.package-option:hover{border-color:var(--accent);}
.package-option input{position:absolute; opacity:0; width:1px; height:1px;}
.package-option input:focus-visible ~ .po-name{outline:2px solid var(--accent); outline-offset:3px;}
.package-option:has(input:checked){border-color:var(--accent); background:var(--charcoal);}
.po-name{font-weight:600; font-size:14.5px;}
.po-price{font-family:'JetBrains Mono',monospace; color:var(--accent); font-size:13.5px; flex-shrink:0; margin-left:12px;}

.booking-nav{display:flex; justify-content:space-between; gap:12px; margin-top:30px;}
.booking-nav .btn{min-width:110px;}

.booking-summary{border:1px solid var(--line); border-radius:var(--radius); padding:24px; background:var(--charcoal);}
.booking-summary dt{font-family:'JetBrains Mono',monospace; font-size:11px; color:var(--steel); text-transform:uppercase; letter-spacing:0.05em; margin-top:14px;}
.booking-summary dt:first-child{margin-top:0;}
.booking-summary dd{margin:2px 0 0; color:var(--white); font-size:14.5px;}
.field-row-3{display:grid; grid-template-columns:1fr 1fr 1fr; gap:12px;}
@media (max-width:520px){ .field-row-3{grid-template-columns:1fr;} }
.field-row-2{display:grid; grid-template-columns:2fr 1fr; gap:12px;}
@media (max-width:520px){ .field-row-2{grid-template-columns:1fr;} }
.form-success.show{display:block;}

/* --------------------------------------------------------------------------
   15. CTA BANNERS
   -------------------------------------------------------------------------- */
.cta-banner{
  border-top:1px solid var(--line);
  padding:64px 0;
  background:linear-gradient(180deg, rgba(176,141,79,0.06), transparent);
}
.cta-banner-inner{display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;}
.cta-banner h3{font-size:clamp(20px,2.6vw,28px); font-weight:700; max-width:520px;}
.cta-banner p{color:var(--steel); font-size:14px; margin-top:6px;}

/* --------------------------------------------------------------------------
   16. FOOTER
   -------------------------------------------------------------------------- */
footer{border-top:1px solid var(--line); padding:60px 0 32px;}
.footer-top{display:flex; justify-content:space-between; align-items:flex-start; gap:40px; flex-wrap:wrap; padding-bottom:40px; border-bottom:1px solid var(--line); margin-bottom:28px;}
.footer-brand .logo{margin-bottom:10px;}
.footer-brand p{color:var(--steel); font-size:13.5px; max-width:280px;}
.footer-cols{display:flex; gap:70px; flex-wrap:wrap;}
.footer-col h5{font-size:12px; font-family:'JetBrains Mono',monospace; color:var(--steel); text-transform:uppercase; letter-spacing:0.08em; margin-bottom:16px;}
.footer-col a, .footer-col span{display:block; font-size:14px; color:var(--platinum); margin-bottom:10px;}
.footer-col a:hover{color:var(--accent);}
.socials{display:flex; gap:12px;}
.socials a{
  width:38px; height:38px; border:1px solid var(--line-strong); border-radius:100px;
  display:flex; align-items:center; justify-content:center; color:var(--platinum);
  transition:border-color .3s, color .3s;
}
.socials a:hover{border-color:var(--accent); color:var(--accent);}
.footer-bottom{display:flex; justify-content:space-between; flex-wrap:wrap; gap:14px; font-size:12.5px; color:var(--steel);}

/* --------------------------------------------------------------------------
   17. STICKY MOBILE BAR
   -------------------------------------------------------------------------- */
.sticky-bar{
  display:none;
  position:fixed; bottom:0; left:0; right:0; z-index:150;
  background:rgba(10,10,11,0.92); backdrop-filter:blur(14px);
  border-top:1px solid var(--line-strong);
  padding:10px 14px calc(10px + env(safe-area-inset-bottom));
}
.sticky-bar-inner{display:grid; grid-template-columns:1fr 1fr 1.3fr; gap:8px;}
.sticky-bar a{display:flex; align-items:center; justify-content:center; gap:6px; padding:12px 10px; border-radius:10px; font-size:13px; font-weight:600;}
.sticky-bar .sb-call, .sticky-bar .sb-text{border:1px solid var(--line-strong); color:var(--white);}
.sticky-bar .sb-quote{background:var(--accent); color:var(--void);}
@media (max-width:760px){
  .sticky-bar{display:block;}
  body{padding-bottom:66px;}
}

/* --------------------------------------------------------------------------
   18. SCROLL REVEAL
   -------------------------------------------------------------------------- */
.reveal{opacity:0; transform:translateY(28px); transition:opacity .8s var(--ease), transform .8s var(--ease);}
.reveal.visible{opacity:1; transform:translateY(0);}

/* Skip link for keyboard/screen-reader users */
.skip-link{
  position:absolute; left:-9999px; top:0; z-index:999;
  background:var(--accent); color:var(--void); padding:12px 20px; border-radius:0 0 8px 0; font-weight:600;
}
.skip-link:focus{left:0;}
