/* ============================================================
   MG Depot - Wholesale & Retail
   Food • Drinks • Kitchen Supplies
   Design system adapted from KG3N Amalgamation visual language
   ============================================================ */

/* ---------- Self-hosted fonts (no third-party requests) ---------- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/inter-var-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("../fonts/sora-var-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  /* Palette - MG Depot orange + charcoal. Sub-brands: CS Deroche green, Q's blue.
     Primary accent is kept under the --green* names so every component inherits
     the rebrand with no per-rule edits; the values are now orange. */
  --bg: #f7efe3;
  --bg-grad: radial-gradient(1100px 560px at 8% -12%, #fde3d0 0%, transparent 52%),
             radial-gradient(900px 520px at 108% 6%, #fbeccb 0%, transparent 55%),
             linear-gradient(180deg, #f7efe3 0%, #efe3d2 100%);
  --surface: #fffaf3;
  --surface-2: #f3ead9;
  --surface-3: #ece0cb;
  --text: #20180f;
  --muted: #71655a;
  --line: #e8dac6;
  --line-strong: #d9c8b0;
  /* primary accent ramp = MG Depot orange */
  --green: #d2461a;
  --green-2: #ef5a23;
  --green-soft: #fde3d3;
  --green-deep: #9c3411;
  /* charcoal / near-black (the logo background) for dark sections */
  --ink: #1a1613;
  --ink-2: #251e18;
  --ink-3: #33281f;
  /* secondary warm gold */
  --amber: #b07d1a;
  --amber-2: #e2a93c;
  --amber-soft: #f7ecd4;
  --gold-deep: #a9751a;
  --orange: #ef5a23;
  --orange-deep: #d2461a;
  --teal: #1f9aa8;
  --teal-deep: #0f6b76;
  /* sub-brand accents */
  /* Sub-brand colours match the client's current logos: CS Deroche = purple, Q's = red */
  --cs: #7c3aed;
  --cs-deep: #5b21b6;
  --cs-soft: #efe7fd;
  --qs: #e11d2a;
  --qs-deep: #b3121d;
  --qs-soft: #fde2e4;
  --whatsapp: #25d366;
  --whatsapp-deep: #128c4b;
  --danger: #c0362c;
  --shadow-sm: 0 1px 2px rgba(28, 22, 17, 0.05), 0 1px 1px rgba(28, 22, 17, 0.03);
  --shadow: 0 6px 20px rgba(28, 22, 17, 0.08), 0 2px 6px rgba(28, 22, 17, 0.05);
  --shadow-lg: 0 22px 55px rgba(28, 22, 17, 0.14), 0 8px 18px rgba(28, 22, 17, 0.07);
  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 20px;
  --container: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { min-height: 100%; }
body {
  margin: 0;
  background: var(--bg);
  background-image: var(--bg-grad);
  background-attachment: fixed;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; }

h1, h2, h3, h4 { font-family: "Sora", Inter, ui-sans-serif, system-ui, sans-serif; line-height: 1.18; letter-spacing: -0.015em; margin: 0 0 12px; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.55rem, 3vw, 2.25rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 14px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--green); color: #fff;
  padding: 10px 14px; border-radius: 0 0 var(--radius-sm) 0;
  z-index: 1000; text-decoration: none; font-weight: 700;
}
.skip-link:focus { left: 0; }

.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 12px 0;
}
.brand { display: flex; gap: 12px; align-items: center; text-decoration: none; }
/* Real MG Depot logo - transparent PNG, meshes with any (dark) surface */
.brand-logo {
  height: 42px; width: auto; display: block;
}
.brand-logo.lg { height: 60px; }
.brand-text { display: flex; flex-direction: column; }
.brand-text strong { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; font-family: "Sora", Inter, sans-serif; }
.brand-text span { color: var(--muted); font-size: 11.5px; margin-top: 1px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  text-decoration: none; font-weight: 600; font-size: 14.5px;
  color: var(--muted); padding: 9px 14px; border-radius: 999px;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.main-nav a:hover { color: var(--text); background: var(--surface-2); }
.main-nav a.active { color: var(--green-deep); background: var(--green-soft); }
/* Dark header variant (used site-wide for the MG Depot look) */
.site-header.dark { background: rgba(20, 17, 14, 0.9); border-bottom-color: rgba(255,255,255,0.08); }
.site-header.dark .main-nav a { color: #cfc7bd; }
.site-header.dark .main-nav a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.site-header.dark .main-nav a.active { color: #fff; background: var(--green); }
.site-header.dark .nav-toggle { border-color: rgba(255,255,255,0.2); }
.site-header.dark .nav-toggle span { background: #fff; }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm); padding: 11px 10px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, var(--green-2), var(--green));
  color: #fff; box-shadow: 0 8px 20px rgba(210, 70, 26, 0.32);
}
.btn-primary:hover { box-shadow: 0 12px 26px rgba(210, 70, 26, 0.42); }
.btn-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-deep));
  color: #fff; box-shadow: 0 8px 20px rgba(18, 140, 75, 0.3);
}
.btn-whatsapp:hover { box-shadow: 0 12px 26px rgba(18, 140, 75, 0.38); }
.btn-ghost {
  background: var(--surface); color: var(--text);
  border-color: var(--line-strong); box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: var(--green-2); color: var(--green-deep); }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn svg { flex-shrink: 0; }

/* ---------- Hero ---------- */
.hero { padding: 64px 0 56px; }
/* Full-width banner hero (photo background + dark gradient + overlaid copy) */
.hero.banner { position: relative; overflow: hidden; padding: clamp(80px, 13vw, 150px) 0; color: #fff; }
.hero.banner .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.hero.banner .hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(95deg, rgba(18,14,11,0.94) 0%, rgba(18,14,11,0.82) 40%, rgba(20,16,12,0.48) 100%),
              linear-gradient(0deg, rgba(18,14,11,0.55), transparent 45%);
}
.hero.banner .hero-inner { position: relative; z-index: 2; }
.hero.banner .hero-copy { max-width: 640px; }
.hero.banner h1 { color: #fff; }
.hero.banner .lead { color: #f2e9e1; }
.hero.banner .lead strong { color: #fff; }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px; align-items: center;
}
/* "Ticket" notched labels - signature wholesale look (eyebrows + section kickers) */
.eyebrow, .kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: "Sora", Inter, sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-deep); background: var(--green-soft);
  padding: 8px 16px 8px 14px; margin-bottom: 16px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 14px 100%, 0 calc(100% - 9px));
}
.eyebrow::before, .kicker::before { content: ""; width: 8px; height: 8px; flex-shrink: 0; transform: rotate(45deg); background: var(--green-2); }
/* gold + light (on-dark) variants */
.eyebrow.amber, .kicker.amber { color: var(--gold-deep, #a9751a); background: var(--amber-soft); }
.eyebrow.amber::before, .kicker.amber::before { background: var(--amber-2); }
.hero .eyebrow { color: #ffd9b0; background: rgba(255, 255, 255, 0.12); }
.hero .eyebrow::before { background: var(--amber-2); }
/* gradient-clipped headline accent */
.grad-text { background: linear-gradient(100deg, var(--amber-2), var(--orange, #ef5a23)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 18.5px; color: var(--muted); max-width: 54ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--surface); border: 1px solid var(--line);
  padding: 8px 15px; border-radius: 999px;
  font-size: 13.5px; font-weight: 600; color: var(--muted);
  box-shadow: var(--shadow-sm);
}
.chip svg { color: var(--green-2); }

.hero-media { position: relative; }
.hero-media .photo {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3.4;
}
.hero-media .photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-card {
  position: absolute; left: -42px; bottom: 26px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 13px;
}
.hero-card .ic {
  width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--green-soft); color: var(--green-deep);
}
.hero-card strong { display: block; font-size: 14.5px; }
.hero-card span { font-size: 12.5px; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 16.5px; }
/* .kicker styling is defined together with .eyebrow above (ticket look). */

/* ---------- Stats strip ---------- */
.stats-strip {
  background:
    radial-gradient(700px 280px at 90% 10%, rgba(239, 90, 35, 0.5) 0%, transparent 60%),
    linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 55%, var(--ink-3) 100%);
  border-radius: var(--radius-lg); color: #fbf3ec;
  padding: 34px 38px; box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
}
.stat { text-align: center; }
.stat strong { display: block; font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 800; font-family: "Sora", Inter, sans-serif; color: #fff; }
.stat span { font-size: 13.5px; color: #e7ddd2; font-weight: 600; }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.cat-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex; flex-direction: column;
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.cat-card .media { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.cat-card .media .tag { position: absolute; top: 12px; left: 12px; z-index: 2; font-family: "Sora", Inter, sans-serif; font-weight: 700; font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; background: rgba(20, 12, 8, 0.55); backdrop-filter: blur(4px); padding: 5px 11px; border-radius: 999px; }
.cat-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.cat-card:hover .media img { transform: scale(1.05); }
.cat-card .body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.cat-card .body p { color: var(--muted); font-size: 14.5px; flex: 1; }
.cat-card .link {
  color: var(--green); font-weight: 700; font-size: 14.5px;
  display: inline-flex; align-items: center; gap: 6px; margin-top: 6px;
}

.feature {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green-2); }
.feature .ic {
  width: 48px; height: 48px; border-radius: 13px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: var(--green-soft); color: var(--green-deep);
}
.feature.amber .ic { background: var(--amber-soft); color: var(--amber); }
.feature p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---------- Split sections ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 52px; align-items: center;
}
.split .photo {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3;
}
.split .photo img { width: 100%; height: 100%; object-fit: cover; }
.split p { color: var(--muted); }
.check-list { list-style: none; padding: 0; margin: 20px 0 28px; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.check-list .tick {
  flex-shrink: 0; width: 25px; height: 25px; border-radius: 8px; transform: rotate(45deg);
  background: linear-gradient(150deg, var(--green-2), var(--green));
  display: grid; place-items: center; margin-top: 2px;
}
.check-list .tick svg { transform: rotate(-45deg); color: #fff; }

/* ---------- Product cards ---------- */
.product-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card .media { aspect-ratio: 4 / 3; overflow: hidden; }
.product-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.product-card:hover .media img { transform: scale(1.05); }
.product-card .body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.product-card h3 { font-size: 1rem; margin: 0; }
.product-card p { color: var(--muted); font-size: 13.5px; margin: 0; flex: 1; }
.tag-row { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 10px; }
.tag {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em;
  padding: 4px 10px; border-radius: 999px;
  background: var(--surface-2); color: var(--muted); border: 1px solid var(--line);
}
.tag.green { background: var(--green-soft); color: var(--green-deep); border-color: transparent; }
.tag.amber { background: var(--amber-soft); color: var(--amber); border-color: transparent; }

/* Uniform space after each department (incl. its "also in stock" chips)
   before the next heading - driven by the section, not the heading margin. */
.cat-anchor { scroll-margin-top: 90px; padding-bottom: 56px; }
.cat-anchor:last-child { padding-bottom: 0; }
.cat-head { display: flex; align-items: center; gap: 16px; margin: 0 0 26px; }
.cat-head .ic {
  width: 54px; height: 54px; border-radius: 15px; flex-shrink: 0; transform: rotate(45deg);
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(150deg, var(--green-2), var(--green-deep));
  box-shadow: 0 8px 18px rgba(210, 70, 26, 0.3);
}
.cat-head .ic svg { transform: rotate(-45deg); }
.cat-head.drinks .ic { background: linear-gradient(150deg, var(--teal, #1f9aa8), var(--teal-deep, #0f6b76)); box-shadow: 0 8px 18px rgba(15, 107, 118, 0.3); }
.cat-head.snacks .ic { background: linear-gradient(150deg, #ff5d7a, var(--qs-deep)); box-shadow: 0 8px 18px rgba(179, 18, 29, 0.3); }
.cat-head.household .ic { background: linear-gradient(150deg, #8b4bff, var(--cs-deep)); box-shadow: 0 8px 18px rgba(91, 33, 182, 0.3); }
.cat-head.more .ic { background: linear-gradient(150deg, var(--amber-2), var(--gold-deep)); box-shadow: 0 8px 18px rgba(169, 117, 26, 0.3); }
.cat-head h2 { margin: 0; font-size: 1.5rem; }
.cat-head p { margin: 2px 0 0; color: var(--muted); font-size: 14.5px; }

.cat-anchor { scroll-margin-top: 88px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px 26px;
  box-shadow: var(--shadow-sm); position: relative;
}
.step .num {
  width: 52px; height: 52px; border-radius: 15px; transform: rotate(45deg);
  display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(150deg, var(--green-2), var(--green-deep));
  color: #fff; box-shadow: 0 8px 18px rgba(210, 70, 26, 0.3);
}
.step .num span { transform: rotate(-45deg); font-family: "Sora", Inter, sans-serif; font-weight: 800; font-size: 18px; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 54px; right: -15px; width: 30px; height: 2px; z-index: 1;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 5px, transparent 5px 10px);
}
.step p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 55%, var(--ink-3) 100%);
  border-radius: var(--radius-lg); color: #fff;
  padding: clamp(36px, 5vw, 60px); text-align: center;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 85% 15%, rgba(239, 90, 35, 0.45) 0%, transparent 60%),
              radial-gradient(500px 280px at 10% 90%, rgba(226, 169, 60, 0.28) 0%, transparent 55%);
  pointer-events: none;
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: #f3e9df; max-width: 56ch; margin: 0 auto 28px; font-size: 17px; }
.cta-banner .hero-actions { justify-content: center; margin-top: 0; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.field input, .field textarea, .field select {
  border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  padding: 12px 14px; background: var(--surface);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--green-2);
  box-shadow: 0 0 0 3px rgba(47, 158, 95, 0.18);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; }
.form-actions { margin-top: 22px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 32px; align-items: start; }
.info-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 22px;
  box-shadow: var(--shadow-sm); display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 16px;
}
.info-card .ic {
  width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0; transform: rotate(45deg);
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(150deg, var(--green-2), var(--green-deep));
  box-shadow: 0 6px 14px rgba(210, 70, 26, 0.28);
}
.info-card .ic svg { transform: rotate(-45deg); }
.info-card .ic.wa { background: linear-gradient(150deg, var(--whatsapp), var(--whatsapp-deep)); box-shadow: 0 6px 14px rgba(18, 140, 75, 0.3); }
.info-card strong { display: block; font-size: 15px; margin-bottom: 2px; }
.info-card p, .info-card a { color: var(--muted); font-size: 14.5px; margin: 0; text-decoration: none; }
.info-card a:hover { color: var(--green-deep); }
.hours-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.hours-table td { padding: 9px 0; border-bottom: 1px solid var(--line); }
.hours-table td:last-child { text-align: right; font-weight: 600; }
.hours-table tr:last-child td { border-bottom: none; }

.placeholder-note {
  background: var(--amber-soft); border: 1px dashed var(--amber-2);
  border-radius: var(--radius-sm); color: var(--amber);
  font-size: 13px; font-weight: 600; padding: 10px 14px; margin-top: 8px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, #16120f 0%, #1f1813 100%);
  color: #d8d0c6; margin-top: 80px;
  padding: 56px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px; padding-bottom: 44px;
}
.site-footer h4 {
  color: #fff; font-size: 14px; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 16px;
}
.site-footer p { color: #b9aea1; font-size: 14px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-links a { color: #b9aea1; text-decoration: none; font-size: 14.5px; transition: color 0.15s ease; }
.footer-links a:hover { color: #fff; }
.footer-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0; font-size: 13px; color: #988d7f;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}
.footer-bottom a { color: #cabfb3; text-decoration: none; font-weight: 600; transition: color 0.15s ease; }
.footer-bottom a:hover { color: var(--green-2); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-deep));
  color: #fff; box-shadow: 0 10px 28px rgba(18, 140, 75, 0.45);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 34px rgba(18, 140, 75, 0.55); }
/* The sticky header already shows a WhatsApp button on desktop, so the floating
   bubble is only needed on mobile (where the header CTA is hidden). */
@media (min-width: 761px) { .wa-float { display: none; } }

/* ---------- Page hero (inner pages) - dark, centred ---------- */
.page-hero {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  padding: clamp(54px, 7vw, 90px) 0 clamp(46px, 6vw, 72px);
  background:
    radial-gradient(820px 460px at 82% -10%, rgba(239,90,35,.5) 0%, transparent 58%),
    radial-gradient(680px 440px at 8% 116%, rgba(226,169,60,.28) 0%, transparent 60%),
    radial-gradient(640px 480px at 104% 100%, rgba(124,58,237,.24) 0%, transparent 62%),
    linear-gradient(150deg, var(--ink) 0%, var(--ink-2) 54%, #2a1a1f 100%);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; opacity: .45;
  background-image: linear-gradient(45deg, rgba(255,255,255,.05) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.05) 75%);
  background-size: 50px 50px;
  -webkit-mask-image: radial-gradient(640px 380px at 78% 14%, #000, transparent 72%);
          mask-image: radial-gradient(640px 380px at 78% 14%, #000, transparent 72%);
}
.page-hero > .container { position: relative; z-index: 1; max-width: 820px; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #f0e2d4; font-size: clamp(1.02rem, 1.4vw, 1.18rem); max-width: 62ch; margin: 18px auto 0; }
.page-hero p strong { color: #fff; }
.page-hero .eyebrow { color: #ffd9b0; background: rgba(255, 255, 255, 0.10); }
.page-hero .eyebrow::before { background: var(--amber-2); }
/* a little breathing room between the dark banner and the first section below it */
.page-hero + .section { margin-top: clamp(26px, 4vw, 46px); }
/* Guard: text on dark banners always stays light, regardless of page context */
.page-hero .cta-banner p, .cta-banner p { color: #f3e9df; }
.page-hero .cta-banner h2, .cta-banner h2 { color: #fff; }

/* ---------- Page loader (shown until DOM ready; CSS failsafe hides it even if JS fails) ---------- */
.page-loader {
  position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--ink) 0%, var(--ink-2) 60%, #2a1a1f 100%);
  opacity: 1; transition: opacity 0.45s ease, visibility 0.45s ease;
  animation: loaderFailsafe 0s linear 8s forwards;
}
html.is-loaded .page-loader { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes loaderFailsafe { to { opacity: 0; visibility: hidden; } }
.loader-box { position: relative; display: grid; place-items: center; width: 96px; height: 96px; }
.loader-ring { position: absolute; inset: 0; border-radius: 50%; border: 3px solid rgba(255, 255, 255, 0.12); border-top-color: var(--amber-2); animation: loaderSpin 0.9s linear infinite; }
.loader-mark { width: 60px; height: 60px; transform: rotate(45deg); border-radius: 14px; display: grid; place-items: center; background: linear-gradient(150deg, var(--green-2), var(--green-deep)); box-shadow: 0 12px 30px rgba(210, 70, 26, 0.5), inset 0 0 0 2px rgba(255, 255, 255, 0.18); animation: loaderPulse 1.1s ease-in-out infinite; }
.loader-mark span { transform: rotate(-45deg); font-family: "Sora", Inter, sans-serif; font-weight: 800; font-size: 19px; color: #fff; letter-spacing: -0.04em; }
@keyframes loaderSpin { to { transform: rotate(360deg); } }
@keyframes loaderPulse { 0%, 100% { transform: rotate(45deg) scale(1); } 50% { transform: rotate(45deg) scale(0.88); } }
@media (prefers-reduced-motion: reduce) {
  .loader-ring, .loader-mark { animation: none; }
}

/* ---------- 404 page ---------- */
.nf {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 48px 22px; overflow: hidden; color: #fff;
  background:
    radial-gradient(820px 520px at 80% -8%, rgba(239,90,35,.5) 0%, transparent 58%),
    radial-gradient(680px 460px at 6% 112%, rgba(226,169,60,.28) 0%, transparent 60%),
    radial-gradient(640px 500px at 104% 102%, rgba(124,58,237,.26) 0%, transparent 62%),
    linear-gradient(150deg, var(--ink) 0%, var(--ink-2) 54%, #2a1a1f 100%);
}
.nf::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(45deg, rgba(255,255,255,.05) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.05) 75%);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(720px 520px at 50% 34%, #000, transparent 72%);
          mask-image: radial-gradient(720px 520px at 50% 34%, #000, transparent 72%);
}
.nf-inner { position: relative; z-index: 1; max-width: 620px; }
.nf-brand { display: inline-block; margin-bottom: 34px; }
.nf-code { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 10px; }
.nf-digit { font-family: "Sora", Inter, sans-serif; font-weight: 800; font-size: clamp(5rem, 18vw, 9rem); line-height: .9; background: linear-gradient(160deg, #fff, #ffd9b0 55%, var(--amber-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nf-gem { width: clamp(74px, 15vw, 118px); height: clamp(74px, 15vw, 118px); transform: rotate(45deg); border-radius: clamp(16px, 3vw, 24px); background: linear-gradient(150deg, var(--orange), var(--orange-deep)); display: grid; place-items: center; box-shadow: 0 28px 64px rgba(40,24,12,.4), inset 0 0 0 2px rgba(255,255,255,.2); animation: nf-bob 4s ease-in-out infinite; }
.nf-gem b { transform: rotate(-45deg); font-family: "Sora", Inter, sans-serif; font-weight: 800; font-size: clamp(1.3rem, 3.4vw, 2rem); letter-spacing: -.04em; color: #fff; }
@keyframes nf-bob { 0%, 100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(-9px); } }
.nf-ticket { display: inline-flex; align-items: center; gap: 9px; font-family: "Sora", Inter, sans-serif; font-weight: 700; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; padding: 8px 16px 8px 14px; color: #ffd9b0; background: rgba(255,255,255,.10); clip-path: polygon(0 0, 100% 0, 100% 100%, 14px 100%, 0 calc(100% - 9px)); margin-bottom: 22px; }
.nf-ticket::before { content: ""; width: 8px; height: 8px; transform: rotate(45deg); background: var(--amber-2); }
.nf h1 { color: #fff; font-size: clamp(1.9rem, 4.5vw, 2.8rem); margin: 0 0 14px; }
.nf-lead { color: #f0e2d4; font-size: clamp(1.02rem, 1.5vw, 1.16rem); max-width: 46ch; margin: 0 auto 32px; line-height: 1.6; }
.nf-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.nf-quick { margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); }
.nf-quick p { font-family: "Sora", Inter, sans-serif; font-weight: 700; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #bcae9e; margin: 0 0 14px; }
.nf-quick-links { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; }
.nf-quick-links a { font-family: "Sora", Inter, sans-serif; font-weight: 700; font-size: 13.5px; color: #e7ddd2; text-decoration: none; padding: 8px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); transition: color .15s ease, border-color .15s ease, background-color .15s ease; }
.nf-quick-links a:hover { color: #fff; border-color: var(--amber-2); background: rgba(255,255,255,.12); }
.nf-credit { margin-top: 34px; font-size: 12.5px; color: #8f8174; }
.nf-credit a { color: #bcae9e; text-decoration: none; font-weight: 600; }
.nf-credit a:hover { color: var(--orange); }
@media (prefers-reduced-motion: reduce) { .nf-gem { animation: none; } }

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

/* ---------- Utilities (replace inline styles -> strict CSP, no 'unsafe-inline') ---------- */
.section.pt-8 { padding-top: 8px; }
.section.pt-16 { padding-top: 16px; }
.hero-chips.mt-22 { margin-top: 22px; }
.btn.btn-on-dark { background: rgba(255, 255, 255, 0.95); }
.form-card.form-card-narrow { max-width: 760px; margin: 0 auto; }
.form-card .h-md { font-size: 1.5rem; }
.form-card .form-intro { color: var(--muted); font-size: 15px; }
.info-card.block { display: block; }
.info-card .mb-10 { margin-bottom: 10px; }
.footer-brand .brand-text strong { color: #fff; }
.footer-brand .brand-text span { color: #b9aea1; }
.footer-muted { color: #b9aea1; font-size: 14.5px; }

/* ---------- Featured brands strip ---------- */
.brand-strip {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; align-items: center;
}
.brand-chip {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  aspect-ratio: 1 / 1; overflow: hidden; padding: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.brand-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.brand-chip img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Sub-brand (two stores) cards ---------- */
.stores-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.store-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg); padding: 30px 28px;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  background: var(--surface); display: flex; flex-direction: column; gap: 6px;
}
.store-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
}
.store-card.cs::before { background: linear-gradient(180deg, var(--cs), var(--cs-deep)); }
.store-card.qs::before { background: linear-gradient(180deg, var(--qs), var(--qs-deep)); }
/* Logo box stays 72px (text & card don't move); transform enlarges it visually in place. */
/* Stacked storefront photos (About intro) */
.photo-stack { display: grid; gap: 16px; }
.photo-stack .shot { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16 / 10; }
.photo-stack .shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.photo-stack .shot:hover img { transform: scale(1.05); }
.photo-stack .shot .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 16px 12px;
  color: #fff; font-weight: 800; font-size: 15px; font-family: "Sora", Inter, sans-serif;
  background: linear-gradient(180deg, transparent, rgba(20, 16, 12, 0.82));
}
.photo-stack .shot .cap small { display: block; font-weight: 600; font-size: 12px; opacity: 0.9; font-family: Inter, sans-serif; }
.store-card .store-logo { height: 72px; width: auto; border-radius: 10px; margin-bottom: 12px; align-self: flex-start; transform: scale(1.32); transform-origin: left center; }
/* Q's logo has more built-in whitespace, so it needs a bit more scale to match visually. */
.store-card.qs .store-logo { transform: scale(1.5); }
.store-card h3 { font-size: 1.3rem; margin: 0; }
.store-card .tagline { font-weight: 700; font-size: 14px; margin: 0 0 4px; }
.store-card.cs .tagline { color: var(--cs-deep); }
.store-card.qs .tagline { color: var(--qs-deep); }
.store-card p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---------- Product list (simple items, no photo) ---------- */
.chip-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.chip-list li {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; padding: 9px 16px; font-weight: 600; font-size: 14.5px;
  box-shadow: var(--shadow-sm);
}
.chip-list li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green-2); }

/* ---------- Social icons ---------- */
.socials { display: flex; gap: 10px; margin-top: 4px; }
.socials a {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255,255,255,0.07); color: #d8d0c6;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.socials a:hover { background: var(--green); color: #fff; transform: translateY(-2px); }

/* Full-bleed product media is the default (.product-card .media -> cover).
   .tile = show the WHOLE image on a clean white field (for tall/poster shots). */
.media.tile { background: #fff; }
.media.tile img { object-fit: contain; padding: 14px; }
.media img.top { object-position: top center; }

.kicker.stock-label { margin-top: 30px; }
.product-card h3 .tag { vertical-align: middle; margin-left: 7px; font-size: 10.5px; }
.loc-note { margin-top: 6px; color: var(--muted); font-size: 13px; }

/* ---------- Legal / policy pages ---------- */
.legal { max-width: 800px; margin: 0 auto; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 26px; }
.legal h2 { margin: 32px 0 10px; font-size: 1.3rem; }
.legal h3 { margin: 20px 0 8px; font-size: 1.05rem; }
.legal p { color: #38332d; }
.legal ul { padding-left: 20px; margin: 8px 0 14px; display: grid; gap: 9px; }
.legal li { color: #38332d; }
.legal a { color: var(--green); font-weight: 600; }
.legal a:hover { color: var(--green-deep); }
.legal .note { background: var(--amber-soft); border: 1px dashed var(--amber-2); color: var(--amber); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 13.5px; font-weight: 600; }

/* ---------- Legal pages: sticky TOC + article ---------- */
.legal-layout { display: grid; grid-template-columns: 236px 1fr; gap: 52px; align-items: start; }
.toc { position: sticky; top: 88px; }
.toc h4 { font-family: "Sora", Inter, sans-serif; font-weight: 700; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; }
.toc ul { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--line); }
.toc a { display: block; padding: 7px 0 7px 16px; margin-left: -2px; border-left: 2px solid transparent; color: var(--muted); text-decoration: none; font-size: 13.5px; font-weight: 600; line-height: 1.35; transition: color .15s ease, border-color .15s ease; }
.toc a:hover { color: var(--green-deep); border-left-color: var(--green-2); }
.article { max-width: 760px; color: #463b30; }
.article p { line-height: 1.72; margin: 0 0 1rem; }
.article strong { color: var(--text); }
.article h2 { font-size: 1.32rem; margin: 38px 0 12px; scroll-margin-top: 92px; display: flex; align-items: center; gap: 12px; }
.article h2::before { content: ""; width: 12px; height: 12px; border-radius: 3px; transform: rotate(45deg); background: linear-gradient(150deg, var(--green-2), var(--green-deep)); flex-shrink: 0; box-shadow: 0 3px 8px rgba(210, 70, 26, 0.3); }
.article a:not(.btn) { color: var(--green-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.article ul { list-style: none; padding: 0; margin: 0 0 1rem; display: grid; gap: 10px; }
.article ul li { position: relative; padding-left: 24px; }
.article ul li::before { content: ""; position: absolute; left: 5px; top: 10px; width: 7px; height: 7px; transform: rotate(45deg); background: var(--amber-2); }
.updated { display: inline-flex; align-items: center; gap: 8px; font-family: "Sora", Inter, sans-serif; font-weight: 700; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-deep); background: var(--amber-soft); padding: 7px 15px; border-radius: 999px; margin: 0 0 26px; }
.updated::before { content: ""; width: 8px; height: 8px; transform: rotate(45deg); background: var(--amber-2); }
.callout { display: flex; gap: 15px; background: linear-gradient(135deg, var(--green-soft), var(--surface)); border: 1px solid var(--line-strong); border-left: 4px solid var(--green-2); border-radius: var(--radius); padding: 20px 22px; margin: 6px 0 14px; }
.callout .ic { flex-shrink: 0; width: 42px; height: 42px; transform: rotate(45deg); border-radius: 12px; display: grid; place-items: center; background: linear-gradient(150deg, var(--green-2), var(--green-deep)); color: #fff; box-shadow: 0 6px 14px rgba(210, 70, 26, 0.3); }
.callout .ic svg { transform: rotate(-45deg); }
.callout p { margin: 0; color: #3a3027; }
.legal-contact { margin-top: 42px; padding: 26px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.legal-contact h2 { margin-top: 0; }
.legal-contact h2::before { display: none; }

/* ---------- Open now / Closed status ---------- */
.open-status { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.open-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.open-status.is-open { color: #1c7a27; }
.open-status.is-open .open-dot { background: #2aa636; animation: pulse-dot 2s infinite; }
.open-status.is-closed { color: var(--danger); }
.open-status.is-closed .open-dot { background: var(--danger); }
.hours-live { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 14.5px; }
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(42, 166, 54, 0.5); }
  70% { box-shadow: 0 0 0 7px rgba(42, 166, 54, 0); }
  100% { box-shadow: 0 0 0 0 rgba(42, 166, 54, 0); }
}
@media (prefers-reduced-motion: reduce) { .open-status .open-dot { animation: none; } }

/* ---------- Scroll-to-top (injected) ---------- */
.scroll-top {
  position: fixed; left: 22px; bottom: 22px; z-index: 200;
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--ink); color: #fff; border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, background-color 0.15s ease;
}
.scroll-top.show { opacity: 1; visibility: visible; transform: none; }
.scroll-top:hover { background: var(--green); }
/* Desktop: WhatsApp bubble is hidden, so move scroll-to-top to the bottom-right. */
@media (min-width: 761px) { .scroll-top { left: auto; right: 22px; } }

/* ---------- Toast ---------- */
.toast-host {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%);
  z-index: 300; display: flex; flex-direction: column; gap: 10px; align-items: center;
  pointer-events: none; width: max-content; max-width: 92vw;
}
.toast {
  background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 999px;
  font-weight: 600; font-size: 14px; box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(12px); transition: opacity 0.3s ease, transform 0.3s ease;
}
.toast.in { opacity: 1; transform: none; }

/* ---------- Tinted / artful sections ---------- */
.section.tinted {
  position: relative; overflow: hidden;
  background:
    radial-gradient(620px 360px at 8% 0%, rgba(239, 90, 35, 0.10) 0%, transparent 60%),
    radial-gradient(560px 340px at 100% 100%, rgba(124, 58, 237, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, #fbf4ef 0%, #f6f1ec 100%);
}
/* Decorative organic blobs (pure CSS - no images, CSP-safe) */
.art-blob { position: absolute; border-radius: 46% 54% 60% 40% / 50% 42% 58% 50%; filter: blur(2px); opacity: 0.5; pointer-events: none; z-index: 0; }
.art-blob.a { width: 220px; height: 220px; left: -70px; top: -60px; background: radial-gradient(circle at 35% 35%, rgba(245, 158, 11, 0.5), rgba(239, 90, 35, 0.22)); }
.art-blob.b { width: 260px; height: 260px; right: -90px; bottom: -90px; background: radial-gradient(circle at 60% 40%, rgba(124, 58, 237, 0.32), rgba(47, 95, 214, 0.18)); }
.section.tinted > .container { position: relative; z-index: 1; }
/* small sparkle/accent for section headers */
.spark { display: inline-block; vertical-align: middle; color: var(--green-2); margin: 0 2px; }

/* ---------- "Inside our stores" gallery marquee ---------- */
.gallery-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
/* No flex gap: each tile carries its own right margin so the track is exactly two
   identical halves and translateX(-50%) loops with no visible seam. */
.marquee { display: flex; width: max-content; animation: marquee 48s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee .tile {
  width: 300px; aspect-ratio: 4 / 3; flex-shrink: 0; position: relative;
  margin-right: 18px;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
}
.marquee .tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.marquee .tile:hover img { transform: scale(1.06); }
.marquee .tile .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 14px 11px;
  color: #fff; font-weight: 700; font-size: 13.5px; letter-spacing: 0.01em;
  background: linear-gradient(180deg, transparent, rgba(20, 16, 12, 0.78));
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .gallery-wrap { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
  .marquee, .brandmq { animation: none; }
}
@media (max-width: 760px) { .marquee .tile { width: 230px; } }

/* ---------- Home hero: collage ---------- */
.hero { position: relative; overflow: hidden; color: #fff; padding: clamp(56px, 8vw, 104px) 0 clamp(64px, 9vw, 120px); }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(900px 540px at 84% -6%, rgba(239,90,35,.55) 0%, transparent 58%),
    radial-gradient(720px 480px at 8% 110%, rgba(226,169,60,.30) 0%, transparent 60%),
    radial-gradient(680px 520px at 102% 100%, rgba(124,58,237,.26) 0%, transparent 62%),
    linear-gradient(150deg, var(--ink) 0%, var(--ink-2) 52%, #2a1a1f 100%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(45deg, rgba(255,255,255,.05) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.05) 75%);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(760px 520px at 78% 24%, #000, transparent 70%);
          mask-image: radial-gradient(760px 520px at 78% 24%, #000, transparent 70%);
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.04fr) minmax(0,.96fr); gap: 54px; align-items: center; }
.hero-copy h1 { color: #fff; margin: 16px 0 0; }
.hero-copy p.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: #f0e2d4; max-width: 48ch; margin: 22px 0 0; }
.hero-copy p.lead strong { color: #fff; }
.hero .hero-actions { margin-top: 30px; }
.hero .hero-chips { margin-top: 26px; }
.hero .hero-chips .chip { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.16); color: #fbeede; box-shadow: none; }
.hero .hero-chips .chip svg { color: var(--amber-2); }
.collage { position: relative; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 14px; }
.collage .ph { position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 1/1; }
.collage .ph.tall { grid-row: span 2; aspect-ratio: auto; }
.collage .ph img { width: 100%; height: 100%; object-fit: cover; }
.collage .ph .lbl { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px 14px 11px; color: #fff; font-family: "Sora", Inter, sans-serif; font-weight: 700; font-size: 13px; background: linear-gradient(180deg, transparent, rgba(20,12,8,.72)); }
.float-card { position: absolute; left: -22px; bottom: -20px; z-index: 3; background: var(--surface); color: var(--text); border-radius: 16px; padding: 13px 18px; box-shadow: var(--shadow-lg); }
.float-card .float-status { font-family: "Sora", Inter, sans-serif; font-weight: 800; font-size: 14px; }
.float-card .float-sub { display: block; font-size: 12px; color: var(--muted); margin-top: 1px; }
/* Badge in MG orange (as in the demo) */
.gem-badge { position: absolute; right: -16px; top: -16px; z-index: 4; width: 84px; height: 84px; transform: rotate(45deg); border-radius: 18px; background: linear-gradient(150deg, var(--orange), var(--orange-deep)); display: grid; place-items: center; box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,.22); }
.gem-badge span { transform: rotate(-45deg); text-align: center; color: #fff; font-family: "Sora", Inter, sans-serif; font-weight: 800; line-height: 1; }
.gem-badge span b { font-size: 18px; display: block; }
.gem-badge span small { font-size: 8.5px; letter-spacing: .1em; opacity: .9; }

/* ---------- Brand-name text marquee ---------- */
.brandmq-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.brandmq { display: flex; width: max-content; animation: marquee 70s linear infinite; }
.brandmq:hover { animation-play-state: paused; }
.brand-pill { flex-shrink: 0; margin-right: 14px; padding: 14px 26px; border-radius: 13px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); font-family: "Sora", Inter, sans-serif; font-weight: 800; font-size: 1rem; color: #5a4d40; letter-spacing: -.01em; }

/* ---------- Stats diamond separators ---------- */
.stats-strip .stat { position: relative; }
.stats-strip .stat + .stat::before { content: ""; position: absolute; left: -17px; top: 50%; width: 8px; height: 8px; transform: translateY(-50%) rotate(45deg); background: rgba(255,255,255,.18); }

/* ---------- "One roof, two stores" split panel (About) ---------- */
.roof-split {
  display: grid; grid-template-columns: 1fr 1fr; position: relative;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  background: var(--surface);
}
.roof-split::before {
  content: ""; position: absolute; left: 50%; top: 8%; bottom: 8%; width: 2px; transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, var(--line-strong), transparent); z-index: 3;
}
.store-half { padding: clamp(28px, 4vw, 48px); position: relative; overflow: hidden; }
.store-half.cs { background: radial-gradient(420px 320px at 20% 0%, var(--cs-soft), var(--surface) 70%); }
.store-half.qs { background: radial-gradient(420px 320px at 80% 0%, var(--qs-soft), var(--surface) 70%); }
/* Transparent logos sit straight on the tinted half - no white chip, shown large. */
.store-half .store-logo { height: 110px; width: auto; max-width: 100%; margin-bottom: 16px; display: block; }
.store-half .store-tag { font-family: "Sora", Inter, sans-serif; font-weight: 700; font-size: 14px; margin: 0 0 4px; }
.store-half.cs .store-tag { color: var(--cs-deep); }
.store-half.qs .store-tag { color: var(--qs-deep); }
.store-half h3 { font-size: 1.35rem; margin: 2px 0 10px; }
.store-half p { color: var(--muted); font-size: 0.97rem; margin: 0; }

/* ---------- Upgraded value cards (About) ---------- */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.value-card {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px 28px 26px; box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.value-card::after { content: ""; position: absolute; right: -40px; top: -40px; width: 120px; height: 120px; transform: rotate(45deg); border-radius: 24px; background: var(--green-soft); opacity: 0.5; transition: transform 0.3s ease; }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--green-2); }
.value-card:hover::after { transform: rotate(45deg) scale(1.15); }
.value-card .num { position: relative; z-index: 1; font-family: "Sora", Inter, sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.14em; color: var(--green); }
.value-card .ic { position: relative; z-index: 1; width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; margin: 14px 0 16px; background: linear-gradient(150deg, var(--green-2), var(--green)); color: #fff; box-shadow: 0 8px 18px rgba(210, 70, 26, 0.3); }
.value-card.gold .ic { background: linear-gradient(150deg, var(--amber-2), var(--gold-deep)); box-shadow: 0 8px 18px rgba(169, 117, 26, 0.3); }
.value-card.plum .ic { background: linear-gradient(150deg, #8b4bff, var(--cs-deep)); box-shadow: 0 8px 18px rgba(91, 33, 182, 0.3); }
.value-card h3 { position: relative; z-index: 1; }
.value-card p { position: relative; z-index: 1; color: var(--muted); font-size: 0.96rem; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid, .card-grid.four { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stats-strip .stat + .stat::before { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 46px; }
  .collage { max-width: 480px; margin: 0 auto; }
  .hero-grid, .split { grid-template-columns: 1fr; gap: 36px; }
  .split.flip .photo { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .brand-strip { grid-template-columns: repeat(3, 1fr); }
  .stores-grid { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; gap: 28px; }
  .toc { position: static; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; }
  .toc ul { border-left: none; display: flex; flex-wrap: wrap; gap: 6px; }
  .toc a { border-left: none; padding: 7px 13px; border: 1px solid var(--line); border-radius: 999px; margin: 0; }
  .toc a:hover { border-color: var(--green-2); }
}
@media (max-width: 760px) {
  .roof-split { grid-template-columns: 1fr; }
  .roof-split::before { display: none; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: 14px 20px 18px; box-shadow: var(--shadow-lg);
  }
  .main-nav.open { display: flex; }
  /* Dark header: make the open mobile dropdown dark so the light links stay readable */
  .site-header.dark .main-nav { background: #1a1613; border-bottom-color: rgba(255,255,255,0.08); }
  .main-nav a { border-radius: var(--radius-sm); padding: 12px 14px; }
  .nav-toggle { display: flex; }
  .nav-cta .btn { display: none; }
  .hero { padding: 44px 0 40px; }
  .hero-card { left: 12px; bottom: 14px; padding: 11px 14px; }
  .section { padding: 48px 0; }
  .steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .card-grid, .card-grid.four { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .collage { grid-template-columns: 1fr 1fr; }
  .gem-badge { width: 68px; height: 68px; right: -8px; top: -8px; }
  .float-card { left: 8px; bottom: -16px; }
  .stats-strip { grid-template-columns: 1fr 1fr; padding: 26px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-strip { grid-template-columns: repeat(2, 1fr); }
}
