/* =========================================================================
   7 SIBLINGS HOT SAUCE — presentation layer
   Palette: ink black + hot-sauce red + warm cream. Type: Oswald / Inter.
   ========================================================================= */

:root {
  --ink: #131110;
  --ink-2: #1e1a18;
  --ink-3: #2a2523;
  --paper: #f4ecdd;
  --paper-2: #eadfc9;
  --cream: #fbf7ef;
  --red: #c1272d;
  --red-deep: #9c1a20;
  --flame: #ea5a26;
  --gold: #e6a532;
  --muted: #7a726b;
  --muted-2: #a79e93;
  --line: rgba(19, 17, 16, 0.14);
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow: 0 18px 45px -20px rgba(0, 0, 0, 0.55);
  --wrap: 1200px;
  --head: "Oswald", "Arial Narrow", sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--head);
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0;
}

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

/* ---- Kicker / eyebrow ---- */
.kicker {
  font-family: var(--head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--red); display: inline-block; }
.kicker.center::after { content: ""; width: 26px; height: 2px; background: var(--red); display: inline-block; }
.on-dark .kicker { color: var(--flame); }

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.92rem;
  padding: 14px 30px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-red { background: var(--red); border-color: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.on-dark .btn-ghost { color: var(--cream); border-color: var(--cream); }
.on-dark .btn-ghost:hover { background: var(--cream); color: var(--ink); }
.btn-lg { padding: 17px 40px; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }

/* =========================================================================
   HEADER / NAV
   ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 48px; width: auto; max-width: none; flex-shrink: 0; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-family: var(--head);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.92rem;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.22s ease;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: var(--red); }

.header-actions { display: flex; align-items: center; gap: 20px; }
.icon-btn {
  background: none;
  border: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 4px;
}
.icon-btn:hover { color: var(--red); }
.icon-btn svg { width: 24px; height: 24px; }
.cart-count {
  position: absolute;
  top: -6px; right: -8px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  background: var(--red);
  color: #fff;
  font-family: var(--head);
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-count:empty, .cart-count[data-count="0"] { display: none; }

.nav-toggle { display: none; background: none; border: none; color: var(--ink); padding: 4px; }
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .brand img { height: 42px; }
  .header-actions { gap: 14px; }
  .header-inner { gap: 16px; }
  .nav {
    position: fixed;
    inset: 84px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 24px;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    z-index: 55;
    box-shadow: var(--shadow);
  }
  .nav.open { transform: translateY(0); }
  .nav a { width: 100%; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
  .nav a::after { display: none; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,8,7,0.9) 0%, rgba(10,8,7,0.72) 42%, rgba(10,8,7,0.28) 100%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero-content { max-width: 680px; padding: 60px 0; }
.hero .kicker { color: var(--flame); }
.hero .kicker::before { background: var(--flame); }
.hero .btn-ghost { background: rgba(14, 11, 9, 0.34); backdrop-filter: blur(2px); }
.hero .btn-ghost:hover { background: var(--cream); }
.hero h1 {
  font-size: clamp(2.9rem, 7vw, 5.4rem);
  margin: 18px 0 0;
  letter-spacing: 0.005em;
}
.hero h1 .flame-word { color: var(--flame); }
.hero-sub {
  font-family: var(--head);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  margin: 20px 0 6px;
  color: #fff;
}
.hero-note { color: var(--muted-2); font-size: 1.02rem; letter-spacing: 0.02em; margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* =========================================================================
   SECTIONS
   ========================================================================= */
.section { padding: 92px 0; }
.section-sm { padding: 64px 0; }
.on-dark { background: var(--ink); color: var(--cream); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: #fff; }
.on-cream { background: var(--cream); }
.section-head { max-width: 720px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin-top: 16px; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin: 18px 0 0; }
.on-dark .section-head p { color: var(--muted-2); }

/* strip / marquee band */
.strip {
  background: var(--red);
  color: #fff;
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 0;
  overflow: hidden;
}
.strip-track { display: flex; white-space: nowrap; animation: marquee 30s linear infinite; }
.strip-track span { display: inline-block; padding-right: 8px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; height: 100%; max-height: 560px; object-fit: cover; box-shadow: var(--shadow); }
.split-media .frame { position: absolute; inset: 18px -18px -18px 18px; border: 2px solid var(--red); z-index: -1; }
.split-body h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.split-body p { color: var(--muted); font-size: 1.1rem; margin: 20px 0; }
.on-dark .split-body p { color: var(--muted-2); }

/* =========================================================================
   PRODUCT GRID + CARDS
   ========================================================================= */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.84rem;
  font-weight: 500;
  padding: 9px 20px;
  border: 2px solid var(--line);
  background: transparent;
  color: var(--ink);
  transition: all 0.18s ease;
}
.filter:hover { border-color: var(--ink); }
.filter.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
/* keep card internals dark even inside .on-dark sections */
.card h3, .on-dark .card h3 { color: var(--ink); }
.card-price, .on-dark .card .card-price { color: var(--ink); }
.card .heat, .on-dark .card .heat { color: var(--muted); }
.card .pip, .on-dark .card .pip { background: rgba(19,17,16,0.16); }
.card .pip.on { background: var(--red); }
.card .pip.on.max { background: var(--flame); }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--paper-2);
  overflow: hidden;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card-cat {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 8px;
}
.card h3 { font-size: 1.5rem; line-height: 1; }
.card-price {
  font-family: var(--head);
  font-weight: 600;
  font-size: 1.35rem;
  margin-top: 12px;
}
.card-foot { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.card .btn { padding: 11px 20px; font-size: 0.82rem; }

.badge {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 12px;
  background: var(--ink);
  color: var(--cream);
  z-index: 2;
}
.badge.soldout { background: var(--muted); }
.badge.collab { background: var(--red); color: #fff; }

/* heat meter */
.heat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 600;
}
.on-dark .heat { color: var(--muted-2); }
.heat-pips { display: inline-flex; gap: 3px; }
.pip { width: 9px; height: 9px; transform: rotate(45deg); background: rgba(19,17,16,0.16); }
.on-dark .pip { background: rgba(255,255,255,0.18); }
.pip.on { background: var(--red); }
.pip.on.max { background: var(--flame); }

/* =========================================================================
   PRODUCT DETAIL
   ========================================================================= */
.pdp { padding: 56px 0 96px; }
.crumbs { font-size: 0.86rem; color: var(--muted); margin-bottom: 30px; letter-spacing: 0.02em; }
.crumbs a:hover { color: var(--red); }
.pdp-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: start; }
.gallery-main {
  aspect-ratio: 1 / 1;
  background: var(--cream);
  border: 1px solid var(--line);
  overflow: hidden;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.gallery-thumbs button {
  width: 76px; height: 76px;
  border: 2px solid var(--line);
  background: var(--cream);
  padding: 0; overflow: hidden;
}
.gallery-thumbs button.active { border-color: var(--red); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.pdp-info .cat {
  font-family: var(--head); text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.78rem; color: var(--red); font-weight: 600;
}
.pdp-info h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin: 12px 0 16px; }
.pdp-price { font-family: var(--head); font-weight: 600; font-size: 2rem; margin-bottom: 20px; }
.pdp-heat { margin-bottom: 26px; }
.pdp-desc > * { margin: 0 0 14px; }
.pdp-desc .tagline { font-family: var(--head); text-transform: uppercase; letter-spacing: 0.05em; font-size: 1.15rem; color: var(--ink); font-weight: 600; }
.pdp-desc .quote { font-style: italic; font-size: 1.12rem; color: var(--ink); }
.pdp-desc .motto { font-family: var(--head); text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.2rem; color: var(--red); font-weight: 700; }
.pdp-desc .spec {
  display: inline-block; font-family: var(--head); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.82rem; font-weight: 600; color: var(--muted);
  border: 1px solid var(--line); padding: 5px 12px;
}
.pdp-desc .ing, .pdp-desc .kv { color: var(--muted); font-size: 0.98rem; }
.pdp-desc .ing strong, .pdp-desc .kv strong { color: var(--ink); }
.pdp-desc ul { color: var(--muted); padding-left: 20px; margin: 0 0 14px; }
.pdp-desc ul li { margin-bottom: 4px; }

.buybox { margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--line); }
.field-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.field-label { font-family: var(--head); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.82rem; font-weight: 600; }
.select {
  font-family: var(--body); font-size: 1rem; padding: 12px 16px;
  border: 2px solid var(--line); background: var(--cream); color: var(--ink); min-width: 130px;
}
.qty { display: inline-flex; border: 2px solid var(--ink); }
.qty button { width: 44px; height: 46px; background: var(--cream); border: none; font-size: 1.3rem; font-family: var(--head); }
.qty button:hover { background: var(--ink); color: var(--cream); }
.qty input { width: 52px; text-align: center; border: none; border-left: 2px solid var(--ink); border-right: 2px solid var(--ink); font-family: var(--head); font-size: 1.1rem; background: var(--cream); }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; }

