/* ─── DESIGN TOKENS ─────────────────────────────── */
:root {
  /* Brand palette */
  --copper:       #C05A18;
  --copper-dk:    #9A4510;
  --copper-lt:    #E07030;
  --copper-glow:  rgba(192, 90, 24, 0.18);
  --amber:        #B8861A;
  --amber-lt:     #D4A840;

  /* Neutral scale */
  --charcoal:     #181818;
  --charcoal-80:  rgba(24,24,24,.8);
  --slate-700:    #374151;
  --slate-500:    #6B7280;
  --slate-300:    #D1D5DB;
  --slate-100:    #F3F4F6;

  /* Warm neutrals */
  --warm-50:      #FDFAF5;
  --warm-100:     #F5EFE4;
  --warm-200:     #EAE0CC;
  --warm-border:  #E0D6C4;

  --white:        #FFFFFF;

  /* Semantic */
  --text:         #1C1C1E;
  --text-muted:   #6B7280;
  --bg:           #FDFAF5;
  --shadow-sm:    0 1px 4px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.06);
  --shadow-md:    0 4px 12px rgba(0,0,0,.08), 0 16px 48px rgba(0,0,0,.1);
  --shadow-lg:    0 8px 24px rgba(0,0,0,.1),  0 32px 64px rgba(0,0,0,.14);

  /* Typography */
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --max-w:      1200px;

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

/* ─── RESET ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── SCROLLBAR ─────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--warm-50); }
::-webkit-scrollbar-thumb { background: var(--copper); border-radius: 5px; }

/* ─── LAYOUT HELPERS ────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 100px 0; }
.section-warm { background: var(--warm-100); }

/* Section headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}
.section-label.light { color: var(--amber-lt); }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--copper); }
.section-title.light { color: var(--white); }
.section-title.left  { text-align: left; }
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-desc.light { color: rgba(253,250,245,.6); }

/* ─── BUTTONS ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .93rem;
  letter-spacing: .01em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--copper);
  color: var(--white);
  box-shadow: 0 2px 8px var(--copper-glow), 0 8px 24px var(--copper-glow);
}
.btn-primary:hover {
  background: var(--copper-dk);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--copper-glow), 0 12px 32px var(--copper-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.7);
}
.btn-nav {
  background: var(--copper);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 500;
  transition: var(--transition);
}
.btn-nav:hover { background: var(--copper-dk); }
.btn-full { width: 100%; }

/* ─── NAVBAR ────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(24,24,24,.94);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.logo-mark {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--copper);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  letter-spacing: .02em;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--amber-lt);
  transition: width .25s ease;
}
.nav-link:hover,
.nav-link.active-link { color: var(--white); }
.nav-link:hover::after,
.nav-link.active-link::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ──────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Decorative background art */
.hero-bg-art {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 85% 50%, rgba(192,90,24,.14) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(184,134,26,.07) 0%, transparent 50%);
}
/* Geometric ring decoration */
.hero-bg-art::before {
  content: '';
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 580px; height: 580px;
  border-radius: 50%;
  border: 1px solid rgba(192,90,24,.12);
  box-shadow:
    0 0 0 32px  rgba(192,90,24,.06),
    0 0 0 80px  rgba(192,90,24,.04),
    0 0 0 140px rgba(192,90,24,.025),
    0 0 0 220px rgba(192,90,24,.015);
  pointer-events: none;
}
/* Subtle dot grid */
.hero-bg-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px 32px 60px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 64px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .5s .15s forwards;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -.02em;
  opacity: 0;
  animation: fadeUp .6s .3s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--copper-lt);
}
.hero-tagline {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 500px;
  opacity: 0;
  animation: fadeUp .6s .45s forwards;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp .6s .6s forwards;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  animation: fadeUp .6s .75s forwards;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat strong {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  line-height: 1;
}
.stat span {
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.12);
}

