/* ============================================================
   Premier Car Care — design system
   Brand: kelly/emerald green on near-black, white type, star motif
   Palette keyed to the real logo + "Beat the Heat" banners.
   ============================================================ */

:root {
  --bg:        #F5F6F4;
  --surface:   #FFFFFF;
  --text:      #14201A;
  --muted:     #5C6B63;
  --primary:   #2BA93B;
  --secondary: #0E1110;
  --accent:    #41C24F;
  --border:    #DCE1DC;
  --focus:     #2BA93B;

  --ink-on-dark:      #F4F7F5;
  --muted-on-dark:    #9DACA3;
  --hairline-on-dark: rgba(255,255,255,.10);

  --radius:   14px;
  --radius-sm: 9px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(14,17,16,.05), 0 1px 3px rgba(14,17,16,.06);
  --shadow:    0 6px 18px -8px rgba(14,17,16,.18), 0 2px 6px -2px rgba(14,17,16,.08);
  --shadow-lg: 0 28px 60px -28px rgba(14,17,16,.45), 0 8px 24px -12px rgba(14,17,16,.22);

  --maxw: 1200px;
  --gutter: clamp(18px, 5vw, 56px);

  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Source Sans 3', system-ui, -apple-system, sans-serif;
  --font-script: 'Pinyon Script', cursive;

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

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
  text-wrap: balance;
}

::selection { background: var(--accent); color: var(--secondary); }

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

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 9vw, 116px); }
.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--primary);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--accent); }
.eyebrow.on-dark::before { background: var(--accent); }

.section-head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head h2 {
  font-size: clamp(28px, 5.2vw, 46px);
}
.section-head p {
  margin: 16px 0 0;
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--muted);
  max-width: 60ch;
}

/* star motif */
.star { color: var(--primary); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
  min-height: 48px;
  line-height: 1.1;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 22px -10px rgba(43,169,59,.8);
}
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(43,169,59,.9); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-ghost.on-dark { color: var(--ink-on-dark); border-color: rgba(255,255,255,.22); }
.btn-ghost.on-dark:hover { border-color: var(--accent); color: var(--accent); background: rgba(255,255,255,.04); }
.btn-wa {
  background: #1f2b25;
  color: var(--ink-on-dark);
  border-color: rgba(255,255,255,.12);
}
.btn-wa:hover { background: #25382e; border-color: var(--accent); transform: translateY(-2px); }
.btn-wa svg { color: #54d568; }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 28px; font-size: 16.5px; min-height: 56px; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--secondary) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--hairline-on-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 72px;
}
.header-nav {
  display: none;
  gap: 4px;
  margin-left: auto;
}
.header-nav a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--muted-on-dark);
  padding: 9px 13px;
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.header-nav a:hover { color: var(--ink-on-dark); background: rgba(255,255,255,.05); }
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.header-nav + .header-actions { margin-left: 8px; }
.header-call {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.15;
}
.header-call .lbl { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-on-dark); font-family: var(--font-head); }
.header-call .num { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--ink-on-dark); }
.header-call .num:hover { color: var(--accent); }

.menu-toggle {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--hairline-on-dark);
  color: var(--ink-on-dark);
}
.menu-toggle svg { width: 22px; height: 22px; }

@media (min-width: 1000px) {
  .header-nav { display: flex; }
  .header-call { display: flex; }
  .menu-toggle { display: none; }
  .header-actions { margin-left: 0; }
}

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--secondary);
  color: var(--ink-on-dark);
  transform: translateX(100%);
  transition: transform .34s var(--ease);
  padding: 0;
}
.drawer.open { transform: translateX(0); }
.drawer-top { display: flex; align-items: center; justify-content: space-between; height: 72px; padding-inline: var(--gutter); border-bottom: 1px solid var(--hairline-on-dark); }
.drawer-close { width: 46px; height: 46px; border-radius: 10px; background: rgba(255,255,255,.06); border: 1px solid var(--hairline-on-dark); color: var(--ink-on-dark); display: inline-flex; align-items: center; justify-content: center; }
.drawer-close svg { width: 22px; height: 22px; }
.drawer-links { display: flex; flex-direction: column; gap: 2px; padding: 22px var(--gutter); overflow-y: auto; }
.drawer-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink-on-dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline-on-dark);
  display: flex; align-items: center; justify-content: space-between;
}
.drawer-links a .star { font-size: 14px; opacity: 0; transition: opacity .15s; }
.drawer-links a:active .star, .drawer-links a:hover .star { opacity: 1; }
.drawer-foot { padding: 22px var(--gutter) calc(22px + env(safe-area-inset-bottom)); display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--hairline-on-dark); }