.soldout-note {
  font-family: var(--head); text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); font-weight: 600; padding: 16px 0;
}

/* =========================================================================
   CART DRAWER
   ========================================================================= */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(10,8,7,0.55);
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; z-index: 90;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 420px; max-width: 92vw;
  background: var(--cream); z-index: 95; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.32s cubic-bezier(0.4,0,0.1,1); box-shadow: var(--shadow);
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 24px; border-bottom: 1px solid var(--line); }
.drawer-head h3 { font-size: 1.4rem; }
.drawer-close { background: none; border: none; font-size: 1.6rem; line-height: 1; color: var(--ink); }
.drawer-items { flex: 1; overflow-y: auto; padding: 8px 24px; }
.drawer-empty { color: var(--muted); text-align: center; padding: 60px 20px; }
.line-item { display: flex; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.line-item img { width: 74px; height: 74px; object-fit: cover; background: var(--paper-2); border: 1px solid var(--line); }
.line-item .li-body { flex: 1; min-width: 0; }
.line-item h4 { font-family: var(--head); font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.02em; margin: 0 0 2px; }
.line-item .li-variant { font-size: 0.82rem; color: var(--muted); }
.line-item .li-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.li-qty { display: inline-flex; border: 1px solid var(--line); }
.li-qty button { width: 30px; height: 30px; background: none; border: none; font-family: var(--head); font-size: 1rem; }
.li-qty button:hover { background: var(--ink); color: var(--cream); }
.li-qty span { width: 34px; text-align: center; line-height: 30px; font-family: var(--head); border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
.li-price { font-family: var(--head); font-weight: 600; font-size: 1.05rem; }
.li-remove { background: none; border: none; color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.li-remove:hover { color: var(--red); }
.drawer-foot { padding: 22px 24px 26px; border-top: 1px solid var(--line); background: var(--paper); }
.drawer-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.drawer-row .lbl { color: var(--muted); font-size: 0.92rem; }
.drawer-row.total { font-family: var(--head); font-size: 1.35rem; font-weight: 600; margin: 10px 0 18px; }
.drawer-note { font-size: 0.78rem; color: var(--muted); margin-top: 14px; text-align: center; }

/* =========================================================================
   CART PAGE
   ========================================================================= */
.cart-page { padding: 56px 0 96px; }
.cart-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }
.cart-list .line-item img { width: 96px; height: 96px; }
.cart-list .line-item h4 { font-size: 1.25rem; }
.summary { background: var(--cream); border: 1px solid var(--line); padding: 30px; position: sticky; top: 108px; }
.summary h3 { font-size: 1.5rem; margin-bottom: 22px; }
.summary .drawer-row { margin-bottom: 12px; }
.summary hr { border: none; border-top: 1px solid var(--line); margin: 18px 0; }
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state h2 { font-size: 2rem; margin-bottom: 14px; }
.empty-state p { color: var(--muted); margin-bottom: 26px; }

/* =========================================================================
   CONTACT / FORMS
   ========================================================================= */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--head); text-transform: uppercase; letter-spacing: 0.09em; font-size: 0.82rem; font-weight: 600; }