/* Hero visual side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: fadeIn .8s .5s forwards;
}
.hero-img-frame {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(192,90,24,.15);
}
.hero-img-frame img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: -16px; left: -20px;
  width: 90px; height: 90px;
  background: var(--copper);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  box-shadow: 0 8px 24px var(--copper-glow);
  border: 3px solid var(--charcoal);
}
.badge-line1, .badge-line3 {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .8;
}
.badge-line2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.1;
}

.floating-tag {
  position: absolute;
  background: var(--white);
  border-radius: 50px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.tag-spice {
  top: 40px; right: -16px;
}
.tag-brew {
  top: 120px; right: -20px;
}

/* ─── VALUE STRIP ───────────────────────────────── */
.value-strip {
  background: var(--white);
  border-top: 1px solid var(--warm-border);
  border-bottom: 1px solid var(--warm-border);
  padding: 40px 0;
}
.value-grid {
  display: flex;
  align-items: center;
  gap: 0;
}
.value-item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 40px;
}
.value-item:first-child { padding-left: 0; }
.value-item:last-child  { padding-right: 0; }
.value-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.value-item strong {
  display: block;
  font-weight: 600;
  font-size: .93rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.value-item p {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.value-sep {
  width: 1px;
  height: 60px;
  background: var(--warm-border);
  flex-shrink: 0;
}

/* ─── MENU ──────────────────────────────────────── */
.menu-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}
.menu-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.menu-tab {
  padding: 9px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--warm-border);
  font-size: .87rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--white);
  transition: var(--transition);
}
.menu-tab:hover {
  border-color: var(--copper);
  color: var(--copper);
}
.menu-tab.active {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--white);
  box-shadow: 0 4px 12px var(--copper-glow);
}
.menu-arrows {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.menu-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--warm-border);
  background: var(--white);
  color: var(--text-muted);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
  user-select: none;
}
.menu-arrow:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--white);
}
.menu-arrow:disabled {
  opacity: .35;
  cursor: default;
  pointer-events: none;
}

/* Scroll track wrapper */
.menu-scroll-wrap {
  position: relative;
}
.menu-scroll-wrap::before,
.menu-scroll-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 16px;
  width: 60px;
  z-index: 2;
  pointer-events: none;
  transition: opacity .3s ease;
}
.menu-scroll-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.menu-scroll-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.menu-grid {
  display: flex;
  flex-direction: row;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  cursor: grab;
  /* hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.menu-grid::-webkit-scrollbar { display: none; }
.menu-grid.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.menu-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--warm-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.menu-card.hidden {
  display: none;
}

.menu-card-img {
  height: 196px;
  position: relative;
  overflow: hidden;
}
.card-art {
  width: 100%;
  height: 100%;
  display: block;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.menu-card:hover .menu-card-img img {
  transform: scale(1.05);
}
.card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--charcoal);
  color: var(--white);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}
.card-badge-gold {
  background: var(--amber);
}

.menu-card-body { padding: 20px; }
.menu-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.menu-card-top h3 {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 3px;
}
.card-subtitle {
  font-size: .76rem;
  color: var(--text-muted);
  font-style: italic;
}
.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--copper);
  white-space: nowrap;
}
.menu-card-body > p {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.card-footer { display: flex; gap: 6px; }
.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hot-tag  { background: #FEF0E6; color: #9A4510; }
.cold-tag { background: #E8F4FF; color: #1A5F8A; }


/* ─── ABOUT ─────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.about-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.about-img-frame img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
/* Decorative offset border */
.about-img-frame::before {
  content: '';
  position: absolute;
  top: -14px; left: -14px;
  right: 14px; bottom: 14px;
  border: 2px solid var(--copper);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: .3;
}
.about-img-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--copper);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 3px solid var(--warm-50);
  box-shadow: 0 8px 24px var(--copper-glow);
}
.badge-number {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}
.badge-text {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1.3;
  opacity: .9;
}

