/* =========================================================================
   DS Detailing Lorca — premium sport/industrial detailing site
   Black · Yellow · White  ·  condensed motorsport type
   ========================================================================= */

:root {
  /* ---- surfaces (warm anthracite, max 2 tones) ---- */
  --bg:        #0a0b0d;
  --bg-2:      #101216;
  --surface:   #15181d;
  --surface-2: #1c2026;
  --line:      rgba(255,255,255,.09);
  --line-2:    rgba(255,255,255,.16);

  /* ---- ink ---- */
  --text:    #f3f3f1;
  --dim:     #a7adb5;
  --mute:    #6b727b;

  /* ---- brand yellow (from logo) ---- */
  --yellow:        #f5b301;
  --yellow-bright: #ffc62e;
  --yellow-deep:   #c98f00;
  --yellow-glow:   rgba(245,179,1,.16);

  /* ---- metal ---- */
  --metal-hi: #c7ccd2;
  --metal-lo: #5a616b;

  --font-display: "Saira Condensed", "Arial Narrow", sans-serif;
  --font-body:    "Barlow", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 4px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--yellow); color: #000; }

/* ---------- shared layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

.section { position: relative; padding: clamp(72px, 11vw, 150px) 0; }
.section--alt { background: var(--bg-2); }

/* faint carbon texture for alt sections */
.section--alt::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,.012) 0 2px, transparent 2px 7px);
  pointer-events: none;
}

/* ---------- type ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: .92;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--yellow);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }

.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: .95;
  letter-spacing: -.01em;
  font-size: clamp(36px, 6vw, 74px);
  margin-top: 20px;
}
.section-title em { color: var(--yellow); font-style: normal; }
.section-sub { color: var(--dim); font-size: clamp(16px, 1.7vw, 19px); margin-top: 18px; max-width: 62ch; }
.center .section-sub { margin-inline: auto; }

.idx {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--mute);
  letter-spacing: .1em;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: 16px;
  padding: 15px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: transform .25s var(--ease), background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--yellow); color: #0a0b0d; }
.btn--primary:hover { background: var(--yellow-bright); transform: translateY(-2px); }
.btn--ghost { border-color: var(--line-2); color: var(--text); }
.btn--ghost:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }
.btn--dark { background: #000; color: #fff; border-color: rgba(255,255,255,.14); }
.btn--dark:hover { border-color: var(--yellow); color: var(--yellow); }
.btn--sm { padding: 11px 18px; font-size: 14px; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(10,11,13,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.header.scrolled { background: rgba(10,11,13,.94); border-bottom-color: var(--line); }
.header .wrap { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }
.brand-lockup { display: flex; align-items: center; gap: 13px; }
.brand-lockup img { width: 42px; height: 42px; border-radius: 6px; }
.brand-lockup .bt { line-height: 1; display: flex; flex-direction: column; gap: 4px; flex: none; white-space: nowrap; }
.brand-lockup .b1 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 21px; letter-spacing: .02em;
}
.brand-lockup .b1 i { color: var(--yellow); font-style: normal; }
.brand-lockup .b2 {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .22em;
  color: var(--mute); text-transform: uppercase;
}
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .05em; font-size: 15.5px; color: var(--dim);
  transition: color .2s; position: relative; padding: 4px 0;
}
.nav a:hover, .nav a.active { color: var(--text); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--yellow); transition: width .25s var(--ease);
}
.nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 14px; }

.burger {
  display: none; width: 44px; height: 44px; background: transparent;
  border: 1px solid var(--line-2); border-radius: var(--radius);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span { width: 20px; height: 2px; background: var(--text); transition: .3s; }
.burger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity: 0; }
.burger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px){
  .nav, .header-cta .btn--primary { display: none; }
  .burger { display: flex; }
}

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 90; background: rgba(8,9,11,.98);
  backdrop-filter: blur(8px); display: flex; flex-direction: column;
  padding: 90px var(--pad) 40px; gap: 6px;
  transform: translateX(100%); transition: transform .4s var(--ease); visibility: hidden;
}
.drawer.open { transform: none; visibility: visible; }
.drawer a {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  font-size: 30px; letter-spacing: .02em; padding: 14px 0; border-bottom: 1px solid var(--line);
}
.drawer a:hover { color: var(--yellow); }
.drawer .drawer-cta { margin-top: 26px; display: grid; gap: 12px; }
.drawer-close {
  position: absolute; top: 22px; right: var(--pad); width: 46px; height: 46px;
  background: transparent; border: 1px solid var(--line-2); border-radius: var(--radius);
  color: var(--text); font-size: 24px; line-height: 1;
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; min-height: min(94vh, 880px); display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg image-slot { width: 100%; height: 100%; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(100deg, rgba(8,9,11,.95) 0%, rgba(8,9,11,.72) 38%, rgba(8,9,11,.25) 70%, rgba(8,9,11,.55) 100%),
    linear-gradient(0deg, rgba(8,9,11,.95) 0%, transparent 42%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 80% at 80% 20%, #000, transparent 75%);
}
/* yellow diagonal accent slash */
.hero-slash {
  position: absolute; z-index: 1; top: 0; right: 11%; width: 8px; height: 130%;
  background: var(--yellow); transform: skewX(-16deg) translateY(-12%);
  opacity: .9; box-shadow: 0 0 60px var(--yellow-glow);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 3; padding-bottom: clamp(48px, 8vw, 110px); padding-top: 80px; width: 100%; }
