/* ==========================================================================
   The Dairy Queen Menu — Stylesheet v1 (Original / Reverted)
   Design: DQ-inspired palette — red #D32000, amber #FFB800, blue #0056A6,
   warm cream background. Bebas Neue display + Nunito body.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --color-primary:      #D32000;
  --color-primary-dark: #A81C00;
  --color-accent:       #FFB800;
  --color-accent-soft:  #FFF3C4;
  --color-blue:         #0056A6;
  --color-blue-light:   #E6F2FA;
  --color-background:   #FDFAF5;
  --color-surface:      #FFFFFF;
  --color-surface-alt:  #FFF8ED;
  --color-text:         #1A1208;
  --color-text-muted:   #6B5E4A;
  --color-border:       #E8E0D0;
  --color-dark:         #12100D;

  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body:    'Nunito', 'Segoe UI', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(26,18,8,.07);
  --shadow-md:  0 8px 28px rgba(26,18,8,.11);
  --shadow-lg:  0 20px 60px rgba(26,18,8,.16);

  --container:  1240px;
  --header-h:   72px;
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--color-background);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; height: auto; }
a { color: var(--color-primary); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--color-primary-dark); }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.1;
  letter-spacing: .03em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
h4 { font-size: 1.3rem; font-family: var(--font-body); font-weight: 700; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(56px, 9vw, 112px) 0; }
.section-alt { background: var(--color-surface-alt); }
.section-title { text-align: center; margin-bottom: 8px; }
.section-kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700; font-size: .78rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--color-primary); margin-bottom: 12px;
}
.section-intro {
  max-width: 680px; margin: 0 auto 52px;
  text-align: center; color: var(--color-text-muted); font-size: 1.06rem;
}
.center { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-body); font-weight: 700; font-size: .92rem;
  letter-spacing: .04em; border-radius: var(--radius-sm);
  transition: all .25s var(--ease); border: 2px solid transparent;
  cursor: pointer; text-transform: uppercase;
}
.btn-primary { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn-primary:hover {
  background: var(--color-primary-dark); border-color: var(--color-primary-dark); color: #fff;
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(211,32,0,.35);
}
.btn-accent { background: var(--color-accent); color: var(--color-dark); border-color: var(--color-accent); }
.btn-accent:hover {
  background: #E6A600; border-color: #E6A600; color: var(--color-dark);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,184,0,.4);
}
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: var(--color-dark); }
.btn-blue { background: var(--color-blue); color: #fff; border-color: var(--color-blue); }
.btn-blue:hover { background: #003F7A; border-color: #003F7A; color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-ghost:hover { background: var(--color-primary); color: #fff; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(253,250,245,.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.55rem; letter-spacing: .06em; color: var(--color-dark); white-space: nowrap; }
.logo-icon { width: 38px; height: 38px; background: var(--color-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-icon svg { width: 20px; height: 20px; fill: #fff; }
.logo span.accent { color: var(--color-primary); }
.nav-menu { display: flex; align-items: center; gap: 22px; }
.nav-menu a {
  font-family: var(--font-body); font-weight: 700; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .08em; color: var(--color-text);
  position: relative; padding: 4px 0;
}
.nav-menu a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--color-primary);
  transition: width .25s var(--ease);
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-menu a:hover, .nav-menu a.active { color: var(--color-primary); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--color-dark); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative; background: var(--color-primary); color: #fff;
  padding: clamp(72px,11vw,140px) 0 clamp(60px,9vw,120px); overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(255,184,0,.22), transparent 52%),
    radial-gradient(circle at 10% 85%, rgba(0,86,160,.25), transparent 48%);
}
.hero::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 60px; background: var(--color-background);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: .78rem;
  letter-spacing: .25em; text-transform: uppercase; color: var(--color-accent);
  margin-bottom: 20px; padding: 6px 14px;
  border: 1px solid rgba(255,184,0,.45); border-radius: 30px;
}
.hero h1 { color: #fff; margin-bottom: 22px; line-height: 1.0; }
.hero h1 em { color: var(--color-accent); font-style: normal; }
.hero-lead { font-size: clamp(1rem,1.3vw,1.18rem); max-width: 560px; margin-bottom: 36px; color: rgba(255,255,255,.88); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.18); }
.hero-stat .num { font-family: var(--font-display); font-size: 2.4rem; color: var(--color-accent); line-height: 1; }
.hero-stat .lbl { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-top: 6px; }
.hero-card { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-lg); padding: 28px; backdrop-filter: blur(6px); }
.hero-card h3 { color: var(--color-accent); font-size: 1.4rem; margin-bottom: 16px; }
.hero-menu-list { display: flex; flex-direction: column; gap: 10px; }
.hero-menu-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; background: rgba(255,255,255,.1); border-radius: var(--radius-sm); transition: background .2s; text-decoration: none; }
.hero-menu-row:hover { background: rgba(255,255,255,.18); }
.hero-menu-row .item-name { font-weight: 600; font-size: .92rem; color: #fff; }
.hero-menu-row .item-price { font-family: var(--font-display); font-size: 1.1rem; color: var(--color-accent); }

/* ── Stats strip ── */
.stats-strip { background: var(--color-primary); padding: 28px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.15); }
.stat-box { padding: 24px 20px; text-align: center; }
.stat-box .num { font-family: var(--font-display); font-size: 2.6rem; color: #fff; line-height: 1; display: block; }
.stat-box .lbl { font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-top: 4px; display: block; }

/* ── Quick Jump ── */
.quick-jump { padding: 40px 0 56px; }
.qj-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.qj-btn {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; padding: 20px 12px;
  background: var(--color-surface); border: 2px solid var(--color-border);
  border-radius: var(--radius-md); transition: all .25s var(--ease);
  text-align: center; color: var(--color-text);
}
.qj-btn:hover { border-color: var(--color-primary); background: #FFF0ED; transform: translateY(-3px); box-shadow: var(--shadow-sm); color: var(--color-primary); }
.qj-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--color-accent-soft); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; transition: background .25s; }
.qj-btn:hover .qj-icon { background: var(--color-primary); }
.qj-label { font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; }
.qj-price { font-size: .78rem; color: var(--color-text-muted); }

