/* ==========================================================================
   LS Garage Automobile — feuille de style
   Brand: deep racing green + warm amber on white. Archivo / Hanken Grotesk.
   ========================================================================== */

/* ---- Tokens ------------------------------------------------------------- */
:root {
  --bg: oklch(1 0 0);
  --surface: oklch(0.976 0.006 165);
  --surface-2: oklch(0.955 0.009 165);
  --ink: oklch(0.23 0.018 165);
  --muted: oklch(0.455 0.022 165);
  --line: oklch(0.9 0.01 165);

  --primary: oklch(0.405 0.085 162);
  --primary-strong: oklch(0.335 0.078 163);
  --primary-ink: oklch(0.225 0.05 165);
  --primary-tint: oklch(0.95 0.022 162);

  --accent: oklch(0.76 0.145 72);
  --accent-strong: oklch(0.62 0.15 60);
  --on-primary: oklch(0.99 0.004 165);

  /* fluid spacing */
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 8vw, 7rem);
  --container: 1200px;

  /* radii (locked scale) */
  --r-card: 16px;
  --r-img: 18px;
  --r-input: 10px;

  --shadow-sm: 0 1px 2px oklch(0.225 0.05 165 / 0.06),
               0 2px 8px oklch(0.225 0.05 165 / 0.05);
  --shadow-md: 0 4px 14px oklch(0.225 0.05 165 / 0.08),
               0 14px 40px oklch(0.225 0.05 165 / 0.1);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);   /* ease-out quart-ish */
  --dur: 0.5s;

  /* z-index scale */
  --z-header: 100;
  --z-menu: 200;
  --z-skip: 300;

  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
}

/* ---- Reset / base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-strong); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
  color: var(--ink);
}

p { text-wrap: pretty; }

::selection { background: var(--primary); color: var(--on-primary); }

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

/* ---- Layout helpers ----------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.section--tint { background: var(--surface); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--primary);
  text-transform: uppercase;
}

.lead { font-size: clamp(1.1rem, 1.02rem + 0.4vw, 1.3rem); color: var(--muted); max-width: 60ch; }

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { font-size: clamp(1.85rem, 1.4rem + 2vw, 3rem); }
.section-head p { margin-top: 1rem; color: var(--muted); font-size: 1.1rem; }

.text-center { text-align: center; }
.center-x { margin-inline: auto; }

/* ---- Skip link ---------------------------------------------------------- */
.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: var(--z-skip);
  background: var(--primary);
  color: var(--on-primary);
  padding: 0.65rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  transform: translateY(-150%);
  transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: translateY(0); color: var(--on-primary); }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease),
              box-shadow 0.18s var(--ease), border-color 0.18s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; }

.btn-primary { background: var(--primary); color: var(--on-primary); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--primary-strong); color: var(--on-primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary:active { transform: translateY(0) scale(0.985); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--surface); color: var(--ink); border-color: var(--primary); transform: translateY(-2px); }
.btn-ghost:active { transform: translateY(0) scale(0.985); }

.btn-light { background: var(--on-primary); color: var(--primary-ink); }
.btn-light:hover { background: var(--on-primary); color: var(--primary-strong); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline-light { background: transparent; color: var(--on-primary); border-color: oklch(0.99 0 0 / 0.4); }
.btn-outline-light:hover { background: oklch(0.99 0 0 / 0.12); color: var(--on-primary); border-color: var(--on-primary); transform: translateY(-2px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* ---- Badges / pills ----------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--primary-tint);
  color: var(--primary-strong);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}
.badge--ghost { background: oklch(0.99 0 0 / 0.14); color: var(--on-primary); }

/* ---- Stars -------------------------------------------------------------- */
.stars { display: inline-flex; gap: 2px; color: var(--accent); }
.stars svg { width: 1.05em; height: 1.05em; fill: currentColor; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: oklch(1 0 0 / 0.85);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px oklch(0.225 0.05 165 / 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 72px;
}

/* Brand / logo */
.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__mark {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--primary);
  color: var(--on-primary);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  box-shadow: var(--shadow-sm);
}
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em; line-height: 1; }
.brand__name span { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

/* Nav links */
.nav__links { display: flex; align-items: center; gap: 0.35rem; list-style: none; padding: 0; }
.nav__links a {
  display: inline-block;
  color: var(--ink);
  font-weight: 500;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  position: relative;
  transition: color 0.15s var(--ease), background 0.15s var(--ease);
}
.nav__links a:hover { background: var(--surface); color: var(--primary-strong); }
.nav__links a[aria-current="page"] { color: var(--primary-strong); }
.nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0.8rem; right: 0.8rem; bottom: 0.25rem;
  height: 2px; border-radius: 2px;
  background: var(--accent);
}

