/* ============================================================
   BREWHAUS & BURGERS — Global Stylesheet
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  /* Light mode palette */
  --bg-primary:       #FAF7F2;
  --bg-secondary:     #F0EAE0;
  --bg-card:          #FFFFFF;
  --bg-card-hover:    #FDFBF8;

  --text-primary:     #1C1A17;
  --text-secondary:   #5C5347;
  --text-muted:       #9A8E82;
  --text-inverse:     #FAF7F2;

  --accent-green:     #3D6B4F;
  --accent-green-lt:  #5A9070;
  --accent-green-bg:  #EAF2ED;
  --accent-gold:      #B8841A;
  --accent-gold-lt:   #D4A030;
  --accent-amber:     #C96B1A;

  --border-subtle:    rgba(92, 83, 71, 0.15);
  --border-medium:    rgba(92, 83, 71, 0.28);

  --shadow-sm:        0 1px 4px rgba(0,0,0,.08);
  --shadow-md:        0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:        0 12px 40px rgba(0,0,0,.14);
  --shadow-xl:        0 24px 60px rgba(0,0,0,.18);

  /* Wood nav — light natural oak */
  --wood-bg: linear-gradient(
    180deg,
    #C8A96E 0%,
    #B8924A 18%,
    #C4A05A 35%,
    #A87C38 50%,
    #C2A058 65%,
    #B08840 82%,
    #9E7430 100%
  );
  --wood-grain: repeating-linear-gradient(
    92deg,
    transparent 0px,
    rgba(255,255,255,.04) 1px,
    transparent 3px,
    rgba(0,0,0,.06) 5px,
    transparent 8px
  );
  --wood-border-top:    rgba(220,185,120,.6);
  --wood-border-bottom: rgba(70,45,15,.5);
  --wood-text:          #1C120A;
  --wood-text-hover:    #FFFFFF;
  --wood-shadow:        0 4px 18px rgba(60,30,0,.45);

  /* Hero banner */
  --hero-bg: linear-gradient(135deg, #F5EFE3 0%, #EDE4D0 60%, #E0D5BC 100%);
  --hero-badge-bg:   #B8841A;
  --hero-badge-text: #FFFFFF;

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

  --transition: .3s cubic-bezier(.4,0,.2,1);
}