/* ── Category Cards ── */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px,1fr)); gap: 24px; }
.cat-card { display: block; background: var(--color-surface); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--color-border); transition: transform .35s var(--ease), box-shadow .35s; color: inherit; }
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.cat-img { aspect-ratio: 16/9; background: var(--color-accent-soft); overflow: hidden; position: relative; }
.cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.cat-card:hover .cat-img img { transform: scale(1.05); }
.cat-badge { position: absolute; top: 14px; left: 14px; background: var(--color-primary); color: #fff; padding: 4px 12px; border-radius: 30px; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.cat-body { padding: 22px 24px 26px; }
.cat-card h3 { font-size: 1.6rem; margin-bottom: 6px; color: var(--color-dark); }
.cat-count { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 8px; }
.cat-desc { font-size: .93rem; color: var(--color-text-muted); margin-bottom: 16px; }
.cat-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; color: var(--color-primary); }
.cat-link::after { content: '→'; transition: transform .2s; }
.cat-card:hover .cat-link::after { transform: translateX(4px); }

/* ── Item Cards ── */
.item-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 20px; }
.item-card { display: block; background: var(--color-surface); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; color: inherit; }
.item-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.item-img { aspect-ratio: 16/9; background: var(--color-accent-soft); overflow: hidden; }
.item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.item-card:hover .item-img img { transform: scale(1.06); }
.item-body { padding: 16px 18px 20px; }
.item-body h3 { font-size: 1.15rem; margin-bottom: 4px; color: var(--color-dark); }
.item-desc { font-size: .86rem; color: var(--color-text-muted); margin-bottom: 12px; }
.item-footer { display: flex; justify-content: space-between; align-items: center; }
.item-footer .price { font-family: var(--font-display); font-size: 1.2rem; color: var(--color-primary); }
.item-footer .cal { font-size: .78rem; color: var(--color-text-muted); }