/* ============================================================
   Wordmark (CSS recreation of the real cursive logo lockup)
   ============================================================ */
.wordmark { display: inline-flex; flex-direction: column; align-items: center; line-height: 1; user-select: none; }
.wordmark .premier {
  font-family: var(--font-script);
  font-size: 38px;
  color: var(--ink-on-dark);
  position: relative;
  padding-right: 6px;
  line-height: .9;
}
.wordmark .premier .dot-star {
  position: absolute;
  top: -2px; right: -6px;
  font-size: 13px;
  color: var(--primary);
}
.wordmark .carcare {
  display: flex; align-items: center; gap: 8px;
  margin-top: 1px;
}
.wordmark .carcare .rule { height: 1.5px; width: 26px; background: var(--primary); }
.wordmark .carcare .txt {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: .42em;
  text-indent: .42em;
  color: var(--ink-on-dark);
  text-transform: uppercase;
}
.wordmark.dark .premier, .wordmark.dark .carcare .txt { color: var(--text); }
.wordmark.lg .premier { font-size: 58px; }
.wordmark.lg .carcare .txt { font-size: 12px; }
.wordmark.lg .carcare .rule { width: 36px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background: var(--secondary);
  color: var(--ink-on-dark);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 540px at 78% -8%, rgba(43,169,59,.20), transparent 60%),
    radial-gradient(800px 600px at -5% 110%, rgba(65,194,79,.10), transparent 55%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  gap: clamp(34px, 5vw, 64px);
  padding-block: clamp(44px, 7vw, 92px);
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600;
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
  background: rgba(65,194,79,.10);
  border: 1px solid rgba(65,194,79,.26);
  padding: 8px 14px; border-radius: 999px;
  margin-bottom: 24px;
}
.hero-eyebrow .star { font-size: 11px; }
.hero h1 {
  color: #fff;
  font-size: clamp(33px, 7vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.hero h1 .hl { color: var(--accent); }
.hero .lede {
  margin: 22px 0 0;
  font-size: clamp(16.5px, 2.4vw, 20px);
  color: #c8d2cb;
  max-width: 46ch;
  line-height: 1.55;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--hairline-on-dark); }
.hero-trust .item { display: flex; align-items: center; gap: 9px; font-size: 14px; color: #c8d2cb; }
.hero-trust .item svg { width: 17px; height: 17px; color: var(--accent); flex: none; }

.hero-media { position: relative; }
.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.1;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14,17,16,.55));
  pointer-events: none;
}
.hero-tag {
  position: absolute; left: 18px; bottom: 16px; right: 18px;
  display: flex; align-items: center; gap: 10px;
  z-index: 2;
  font-family: var(--font-head); font-weight: 600; font-size: 13.5px;
  color: #fff;
}
.hero-tag .pin { width: 30px; height: 30px; border-radius: 8px; background: var(--primary); display: grid; place-items: center; flex: none; }
.hero-tag .pin svg { width: 16px; height: 16px; color: #fff; }
.hero-badge {
  position: absolute;
  top: -18px; right: 18px;
  z-index: 3;
  background: #fff; color: var(--text);
  border-radius: 14px;
  padding: 13px 17px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--border);
}
.hero-badge .yr { font-family: var(--font-head); font-weight: 800; font-size: 26px; color: var(--primary); line-height: 1; }
.hero-badge .cap { font-size: 11.5px; color: var(--muted); line-height: 1.25; max-width: 12ch; }

@media (min-width: 920px) {
  .hero-grid { grid-template-columns: 1.06fr .94fr; }
}

/* ============================================================
   Marque ticker (logo wall, text-based)
   ============================================================ */