.nav__cta { display: flex; align-items: center; gap: 0.75rem; }

/* Hamburger */
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  cursor: pointer;
  position: relative;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle span::before { transform: translate(-50%, -7px); }
.nav__toggle span::after { transform: translate(-50%, 5px); }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translate(-50%, -50%) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { transform: translate(-50%, -50%) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5.5rem); position: relative; overflow: hidden; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__tag { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--muted); font-weight: 600; font-size: 0.9rem; margin-bottom: 1.25rem; }
.hero__tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero h1 {
  font-size: clamp(2.3rem, 1.6rem + 3.2vw, 3.6rem);
  letter-spacing: -0.025em;
}
.hero h1 em { font-style: normal; color: var(--primary); }
.hero__sub { margin-top: 1.4rem; font-size: clamp(1.08rem, 1rem + 0.4vw, 1.25rem); color: var(--muted); max-width: 46ch; }
.hero .btn-row { margin-top: 2rem; }

/* hero photo */
.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-img);
  box-shadow: var(--shadow-md);
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--r-img);
  box-shadow: inset 0 0 0 1px oklch(0.225 0.05 165 / 0.08);
  pointer-events: none;
}
.floating-card {
  position: absolute;
  left: -1.25rem; bottom: -1.25rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  max-width: 260px;
}
.floating-card .fc-rating { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; line-height: 1; }
.floating-card small { color: var(--muted); display: block; font-size: 0.8rem; }

/* ---- Trust strip -------------------------------------------------------- */
.trust-strip { border-block: 1px solid var(--line); background: var(--surface); }
.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 4vw, 3rem);
  justify-content: space-between;
  align-items: center;
  padding-block: 1.25rem;
}
.trust-item { display: flex; align-items: center; gap: 0.65rem; font-weight: 600; font-size: 0.95rem; }
.trust-item svg { width: 1.4rem; height: 1.4rem; color: var(--primary); flex: none; }
.trust-item small { display: block; font-weight: 400; color: var(--muted); font-size: 0.82rem; }

/* ==========================================================================
   Value grid (bento rhythm: one featured + smaller)
   ========================================================================== */
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.value-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: clamp(1.4rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.value-card .vc-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--primary-tint);
  color: var(--primary-strong);
}
.value-card .vc-icon svg { width: 24px; height: 24px; }
.value-card h3 { font-size: 1.3rem; }
.value-card p { color: var(--muted); }

/* featured cell spans 2 cols, carries the dealership-savings story */
.value-card--feature {
  grid-column: span 2;
  background: var(--primary-ink);
  border-color: transparent;
  color: var(--on-primary);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.value-card--feature h3 { color: var(--on-primary); font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem); }
.value-card--feature p { color: oklch(0.99 0 0 / 0.8); }
.value-card--feature .vc-quote {
  border-left: 3px solid var(--accent);
  padding-left: 1.2rem;
}
.value-card--feature .vc-quote p { font-style: italic; font-size: 1.05rem; color: var(--on-primary); }
.value-card--feature .vc-quote cite { display: block; margin-top: 0.6rem; font-style: normal; color: oklch(0.99 0 0 / 0.65); font-size: 0.85rem; }

/* ==========================================================================
   Services
   ========================================================================== */
.svc-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.1rem;
}
.svc-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--bg);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.svc-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary-tint); }
.svc-item .svc-ico {
  flex: none;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--primary-tint);
  color: var(--primary-strong);
}
.svc-item .svc-ico svg { width: 23px; height: 23px; }
.svc-item h3 { font-size: 1.15rem; margin-bottom: 0.25rem; }
.svc-item p { color: var(--muted); font-size: 0.95rem; }

/* detailed service blocks (services page) */
.svc-detail { display: grid; gap: clamp(2.5rem, 5vw, 4rem); }
.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.svc-block:nth-child(even) .svc-block__media { order: -1; }
.svc-block__media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--r-img); box-shadow: var(--shadow-md); }
.svc-block h3 { font-size: clamp(1.4rem, 1.2rem + 1vw, 1.9rem); margin-bottom: 0.9rem; }
.svc-block ul { list-style: none; padding: 0; margin-top: 1.1rem; display: grid; gap: 0.6rem; }
.svc-block li { display: flex; gap: 0.65rem; align-items: flex-start; color: var(--ink); }
.svc-block li svg { width: 1.2rem; height: 1.2rem; color: var(--primary); flex: none; margin-top: 0.2rem; }

/* ==========================================================================
   Marquee (toutes marques)
   ========================================================================== */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--bg);
  padding-block: 1.4rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; gap: 3rem; width: max-content; animation: marquee 34s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--muted); letter-spacing: -0.01em; white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ==========================================================================
   Statement / quote band (full-bleed green)
   ========================================================================== */