/* ── Menu List Rows ── */
.menu-section { margin-bottom: 52px; }
.menu-section:last-child { margin-bottom: 0; }
.menu-section-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--color-border); }
.menu-section-head h3 { font-size: 1.8rem; color: var(--color-dark); }
.badge-count { display: inline-flex; align-items: center; padding: 3px 10px; background: var(--color-primary); color: #fff; border-radius: 30px; font-size: .75rem; font-weight: 700; letter-spacing: .06em; }
.menu-list { display: flex; flex-direction: column; gap: 2px; }
.menu-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding: 14px 18px; border-radius: var(--radius-sm); transition: background .18s; }
.menu-row:hover { background: var(--color-surface-alt); }
.menu-row.best-seller { background: #FFF8ED; border-left: 3px solid var(--color-accent); }
.m-name { font-weight: 700; font-size: .97rem; color: var(--color-dark); }
.m-name a { color: var(--color-dark); }
.m-name a:hover { color: var(--color-primary); }
.m-desc { font-size: .88rem; color: var(--color-text-muted); margin-top: 2px; }
.m-price { font-family: var(--font-display); font-size: 1.25rem; color: var(--color-primary); white-space: nowrap; flex-shrink: 0; }
.m-cal { font-size: .78rem; color: var(--color-text-muted); text-align: right; white-space: nowrap; }

/* ── Size / Compare Tables ── */
.size-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.size-table th { background: var(--color-primary); color: #fff; padding: 10px 14px; text-align: left; font-family: var(--font-body); font-weight: 700; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; }
.size-table th:first-child { border-radius: 8px 0 0 0; }
.size-table th:last-child  { border-radius: 0 8px 0 0; }
.size-table td { padding: 10px 14px; border-bottom: 1px solid var(--color-border); }
.size-table tr:last-child td { border-bottom: 0; }
.size-table tr:nth-child(even) td { background: var(--color-surface-alt); }
.size-table .price-cell { font-family: var(--font-display); font-size: 1.1rem; color: var(--color-primary); }
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); }
.compare { width: 100%; border-collapse: collapse; font-size: .93rem; box-shadow: var(--shadow-sm); border-radius: var(--radius-md); overflow: hidden; }
.compare thead th { background: var(--color-primary); color: #fff; padding: 13px 18px; text-align: left; font-family: var(--font-body); font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.compare tbody td { padding: 12px 18px; border-bottom: 1px solid var(--color-border); }
.compare tbody tr:last-child td { border-bottom: 0; }
.compare tbody tr:nth-child(even) td { background: var(--color-surface-alt); }
.compare .highlight { font-family: var(--font-display); font-size: 1.15rem; color: var(--color-primary); }
.compare .top-row td { background: #FFF8ED; font-weight: 700; }

/* ── Breadcrumb ── */
.breadcrumb { background: var(--color-surface-alt); padding: 12px 0; border-bottom: 1px solid var(--color-border); font-size: .86rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumb li { display: flex; align-items: center; gap: 6px; color: var(--color-text-muted); }
.breadcrumb li+li::before { content: '›'; }
.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb [aria-current="page"] { color: var(--color-dark); font-weight: 700; }

/* ── Badges / Chips ── */
.badge { display: inline-flex; padding: 4px 12px; border-radius: 30px; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: var(--color-accent-soft); color: var(--color-dark); border: 1px solid var(--color-accent); }
.badge.red { background: #FFE8E4; color: var(--color-primary); border-color: var(--color-primary); }
.badge.blue { background: var(--color-blue-light); color: var(--color-blue); border-color: var(--color-blue); }
.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.chip { padding: 5px 14px; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 30px; font-size: .82rem; font-weight: 600; color: var(--color-text-muted); }

/* ── Item detail hero ── */
.item-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; padding: 52px 0; }
.item-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.item-price-lg { font-family: var(--font-display); font-size: 3rem; color: var(--color-primary); line-height: 1; margin-bottom: 16px; }
.spec-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .93rem; }
.spec-table td { padding: 9px 14px; border-bottom: 1px solid var(--color-border); }
.spec-table td:first-child { font-weight: 700; color: var(--color-text-muted); width: 42%; }
.spec-table tr:last-child td { border-bottom: 0; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 860px; margin: 0 auto; }
.faq-item { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 24px; cursor: pointer; font-weight: 700; font-size: 1rem; color: var(--color-dark); transition: background .18s; width: 100%; text-align: left; }
.faq-q:hover { background: var(--color-surface-alt); }
.faq-icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--color-accent-soft); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--color-primary); transition: transform .3s var(--ease), background .18s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--color-primary); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 24px 20px; color: var(--color-text-muted); font-size: .97rem; }