.hero h1 { margin: 0; }
.hero-brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase; color: var(--yellow); margin-bottom: 22px;
}
.hero-brand::before { content:""; width: 28px; height: 2px; background: var(--yellow); }
.hero-title {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(42px, 7vw, 96px); line-height: .9; letter-spacing: -.015em;
  max-width: 16ch;
}
.hero-title em { color: var(--yellow); font-style: normal; display: block; }
.hero-sub { color: var(--dim); font-size: clamp(17px, 2vw, 22px); max-width: 52ch; margin-top: 26px; line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 30px; margin-top: 46px; padding-top: 30px;
  border-top: 1px solid var(--line);
}
.hero-meta .hm { display: flex; flex-direction: column; gap: 4px; }
.hero-meta .hm b {
  font-family: var(--font-display); font-weight: 700; font-size: 30px; line-height: 1; letter-spacing: .01em;
}
.hero-meta .hm b .st { color: var(--yellow); }
.hero-meta .hm span { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); }
.hero-meta .hm + .hm { padding-left: 30px; border-left: 1px solid var(--line); }

/* scroll cue */
.scroll-cue {
  position: absolute; left: var(--pad); bottom: 26px; z-index: 3;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--mute); display: flex; align-items: center; gap: 10px;
}
.scroll-cue .ln { width: 1px; height: 34px; background: linear-gradient(var(--yellow), transparent); animation: cue 2s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0%,100%{ transform: scaleY(.4); opacity:.4 } 50%{ transform: scaleY(1); opacity:1 } }
@media (max-width: 860px){ .scroll-cue { display: none; } }

/* =========================================================================
   INTRO
   ========================================================================= */
