/* ============================================================
   NiagaraCtr.ca — Design System
   Clean food-tech aesthetic: white canvas, ink typography,
   signature red, dark impact sections.
   ============================================================ */

:root {
  --ink: #101014;
  --ink-soft: #4b4b55;
  --ink-mute: #8a8a94;
  --paper: #ffffff;
  --cream: #faf7f2;
  --line: #ebebee;
  --red: #e8382c;
  --red-dark: #c72a1f;
  --red-soft: #fdeceb;
  --green: #1d8a4e;
  --green-soft: #e7f5ed;
  --amber: #f5a623;
  --dark: #121217;
  --dark-2: #1a1a21;
  --dark-line: #2a2a33;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 2px 8px rgba(16,16,20,.05), 0 12px 32px rgba(16,16,20,.07);
  --shadow-lg: 0 4px 12px rgba(16,16,20,.06), 0 24px 56px rgba(16,16,20,.12);
  --font-head: "Sora", "Inter", -apple-system, sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--red); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 22px; height: 2.5px; background: var(--red); border-radius: 2px; }
.eyebrow.on-dark { color: #ff8f86; }
.eyebrow.on-dark::before { background: #ff8f86; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 15.5px;
  padding: 15px 28px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 8px 24px rgba(232,56,44,.32); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(232,56,44,.4); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.25); }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.35); }
.btn-outline-light:hover { border-color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 11px 20px; font-size: 14px; }
.btn-block { width: 100%; }
.btn svg { flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }
.logo { display: flex; align-items: baseline; font-family: var(--font-head); font-weight: 800; font-size: 23px; letter-spacing: -0.03em; }
.logo .l-niagara { color: var(--ink); }
.logo .l-ctr { color: var(--red); }
.logo .l-ca { font-size: 14px; font-weight: 600; color: var(--ink-mute); margin-left: 2px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-weight: 600; font-size: 15px; color: var(--ink-soft); transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 24px; height: 2.5px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .2s; }
.mobile-menu { display: none; background: #fff; border-bottom: 1px solid var(--line); padding: 8px 24px 24px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 13px 0; font-weight: 600; font-size: 16px; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 16px; }

/* ---------- Hero (home) ---------- */
.hero { padding: 72px 0 40px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(38px, 5.2vw, 62px); margin-bottom: 22px; }
.hero h1 .accent { color: var(--red); position: relative; }
.hero h1 .accent svg { position: absolute; left: 0; bottom: -10px; width: 100%; height: 12px; }
.hero .lede { font-size: 19px; color: var(--ink-soft); max-width: 520px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-note { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-mute); font-weight: 500; }
.hero-note .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-soft); }

