/* ═══════════════════════════════════════════════════════════════
   CeRiTa Roastery — Premium Stylesheet
   Design: Warm Espresso Brown · Cream · Sand · Charcoal · Gold
═══════════════════════════════════════════════════════════════ */

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

:root {
  /* Color tokens */
  --c-espresso:    #1e1109;
  --c-dark-brown:  #2c1a0e;
  --c-mid-brown:   #4a2c1a;
  --c-warm-brown:  #7c4a2d;
  --c-tan:         #a87050;
  --c-gold:        #b8935a;
  --c-gold-light:  #d4a96a;
  --c-terracotta:  #c4714a;
  --c-cream:       #f5ede0;
  --c-cream-light: #faf5ee;
  --c-sand:        #e8d5bb;
  --c-beige:       #d4bca0;
  --c-charcoal:    #1a1410;
  --c-text:        #2a1f16;
  --c-text-muted:  #7a6254;
  --c-overlay:     rgba(14, 8, 3, 0.62);

  /* Typography */
  --f-serif: 'Cormorant Garamond', Georgia, serif;
  --f-sans:  'Inter', -apple-system, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Effects */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-card: 0 8px 40px rgba(14, 8, 3, 0.18);
  --shadow-hover: 0 16px 60px rgba(14, 8, 3, 0.28);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.22s ease;
}

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

body {
  font-family: var(--f-sans);
  background: var(--c-cream-light);
  color: var(--c-text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ─── SCROLL ANIMATION ───────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.30s; }
.delay-3 { transition-delay: 0.45s; }

/* ─── TYPOGRAPHY HELPERS ─────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--f-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-sm);
}
.section-heading {
  font-family: var(--f-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--c-dark-brown);
  margin-bottom: var(--space-md);
}
.section-heading em {
  font-style: italic;
  color: var(--c-warm-brown);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  max-width: 520px;
  line-height: 1.75;
}
.section {
  padding: var(--space-3xl) 0;
}
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.section-header .section-sub {
  margin: 0 auto;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--f-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-gold);
  color: var(--c-espresso);
  border-color: var(--c-gold);
}
.btn--primary:hover {
  background: var(--c-gold-light);
  border-color: var(--c-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 147, 90, 0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--c-cream);
  border-color: rgba(245, 237, 224, 0.45);
}
.btn--ghost:hover {
  background: rgba(245, 237, 224, 0.12);
  border-color: var(--c-cream);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--c-gold);
  border-color: rgba(184, 147, 90, 0.45);
}
.btn--outline:hover {
  background: rgba(184, 147, 90, 0.08);
  border-color: var(--c-gold);
  transform: translateY(-2px);
}

/* ─── SECTION DIVIDER ────────────────────────────────────────── */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) 0;
  font-size: 1.2rem;
  color: var(--c-gold);
  opacity: 0.6;
  letter-spacing: 0.5em;
}