.marque-strip { background: var(--secondary); border-top: 1px solid var(--hairline-on-dark); padding-block: 22px; }
.marque-strip .inner { display: flex; align-items: center; gap: clamp(20px, 5vw, 54px); flex-wrap: wrap; justify-content: center; }
.marque-strip .label { font-family: var(--font-head); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-on-dark); }
.marque-strip .name { font-family: var(--font-head); font-weight: 700; font-size: clamp(15px, 2.4vw, 21px); color: #cfd8d1; letter-spacing: .02em; transition: color .15s; }
.marque-strip .name:hover { color: #fff; }

/* ============================================================
   Services
   ============================================================ */
.svc-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 620px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }

.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--primary) 40%, var(--border)); }
.svc-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--secondary); position: relative; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.svc-card:hover .svc-media img { transform: scale(1.05); }
.svc-no {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-head); font-weight: 700; font-size: 12px;
  color: #fff; background: rgba(14,17,16,.55); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.18);
  width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center;
}
.svc-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { font-size: 19.5px; }
.svc-body p { margin: 9px 0 0; color: var(--muted); font-size: 15.5px; line-height: 1.5; flex: 1; }
.svc-link {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-top: 18px;
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid color-mix(in srgb, var(--primary) 30%, var(--border));
  background: color-mix(in srgb, var(--primary) 8%, var(--surface));
  font-family: var(--font-head); font-weight: 600; font-size: 14.5px;
  color: var(--primary);
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.svc-link svg { width: 16px; height: 16px; flex: none; transition: transform .2s var(--ease); }
.svc-card:hover .svc-link {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 10px 22px -12px rgba(43,169,59,.85);
}
.svc-link:hover, .svc-link:focus-visible {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 10px 22px -12px rgba(43,169,59,.85);
}
.svc-card:hover .svc-link svg, .svc-link:hover svg { transform: translateX(4px); }

/* placeholder media */
.ph {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(45deg, #161a18 0 10px, #1c211e 10px 20px);
  display: grid; place-items: center; color: #6f7d74;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 12px; letter-spacing: .04em;
  text-align: center; padding: 10px;
}
.ph.light {
  background: repeating-linear-gradient(45deg, #eef0ed 0 10px, #e6e9e5 10px 20px);
  color: #97a39a;
}

/* ============================================================
   Marque cards
   ============================================================ */
.marque-section { background: var(--secondary); color: var(--ink-on-dark); }
.marque-section h2 { color: #fff; }
.marque-section .section-head p { color: var(--muted-on-dark); }
.marque-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .marque-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .marque-grid { grid-template-columns: repeat(4, 1fr); } }

.marque-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #161b18;
  border: 1px solid var(--hairline-on-dark);
  min-height: 188px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px;
  transition: transform .2s var(--ease), border-color .2s var(--ease);
  isolation: isolate;
}
.marque-card:hover { transform: translateY(-4px); border-color: rgba(65,194,79,.5); }
.marque-card .bg { position: absolute; inset: 0; z-index: -2; }
.marque-card .bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.marque-card .ph { position: absolute; inset: 0; z-index: -2; }
.marque-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(14,17,16,.2), rgba(14,17,16,.88)); }
.marque-card .lead-tag {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-head); font-weight: 700; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--secondary); background: var(--accent);
  padding: 5px 9px; border-radius: 6px;
}
.marque-card h3 { color: #fff; font-size: 20px; }
.marque-card .models { margin: 7px 0 0; font-size: 13px; color: #b9c4bc; line-height: 1.45; }
.marque-card .more { margin-top: 12px; font-family: var(--font-head); font-weight: 600; font-size: 13px; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; }

/* ============================================================
   Why us
   ============================================================ */
.why-grid { display: grid; gap: clamp(34px, 5vw, 60px); align-items: center; }
@media (min-width: 920px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-list { display: grid; gap: 14px; }
.why-item {
  display: flex; gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.why-item:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.why-ico {
  flex: none; width: 46px; height: 46px; border-radius: 11px;
  background: color-mix(in srgb, var(--primary) 12%, #fff);
  border: 1px solid color-mix(in srgb, var(--primary) 24%, var(--border));
  display: grid; place-items: center; color: var(--primary);
}
.why-ico svg { width: 23px; height: 23px; }
.why-item h3 { font-size: 17.5px; }
.why-item p { margin: 4px 0 0; font-size: 14.5px; color: var(--muted); line-height: 1.5; }

.why-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5/6; border: 1px solid var(--border); }
.why-media img { width: 100%; height: 100%; object-fit: cover; }
.why-media .ph { position: absolute; inset: 0; }
.why-quote {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  background: color-mix(in srgb, var(--secondary) 84%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 16px 18px;
  color: #fff;
}
.why-quote .big { font-family: var(--font-head); font-weight: 700; font-size: 16px; }
.why-quote .small { font-size: 13px; color: #c1ccc3; margin-top: 4px; }

/* ============================================================
   Offers
   ============================================================ */
.offers { background: var(--secondary); color: var(--ink-on-dark); position: relative; overflow: hidden; isolation: isolate; }
.offers::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(900px 460px at 88% -10%, rgba(43,169,59,.18), transparent 60%); }
.offers h2 { color: #fff; }
.offers .section-head p { color: var(--muted-on-dark); }
.offers-note {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--muted-on-dark);
  background: rgba(255,255,255,.04); border: 1px solid var(--hairline-on-dark);
  padding: 8px 14px; border-radius: 999px; margin-top: 18px;
}
.offers-note svg { width: 15px; height: 15px; color: var(--accent); flex: none; }
.offers-grid { display: grid; gap: 16px; grid-template-columns: 1fr; margin-top: 8px; }
@media (min-width: 760px) { .offers-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .offers-grid { grid-template-columns: repeat(3, 1fr); } }

.offer-card {
  border: 1px solid var(--hairline-on-dark);
  border-radius: var(--radius);
  padding: 24px 22px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.offer-card:hover { transform: translateY(-4px); border-color: rgba(65,194,79,.45); }
.offer-card.feature { border-color: rgba(65,194,79,.4); background: linear-gradient(180deg, rgba(43,169,59,.16), rgba(43,169,59,.04)); }
.offer-tag {
  align-self: flex-start;
  font-family: var(--font-head); font-weight: 700; font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(65,194,79,.4); border-radius: 6px; padding: 5px 9px; margin-bottom: 16px;
}
.offer-card.feature .offer-tag { background: var(--accent); color: var(--secondary); border-color: var(--accent); }
.offer-card h3 { color: #fff; font-size: 21px; }
.offer-card p { margin: 10px 0 0; color: #c1ccc3; font-size: 15px; line-height: 1.55; flex: 1; }
.offer-list { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 8px; }
.offer-list li { display: flex; gap: 9px; align-items: flex-start; font-size: 14px; color: #d4ddd6; }
.offer-list li svg { width: 16px; height: 16px; color: var(--accent); flex: none; margin-top: 2px; }
.offer-card .btn { margin-top: 20px; }

/* ============================================================
   Gallery
   ============================================================ */
.gallery-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 1fr; }
@media (min-width: 760px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-grid .cell { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); aspect-ratio: 1/1; }
.gallery-grid .cell.wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-grid .cell:hover img { transform: scale(1.06); }

/* ============================================================
   Contact
   ============================================================ */
.contact { background: var(--surface); border-top: 1px solid var(--border); }
.contact-grid { display: grid; gap: clamp(28px, 5vw, 52px); }
@media (min-width: 940px) { .contact-grid { grid-template-columns: 1fr 1.05fr; align-items: start; } }

.info-card { display: grid; gap: 14px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--border); }
.info-row:first-child { padding-top: 0; }
.info-ico { flex: none; width: 42px; height: 42px; border-radius: 11px; background: color-mix(in srgb, var(--primary) 11%, #fff); border: 1px solid color-mix(in srgb, var(--primary) 22%, var(--border)); display: grid; place-items: center; color: var(--primary); }
.info-ico svg { width: 21px; height: 21px; }
.info-row .k { font-family: var(--font-head); font-weight: 600; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.info-row .v { font-size: 16px; margin-top: 3px; color: var(--text); }
.info-row .v a:hover { color: var(--primary); }
.info-row .v .todo { font-size: 12.5px; color: var(--muted); font-style: italic; }
.hours-list { display: grid; gap: 3px; margin-top: 4px; }
.hours-list .hr { display: flex; justify-content: space-between; gap: 20px; font-size: 15px; max-width: 320px; }
.hours-list .hr .closed { color: var(--muted); }

/* map embed */
.map-embed {
  margin-top: 18px;
  border-radius: var(--radius);
}
.map-embed iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 360px;
  border: 0;
  border-radius: 12px;
}

/* form */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}
.form-card h3 { font-size: 24px; }
.form-card .sub { margin: 8px 0 22px; color: var(--muted); font-size: 15px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 13px; margin-bottom: 7px; color: var(--text); }
.field label .req { color: var(--primary); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit; font-size: 15.5px;
  background: #fafbfa; color: var(--text);
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.field textarea { min-height: 100px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(43,169,59,.16); background: #fff; }
.field input.err, .field select.err { border-color: #d23b3b; box-shadow: 0 0 0 3px rgba(210,59,59,.12); }
.field .msg { font-size: 12.5px; color: #d23b3b; margin-top: 6px; font-weight: 500; }
.field-row { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 520px) { .field-row { grid-template-columns: 1fr 1fr; } }
.form-foot { font-size: 12.5px; color: var(--muted); margin-top: 14px; text-align: center; line-height: 1.5; }

.form-success { text-align: center; padding: 18px 6px; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: color-mix(in srgb, var(--primary) 14%, #fff); border: 1px solid color-mix(in srgb, var(--primary) 30%, var(--border)); display: grid; place-items: center; margin: 0 auto 18px; color: var(--primary); animation: pop .4s var(--ease); }
.form-success .check svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 24px; }
.form-success p { color: var(--muted); margin: 10px auto 22px; max-width: 38ch; font-size: 15.5px; }
@keyframes pop { 0% { transform: scale(.6); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--secondary); color: var(--ink-on-dark); padding-block: clamp(48px, 7vw, 76px) 0; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand p { color: var(--muted-on-dark); font-size: 14.5px; margin: 18px 0 0; max-width: 36ch; line-height: 1.6; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,.05); border: 1px solid var(--hairline-on-dark); display: grid; place-items: center; color: var(--ink-on-dark); transition: background .15s, border-color .15s, color .15s; }
.footer-socials a:hover { background: rgba(65,194,79,.12); border-color: var(--accent); color: var(--accent); }
.footer-socials a svg { width: 19px; height: 19px; }
.footer-col h4 { font-family: var(--font-head); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-on-dark); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-col a, .footer-col .li { color: #c4cec6; font-size: 14.5px; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { margin-top: clamp(40px, 6vw, 60px); border-top: 1px solid var(--hairline-on-dark); padding-block: 22px calc(22px + env(safe-area-inset-bottom)); display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: space-between; align-items: center; }
.footer-bottom p { margin: 0; font-size: 13px; color: var(--muted-on-dark); }
.footer-disc { font-size: 11.5px; color: #6c7a72; line-height: 1.5; max-width: 70ch; margin-top: 16px; }

/* ============================================================
   Sticky mobile action bar
   ============================================================ */
.action-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--hairline-on-dark);
  border-top: 1px solid rgba(0,0,0,.1);
  box-shadow: 0 -8px 24px -12px rgba(14,17,16,.4);
  padding-bottom: env(safe-area-inset-bottom);
}
.action-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  padding: 11px 6px;
  background: var(--secondary); color: var(--ink-on-dark);
  font-family: var(--font-head); font-weight: 600; font-size: 11.5px;
  min-height: 56px;
}
.action-bar a svg { width: 21px; height: 21px; }
.action-bar a.primary { background: var(--primary); color: #fff; }
.action-bar a.primary svg { color: #fff; }
.action-bar a .wa-ico { color: #54d568; }
@media (min-width: 1000px) { .action-bar { display: none; } }
body { padding-bottom: 0; }
@media (max-width: 999px) { body.has-bar { padding-bottom: 64px; } }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* scrim for drawer */
.scrim { position: fixed; inset: 0; background: rgba(14,17,16,.5); z-index: 75; opacity: 0; pointer-events: none; transition: opacity .3s; }
.scrim.show { opacity: 1; pointer-events: auto; }
