/* =========================================================
   Biba & Boba Auto Repair — Design System
   ========================================================= */

:root {
  /* Brand */
  --amber: #ffb000;
  --amber-2: #ff8a00;
  --amber-soft: rgba(255, 176, 0, 0.12);
  --red: #e23b2e;

  /* Neutrals — dark */
  --ink-900: #0c0e13;
  --ink-800: #11141b;
  --ink-700: #171b24;
  --ink-600: #1f2430;
  --line-dk: rgba(255, 255, 255, 0.09);

  /* Neutrals — light */
  --paper: #ffffff;
  --paper-2: #f5f6f8;
  --paper-3: #eceef2;
  --text: #14171f;
  --text-soft: #4c5566;
  --text-mute: #828b9c;
  --line: #e4e7ec;

  /* Type */
  --display: "Oswald", "Arial Narrow", sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --wrap: 1200px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(12, 14, 19, 0.08);
  --shadow: 0 18px 50px -20px rgba(12, 14, 19, 0.28);
  --shadow-lg: 0 40px 80px -30px rgba(12, 14, 19, 0.5);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.6rem, 6.2vw, 5.2rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
p  { color: var(--text-soft); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body);
  font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber-2);
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--amber-2));
  border-radius: 2px;
}
.eyebrow.center { justify-content: center; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin: 16px 0 16px; }
.section-head p { font-size: 1.05rem; }