.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.intro-lead { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: clamp(26px, 3.4vw, 40px); line-height: 1.04; letter-spacing: -.01em; }
.intro-lead em { color: var(--yellow); font-style: normal; }
.intro-body { color: var(--dim); margin-top: 24px; font-size: 18px; max-width: 52ch; }
.intro-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.tag {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--dim); border: 1px solid var(--line-2); border-radius: 999px; padding: 8px 15px;
}
.tag::before { content: "● "; color: var(--yellow); font-size: 8px; vertical-align: middle; }
.intro-media { position: relative; }
.intro-media image-slot { width: 100%; aspect-ratio: 4/5; }
.intro-badge {
  position: absolute; left: -22px; bottom: 28px; background: var(--yellow); color: #000;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  padding: 16px 20px; border-radius: var(--radius); line-height: .95; box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.intro-badge b { display: block; font-size: 38px; }
.intro-badge span { font-size: 13px; font-family: var(--font-mono); letter-spacing: .1em; font-weight: 500; }
@media (max-width: 860px){ .intro-grid { grid-template-columns: 1fr; } .intro-media { order: -1; } .intro-badge{ left: 14px; } }

/* =========================================================================
   SERVICES
   ========================================================================= */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.svc {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; transition: border-color .25s, transform .25s var(--ease);
  display: flex; flex-direction: column;
}
.svc:hover { border-color: var(--yellow); transform: translateY(-5px); }
.svc-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.svc-media image-slot { width: 100%; height: 100%; }
.svc-num {
  position: absolute; top: 10px; left: 12px; z-index: 2;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; color: var(--yellow);
  background: rgba(0,0,0,.6); padding: 4px 8px; border-radius: 3px; backdrop-filter: blur(4px);
}
.svc-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.svc-body h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 22px; line-height: 1; letter-spacing: .005em; }
.svc-body p { color: var(--dim); font-size: 15px; line-height: 1.45; }
.svc-arrow { margin-top: auto; padding-top: 10px; color: var(--mute); font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; transition: color .2s; }
.svc:hover .svc-arrow { color: var(--yellow); }
.svc--cta {
  background: linear-gradient(150deg, var(--yellow-deep), var(--yellow));
  color: #1a1300; align-items: flex-start; justify-content: center; padding: 26px; gap: 12px;
}
.svc--cta h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 26px; line-height: .98; color: #1a1300; }
.svc--cta p { color: rgba(26,19,0,.78); font-size: 15px; }
.svc--cta:hover { transform: translateY(-5px); border-color: transparent; }
.svc--cta .svc-arrow { color: #1a1300; }
@media (max-width: 980px){ .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .svc-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   BEFORE / AFTER
   ========================================================================= */
.ba-wrap { display: grid; grid-template-columns: 1fr; gap: 0; }
.ba {
  position: relative; width: 100%; aspect-ratio: 16/8; max-height: 620px;
  border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden;
  user-select: none; touch-action: none;
}
.ba .layer { position: absolute; inset: 0; }
.ba .layer image-slot { width: 100%; height: 100%; }
.ba .after { z-index: 1; }
.ba .before { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-tag {
  position: absolute; bottom: 16px; z-index: 4; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase; color: #fff; background: rgba(0,0,0,.6);
  padding: 6px 12px; border-radius: 3px; backdrop-filter: blur(4px);
}
.ba-tag.l { left: 16px; }
.ba-tag.r { right: 16px; color: var(--yellow); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; z-index: 5; width: 3px; background: var(--yellow);
  transform: translateX(-50%); box-shadow: 0 0 20px var(--yellow-glow); cursor: ew-resize;
}
.ba-knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 52px; height: 52px; border-radius: 50%; background: var(--yellow); color: #000;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(0,0,0,.5);
  font-size: 18px; font-weight: 700;
}
.ba-hint { text-align: center; margin-top: 18px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--mute); }

/* =========================================================================
   RESULTS / GALLERY
   ========================================================================= */
.gal-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.chip {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
  font-size: 15px; padding: 9px 18px; border: 1px solid var(--line-2); border-radius: 999px;
  color: var(--dim); background: transparent; transition: .2s;
}
.chip:hover { color: var(--text); border-color: var(--metal-lo); }
.chip.active { background: var(--yellow); color: #000; border-color: var(--yellow); }
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.gcell { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.gcell image-slot { width: 100%; height: 100%; }
.gcell.tall { grid-row: span 2; }
.gcell.wide { grid-column: span 2; }
.gcell .glabel {
  position: absolute; left: 10px; top: 10px; z-index: 2; font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--yellow);
  background: rgba(0,0,0,.55); padding: 4px 8px; border-radius: 3px; backdrop-filter: blur(3px);
}
.gcell.hide { display: none; }
@media (max-width: 980px){ .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; } .gcell.wide{ grid-column: span 2; } }
@media (max-width: 560px){ .gal-grid { grid-template-columns: 1fr 1fr; } .gcell.wide{ grid-column: span 2; } }

/* =========================================================================
   REVIEWS
   ========================================================================= */
.rev-top { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.rev-score { display: flex; align-items: center; gap: 20px; }
.rev-score .big { font-family: var(--font-display); font-weight: 700; font-size: 84px; line-height: .8; }
.rev-score .meta .stars { color: var(--yellow); font-size: 22px; letter-spacing: 3px; }
.rev-score .meta .gl { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); margin-top: 6px; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; display: flex; flex-direction: column; gap: 14px; transition: border-color .25s;
}
.review:hover { border-color: var(--line-2); }
.review .stars { color: var(--yellow); letter-spacing: 2px; font-size: 15px; }
.review p { font-size: 16.5px; line-height: 1.55; color: var(--text); }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 6px; }
.review .ava {
  width: 38px; height: 38px; border-radius: 50%; background: var(--surface-2); color: var(--yellow);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display);
  font-weight: 700; font-size: 17px; border: 1px solid var(--line-2);
}
.review .who b { font-weight: 600; font-size: 15px; }
.review .who span { display: block; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; color: var(--mute); text-transform: uppercase; }
@media (max-width: 980px){ .rev-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px){ .rev-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   INSTAGRAM
   ========================================================================= */
.ig { text-align: center; }
.ig-head { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 36px; }
.ig-handle { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(28px, 4vw, 46px); }
.ig-handle em { color: var(--yellow); font-style: normal; }
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.ig-cell { position: relative; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.ig-cell image-slot { width: 100%; height: 100%; }
@media (max-width: 760px){ .ig-grid { grid-template-columns: repeat(3, 1fr); } }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(32px, 5vw, 64px); }
.info-block { display: flex; flex-direction: column; gap: 26px; }
.info-row { display: flex; gap: 16px; align-items: flex-start; }
.info-row .ic {
  width: 44px; height: 44px; flex: none; border: 1px solid var(--line-2); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; color: var(--yellow);
}
.info-row .ic svg { width: 20px; height: 20px; }
.info-row .it .lab { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--mute); margin-bottom: 5px; }
.info-row .it .val { font-size: 17px; line-height: 1.4; }
.info-row .it a:hover { color: var(--yellow); }
.phone-list { display: flex; flex-direction: column; gap: 4px; }
.phone-list a { display: flex; gap: 8px; align-items: baseline; }
.phone-list a b { font-family: var(--font-display); font-weight: 600; font-size: 19px; letter-spacing: .01em; }
.phone-list a span { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; color: var(--mute); text-transform: uppercase; }
.hours-list { display: grid; grid-template-columns: auto 1fr; gap: 4px 24px; font-size: 16px; }
.hours-list dt { color: var(--dim); }
.hours-list dd { text-align: right; font-family: var(--font-display); font-weight: 600; letter-spacing: .02em; }
.hours-list dd.closed { color: var(--mute); }
.info-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }

/* form */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); }
.form-card h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 30px; line-height: 1; margin-bottom: 6px; }
.form-card .fsub { color: var(--dim); font-size: 15px; margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); margin-bottom: 8px; }
.field .req { color: var(--yellow); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line-2); border-radius: var(--radius);
  color: var(--text); font-family: var(--font-body); font-size: 16px; padding: 13px 15px; transition: border-color .2s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--yellow); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f5b301' stroke-width='1.6' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #e0593f; }
.field .err-msg { color: #e0593f; font-size: 12.5px; margin-top: 6px; font-family: var(--font-mono); letter-spacing: .04em; display: none; }
.field.invalid .err-msg { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkbox { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; color: var(--dim); margin: 6px 0 22px; }
.checkbox input { width: 18px; height: 18px; flex: none; accent-color: var(--yellow); margin-top: 2px; }
.checkbox a { color: var(--yellow); text-decoration: underline; text-underline-offset: 2px; }
.form-success {
  display: none; flex-direction: column; align-items: center; text-align: center; gap: 14px; padding: 30px 10px;
}
.form-success.show { display: flex; }
.form-success .chk { width: 64px; height: 64px; border-radius: 50%; background: var(--yellow); color: #000; display: flex; align-items: center; justify-content: center; }
.form-success h4 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 28px; }
.form-success p { color: var(--dim); max-width: 36ch; }
@media (max-width: 860px){ .contact-grid { grid-template-columns: 1fr; } .field-row { grid-template-columns: 1fr; } }

/* map card — sits inside the info column, fills the space under the schedule */
.map-card {
  flex: 1 1 auto; display: flex; flex-direction: column; min-height: 260px;
  margin-top: 4px; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--surface);
}
.map-card-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 14px 16px; border-top: 1px solid var(--line); flex-wrap: wrap;
}
.map-addr { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--dim); }
.map-addr b { color: var(--text); font-weight: 600; }
.map-addr .ic { color: var(--yellow); flex: none; display: flex; }
.map-addr .ic svg { width: 18px; height: 18px; }
@media (max-width: 860px){ .map-card { min-height: 280px; } }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: #000; border-top: 1px solid var(--line); padding: clamp(56px, 8vw, 84px) 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.foot-brand .brand-lockup { margin-bottom: 18px; }
.foot-brand p { color: var(--dim); font-size: 15px; max-width: 34ch; }
.foot-col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--mute); margin-bottom: 16px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { color: var(--dim); font-size: 15px; transition: color .2s; }
.foot-col a:hover { color: var(--yellow); }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line); font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em; color: var(--mute); text-transform: uppercase; }
.foot-bottom a:hover { color: var(--yellow); }
@media (max-width: 860px){ .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .foot-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   MOBILE STICKY ACTIONS
   ========================================================================= */
.fab {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none;
  grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--line);
  border-top: 1px solid var(--line-2);
}
.fab a {
  background: var(--bg-2); display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 11px 6px 13px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--dim);
}
.fab a svg { width: 20px; height: 20px; color: var(--yellow); }
.fab a.prim { background: var(--yellow); color: #000; }
.fab a.prim svg { color: #000; }
@media (max-width: 720px){ .fab { display: grid; } body { padding-bottom: 64px; } }

/* =========================================================================
   FLOATING INSTAGRAM
   ========================================================================= */
.ig-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 75;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--yellow); color: #0a0b0d;
  box-shadow: 0 10px 30px rgba(0,0,0,.45), 0 0 0 6px var(--yellow-glow);
  transition: transform .25s var(--ease), background .2s;
}
.ig-float svg { width: 28px; height: 28px; }
.ig-float:hover { transform: translateY(-3px) scale(1.05); background: var(--yellow-bright); }
@media (max-width: 720px){ .ig-float { bottom: 78px; right: 16px; width: 52px; height: 52px; } .ig-float svg { width: 25px; height: 25px; } }