/* ── Blog Cards ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 28px; }
.blog-card { display: block; background: var(--color-surface); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; color: inherit; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-img { aspect-ratio: 16/9; background: var(--color-accent-soft); overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.blog-card:hover .blog-img img { transform: scale(1.04); }
.blog-body { padding: 22px 24px 26px; }
.blog-meta { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 10px; }
.blog-body h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--color-dark); font-family: var(--font-body); font-weight: 700; }
.blog-body p { font-size: .93rem; color: var(--color-text-muted); }

/* ── Pillars ── */
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 22px; }
.pillar { background: var(--color-surface); border-radius: var(--radius-md); padding: 28px 24px; border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar .icon { width: 52px; height: 52px; border-radius: 50%; background: var(--color-accent-soft); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 14px; }
.pillar h4 { margin-bottom: 8px; }
.pillar p { font-size: .92rem; color: var(--color-text-muted); margin: 0; }

/* ── CTA Banner ── */
.cta-banner { border-radius: var(--radius-xl); padding: 64px 52px; background: linear-gradient(135deg, var(--color-primary) 0%, #B01D00 100%); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, rgba(255,184,0,.2), transparent 60%); pointer-events: none; }
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.82); max-width: 580px; margin: 0 auto 32px; font-size: 1.06rem; }
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ── Article body ── */
.article-body { max-width: 860px; margin: 0 auto; }
.article-body h2 { margin: 40px 0 16px; font-size: 2rem; }
.article-body h3 { margin: 30px 0 12px; font-size: 1.5rem; }
.article-body p { margin-bottom: 18px; }
.article-body ul { margin: 12px 0 20px 20px; list-style: disc; }
.article-body ul li { margin-bottom: 8px; color: var(--color-text-muted); }
.article-body a { font-weight: 600; }
.article-body blockquote { border-left: 4px solid var(--color-primary); margin: 28px 0; padding: 16px 24px; background: var(--color-surface-alt); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; color: var(--color-text-muted); }

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ── Footer ── */
.site-footer { background: var(--color-dark); color: #B0A090; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand { font-family: var(--font-display); font-size: 1.8rem; color: #fff; letter-spacing: .05em; margin-bottom: 12px; }
.footer-brand span { color: var(--color-accent); }
.footer-about { font-size: .92rem; margin-bottom: 22px; color: #A09080; max-width: 300px; }
.footer-col h4 { font-family: var(--font-body); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: #fff; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: #A09080; font-size: .92rem; transition: color .18s; }
.footer-col ul a:hover { color: var(--color-accent); }
.socials { display: flex; gap: 10px; flex-wrap: wrap; }
.socials a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 50%; color: #B0A090; font-size: .75rem; font-weight: 700; transition: background .18s, color .18s; }
.socials a:hover { background: var(--color-primary); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: .84rem; color: #6B5E4A; }
.footer-bottom a { color: #6B5E4A; }
.footer-bottom a:hover { color: var(--color-accent); }

/* ── Responsive ── */
@media (max-width:1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .item-hero { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:768px) {
  .nav-menu { display: none; flex-direction: column; position: absolute; top: var(--header-h); left: 0; right: 0; background: rgba(253,250,245,.98); border-bottom: 1px solid var(--color-border); padding: 20px 24px; gap: 4px; }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 10px 0; font-size: 1rem; }
  .nav-toggle { display: flex; }
  .site-header { position: relative; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner { padding: 44px 28px; }
  .qj-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .qj-grid { grid-template-columns: repeat(2,1fr); }
}

/* ── Top Bar ── */
.top-bar {
  background: var(--color-dark);
  color: #A09080;
  font-size: .75rem;
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 34px;
  gap: 16px;
}
.top-bar-legal { display: flex; align-items: center; gap: 14px; }
.top-bar-legal a {
  color: #C4B8A8;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .18s;
}
.top-bar-legal a:hover { color: var(--color-accent); }
.top-bar-social { display: flex; align-items: center; gap: 10px; }
.top-bar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  color: #C4B8A8;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  transition: background .18s, color .18s;
}
.top-bar-social a:hover { background: var(--color-primary); color: #fff; }
@media (max-width:768px) {
  .top-bar-inner { justify-content: center; }
  .top-bar-legal { display: none; }
}