/* ─── NAVIGATION ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(14, 8, 3, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(184, 147, 90, 0.15);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.logo-cerita {
  font-family: var(--f-serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--c-cream);
  letter-spacing: 0.04em;
}
.logo-roastery {
  font-family: var(--f-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.nav-link {
  font-family: var(--f-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.8);
  transition: color var(--transition-fast);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-gold);
  transition: width var(--transition-fast);
}
.nav-link:hover { color: var(--c-cream); }
.nav-link:hover::after { width: 100%; }
.nav-link--cta {
  background: var(--c-gold);
  color: var(--c-espresso) !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover {
  background: var(--c-gold-light);
  transform: translateY(-1px);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--c-cream);
  transition: all var(--transition-fast);
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: rgba(14, 8, 3, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(184, 147, 90, 0.15);
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.mobile-menu.is-open {
  max-height: 400px;
}
.mobile-link {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.8);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(184, 147, 90, 0.1);
  transition: color var(--transition-fast);
}
.mobile-link:hover { color: var(--c-gold); }
.mobile-link--cta {
  color: var(--c-gold) !important;
  border-bottom: none;
  margin-top: var(--space-xs);
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero.loaded .hero-img {
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 5, 2, 0.75) 0%,
    rgba(28, 16, 8, 0.65) 50%,
    rgba(14, 8, 3, 0.80) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--space-lg);
  max-width: 820px;
}
.hero-eyebrow {
  font-family: var(--f-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-md);
}
.hero-headline {
  font-family: var(--f-serif);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--c-cream);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}
.hero-headline em {
  font-style: italic;
  color: var(--c-gold-light);
  display: block;
}
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(245, 237, 224, 0.78);
  max-width: 560px;
  margin: 0 auto var(--space-xl);
  line-height: 1.8;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  opacity: 0.55;
  transition: opacity var(--transition-fast);
}
.hero-scroll-hint:hover { opacity: 1; }
.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--c-gold));
  animation: scrollPulse 2.4s ease-in-out infinite;
}
.scroll-label {
  font-family: var(--f-sans);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-gold);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7) translateY(-4px); }
  50%       { opacity: 1;   transform: scaleY(1)   translateY(0); }
}

/* ─── STORY ──────────────────────────────────────────────────── */
.story {
  background: var(--c-cream-light);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.story-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.story-image-wrap:hover .story-img {
  transform: scale(1.04);
}
.story-image-badge {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-lg);
  background: rgba(14, 8, 3, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(184, 147, 90, 0.35);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  text-align: center;
}
.badge-year {
  display: block;
  font-family: var(--f-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.badge-num {
  display: block;
  font-family: var(--f-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--c-cream);
}
.story-text {
  max-width: 520px;
}
.story-body {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  line-height: 1.85;
  margin-bottom: var(--space-md);
}
.story-body em {
  font-style: italic;
  color: var(--c-warm-brown);
}
.story-values {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--c-sand);
}
.story-value {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--c-text);
}
.value-icon {
  color: var(--c-gold);
  font-size: 0.7rem;
}

/* ─── PRODUCTS ───────────────────────────────────────────────── */
.coffee {
  background: var(--c-espresso);
  position: relative;
  overflow: hidden;
}
.coffee::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(184,147,90,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.coffee .section-heading { color: var(--c-cream); }
.coffee .section-sub { color: rgba(245, 237, 224, 0.6); }
.coffee .section-eyebrow { color: var(--c-gold); }

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.product-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(184, 147, 90, 0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(184, 147, 90, 0.40);
}
.product-card--dark {
  background: rgba(28, 16, 8, 0.6);
}

.product-image-wrap {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.product-card:hover .product-img {
  transform: scale(1.06);
}
.product-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(14, 8, 3, 0.75) 100%);
}
.product-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: rgba(14, 8, 3, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(184, 147, 90, 0.3);
  color: var(--c-gold);
  font-family: var(--f-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
}
.product-badge--dark {
  background: rgba(28, 16, 8, 0.85);
}

.product-body {
  padding: var(--space-lg);
}
.product-meta-top {
  margin-bottom: var(--space-sm);
}
.product-type {
  font-family: var(--f-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.product-name {
  font-family: var(--f-serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--c-cream);
  margin-bottom: var(--space-xs);
  line-height: 1.2;
}
.product-tagline {
  font-family: var(--f-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--c-tan);
  margin-bottom: var(--space-md);
}
.product-desc {
  font-size: 0.93rem;
  color: rgba(245,237,224,0.65);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(184, 147, 90, 0.12);
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-sm);
  font-size: 0.83rem;
}
.spec-label {
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(245,237,224,0.45);
  flex-shrink: 0;
}
.spec-value {
  text-align: right;
  color: rgba(245,237,224,0.82);
  font-weight: 300;
}

.product-intensity {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.intensity-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,237,224,0.4);
  flex-shrink: 0;
}
.intensity-bar {
  flex: 1;
  height: 3px;
  background: rgba(184,147,90,0.18);
  border-radius: 99px;
  overflow: hidden;
}
.intensity-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--c-gold) 0%, var(--c-gold-light) 100%);
  border-radius: 99px;
  transition: width 1.2s cubic-bezier(0.16,1,0.3,1);
}

/* ─── PROCESS ────────────────────────────────────────────────── */
.process {
  background: var(--c-cream-light);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(184,147,90,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 var(--space-sm);
}
.step-number {
  font-family: var(--f-serif);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--c-gold);
  margin-bottom: var(--space-sm);
}
.step-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-cream);
  border: 1px solid var(--c-sand);
  border-radius: 50%;
  color: var(--c-warm-brown);
  transition: all var(--transition);
}
.process-step:hover .step-icon-wrap {
  background: var(--c-espresso);
  border-color: var(--c-gold);
  color: var(--c-gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(14,8,3,0.15);
}
.step-icon {
  width: 36px;
  height: 36px;
}
.step-title {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--c-dark-brown);
  margin-bottom: var(--space-sm);
}
.step-desc {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.75;
  max-width: 220px;
  margin: 0 auto;
}
.process-connector {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 16px;
}
.process-connector span {
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--c-sand), var(--c-gold), var(--c-sand));
  position: relative;
}
.process-connector span::after {
  content: '';
  position: absolute;
  right: -3px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--c-gold);
  border-right: 1px solid var(--c-gold);
  transform: rotate(45deg);
}

/* ─── GALLERY ────────────────────────────────────────────────── */
.gallery {
  background: var(--c-dark-brown);
  padding-bottom: 0;
}
.gallery .section-heading { color: var(--c-cream); }
.gallery .section-eyebrow { color: var(--c-gold); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 300px 320px;
  gap: 4px;
  margin-top: var(--space-2xl);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  cursor: pointer;
}
.gallery-item--tall {
  grid-row: 1 / 3;
}
.gallery-item--wide {
  grid-column: 2 / 4;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.4s ease;
  filter: brightness(0.88) saturate(0.9);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.05);
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg) var(--space-md) var(--space-md);
  background: linear-gradient(to top, rgba(14,8,3,0.8) 0%, transparent 100%);
  font-family: var(--f-serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(245,237,224,0.85);
  transform: translateY(4px);
  opacity: 0;
  transition: all var(--transition);
}
.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