section { padding: clamp(70px, 9vw, 130px) 0; }
.section-dark { background: var(--ink-900); color: #eef0f4; }
.section-dark p { color: #aab2c2; }
.section-alt { background: var(--paper-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.02em;
  padding: 15px 30px; border-radius: 100px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  color: #1a1205;
  box-shadow: 0 12px 30px -10px rgba(255, 138, 0, 0.6);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -12px rgba(255, 138, 0, 0.7); }
.btn-dark { background: var(--ink-800); color: #fff; }
.btn-dark:hover { transform: translateY(-3px); background: var(--ink-700); }
.btn-ghost { border: 1.5px solid var(--line-dk); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.07); transform: translateY(-3px); }
.btn-outline { border: 1.5px solid var(--line); color: var(--text); }
.btn-outline:hover { border-color: var(--amber-2); color: var(--amber-2); transform: translateY(-3px); }
.btn-lg { padding: 18px 38px; font-size: 1.02rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(12, 14, 19, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--line-dk);
  padding: 12px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand .logo { width: 46px; height: 46px; flex: none; }
.brand-text { line-height: 1; }
.brand-text strong {
  font-family: var(--display); font-weight: 700; font-size: 1.28rem;
  text-transform: uppercase; letter-spacing: 0.02em; display: block; color: #fff;
}
.brand-text span {
  font-size: 0.64rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--amber); font-weight: 600;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: rgba(255,255,255,0.82); font-weight: 600; font-size: 0.93rem;
  padding: 10px 16px; border-radius: 100px; transition: color 0.25s, background 0.25s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--amber); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: flex; align-items: center; gap: 9px; color: #fff; font-weight: 700; }
.nav-phone svg { width: 18px; height: 18px; color: var(--amber); }
.nav-phone span { font-size: 0.7rem; color: var(--amber); display: block; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }
.nav-phone .num { font-size: 1.05rem; letter-spacing: 0; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 110; }
.burger span { width: 26px; height: 2.5px; background: #fff; border-radius: 3px; transition: 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: #fff; overflow: hidden; padding: 140px 0 80px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(8,9,13,0.96) 0%, rgba(8,9,13,0.82) 42%, rgba(8,9,13,0.45) 75%, rgba(8,9,13,0.2) 100%),
    linear-gradient(0deg, rgba(8,9,13,0.85), rgba(8,9,13,0) 45%);
}
.hero-inner { position: relative; z-index: 2; max-width: 720px; }
.hero h1 { margin: 22px 0 24px; }
.hero h1 .accent { color: var(--amber); display: block; }
.hero p { font-size: 1.18rem; color: #cfd5e0; max-width: 540px; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 28px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid var(--line-dk);
}
.hero-trust .stat strong {
  font-family: var(--display); font-size: 3.4rem; font-weight: 700; color: #fff; display: block; line-height: 1;
}
.hero-trust .stat span { font-size: 1rem; color: #b9c0cd; letter-spacing: 0.04em; }
.hero-trust .stat strong .u { color: var(--amber); }

.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.6); font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint .mouse {
  width: 22px; height: 36px; border: 2px solid rgba(255,255,255,0.4); border-radius: 12px; position: relative;
}
.scroll-hint .mouse::after {
  content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; background: var(--amber); border-radius: 2px; animation: scrollwheel 1.6s infinite;
}
@keyframes scrollwheel { 0% { opacity: 0; transform: translate(-50%, 0); } 50% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 10px); } }

/* ---------- Marquee / trust strip ---------- */
.trust-strip { background: var(--amber); color: #1a1205; padding: 18px 0; overflow: hidden; }
.marquee { display: flex; gap: 0; white-space: nowrap; animation: marquee 28s linear infinite; }
.marquee .item { display: inline-flex; align-items: center; gap: 12px; padding: 0 32px; font-weight: 700; font-family: var(--display); text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.1rem; }
.marquee .item svg { width: 18px; height: 18px; }
.marquee .dot { width: 6px; height: 6px; border-radius: 50%; background: #1a1205; opacity: 0.5; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative; padding: 180px 0 90px; color: #fff; overflow: hidden;
  background: var(--ink-900);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 400px at 80% -10%, rgba(255,138,0,0.18), transparent 60%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 720px; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); margin: 18px 0 18px; }
.page-hero p { color: #b3bbc9; font-size: 1.12rem; max-width: 560px; }
.crumbs { font-size: 0.85rem; color: #8a93a3; margin-top: 22px; }
.crumbs a:hover { color: var(--amber); }
.crumbs span { color: var(--amber); }

/* ---------- Feature cards (services) ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.svc-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px 30px; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0;
  background: linear-gradient(90deg, var(--amber), var(--amber-2)); transition: width 0.45s var(--ease);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card:hover::before { width: 100%; }
.svc-icon {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
  background: var(--amber-soft); color: var(--amber-2); margin-bottom: 22px;
  transition: background 0.4s, color 0.4s, transform 0.4s;
}
.svc-icon svg { width: 30px; height: 30px; }
.svc-card:hover .svc-icon { background: linear-gradient(135deg, var(--amber), var(--amber-2)); color: #1a1205; transform: rotate(-6deg) scale(1.05); }
.svc-card h3 { margin-bottom: 12px; }
.svc-card p { font-size: 0.98rem; }
.svc-card .svc-link {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.9rem; color: var(--text); transition: gap 0.3s, color 0.3s;
}
.svc-card .svc-link svg { width: 16px; height: 16px; }
.svc-card:hover .svc-link { color: var(--amber-2); gap: 14px; }

/* dark variant for service cards */
.section-dark .svc-card { background: var(--ink-700); border-color: var(--line-dk); }
.section-dark .svc-card h3 { color: #fff; }
.section-dark .svc-card .svc-link { color: #fff; }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.media-badge {
  position: absolute; bottom: -28px; left: -28px; background: linear-gradient(135deg, var(--amber), var(--amber-2));
  color: #1a1205; padding: 22px 26px; border-radius: 18px; box-shadow: var(--shadow);
}
.media-badge strong { font-family: var(--display); font-size: 2.6rem; font-weight: 700; line-height: 1; display: block; }
.media-badge span { font-weight: 700; font-size: 0.82rem; letter-spacing: 0.04em; }
.split-body h2 { margin: 16px 0 22px; }
.checklist { display: grid; gap: 14px; margin: 26px 0 32px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; font-weight: 500; color: var(--text); }
.checklist .ic { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--amber-soft); color: var(--amber-2); display: grid; place-items: center; }
.checklist .ic svg { width: 15px; height: 15px; }
.section-dark .checklist li { color: #dfe3ea; }

/* ---------- Why / value props ---------- */
.value {
  display: flex; gap: 20px; align-items: flex-start; padding: 26px;
  border-radius: var(--radius); transition: background 0.35s;
}
.value:hover { background: var(--paper); box-shadow: var(--shadow-sm); }
.section-dark .value:hover { background: var(--ink-700); box-shadow: none; }
.value .num { font-family: var(--display); font-size: 1.5rem; font-weight: 700; color: var(--amber-2); flex: none; }
.value h3 { font-size: 1.15rem; margin-bottom: 8px; }
.section-dark .value h3 { color: #fff; }
.value p { font-size: 0.96rem; }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats-band .stat strong { font-family: var(--display); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; color: #fff; display: block; line-height: 1; }
.stats-band .stat strong .u { color: var(--amber); }
.stats-band .stat span { color: #9aa3b2; font-size: 0.92rem; letter-spacing: 0.03em; }

/* ---------- Testimonials ---------- */
.quote-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 32px; box-shadow: var(--shadow-sm); position: relative; height: 100%;
}
.quote-card .stars { display: flex; gap: 3px; color: var(--amber); margin-bottom: 16px; }
.quote-card .stars svg { width: 18px; height: 18px; }
.quote-card blockquote { font-size: 1.06rem; color: var(--text); line-height: 1.6; margin-bottom: 22px; }
.quote-card .who { display: flex; align-items: center; gap: 14px; }
.quote-card .avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--amber), var(--amber-2)); color: #1a1205;
  font-family: var(--display); font-weight: 700; font-size: 1.2rem;
}
.quote-card .who b { display: block; font-size: 0.98rem; }
.quote-card .who span { font-size: 0.84rem; color: var(--text-mute); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--ink-900); color: #fff; text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 350px at 50% 0%, rgba(255,138,0,0.22), transparent 65%); }
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band h2 { margin-bottom: 18px; }
.cta-band p { color: #b3bbc9; max-width: 560px; margin: 0 auto 34px; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Service detail rows ---------- */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 56px 0; border-bottom: 1px solid var(--line); }
.svc-detail:last-child { border-bottom: none; }
.svc-detail.reverse .svc-detail-media { order: 2; }
.svc-detail-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.svc-detail-media img { width: 100%; height: 100%; object-fit: cover; }
.svc-detail-tag { color: var(--amber-2); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.78rem; }
.svc-detail h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: 12px 0 16px; }
.svc-detail .price-chip { display: inline-flex; align-items: center; gap: 8px; background: var(--paper-2); border: 1px solid var(--line); padding: 8px 16px; border-radius: 100px; font-weight: 700; font-size: 0.9rem; margin-top: 18px; }
.svc-detail .price-chip span { color: var(--amber-2); }

/* ---------- Pricing / packages ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.price-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px 30px; position: relative; transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.price-card.featured { background: var(--ink-900); color: #fff; border-color: transparent; }
.price-card.featured h3, .price-card.featured .price { color: #fff; }
.price-card .tier { font-family: var(--display); text-transform: uppercase; font-size: 1.3rem; }
.price-card .price { font-family: var(--display); font-size: 3rem; font-weight: 700; margin: 10px 0 2px; }
.price-card .price small { font-size: 1rem; color: var(--text-mute); font-family: var(--body); font-weight: 600; }
.price-card .badge-pop { position: absolute; top: -13px; right: 26px; background: linear-gradient(135deg, var(--amber), var(--amber-2)); color: #1a1205; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; }
.price-card ul { margin: 24px 0 28px; display: grid; gap: 12px; }
.price-card ul li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.96rem; }
.price-card ul li svg { width: 17px; height: 17px; color: var(--amber-2); flex: none; margin-top: 3px; }
.price-card.featured ul li { color: #cfd5e0; }
.price-card .btn { width: 100%; }

/* ---------- Pricing menu ---------- */
.fee-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fee-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px; display: flex; flex-direction: column; gap: 6px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  position: relative; overflow: hidden;
}
.fee-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--amber), var(--amber-2));
  transform: scaleY(0); transform-origin: top; transition: transform 0.45s var(--ease);
}
.fee-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.fee-card:hover::before { transform: scaleY(1); }
.fee-card .fee-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.fee-card h3 { font-size: 1.18rem; }
.fee-card .fee-dur {
  flex: none; display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--text-mute); background: var(--paper-2); border: 1px solid var(--line);
  padding: 5px 10px; border-radius: 100px;
}
.fee-card .fee-dur svg { width: 13px; height: 13px; }
.fee-card .fee-price {
  font-family: var(--display); font-weight: 700; font-size: 2.4rem; line-height: 1.1;
  color: var(--text); margin-top: 8px;
}
.fee-card .fee-price .from { display: block; font-family: var(--body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber-2); margin-bottom: 2px; }
.fee-card .fee-note { font-size: 0.88rem; color: var(--text-mute); }
.fee-card.fee-cta { background: var(--ink-900); border-color: transparent; justify-content: center; align-items: flex-start; }
.fee-card.fee-cta h3 { color: #fff; }
.fee-card.fee-cta p { color: #aab2c2; font-size: 0.95rem; margin: 8px 0 18px; }
.fee-disclaimer {
  margin-top: 28px; text-align: center; font-size: 0.9rem; color: var(--text-mute);
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
}
.fee-disclaimer svg { width: 17px; height: 17px; color: var(--amber-2); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.info-card { display: flex; gap: 18px; align-items: flex-start; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 16px; transition: border-color 0.3s, transform 0.3s; }
.info-card:hover { border-color: var(--amber-2); transform: translateX(4px); }
.info-card .ic { flex: none; width: 52px; height: 52px; border-radius: 14px; background: var(--amber-soft); color: var(--amber-2); display: grid; place-items: center; }
.info-card .ic svg { width: 24px; height: 24px; }
.info-card h4 { font-family: var(--display); text-transform: uppercase; font-size: 1.05rem; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--text-soft); font-size: 1rem; }
.info-card a:hover { color: var(--amber-2); }

.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 8px; color: var(--text); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 1rem; color: var(--text); background: var(--paper-2); transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--amber-2); background: #fff; box-shadow: 0 0 0 4px var(--amber-soft);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 0.85rem; color: var(--text-mute); margin-top: 14px; text-align: center; }
.form-success { display: none; text-align: center; padding: 20px; background: var(--amber-soft); border-radius: 12px; color: #7a4b00; font-weight: 600; margin-bottom: 20px; }
.form-success.show { display: block; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--line); }
.section-dark .hours-table tr { border-color: var(--line-dk); }
.hours-table td { padding: 14px 0; font-size: 0.98rem; }
.hours-table td:last-child { text-align: right; font-weight: 700; }
.hours-table .today td { color: var(--amber-2); }
.hours-table .today td:first-child::after { content: " • Open today"; font-size: 0.7rem; color: var(--amber-2); letter-spacing: 0.06em; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 0; font-weight: 700; font-size: 1.08rem; color: var(--text); }
.section-dark .faq-q { color: var(--amber); }
.section-dark .faq-item { border-color: var(--line-dk); }
.section-dark .faq-q .pm { border-color: rgba(255,176,0,0.5); }
.section-dark .faq-q .pm::before, .section-dark .faq-q .pm::after { background: var(--amber); }
.faq-q .pm { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; transition: 0.3s; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--text); transition: 0.3s; }
.faq-q .pm::before { width: 12px; height: 2px; }
.faq-q .pm::after { width: 2px; height: 12px; }
.faq-item.open .pm { background: var(--amber-2); border-color: var(--amber-2); }
.faq-item.open .pm::before, .faq-item.open .pm::after { background: #fff; }
.faq-item.open .pm::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding-bottom: 24px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-900); color: #c4cad6; padding: 80px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--line-dk); }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: #99a2b2; font-size: 0.96rem; max-width: 320px; }
.footer-soc { display: flex; gap: 12px; margin-top: 22px; }
.footer-soc a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line-dk); display: grid; place-items: center; color: #c4cad6; transition: 0.3s; }
.footer-soc a:hover { background: var(--amber); color: #1a1205; border-color: var(--amber); transform: translateY(-3px); }
.footer-soc svg { width: 19px; height: 19px; }
.footer-col h4 { font-family: var(--display); color: #fff; font-size: 1.05rem; margin-bottom: 20px; text-transform: uppercase; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a, .footer-col li { color: #99a2b2; font-size: 0.95rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--amber); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--amber); flex: none; margin-top: 3px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { font-size: 0.86rem; color: #7c8595; }
.footer-bottom .legal { display: flex; gap: 22px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .grid-3, .grid-4, .price-grid, .stats-band { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid, .svc-detail { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media, .svc-detail.reverse .svc-detail-media { order: 0; }
  .media-badge { left: 20px; bottom: 20px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }

  /* Solid header bar on mobile so the logo + menu icon are always readable
     and the bar never flickers/disappears while scrolling on iOS. */
  .site-header { background: var(--ink-900); box-shadow: 0 1px 0 var(--line-dk); padding: 12px 0; }
  .site-header.scrolled { background: var(--ink-900); backdrop-filter: none; }

  /* Full-screen, fully opaque slide-in menu — no bright page shows through,
     so the links are always high-contrast and the panel stays put on scroll. */
  .nav-links {
    position: fixed; inset: 0; width: 100%; height: 100%; height: 100dvh;
    background: var(--ink-900); flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: 92px 28px 40px; gap: 6px; transform: translateX(100%); transition: transform 0.38s var(--ease);
    overflow-y: auto; -webkit-overflow-scrolling: touch; z-index: 105;
  }
  .nav-links.open { transform: none; }
  .nav-links a { color: #fff; padding: 16px 14px; font-size: 1.15rem; border-bottom: 1px solid var(--line-dk); border-radius: 0; }
  .nav-links a.active { color: var(--amber); }
  .burger { display: flex; position: relative; z-index: 120; }
  .nav-phone { display: none; }
  .grid-3, .grid-4, .grid-2, .price-grid, .stats-band, .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .hero-trust { gap: 22px; }
  .hero-trust .stat strong { font-size: 1.9rem; }
  .form-card { padding: 26px; }
  .media-badge strong { font-size: 2rem; }
}