[data-theme="dark"] {
  --bg-primary:       #131210;
  --bg-secondary:     #1C1A17;
  --bg-card:          #232018;
  --bg-card-hover:    #2A2720;

  --text-primary:     #F0EAE0;
  --text-secondary:   #B8A898;
  --text-muted:       #7A6E62;
  --text-inverse:     #131210;

  --accent-green:     #6AAE80;
  --accent-green-lt:  #88C49A;
  --accent-green-bg:  #1A2E20;
  --accent-gold:      #D4A030;
  --accent-gold-lt:   #E8B84A;
  --accent-amber:     #E07A28;

  --border-subtle:    rgba(240,234,224,.10);
  --border-medium:    rgba(240,234,224,.18);

  --shadow-sm:        0 1px 4px rgba(0,0,0,.30);
  --shadow-md:        0 4px 20px rgba(0,0,0,.45);
  --shadow-lg:        0 12px 40px rgba(0,0,0,.55);
  --shadow-xl:        0 24px 60px rgba(0,0,0,.65);

  /* Wood nav — dark burnt oak */
  --wood-bg: linear-gradient(
    180deg,
    #3A2910 0%,
    #4A3418 18%,
    #3C2A0E 35%,
    #2E1E08 50%,
    #3C2A0E 65%,
    #4A3418 82%,
    #2A1A06 100%
  );
  --wood-grain: repeating-linear-gradient(
    92deg,
    transparent 0px,
    rgba(255,255,255,.02) 1px,
    transparent 3px,
    rgba(0,0,0,.15) 5px,
    transparent 8px
  );
  --wood-border-top:    rgba(120,80,30,.5);
  --wood-border-bottom: rgba(10,6,2,.8);
  --wood-text:          #E8C990;
  --wood-text-hover:    #FFFFFF;
  --wood-shadow:        0 4px 24px rgba(0,0,0,.7);

  --hero-bg: linear-gradient(135deg, #1C1A14 0%, #252218 60%, #1A180E 100%);
  --hero-badge-bg:   #D4A030;
  --hero-badge-text: #131210;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  transition:
    background-color var(--transition),
    color var(--transition);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Preloader ─────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #1C1208;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity .6s ease, visibility .6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-title {
  font-size: clamp(1rem, 3vw, 1.4rem);
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #C8A050;
  font-weight: 300;
  opacity: 0;
  animation: fadeInText .5s ease 2.4s forwards;
}

@keyframes fadeInText { to { opacity: 1; } }

/* Burger build animation */
.burger-build {
  position: relative;
  width: 180px;
  height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}

.b-layer {
  width: 100%;
  border-radius: 50px;
  opacity: 0;
  transform: translateY(-80px) rotate(-4deg);
}

/* bun top */
.b-bun-top {
  width: 130px;
  height: 52px;
  background: radial-gradient(ellipse at 40% 30%, #F4C56A 0%, #D4903A 55%, #B8721E 100%);
  border-radius: 60px 60px 20px 20px;
  box-shadow: inset 0 -4px 8px rgba(0,0,0,.2), 0 2px 6px rgba(0,0,0,.3);
  position: relative;
  align-self: center;
  animation: dropIn .45s cubic-bezier(.36, .07, .19, .97) .1s forwards;
}
.b-bun-top::after {
  content: '';
  position: absolute;
  top: 10px; left: 20px; right: 20px; height: 6px;
  background: rgba(255,255,255,.2);
  border-radius: 4px;
}

/* lettuce */
.b-lettuce {
  width: 145px;
  height: 16px;
  background: linear-gradient(90deg, #5A9E48, #3E7A2C, #6AB050, #4A8A38);
  border-radius: 4px;
  clip-path: polygon(0% 50%, 5% 0%, 12% 70%, 18% 10%, 25% 65%, 32% 5%, 39% 70%, 46% 0%, 53% 65%, 60% 5%, 67% 70%, 74% 0%, 81% 65%, 88% 10%, 95% 60%, 100% 30%, 100% 100%, 0% 100%);
  margin: -2px 0;
  animation: dropIn .45s cubic-bezier(.36, .07, .19, .97) .35s forwards;
}

/* tomato */
.b-tomato {
  width: 130px;
  height: 12px;
  background: linear-gradient(90deg, #E84040, #C82828, #E84040);
  border-radius: 6px;
  animation: dropIn .45s cubic-bezier(.36, .07, .19, .97) .55s forwards;
}

/* cheese */
.b-cheese {
  width: 140px;
  height: 10px;
  background: linear-gradient(90deg, #F5C842, #E8A820, #F5C842);
  border-radius: 2px;
  clip-path: polygon(0% 0%, 100% 0%, 105% 50%, 100% 100%, 95% 50%, 90% 100%, 0% 100%);
  filter: drop-shadow(0 3px 4px rgba(200,140,0,.4));
  animation: dropIn .45s cubic-bezier(.36, .07, .19, .97) .75s forwards;
}

/* patty */
.b-patty {
  width: 138px;
  height: 22px;
  background: radial-gradient(ellipse at 30% 40%, #5C3220 0%, #3C1E0C 50%, #2C1208 100%);
  border-radius: 8px;
  box-shadow: inset 0 2px 6px rgba(255,255,255,.05), 0 2px 8px rgba(0,0,0,.4);
  animation: dropIn .45s cubic-bezier(.36, .07, .19, .97) .95s forwards;
}

/* bun bottom */
.b-bun-bottom {
  width: 150px;
  height: 22px;
  background: linear-gradient(180deg, #D4903A 0%, #C07828 50%, #A86020 100%);
  border-radius: 8px 8px 30px 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
  animation: dropIn .45s cubic-bezier(.36, .07, .19, .97) 1.15s forwards;
}

@keyframes dropIn {
  0%   { opacity:0; transform: translateY(-80px) rotate(-3deg); }
  60%  { transform: translateY(6px) rotate(.5deg); }
  80%  { transform: translateY(-4px) rotate(-.3deg); }
  100% { opacity:1; transform: translateY(0) rotate(0deg); }
}

.preloader-bar {
  width: 160px;
  height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #C8A050, #D4A030);
  border-radius: 2px;
  animation: barFill 1.8s ease 1.3s forwards;
  width: 0%;
}
@keyframes barFill { to { width: 100%; } }

/* ── Sticky Header / Nav ───────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--wood-bg);
  box-shadow: var(--wood-shadow);
  border-top:    2px solid var(--wood-border-top);
  border-bottom: 3px solid var(--wood-border-bottom);
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--wood-grain);
  pointer-events: none;
}

.nav-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: relative;
  z-index: 1;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #C8A050, #8A5E20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.2);
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-name {
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--wood-text);
  text-transform: uppercase;
}
.nav-logo-sub {
  font-size: .65rem;
  letter-spacing: .18em;
  color: rgba(200,169,80,.8);
  text-transform: uppercase;
  font-weight: 400;
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  position: relative;
  padding: 8px 13px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--wood-text);
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--accent-gold-lt);
  border-radius: 1px;
  transition: left .25s, right .25s;
}
.nav-link:hover { color: var(--wood-text-hover); }
.nav-link:hover::after,
.nav-link.active::after { left: 13px; right: 13px; }
.nav-link.active { color: var(--wood-text-hover); }

/* Dividers between link groups */
.nav-divider {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,.15);
  margin: 0 4px;
  flex-shrink: 0;
}

/* Nav right controls */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Theme toggle */
.theme-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--wood-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background .2s, transform .2s;
  line-height: 1;
}
.theme-btn:hover {
  background: rgba(255,255,255,.22);
  transform: scale(1.08);
}

/* Hamburger menu button (mobile) */
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  transition: background .2s;
}
.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--wood-text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--wood-bg);
  border-bottom: 3px solid var(--wood-border-bottom);
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
  padding: 12px 20px 20px;
  z-index: 99;
}
.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--wood-grain);
  pointer-events: none;
}
.mobile-menu.open { display: block; }
.mobile-menu .nav-link {
  display: block;
  padding: 11px 14px;
  font-size: .88rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu .nav-link:last-child { border-bottom: none; }
.mobile-menu .nav-divider { display: none; }
.mobile-menu-section-label {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(200,169,80,.7);
  padding: 10px 14px 4px;
  font-weight: 600;
}

/* ── Hero / Promo Banner ───────────────────────────────────── */
.hero-banner {
  background: var(--hero-bg);
  border-bottom: 2px solid var(--border-subtle);
  padding: clamp(40px, 6vw, 80px) 20px;
  position: relative;
  overflow: hidden;
}
.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(184,132,26,.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(61,107,79,.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left content */
.hero-content { display: flex; flex-direction: column; gap: 20px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--hero-badge-bg);
  color: var(--hero-badge-text);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
  box-shadow: var(--shadow-sm);
  animation: pulseBadge 2.5s ease-in-out infinite;
}
.hero-badge .badge-dot {
  width: 7px; height: 7px;
  background: currentColor;
  border-radius: 50%;
  animation: blinkDot 1.4s ease-in-out infinite;
  opacity: .9;
}
@keyframes pulseBadge {
  0%, 100% { box-shadow: var(--shadow-sm); }
  50%       { box-shadow: 0 0 0 6px rgba(184,132,26,.2), var(--shadow-sm); }
}
@keyframes blinkDot { 0%,100%{opacity:.9} 50%{opacity:.2} }

.hero-tag {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-green);
}

.hero-title {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--text-primary);
}
.hero-title span {
  display: inline-block;
  color: var(--accent-amber);
  position: relative;
}