.about-text-col { padding-right: 8px; }
.about-lead {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--slate-700);
  line-height: 1.65;
  margin-bottom: 20px;
  border-left: 3px solid var(--copper);
  padding-left: 20px;
}
.about-body {
  font-size: .97rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.about-pillars {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.pillar-icon-wrap {
  width: 40px; height: 40px;
  background: var(--warm-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.pillar strong {
  display: block;
  font-weight: 600;
  font-size: .93rem;
  color: var(--charcoal);
  margin-bottom: 3px;
}
.pillar p {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── SUPPORT ───────────────────────────────────── */
.section-support {
  background: linear-gradient(135deg, #1A0A00 0%, #3A1200 40%, #6A2800 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.section-support::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 28px 28px;
}
.section-support::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(192,90,24,.18) 0%, transparent 70%);
  pointer-events: none;
}
.support-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}
.support-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}
.support-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.support-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 14px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.support-perks {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 36px 0;
  flex-wrap: wrap;
}
.perk {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 160px;
}
.perk span { font-size: 1.6rem; }
.perk p {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
  text-align: center;
}
.btn-support {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 48px;
  background: var(--copper);
  color: var(--white);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .01em;
  box-shadow: 0 4px 24px rgba(192,90,24,.5), 0 0 0 0 rgba(192,90,24,.4);
  transition: var(--transition);
  animation: supportPulse 2.5s infinite;
  margin-bottom: 16px;
}
.btn-support:hover {
  background: var(--copper-dk);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(192,90,24,.6);
  animation: none;
}
.support-note {
  font-size: .76rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .04em;
}
@keyframes supportPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(192,90,24,.5), 0 0 0 0 rgba(192,90,24,.4); }
  50%       { box-shadow: 0 4px 24px rgba(192,90,24,.5), 0 0 0 12px rgba(192,90,24,.0); }
}

/* ─── CONTACT ───────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-icon {
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid var(--warm-border);
  box-shadow: var(--shadow-sm);
}
.contact-item strong {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--charcoal);
  margin-bottom: 3px;
}
.contact-item p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-neighborhood {
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--warm-border);
  border-left: 3px solid var(--copper);
}
.contact-neighborhood p {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--warm-border);
  box-shadow: var(--shadow-md);
}
.form-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--slate-700);
  letter-spacing: .03em;
}
.form-group input,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--warm-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--text);
  background: var(--warm-50);
  transition: var(--transition);
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--copper);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--copper-glow);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--slate-300);
}
.form-success,
.form-error {
  text-align: center;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 500;
  padding: 12px 16px;
  margin-top: 14px;
  display: none;
  line-height: 1.5;
}
.form-success {
  color: #166534;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
}
.form-error {
  color: #991B1B;
  background: #FEF2F2;
  border: 1px solid #FECACA;
}
.form-error a { color: var(--copper); text-decoration: underline; }
.form-success.visible,
.form-error.visible { display: block; }

/* ─── FOOTER ────────────────────────────────────── */
.footer {
  background: #111111;
  color: rgba(255,255,255,.55);
  padding: 64px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 56px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  max-width: 260px;
}
.footer-nav-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 16px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: .9rem;
  transition: var(--transition);
}
.footer-nav a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-col p {
  font-size: .88rem;
  line-height: 1.9;
}
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.social-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .03em;
  transition: var(--transition);
}
.social-icon:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--white);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
}
.footer-made { opacity: .5; }

/* ─── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
  }
  .hero-title, .hero-tagline { margin-left: auto; margin-right: auto; }
  .hero-btns, .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .hero-eyebrow { justify-content: center; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .about-img-frame { max-width: 460px; margin: 0 auto; }
  .about-text-col { padding: 0; }
  .section-title.left,
  .about-lead { text-align: center; }
  .about-lead { border-left: none; border-top: 3px solid var(--copper); padding-left: 0; padding-top: 16px; }
  .section-label:not(.light) { display: block; text-align: center; }

  .value-grid { gap: 0; }
  .value-item { padding: 0 28px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }

  /* Nav */
  .btn-nav { display: none; }
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(20,20,20,.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 12px 0 20px;
    border-top: 1px solid rgba(255,255,255,.07);
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 13px 28px; font-size: .95rem; width: 100%; }
  .nav-link::after { display: none; }

  /* Value strip */
  .value-grid { flex-direction: column; gap: 0; }
  .value-sep { width: 100%; height: 1px; }
  .value-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--warm-border);
  }
  .value-item:last-child { border-bottom: none; }
  .value-item:first-child { padding-left: 0; }

  /* Menu */
  .menu-card { flex: 0 0 260px; }
  .menu-controls { flex-direction: column; align-items: flex-start; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

}

@media (max-width: 480px) {
  .hero-stats { gap: 16px; }
}