.hero-visual { position: relative; }
.hero-img-main {
  border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/4.3; background: linear-gradient(140deg,#ffd8c2,#e8382c);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.float-card {
  position: absolute; background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
}
.float-card .fc-icon {
  width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.float-card .fc-title { font-weight: 700; font-size: 14px; font-family: var(--font-head); }
.float-card .fc-sub { font-size: 12.5px; color: var(--ink-mute); }
.fc-1 { top: 26px; left: -40px; animation: floaty 5s ease-in-out infinite; }
.fc-1 .fc-icon { background: var(--green-soft); }
.fc-2 { bottom: 34px; right: -28px; animation: floaty 6s ease-in-out .8s infinite; }
.fc-2 .fc-icon { background: var(--red-soft); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ---------- Stats strip ---------- */
.stats { background: var(--dark); color: #fff; padding: 34px 0; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(26px, 3vw, 36px); letter-spacing: -0.02em; }
.stat .num .star { color: var(--amber); }
.stat .lbl { font-size: 13.5px; color: rgba(255,255,255,.62); font-weight: 500; margin-top: 2px; }
.stat { border-right: 1px solid var(--dark-line); }
.stat:last-child { border-right: none; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section.tint { background: var(--cream); }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 44px); margin-bottom: 16px; }
.section-head p { font-size: 17.5px; color: var(--ink-soft); }

/* ---------- Restaurant cards ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.r-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; display: flex; flex-direction: column;
}
.r-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.r-card-img { position: relative; aspect-ratio: 16/9.4; overflow: hidden; background: linear-gradient(135deg,#f7cfa2,#e8382c); }
.r-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.r-card:hover .r-card-img img { transform: scale(1.05); }
.chip {
  position: absolute; display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(6px);
  border-radius: 999px; padding: 7px 13px; font-size: 13px; font-weight: 700;
}
.chip-rating { top: 14px; left: 14px; }
.chip-rating .star { color: var(--amber); }
.chip-city { top: 14px; right: 14px; background: var(--ink); color: #fff; font-weight: 600; }
.r-card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.r-card-body h3 { font-size: 22px; margin-bottom: 6px; }
.r-card-body .cuisine { font-size: 14.5px; color: var(--ink-mute); font-weight: 500; margin-bottom: 16px; }
.r-card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.tag {
  font-size: 12.5px; font-weight: 600; padding: 6px 12px; border-radius: 999px;
  background: var(--cream); color: var(--ink-soft); border: 1px solid var(--line);
}
.tag.hot { background: var(--red-soft); color: var(--red-dark); border-color: transparent; }
.r-card-actions { margin-top: auto; display: flex; gap: 10px; }
.r-card-actions .btn { flex: 1; }

.coming-card {
  border: 2px dashed #ddd; border-radius: var(--radius); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 48px 32px; background: transparent;
}
.coming-card .cc-emoji { font-size: 40px; margin-bottom: 14px; }
.coming-card h3 { font-size: 20px; margin-bottom: 8px; }
.coming-card p { color: var(--ink-mute); font-size: 15px; max-width: 300px; margin-bottom: 20px; }

/* ---------- Steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; position: relative; transition: transform .2s, box-shadow .2s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step .s-num {
  font-family: var(--font-head); font-weight: 800; font-size: 15px; color: #fff;
  background: var(--red); width: 38px; height: 38px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(232,56,44,.3);
}
.step h3 { font-size: 17.5px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- Feature (pre-order form) dark section ---------- */
.feature-dark { background: var(--dark); color: #fff; padding: 96px 0; position: relative; overflow: hidden; }
.feature-dark::after {
  content: ""; position: absolute; right: -180px; top: -180px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(232,56,44,.22), transparent 65%); pointer-events: none;
}
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.feature-dark h2 { font-size: clamp(30px, 3.6vw, 44px); margin-bottom: 20px; }
.feature-dark .lede { color: rgba(255,255,255,.72); font-size: 17.5px; margin-bottom: 30px; }
.feature-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .fl-check {
  width: 26px; height: 26px; border-radius: 8px; background: rgba(232,56,44,.18); color: #ff8f86;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; font-weight: 800; margin-top: 2px;
}
.feature-list b { display: block; font-family: var(--font-head); font-size: 15.5px; }
.feature-list span { font-size: 14.5px; color: rgba(255,255,255,.62); }

.form-mock {
  background: #fff; color: var(--ink); border-radius: 20px; box-shadow: 0 30px 80px rgba(0,0,0,.45);
  padding: 28px; transform: rotate(1.5deg); transition: transform .3s ease;
}
.form-mock:hover { transform: rotate(0deg) scale(1.01); }
.form-mock .fm-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.form-mock .fm-head b { font-family: var(--font-head); font-size: 16px; }
.form-mock .fm-badge { font-size: 11px; font-weight: 700; color: var(--red-dark); background: var(--red-soft); padding: 5px 10px; border-radius: 999px; letter-spacing: .06em; }
.form-mock table { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.form-mock th { text-align: left; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); padding: 8px 10px; border-bottom: 2px solid var(--ink); }
.form-mock td { padding: 10px; border-bottom: 1px solid var(--line); font-weight: 500; }
.form-mock tr:last-child td { border-bottom: none; color: var(--ink-mute); font-style: italic; }

/* ---------- Cities ---------- */
.cities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.city-card {
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: border-color .15s, transform .15s, box-shadow .15s; background: #fff;
}
.city-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow); }
.city-card b { font-family: var(--font-head); font-size: 16.5px; display: block; }
.city-card span { font-size: 13.5px; color: var(--ink-mute); }
.city-card .arrow { color: var(--red); font-size: 20px; font-weight: 700; }

/* ---------- CTA banner ---------- */
.cta-banner { background: var(--dark); border-radius: 28px; padding: 72px 56px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-banner::before {
  content: ""; position: absolute; left: -120px; bottom: -160px; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(232,56,44,.25), transparent 65%);
}
.cta-banner h2 { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 16px; position: relative; }
.cta-banner p { color: rgba(255,255,255,.7); font-size: 17px; max-width: 520px; margin: 0 auto 32px; position: relative; }
.cta-banner .btn { position: relative; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #fff; padding: 72px 0 36px; margin-top: 96px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-grid .logo .l-niagara { color: #fff; }
.footer-tagline { color: rgba(255,255,255,.6); font-size: 14.5px; margin-top: 14px; max-width: 300px; }
.footer-col h4 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 18px; font-weight: 700; }
.footer-col a { display: block; padding: 6px 0; color: rgba(255,255,255,.78); font-size: 14.5px; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--dark-line); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,.45);
}

/* ============================================================
   Listing page
   ============================================================ */