.hero-desc {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: var(--text-secondary);
  max-width: 460px;
  line-height: 1.65;
}

.hero-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.hero-price-old {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.hero-price-new {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--accent-amber);
  line-height: 1;
}
.hero-price-label {
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-gold));
  color: #FFF;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 14px 28px;
  border-radius: 100px;
  width: fit-content;
  box-shadow: 0 4px 20px rgba(201,107,26,.4);
  transition: transform .2s, box-shadow .2s;
  margin-top: 4px;
}
.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(201,107,26,.55);
}
.hero-cta svg { transition: transform .2s; }
.hero-cta:hover svg { transform: translateX(4px); }

.hero-extras {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-extra-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--text-secondary);
  font-weight: 600;
}
.hero-extra-pill span.icon { font-size: 1rem; }

/* Right image */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.hero-img-wrap:hover img { transform: scale(1.04); }

.hero-img-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, #C96B1A, #B85018);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.35);
  border: 3px solid var(--bg-primary);
  color: #fff;
  text-align: center;
  line-height: 1.2;
  animation: rotateBadge 8s linear infinite;
}
.hero-img-badge .badge-pct  { font-size: 1.4rem; font-weight: 900; }
.hero-img-badge .badge-off  { font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
@keyframes rotateBadge { to { transform: rotate(360deg); } }

/* ── Page Header (inner pages) ─────────────────────────────── */
.page-hero {
  background: var(--hero-bg);
  padding: clamp(48px, 6vw, 80px) 20px;
  text-align: center;
  border-bottom: 2px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(61,107,79,.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-icon {
  font-size: 3.5rem;
  margin-bottom: 12px;
  display: block;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.page-hero p {
  font-size: clamp(.9rem, 1.8vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
}

/* ── Menu Grid ─────────────────────────────────────────────── */
.menu-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 80px) 20px;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--border-subtle);
  padding-bottom: 16px;
}
.section-title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--text-primary);
}
.section-title span { color: var(--accent-green); }
.section-count {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* ── Product Card ──────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease, background .28s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px) scale(1.012);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card-hover);
}