.form-field label .req { color: var(--red); }
.form-field input, .form-field textarea {
  font-family: var(--body); font-size: 1rem; padding: 14px 16px;
  border: 2px solid var(--line); background: var(--cream); color: var(--ink); width: 100%;
}
.form-field input:focus, .form-field textarea:focus, .select:focus { outline: none; border-color: var(--red); }
.form-field textarea { min-height: 150px; resize: vertical; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-media img { width: 100%; height: 100%; max-height: 620px; object-fit: cover; box-shadow: var(--shadow); }
.contact-info-block { margin-top: 30px; }
.contact-info-block .lbl { font-family: var(--head); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; color: var(--red); font-weight: 600; margin-bottom: 6px; }
.contact-info-block p { margin: 0 0 18px; }

/* =========================================================================
   ABOUT
   ========================================================================= */
.lead { font-size: 1.35rem; line-height: 1.5; color: var(--ink); font-weight: 500; }
.about-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: var(--ink); color: var(--muted-2); padding: 72px 0 34px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid var(--line-dark); }
.footer-brand .logo-plaque { display: inline-block; background: var(--cream); padding: 14px 18px; margin-bottom: 22px; }
.footer-brand .logo-plaque img { height: 50px; width: auto; max-width: none; display: block; }
.footer-brand p { max-width: 320px; font-size: 0.96rem; }
.footer-col h4 { color: #fff; font-size: 1.05rem; letter-spacing: 0.1em; margin-bottom: 18px; }
.footer-col a { display: block; padding: 7px 0; font-size: 0.96rem; color: var(--muted-2); }
.footer-col a:hover { color: var(--flame); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 26px; font-size: 0.86rem; flex-wrap: wrap; }
.footer-bottom .social { display: flex; gap: 16px; }
.footer-bottom .social a:hover { color: var(--flame); }

/* =========================================================================
   TOAST
   ========================================================================= */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(160%);
  background: var(--ink); color: var(--cream); padding: 15px 26px;
  font-family: var(--head); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.9rem;
  z-index: 120; box-shadow: var(--shadow); transition: transform 0.32s cubic-bezier(0.2,0.9,0.3,1.2);
  display: flex; align-items: center; gap: 12px; border-left: 3px solid var(--red);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* =========================================================================
   PAGE HEADER (interior pages)
   ========================================================================= */
.page-hero { background: var(--ink); color: var(--cream); padding: 80px 0 66px; text-align: center; }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin-top: 14px; }
.page-hero p { color: var(--muted-2); max-width: 620px; margin: 20px auto 0; font-size: 1.08rem; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 980px) {
  .split, .pdp-grid, .cart-layout, .contact-grid, .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .split-media .frame { display: none; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .summary { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero { min-height: 82vh; }
  .wrap { padding: 0 18px; }
  .brand img { height: 38px; }
  .header-actions { gap: 10px; }
  .header-inner { gap: 12px; }
}
@media (max-width: 360px) {
  .brand img { height: 33px; }
}