.statement {
  background: var(--primary-ink);
  color: var(--on-primary);
  text-align: center;
}
.statement .container { max-width: 900px; }
.statement .stars { font-size: 1.4rem; justify-content: center; margin-bottom: 1.5rem; }
.statement blockquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 1.1rem + 2.2vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.statement cite { display: block; margin-top: 1.6rem; font-style: normal; color: oklch(0.99 0 0 / 0.7); font-weight: 400; font-family: var(--font-body); font-size: 0.95rem; }

/* ==========================================================================
   CTA band (photo + green overlay)
   ========================================================================== */
.cta-band { position: relative; color: var(--on-primary); isolation: isolate; overflow: hidden; }
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, oklch(0.225 0.05 165 / 0.94), oklch(0.3 0.07 162 / 0.82));
}
.cta-band .container { display: grid; gap: 1.5rem; max-width: 760px; text-align: center; }
.cta-band h2 { color: var(--on-primary); font-size: clamp(1.9rem, 1.4rem + 2.4vw, 3.1rem); }
.cta-band p { color: oklch(0.99 0 0 / 0.85); font-size: 1.15rem; max-width: 52ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; }
.cta-phone { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.3rem); letter-spacing: -0.02em; color: var(--on-primary); display: inline-flex; align-items: center; gap: 0.6rem; }
.cta-phone:hover { color: var(--accent); }

/* ==========================================================================
   Page header (interior pages)
   ========================================================================== */
.page-header { background: var(--surface); border-bottom: 1px solid var(--line); padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.page-header .eyebrow { margin-bottom: 1rem; }
.page-header h1 { font-size: clamp(2.1rem, 1.5rem + 3vw, 3.6rem); }
.page-header p { margin-top: 1.1rem; color: var(--muted); font-size: 1.15rem; max-width: 58ch; }

/* ==========================================================================
   About
   ========================================================================== */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-grid h2 { font-size: clamp(1.7rem, 1.3rem + 1.8vw, 2.6rem); margin-bottom: 1.2rem; }
.about-grid p + p { margin-top: 1rem; }
.about-grid p { color: var(--muted); }

/* portrait placeholder */
.portrait-ph {
  aspect-ratio: 4/5;
  border-radius: var(--r-img);
  background:
    radial-gradient(120% 80% at 30% 20%, var(--primary-tint), transparent 60%),
    var(--surface-2);
  border: 1px dashed oklch(0.405 0.085 162 / 0.4);
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.75rem;
  text-align: center;
  color: var(--primary-strong);
  padding: 2rem;
}
.portrait-ph svg { width: 48px; height: 48px; opacity: 0.7; }
.portrait-ph strong { font-family: var(--font-display); font-size: 1.05rem; }
.portrait-ph small { color: var(--muted); max-width: 24ch; }

/* values list */
.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.value-tile { padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--r-card); background: var(--bg); }
.value-tile .vt-num { font-family: var(--font-display); font-weight: 800; color: var(--accent-strong); font-size: 1.1rem; }
.value-tile h3 { font-size: 1.2rem; margin: 0.5rem 0; }
.value-tile p { color: var(--muted); font-size: 0.95rem; }

/* compare (independent vs dealership) */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.compare__col { border: 1px solid var(--line); border-radius: var(--r-card); padding: clamp(1.5rem, 3vw, 2rem); background: var(--bg); }
.compare__col--us { background: var(--primary-ink); border-color: transparent; color: var(--on-primary); }
.compare__col h3 { font-size: 1.3rem; margin-bottom: 1.1rem; }
.compare__col--us h3 { color: var(--on-primary); }
.compare__col ul { list-style: none; padding: 0; display: grid; gap: 0.8rem; }
.compare__col li { display: flex; gap: 0.65rem; align-items: flex-start; }
.compare__col li svg { width: 1.25rem; height: 1.25rem; flex: none; margin-top: 0.15rem; }
.compare__col--them li { color: var(--muted); }
.compare__col--them svg { color: var(--accent-strong); }
.compare__col--us li { color: oklch(0.99 0 0 / 0.9); }
.compare__col--us svg { color: var(--accent); }

/* ==========================================================================
   Reviews
   ========================================================================== */
.rating-hero { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(1.5rem, 5vw, 3.5rem); }
.rating-hero__score { text-align: center; }
.rating-hero__score .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(3.5rem, 2.5rem + 4vw, 5.5rem); line-height: 0.9; color: var(--primary); }
.rating-hero__score .stars { font-size: 1.5rem; margin-top: 0.5rem; }
.rating-hero__score small { display: block; color: var(--muted); margin-top: 0.5rem; }
.rating-hero__text { flex: 1 1 320px; }
.rating-hero__text p { color: var(--muted); font-size: 1.15rem; }