.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--bg-secondary);
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.card:hover .card-img img { transform: scale(1.07); }

.card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--accent-green);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.card-badge.popular { background: var(--accent-amber); }
.card-badge.new     { background: var(--accent-green); }
.card-badge.vegan   { background: #3E8A48; }

.card-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--text-primary);
  line-height: 1.3;
}
.card-desc {
  font-size: .83rem;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.card-tag {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--bg-secondary);
  color: var(--text-muted);
  padding: 3px 8px;
  border-radius: 100px;
  border: 1px solid var(--border-subtle);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}
.card-price {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--accent-amber);
  line-height: 1;
}
.card-price-old {
  font-size: .8rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 1px;
}

.btn-order {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--accent-green);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 9px 16px;
  border-radius: 100px;
  transition: background .2s, transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn-order:hover {
  background: var(--accent-green-lt);
  transform: scale(1.04);
  box-shadow: 0 4px 14px rgba(61,107,79,.35);
}

/* ── Homepage Feature Sections ─────────────────────────────── */
.home-sections {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 80px) 20px;
}

.home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.cat-icon { font-size: 2.6rem; }
.cat-name {
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--text-primary);
}
.cat-count { font-size: .75rem; color: var(--text-muted); }

/* About strip */
.about-strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: clamp(48px, 6vw, 80px) 20px;
}
.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
}
.about-img-wrap img { width:100%; height:100%; object-fit:cover; }
.about-content { display: flex; flex-direction: column; gap: 18px; }
.about-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-green);
}
.about-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: var(--text-primary);
}
.about-body {
  font-size: .95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.about-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-amber);
  line-height: 1;
}
.stat-label {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--wood-bg);
  border-top: 2px solid var(--wood-border-bottom);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--wood-grain);
  pointer-events: none;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) 20px 24px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-tagline {
  font-size: .85rem;
  color: rgba(200,169,80,.75);
  line-height: 1.6;
  max-width: 260px;
}
.footer-col-title {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(200,169,80,.8);
  margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-link {
  font-size: .85rem;
  color: var(--wood-text);
  opacity: .8;
  transition: opacity .2s, color .2s;
}
.footer-link:hover { opacity: 1; color: var(--wood-text-hover); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .83rem;
  color: var(--wood-text);
  opacity: .8;
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact-item .icon { flex-shrink: 0; opacity: .7; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: .78rem;
  color: rgba(200,169,80,.6);
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wood-text);
  font-size: .9rem;
  transition: background .2s, transform .2s;
}
.footer-social-btn:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-2px);
}

/* ── Utility ───────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-img-wrap { max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger-btn { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-visual { order: -1; }
  .hero-img-wrap { max-width: 100%; }
  .hero-img-badge { bottom: -10px; right: -10px; width: 72px; height: 72px; }
  .hero-img-badge .badge-pct { font-size: 1.15rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .about-stats { gap: 20px; }
  .hero-extras { gap: 12px; }
}