.listing-hero { position: relative; height: 420px; overflow: hidden; background: linear-gradient(135deg,#f7cfa2,#c72a1f); }
.listing-hero img { width: 100%; height: 100%; object-fit: cover; }
.listing-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,14,.82) 0%, rgba(10,10,14,.25) 55%, rgba(10,10,14,.15) 100%);
}
.listing-hero-content { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding-bottom: 38px; color: #fff; }
.breadcrumbs { font-size: 13.5px; color: rgba(255,255,255,.75); margin-bottom: 14px; font-weight: 500; }
.breadcrumbs a:hover { color: #fff; text-decoration: underline; }
.listing-hero h1 { font-size: clamp(32px, 4.6vw, 54px); margin-bottom: 12px; }
.listing-meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.meta-chip {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600;
  background: rgba(255,255,255,.14); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.22);
  padding: 8px 14px; border-radius: 999px;
}
.meta-chip .star { color: var(--amber); }

.listing-body { padding: 56px 0 96px; }
.listing-grid { display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: start; }

.notice-bar {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px;
}
.notice {
  flex: 1; min-width: 240px; display: flex; gap: 14px; align-items: center;
  border-radius: var(--radius-sm); padding: 16px 18px; font-size: 14.5px; font-weight: 500;
}
.notice b { font-family: var(--font-head); display: block; font-size: 15px; }
.notice.n-red { background: var(--red-soft); color: var(--red-dark); }
.notice.n-green { background: var(--green-soft); color: var(--green); }
.notice .n-icon { font-size: 22px; }

.listing-section { margin-bottom: 48px; }
.listing-section h2 { font-size: 26px; margin-bottom: 8px; }
.listing-section .sub { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 24px; }

.dl-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dl-card {
  display: flex; gap: 16px; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 20px; transition: border-color .15s, transform .15s, box-shadow .15s; background: #fff;
}
.dl-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow); }
.dl-card .dl-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--red-soft); color: var(--red);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dl-card b { font-family: var(--font-head); font-size: 15.5px; display: block; }
.dl-card span { font-size: 13px; color: var(--ink-mute); }
.dl-card .dl-cta { margin-left: auto; color: var(--red); font-weight: 700; font-size: 13.5px; white-space: nowrap; }
.dl-card.featured { border: 2px solid var(--red); background: linear-gradient(180deg, #fff, var(--red-soft)); position: relative; }
.dl-card.featured .ribbon {
  position: absolute; top: -11px; left: 18px; background: var(--red); color: #fff;
  font-size: 10.5px; font-weight: 800; letter-spacing: .08em; padding: 4px 10px; border-radius: 999px;
}

.menu-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.menu-group { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: #fff; }
.menu-group h3 {
  font-size: 14px; letter-spacing: .06em; text-transform: uppercase; padding: 14px 18px;
  background: var(--cream); border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center;
}
.menu-group h3 small { font-size: 11.5px; color: var(--ink-mute); font-weight: 600; text-transform: none; letter-spacing: 0; }
.menu-group ul { padding: 8px 18px 14px; }
.menu-group li { display: flex; justify-content: space-between; align-items: baseline; padding: 7px 0; font-size: 14.5px; border-bottom: 1px dashed var(--line); }
.menu-group li:last-child { border-bottom: none; }
.menu-group li .price { font-weight: 700; font-family: var(--font-head); font-size: 14px; }
.menu-note { margin-top: 16px; font-size: 13.5px; color: var(--ink-mute); background: var(--cream); border-radius: var(--radius-sm); padding: 14px 18px; }

.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-card { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px; background: #fff; }
.contact-card .cc-label { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); font-weight: 700; margin-bottom: 8px; }
.contact-card .cc-value { font-family: var(--font-head); font-weight: 700; font-size: 17px; margin-bottom: 14px; }
.contact-card .cc-value a:hover { color: var(--red); }
.info-list { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
.info-list .row { display: flex; justify-content: space-between; gap: 16px; padding: 15px 20px; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.info-list .row:last-child { border-bottom: none; }
.info-list .row .k { color: var(--ink-mute); font-weight: 500; }
.info-list .row .v { font-weight: 600; text-align: right; }

/* ---------- Quote form ---------- */
.quote-panel {
  position: sticky; top: 96px;
  background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.quote-panel-head { background: var(--dark); color: #fff; padding: 24px 28px; }
.quote-panel-head h2 { font-size: 20px; margin-bottom: 4px; }
.quote-panel-head p { font-size: 13.5px; color: rgba(255,255,255,.65); }
.quote-form { padding: 26px 28px 28px; }
.qf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.qf-field { margin-bottom: 16px; }
.qf-field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.qf-field label .req { color: var(--red); }
.qf-field input, .qf-field select, .qf-field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: 14.5px; color: var(--ink); background: #fff;
  transition: border-color .15s, box-shadow .15s; -webkit-appearance: none; appearance: none;
}
.qf-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.qf-field input:focus, .qf-field select:focus, .qf-field textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(232,56,44,.12);
}
.qf-field input.invalid, .qf-field select.invalid { border-color: var(--red); background: #fff7f6; }
.qf-error { display: none; font-size: 12.5px; color: var(--red-dark); margin-top: 5px; font-weight: 600; }
.qf-field.show-error .qf-error { display: block; }

.qf-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 6px; }
.qf-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.qf-toggle label {
  border: 1.5px solid var(--line); border-radius: 10px; padding: 12px 10px; text-align: center;
  font-size: 14px; font-weight: 700; cursor: pointer; transition: all .15s; margin: 0;
}
.qf-toggle label small { display: block; font-size: 11.5px; font-weight: 500; color: var(--ink-mute); margin-top: 2px; }
.qf-toggle input:checked + label { border-color: var(--red); background: var(--red-soft); color: var(--red-dark); }
.qf-toggle input:checked + label small { color: var(--red-dark); opacity: .8; }
.qf-hint { font-size: 12.5px; color: var(--ink-mute); margin: 6px 0 16px; }
#deliveryFields { display: none; padding: 16px; background: var(--cream); border-radius: 12px; margin-bottom: 16px; }
#deliveryFields.visible { display: block; }
#deliveryFields .qf-field:last-child { margin-bottom: 0; }

.qf-trust { display: flex; align-items: flex-start; gap: 10px; font-size: 12.5px; color: var(--ink-mute); margin-top: 14px; line-height: 1.5; }
.qf-trust svg { flex-shrink: 0; margin-top: 1px; color: var(--green); }

.qf-success { display: none; padding: 44px 28px; text-align: center; }
.qf-success.visible { display: block; }
.qf-success .ok-ring {
  width: 64px; height: 64px; border-radius: 50%; background: var(--green-soft); color: var(--green);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 28px;
}
.qf-success h3 { font-size: 20px; margin-bottom: 10px; }
.qf-success p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 18px; }

/* ============================================================
   Intent (B2B) pages
   ============================================================ */
.intent-hero { padding: 76px 0 56px; background: var(--cream); }
.intent-hero h1 { font-size: clamp(32px, 4.4vw, 52px); max-width: 760px; margin-bottom: 20px; }
.intent-hero .lede { font-size: 18px; color: var(--ink-soft); max-width: 620px; margin-bottom: 32px; }
.intent-hero .hero-actions { margin-bottom: 0; }
.intent-body { padding: 72px 0; }
.intent-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 64px; }
.icol { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; background: #fff; }
.icol .ic-emoji { font-size: 30px; margin-bottom: 14px; }
.icol h3 { font-size: 17.5px; margin-bottom: 8px; }
.icol p { font-size: 14.5px; color: var(--ink-soft); }

.spotlight {
  display: grid; grid-template-columns: 380px 1fr; gap: 0; border: 1px solid var(--line);
  border-radius: 24px; overflow: hidden; background: #fff; box-shadow: var(--shadow);
}
.spotlight-img { position: relative; min-height: 300px; background: linear-gradient(135deg,#f7cfa2,#c72a1f); }
.spotlight-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.spotlight-body { padding: 40px 44px; }
.spotlight-body .sp-rating { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px; background: var(--cream); border-radius: 999px; padding: 7px 14px; margin-bottom: 16px; }
.spotlight-body .sp-rating .star { color: var(--amber); }
.spotlight-body h2 { font-size: 28px; margin-bottom: 10px; }
.spotlight-body > p { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 24px; max-width: 480px; }
.spotlight-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.spotlight-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.faq { max-width: 760px; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; background: #fff; overflow: hidden; }
.faq summary {
  cursor: pointer; padding: 20px 24px; font-family: var(--font-head); font-weight: 700; font-size: 16px;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--red); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 24px 20px; color: var(--ink-soft); font-size: 15px; }

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

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1020px) {
  .listing-grid { grid-template-columns: 1fr; }
  .quote-panel { position: static; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 560px; }
  .fc-1 { left: 8px; } .fc-2 { right: 8px; }
  .feature-grid { grid-template-columns: 1fr; gap: 48px; }
  .spotlight { grid-template-columns: 1fr; }
  .spotlight-img { min-height: 240px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .intent-cols { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta .btn-quote-desktop { display: none; }
  .nav-burger { display: block; }
  .section { padding: 64px 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 20px 12px; }
  .stat { border-right: none; }
  .stat:nth-child(odd) { border-right: 1px solid var(--dark-line); }
  .steps-grid { grid-template-columns: 1fr; }
  .dl-row, .menu-groups, .contact-cards { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 52px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .listing-hero { height: 340px; }
  .qf-row { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 24px; }
  .hero-actions .btn { flex: 1; }
}