.reviews-grid { columns: 3 280px; column-gap: 1.25rem; }
.review-card {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 1.5rem;
}
.review-card .stars { font-size: 0.95rem; margin-bottom: 0.85rem; }
.review-card p { color: var(--ink); }
.review-card footer { margin-top: 1.1rem; display: flex; align-items: center; gap: 0.7rem; }
.review-card .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: var(--on-primary);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  flex: none;
}
.review-card .who strong { display: block; font-size: 0.95rem; }
.review-card .who small { color: var(--muted); font-size: 0.8rem; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.info-list { display: grid; gap: 1.25rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.3rem; border: 1px solid var(--line); border-radius: var(--r-card); background: var(--bg); }
.info-item .ii-ico { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--primary-tint); color: var(--primary-strong); display: grid; place-items: center; }
.info-item .ii-ico svg { width: 23px; height: 23px; }
.info-item h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.info-item a { font-weight: 600; }
.info-item p, .info-item address { color: var(--muted); font-style: normal; font-size: 0.97rem; }
.todo { color: var(--accent-strong); font-weight: 600; font-size: 0.85rem; }

/* form */
.form { display: grid; gap: 1.1rem; padding: clamp(1.5rem, 3vw, 2rem); border: 1px solid var(--line); border-radius: var(--r-card); background: var(--surface); }
.field { display: grid; gap: 0.4rem; }
.field label { font-weight: 600; font-size: 0.92rem; }
.field input, .field textarea {
  font: inherit;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-input);
  padding: 0.8rem 0.9rem;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-tint);
}
.field textarea { resize: vertical; min-height: 130px; }
.form .help { color: var(--muted); font-size: 0.85rem; }

/* map */
.map-embed { border: 1px solid var(--line); border-radius: var(--r-img); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-embed iframe { display: block; width: 100%; height: clamp(280px, 40vw, 420px); border: 0; }

/* hours table */
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { text-align: left; padding: 0.55rem 0; border-bottom: 1px solid var(--line); }
.hours th { font-weight: 600; padding-right: 1.5rem; }
.hours td { color: var(--muted); text-align: right; white-space: nowrap; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours .closed { color: var(--accent-strong); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--primary-ink); color: oklch(0.99 0 0 / 0.78); }
.site-footer a { color: oklch(0.99 0 0 / 0.78); }
.site-footer a:hover { color: var(--on-primary); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.footer-brand .brand__name { color: var(--on-primary); }
.footer-brand .brand__name span { color: oklch(0.99 0 0 / 0.6); }
.footer-brand p { margin-top: 1rem; color: oklch(0.99 0 0 / 0.7); max-width: 32ch; font-size: 0.95rem; }
.footer-col h4 { font-family: var(--font-body); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: oklch(0.99 0 0 / 0.55); margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 0.6rem; font-size: 0.97rem; }
.footer-col address { font-style: normal; font-size: 0.97rem; line-height: 1.8; }
.footer-bottom {
  border-top: 1px solid oklch(0.99 0 0 / 0.12);
  padding-block: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: oklch(0.99 0 0 / 0.55);
}

/* ==========================================================================
   Motion / reveal
   ========================================================================== */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal-stagger > * { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.js .reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.js .reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.js .reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.js .reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.24s; }
.js .reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.32s; }
.js .reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.4s; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 480px; }
  .floating-card { left: auto; right: 1rem; }
  .value-card--feature { grid-template-columns: 1fr; }
  .about-grid, .contact-grid, .svc-block, .compare { grid-template-columns: 1fr; }
  .svc-block:nth-child(even) .svc-block__media { order: 0; }
  .reviews-grid { columns: 2 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav__links, .nav__cta .btn-phone-label { display: none; }
  .nav__toggle { display: block; }

  /* mobile menu panel */
  .nav__links {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 1rem var(--gutter) 1.5rem;
    z-index: var(--z-menu);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.28s var(--ease), opacity 0.22s var(--ease), visibility 0.28s;
  }
  .nav__links.is-open { display: flex; transform: none; opacity: 1; visibility: visible; }
  .nav__links a { padding: 0.85rem 1rem; font-size: 1.05rem; border-radius: 10px; }
  .nav__links a[aria-current="page"]::after { display: none; }
  .nav__links a[aria-current="page"] { background: var(--primary-tint); }
}

@media (max-width: 560px) {
  .value-grid { grid-template-columns: 1fr; }
  .reviews-grid { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-strip__inner { justify-content: flex-start; }
  .btn-row .btn { flex: 1 1 auto; }
}

/* ---- Reduced motion ----------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js .reveal, .js .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
  .marquee__track { animation: none; }
}