/* ─── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  position: relative;
  background: var(--c-espresso);
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(184,147,90,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(196,113,74,0.06) 0%, transparent 55%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.cta-eyebrow { color: var(--c-gold); }
.cta-heading {
  font-family: var(--f-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--c-cream);
  line-height: 1.18;
  margin-bottom: var(--space-lg);
}
.cta-heading em {
  font-style: italic;
  color: var(--c-gold-light);
}
.cta-sub {
  font-size: 1.05rem;
  color: rgba(245,237,224,0.65);
  max-width: 540px;
  margin: 0 auto var(--space-xl);
  line-height: 1.8;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-2xl);
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(184,147,90,0.15);
}
.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(245,237,224,0.55);
  transition: color var(--transition-fast);
}
.contact-item:hover { color: var(--c-gold); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--c-charcoal);
  border-top: 1px solid rgba(184,147,90,0.12);
  padding: var(--space-xl) 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-lg);
}
.footer-brand { text-align: left; }
.footer-logo {
  font-family: var(--f-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--c-cream);
  margin-bottom: 4px;
}
.footer-logo span {
  color: var(--c-gold);
}
.footer-tagline {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(245,237,224,0.4);
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}
.footer-link {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: rgba(245,237,224,0.5);
  transition: color var(--transition-fast);
}
.footer-link:hover { color: var(--c-gold); }
.footer-copy {
  text-align: right;
  font-size: 0.75rem;
  color: rgba(245,237,224,0.25);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .products-grid { gap: var(--space-md); }
  .process-connector span { width: 24px; }
}

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .story-image-wrap { aspect-ratio: 16/9; }
  .story-text { max-width: 100%; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 240px 240px;
  }
  .gallery-item--tall { grid-row: auto; }
  .gallery-item--wide { grid-column: 1 / 3; }
}

@media (max-width: 768px) {
  :root { --space-3xl: 5rem; --space-2xl: 3.5rem; }
  .container { padding: 0 var(--space-md); }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: block; }
  .nav-inner { padding: 0 var(--space-md); }
  .products-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: center; gap: 0; }
  .process-connector { padding: var(--space-md) 0; transform: rotate(90deg); }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-md);
  }
  .footer-brand { text-align: center; }
  .footer-copy { text-align: center; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .contact-info { flex-direction: column; align-items: center; gap: var(--space-sm); }
}

@media (max-width: 520px) {
  .hero-headline { font-size: 2.8rem; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .gallery-item--tall,
  .gallery-item--wide { grid-column: auto; grid-row: auto; }
  .gallery-item { height: 220px; }
  .gallery-caption { transform: translateY(0); opacity: 1; }
}

/* ─── MENU SECTION ───────────────────────────────────────────── */
.menu-section {
  background: var(--c-cream-light);
  position: relative;
  overflow: hidden;
}
.menu-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,147,90,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.menu-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(184, 147, 90, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
}
.menu-category {
  margin-bottom: var(--space-xl);
}
.menu-category:last-child {
  margin-bottom: 0;
}
.menu-category-title {
  font-family: var(--f-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--c-espresso);
  text-align: center;
  margin-bottom: var(--space-md);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
}
.menu-category-title::before,
.menu-category-title::after {
  content: '';
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
.menu-category-title span {
  padding: 0 var(--space-sm);
}
.menu-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  font-family: var(--f-sans);
  font-size: 1.1rem;
}
.menu-name {
  color: var(--c-dark-brown);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.menu-icon {
  display: inline-block;
  width: 20px;
  text-align: center;
}
.menu-badge {
  font-size: 0.65rem;
  background: linear-gradient(135deg, var(--c-terracotta), var(--c-warm-brown));
  color: white;
  padding: 2px 8px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-left: 0.5rem;
  box-shadow: 0 2px 8px rgba(196, 113, 74, 0.3);
}
.menu-line {
  flex: 1;
  border-bottom: 1px dashed rgba(184, 147, 90, 0.4);
  margin: 0 var(--space-sm);
  transform: translateY(-4px);
}
.menu-price {
  color: var(--c-text);
  font-weight: 600;
  font-family: var(--f-sans);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .menu-wrapper { padding: var(--space-lg) var(--space-sm); }
  .menu-item { font-size: 0.95rem; }
  .menu-name { white-space: normal; }
  .menu-badge { margin-left: 0; display: inline-block; margin-top: 4px; }
  .menu-category-title { font-size: 1.5rem; }
}

/* ─── CUSTOM SCROLLBAR ───────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-espresso); }
::-webkit-scrollbar-thumb { background: var(--c-warm-brown); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-gold); }

/* ─── SELECTION ──────────────────────────────────────────────── */
::selection { background: rgba(184,147,90,0.25); color: var(--c-espresso); }