/* =========================================================================
   WHATSAPP CHOOSER
   ========================================================================= */
.wa-modal { position: fixed; inset: 0; z-index: 120; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(0,0,0,.7); backdrop-filter: blur(4px); }
.wa-modal.open { display: flex; }
.wa-card { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 30px; width: 100%; max-width: 400px; }
.wa-card h4 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 26px; margin-bottom: 6px; }
.wa-card p { color: var(--dim); font-size: 14px; margin-bottom: 22px; }
.wa-opt { display: flex; align-items: center; gap: 14px; width: 100%; text-align: left; background: var(--bg); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 15px 17px; margin-bottom: 12px; transition: border-color .2s; color: var(--text); }
.wa-opt:hover { border-color: var(--yellow); }
.wa-opt .wic { width: 40px; height: 40px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; flex: none; }
.wa-opt .wic svg { width: 22px; height: 22px; }
.wa-opt b { font-family: var(--font-display); font-weight: 600; font-size: 19px; display: block; line-height: 1.1; }
.wa-opt span { font-family: var(--font-mono); font-size: 12px; color: var(--mute); letter-spacing: .06em; }
.wa-close { margin-top: 6px; width: 100%; text-align: center; background: transparent; border: 0; color: var(--mute); font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; padding: 8px; }
.wa-close:hover { color: var(--text); }

/* =========================================================================
   STOCK IMAGERY (slot-filled photos)
   ========================================================================= */
.hero-bg img.slot,
.svc-media img.slot,
.ba .layer img.slot,
.gcell img.slot,
.ig-cell img.slot {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
/* subtle entrance + premium feel on hover for grid photos */
.gcell img.slot, .ig-cell img.slot, .svc-media img.slot {
  transition: transform .6s var(--ease);
}
.gcell:hover img.slot, .ig-cell:hover img.slot, .svc:hover .svc-media img.slot {
  transform: scale(1.05);
}
.intro-media img.slot {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block;
}
.hero-bg img.slot { transform: scale(1.04); } /* avoid edge gaps under overlay */

/* Google Maps embed */
.map-card .map-embed {
  width: 100%; flex: 1 1 auto; min-height: 200px; border: 0; display: block;
  filter: grayscale(.25) contrast(1.05) brightness(.96);
}

/* =========================================================================
   SCROLL REVEAL
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; }
.reveal.d2 { transition-delay: .14s; }
.reveal.d3 { transition-delay: .21s; }
@media (prefers-reduced-motion: reduce){
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue .ln { animation: none; }
  html { scroll-behavior: auto; }
}
