:root {
  --ink: #1d1009;
  --coffee-950: #160c06;
  --coffee-900: #241309;
  --coffee-800: #352010;
  --coffee-700: #4a2d17;
  --coffee-600: #654126;
  --terracotta: #a9603c;
  --copper: #bd7c4e;
  --gold: #d7ad77;
  --gold-soft: #ead0aa;
  --cream: #fbf5ec;
  --cream-2: #f3e8d9;
  --paper: #fffdf9;
  --sage: #7d8268;
  --muted: #756453;
  --line: rgba(53, 32, 16, 0.13);
  --line-light: rgba(255, 246, 233, 0.16);
  --white: #ffffff;
  --shadow-sm: 0 10px 28px rgba(34, 17, 7, 0.08);
  --shadow-md: 0 20px 52px rgba(34, 17, 7, 0.13);
  --shadow-lg: 0 34px 100px rgba(20, 9, 3, 0.22);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 46px;
  --container: 1200px;
  --font-sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--coffee-800);
  background: var(--cream);
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(820px, 100%); margin-inline: auto; }
.section { padding: clamp(78px, 9vw, 118px) 0; }
.section-sm { padding: 56px 0; }
.section-cream { background: var(--cream); }
.section-paper { background: var(--paper); }
.section-soft {
  position: relative;
  background:
    radial-gradient(circle at 18% 18%, rgba(215, 173, 119, .16), transparent 23%),
    linear-gradient(180deg, #f6ebdd, #f2e4d3);
}
.section-soft::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(53, 32, 16, .07) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .34;
  pointer-events: none;
}
.section-soft > .container { position: relative; z-index: 1; }
.section-dark {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 0% 0%, rgba(215, 173, 119, .16), transparent 28%),
    radial-gradient(circle at 100% 80%, rgba(169, 96, 60, .2), transparent 30%),
    linear-gradient(145deg, var(--coffee-950), var(--coffee-800));
}
.section-dark p { color: rgba(251, 245, 236, .72); }
.section-dark .eyebrow { color: var(--gold-soft); }

.skip-link {
  position: fixed;
  top: 14px;
  left: -999px;
  z-index: 9999;
  padding: .8rem 1rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--coffee-950);
  font-weight: 800;
}
.skip-link:focus { left: 14px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  position: relative;
  z-index: 102;
  background: var(--coffee-950);
  color: rgba(251,245,236,.78);
  font-size: .82rem;
}
.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.topbar-list { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.topbar a { transition: color .2s ease; }
.topbar a:hover { color: var(--gold-soft); }
.topbar-note { letter-spacing: .06em; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--cream);
  background: rgba(29,16,9,.9);
  border-bottom: 1px solid rgba(234,208,170,.14);
  backdrop-filter: blur(16px);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(22,12,6,.97);
  box-shadow: 0 18px 44px rgba(0,0,0,.2);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 13px;
}
.brand img {
  width: 56px;
  height: 56px;
  padding: 6px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255,255,255,.07);
}
.brand strong {
  display: block;
  color: var(--cream);
  font-size: 1rem;
  line-height: 1;
  font-weight: 800;
}
.brand small {
  display: block;
  margin-top: 5px;
  color: rgba(251,245,236,.62);
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  position: relative;
  padding: .75rem .82rem;
  border-radius: 999px;
  color: rgba(251,245,236,.82);
  font-size: .91rem;
  font-weight: 700;
  transition: background .2s ease, color .2s ease;
}
.main-nav a:hover,
.main-nav a:focus,
.main-nav a.active {
  background: rgba(215,173,119,.12);
  color: var(--cream);
}
.header-cta { margin-left: 8px; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 10px;
  border: 1px solid rgba(234,208,170,.26);
  border-radius: 14px;
  background: transparent;
  color: var(--gold-soft);
  cursor: pointer;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--terracotta);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
h1, h2, h3, h4 {
  margin: 0;
  color: inherit;
  line-height: 1.03;
}
h1, h2 { font-family: var(--font-serif); letter-spacing: -.04em; }
h1 { font-size: clamp(3.5rem, 8vw, 7rem); }
h2 { font-size: clamp(2.45rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.25rem, 2.3vw, 1.8rem); letter-spacing: -.025em; }
h4 { font-size: 1.06rem; }
p { margin: 0; color: var(--muted); }
.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.8;
}
.section-heading { margin-bottom: 42px; }
.section-heading.center { max-width: 850px; margin-inline: auto; text-align: center; }
.section-heading.center p:not(.eyebrow) { margin-top: 15px; }
.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(300px,.78fr);
  gap: 46px;
  align-items: end;
}
.section-heading.split p:not(.eyebrow) { font-size: 1.05rem; }

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: .9rem 1.28rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--coffee-950);
  background: var(--gold);
  box-shadow: 0 14px 34px rgba(215,173,119,.22);
}
.btn-primary:hover { background: var(--gold-soft); }
.btn-dark { color: var(--cream); background: var(--coffee-900); }
.btn-dark:hover { background: var(--coffee-700); }
.btn-outline {
  color: var(--coffee-800);
  background: rgba(255,255,255,.62);
  border-color: var(--line);
}
.btn-outline:hover { background: var(--paper); }
.btn-light-outline {
  color: var(--cream);
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.26);
}
.btn-light-outline:hover { background: rgba(255,255,255,.1); }
.btn-whatsapp { color: #fff; background: #1fa855; box-shadow: 0 14px 34px rgba(31,168,85,.2); }
.btn-whatsapp:hover { background: #178b47; }
.btn-sm { min-height: 44px; padding: .78rem 1.02rem; font-size: .9rem; }
.action-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--terracotta);
  font-weight: 800;
}
.text-link::after { content: "→"; }

.home-hero {
  position: relative;
  min-height: calc(100svh - 116px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
  background: var(--coffee-950);
}
.home-hero-media,
.home-hero-overlay,
.home-hero-pattern { position: absolute; inset: 0; }
.home-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.home-hero-overlay {
  background:
    linear-gradient(92deg, rgba(17,8,3,.95) 0%, rgba(24,11,5,.8) 38%, rgba(34,16,7,.48) 68%, rgba(40,20,9,.25) 100%),
    radial-gradient(circle at 78% 20%, rgba(215,173,119,.24), transparent 29%);
}
.home-hero-pattern {
  opacity: .15;
  background-image: radial-gradient(rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 28px 28px;
}
.home-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0,1fr) 330px;
  gap: 42px;
  align-items: end;
  padding: clamp(74px, 10vw, 126px) 0;
}
.home-hero-copy { max-width: 780px; }
.home-hero h1 { max-width: 900px; text-wrap: balance; }
.home-hero .lead { max-width: 700px; margin-top: 22px; color: rgba(251,245,236,.82); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.hero-badges span {
  display: inline-flex;
  align-items: center;
  padding: .64rem .92rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: rgba(251,245,236,.88);
  font-size: .88rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.hero-aside {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}
.hero-aside-kicker {
  display: inline-flex;
  color: var(--gold-soft);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-aside strong { display: block; margin-top: 12px; font-size: 1.55rem; }
.hero-aside p { margin-top: 12px; color: rgba(251,245,236,.72); }
.hero-contact-line {
  display: grid;
  gap: 7px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(251,245,236,.82);
  font-size: .9rem;
}

.page-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--cream);
  background: var(--coffee-950);
}
.page-hero-media,
.page-hero-overlay { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(17,8,3,.93), rgba(24,11,5,.65) 55%, rgba(24,11,5,.35)),
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.3));
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 830px;
  padding: 100px 0 72px;
}
.page-hero-content h1 { font-size: clamp(3.4rem, 7vw, 6rem); }
.page-hero-content .lead { max-width: 680px; margin-top: 18px; color: rgba(251,245,236,.82); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 18px; color: rgba(251,245,236,.68); font-size: .86rem; }
.breadcrumbs a:hover { color: var(--gold-soft); }

.feature-strip { position: relative; z-index: 3; margin-top: -34px; }
.feature-strip-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.feature-note {
  padding: 25px;
  border: 1px solid rgba(53,32,16,.08);
  border-radius: var(--radius-md);
  background: rgba(255,253,249,.92);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}
.feature-note .icon-box { margin-bottom: 15px; }
.feature-note p { margin-top: 8px; }
.icon-box {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--coffee-700);
  background: var(--cream-2);
  font-size: 1.4rem;
}

.drinks-slider {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  background: var(--coffee-950);
  box-shadow: var(--shadow-lg);
}
.slider-viewport { overflow: hidden; }
.slider-track { display: flex; transition: transform .55s cubic-bezier(.22,.61,.36,1); }
.drink-slide {
  position: relative;
  min-width: 100%;
  min-height: 640px;
  display: grid;
  align-items: end;
  isolation: isolate;
}
.drink-slide-media,
.drink-slide-overlay { position: absolute; inset: 0; }
.drink-slide-media img { width: 100%; height: 100%; object-fit: cover; }
.drink-slide-overlay {
  background:
    linear-gradient(95deg, rgba(17,8,3,.9) 0%, rgba(17,8,3,.59) 46%, rgba(17,8,3,.16) 100%),
    linear-gradient(180deg, rgba(17,8,3,.08), rgba(17,8,3,.38));
}
.drink-slide-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: clamp(28px, 5vw, 58px);
  color: var(--cream);
}
.slide-tag {
  display: inline-flex;
  padding: .48rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  color: var(--gold-soft);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  backdrop-filter: blur(7px);
}
.drink-slide h3 {
  margin-top: 14px;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.2vw, 4.7rem);
  letter-spacing: -.045em;
}
.drink-slide p { max-width: 610px; margin-top: 15px; color: rgba(251,245,236,.82); font-size: 1.08rem; line-height: 1.78; }
.slider-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(17,8,3,.97);
}
.slider-btn {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  color: var(--cream);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: .2s ease;
}
.slider-btn:hover { color: var(--gold-soft); background: rgba(215,173,119,.18); }
.slider-dots { flex: 1; display: flex; justify-content: center; gap: 9px; }
.slider-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.24);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}
.slider-dot.active { width: 36px; background: var(--gold); }

.product-showcase {
  display: grid;
  grid-template-columns: repeat(12,1fr);
  gap: 17px;
}
.product-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--coffee-800);
  box-shadow: var(--shadow-md);
  isolation: isolate;
}
.product-card.large { grid-column: span 7; }
.product-card.medium { grid-column: span 5; }
.product-card.third { grid-column: span 4; min-height: 380px; }
.product-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.product-card:hover img { transform: scale(1.045); }
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 24%, rgba(17,8,3,.86) 100%);
  z-index: 0;
}
.product-card-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 27px;
  color: var(--cream);
}
.product-card-content p { max-width: 520px; margin-top: 9px; color: rgba(251,245,236,.72); }
.product-label {
  display: inline-flex;
  margin-bottom: 11px;
  color: var(--gold-soft);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 64px;
  align-items: center;
}
.editorial-copy p:not(.eyebrow) { margin-top: 18px; font-size: 1.04rem; }
.editorial-media { position: relative; min-height: 640px; }
.editorial-main,
.editorial-small {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.editorial-main { top: 0; left: 0; width: 72%; height: 550px; }
.editorial-small { right: 0; bottom: 0; width: 48%; height: 320px; border: 9px solid var(--cream); }
.quote-card {
  margin-top: 27px;
  padding: 26px;
  border-left: 4px solid var(--terracotta);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(255,255,255,.66);
  box-shadow: var(--shadow-sm);
}
.quote-card p { color: var(--coffee-700) !important; font-family: var(--font-serif); font-size: clamp(1.45rem, 2.5vw, 1.9rem) !important; line-height: 1.35; }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 17px; }
.value-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.value-card h3 { margin-top: 18px; }
.value-card p { margin-top: 10px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-auto-rows: 225px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--gold-soft);
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .45s ease; }
.gallery-item:hover img { transform: scale(1.045); filter: saturate(1.05); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-caption {
  position: absolute;
  inset: auto 12px 12px;
  padding: 11px 13px;
  border-radius: 14px;
  background: rgba(17,8,3,.7);
  color: var(--cream);
  font-size: .82rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: .2s ease;
  backdrop-filter: blur(8px);
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: none; }

.service-teasers { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.service-teaser {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-md);
}
.service-teaser img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.service-teaser-body { padding: 28px; }
.service-teaser-body p { margin-top: 12px; }
.service-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.service-meta span {
  padding: .46rem .68rem;
  border-radius: 999px;
  background: var(--cream-2);
  color: var(--coffee-700);
  font-size: .76rem;
  font-weight: 800;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: var(--cream);
  background: var(--coffee-900);
  box-shadow: var(--shadow-lg);
}
.cta-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,8,3,.92), rgba(17,8,3,.62));
}
.cta-banner-content { position: relative; z-index: 1; max-width: 760px; padding: clamp(34px, 6vw, 68px); }
.cta-banner p { margin-top: 15px; color: rgba(251,245,236,.75); }

.menu-nav {
  position: sticky;
  top: 94px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-bottom: 38px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,253,249,.88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}
.menu-filter {
  padding: .76rem 1rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--coffee-800);
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}
.menu-filter:hover,
.menu-filter.active { color: var(--cream); background: var(--coffee-800); }
.menu-category { margin-top: 58px; }
.menu-category:first-of-type { margin-top: 0; }
.menu-category-header { display: grid; grid-template-columns: 1fr .8fr; gap: 36px; align-items: end; margin-bottom: 24px; }
.menu-category-header p { font-size: 1.02rem; }
.menu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 17px; }
.menu-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.menu-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.menu-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.menu-item-body { padding: 23px; }
.menu-item-body p { margin-top: 10px; }
.item-badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: .4rem .64rem;
  border-radius: 999px;
  background: var(--cream-2);
  color: var(--terracotta);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.menu-item.hide { display: none; }
.menu-note-box {
  margin-top: 38px;
  padding: 25px;
  border: 1px solid rgba(169,96,60,.24);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.62);
}
.menu-note-box strong { display: block; margin-bottom: 7px; }

.story-chapters { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.story-chapter {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.story-chapter .chapter-number {
  display: inline-flex;
  color: var(--terracotta);
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
}
.story-chapter h3 { margin-top: 10px; }
.story-chapter p { margin-top: 12px; }

.meaning-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.meaning-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  display: grid;
  align-items: end;
  border-radius: var(--radius-lg);
  color: var(--cream);
  background: var(--coffee-900);
  box-shadow: var(--shadow-md);
}
.meaning-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.meaning-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 20%, rgba(17,8,3,.88)); }
.meaning-card-content { position: relative; z-index: 1; padding: 30px; }
.meaning-card-content p { margin-top: 10px; color: rgba(251,245,236,.74); }

.services-hero-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.service-detail {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-md);
}
.service-detail-image { position: relative; }
.service-detail-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.image-size-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: .48rem .7rem;
  border-radius: 999px;
  background: rgba(17,8,3,.72);
  color: var(--cream);
  font-size: .7rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}
.service-detail-body { padding: 30px; }
.service-detail-body p { margin-top: 12px; }
.check-list { display: grid; gap: 11px; margin: 22px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; color: var(--muted); }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--coffee-950);
  background: var(--gold-soft);
  font-size: .72rem;
  font-weight: 900;
}
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; counter-reset: process; }
.process-step {
  counter-increment: process;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.process-step::before {
  content: counter(process, decimal-leading-zero);
  display: block;
  margin-bottom: 17px;
  color: var(--terracotta);
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 700;
}
.process-step p { margin-top: 9px; }

.faq-list { display: grid; gap: 12px; }
.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}
.faq-question span:last-child { font-size: 1.4rem; transition: transform .2s ease; }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer-inner { padding: 0 22px 22px; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: stretch; }
.contact-card {
  padding: 36px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}
.contact-card p:not(.eyebrow) { margin-top: 15px; }
.contact-list { display: grid; gap: 12px; margin-top: 24px; }
.contact-list a {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 17px;
  background: rgba(255,255,255,.05);
  color: var(--cream);
}
.contact-list a:hover { background: rgba(255,255,255,.09); }
.contact-list .contact-icon { font-size: 1.2rem; line-height: 1.2; }
.map-card {
  min-height: 510px;
  overflow: hidden;
  border: 9px solid rgba(255,255,255,.94);
  border-radius: var(--radius-lg);
  background: var(--gold);
  box-shadow: var(--shadow-lg);
}
.map-card iframe { width: 100%; height: 100%; min-height: 510px; border: 0; display: block; }

.site-footer {
  color: var(--cream);
  background: #120904;
  padding: 58px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .72fr .72fr .88fr;
  gap: 42px;
  align-items: start;
}
.footer-brand img { width: 82px; height: 82px; object-fit: contain; margin-bottom: 13px; }
.footer-brand p { max-width: 360px; color: rgba(251,245,236,.62); }
.footer-title { display: block; margin-bottom: 13px; color: var(--gold-soft); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: rgba(251,245,236,.7); font-weight: 700; transition: color .2s ease; }
.footer-links a:hover { color: var(--gold-soft); }
.footer-socials { display: flex; gap: 9px; margin-top: 16px; }
.footer-socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: var(--gold-soft);
  font-weight: 800;
}
.footer-socials a:hover { color: var(--coffee-950); background: var(--gold); }
.copyright {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(251,245,236,.48);
  font-size: .86rem;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 18px 40px rgba(0,0,0,.27);
  transition: transform .2s ease;
}
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.03); }
.floating-whatsapp svg { width: 31px; height: 31px; fill: currentColor; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  place-items: center;
  padding: 28px;
  color: var(--cream);
  background: rgba(12,6,3,.92);
}
.lightbox.open { display: grid; }
.lightbox img { max-width: min(1050px, 92vw); max-height: 80vh; border-radius: 24px; box-shadow: var(--shadow-lg); }
.lightbox p { max-width: 760px; margin-top: 15px; color: var(--cream); text-align: center; font-weight: 700; }
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(255,255,255,.07);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .header-cta { display: none; }
  .home-hero-inner { grid-template-columns: 1fr; }
  .hero-aside { max-width: 390px; }
  .feature-strip-grid,
  .values-grid,
  .menu-grid { grid-template-columns: repeat(2,1fr); }
  .editorial-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .editorial-media { min-height: 570px; }
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: span 3; }
}

@media (max-width: 900px) {
  .topbar-note { display: none; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 116px;
    left: 15px;
    right: 15px;
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 13px;
    border: 1px solid rgba(234,208,170,.16);
    border-radius: 22px;
    background: rgba(22,12,6,.99);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: none; }
  .main-nav a { padding: .98rem 1rem; }
  .section-heading.split,
  .menu-category-header { grid-template-columns: 1fr; gap: 16px; }
  .product-card.large,
  .product-card.medium { grid-column: span 6; }
  .product-card.third { grid-column: span 6; }
  .meaning-grid,
  .services-hero-grid,
  .service-teasers,
  .story-chapters { grid-template-columns: 1fr; }
  .drink-slide { min-height: 580px; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, var(--container)); }
  .topbar-inner { min-height: 40px; }
  .topbar-list { gap: 10px; font-size: .76rem; }
  .nav-wrap { min-height: 76px; }
  .brand img { width: 50px; height: 50px; }
  .main-nav { top: 116px; }
  h1 { font-size: clamp(3.1rem, 16vw, 5rem); }
  .home-hero { min-height: 760px; }
  .home-hero-inner { padding: 84px 0 64px; }
  .hero-aside { display: none; }
  .feature-strip { margin-top: -22px; }
  .feature-strip-grid,
  .values-grid,
  .menu-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :last-child { grid-column: auto; }
  .product-showcase { display: grid; grid-template-columns: 1fr; }
  .product-card.large,
  .product-card.medium,
  .product-card.third { grid-column: auto; min-height: 380px; }
  .editorial-media {
    min-height: auto;
    display: grid;
    gap: 14px;
  }
  .editorial-main,
  .editorial-small {
    position: static;
    width: 100%;
    height: auto;
    max-height: 520px;
    border: 0;
  }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }
  .menu-nav {
    position: static;
    border-radius: 22px;
  }
  .menu-filter { flex: 1 1 42%; }
  .process-grid { grid-template-columns: 1fr; }
  .copyright { flex-direction: column; }
  .map-card,
  .map-card iframe { min-height: 420px; }
}

@media (max-width: 520px) {
  .topbar-list > :last-child { display: none; }
  .action-row { display: grid; }
  .btn { width: 100%; }
  .hero-badges span { width: 100%; justify-content: center; }
  .drink-slide { min-height: 560px; }
  .drink-slide-content { padding: 24px; }
  .slider-controls { padding: 13px; }
  .slider-btn { width: 42px; height: 42px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 245px; }
  .gallery-item.wide { grid-column: auto; }
  .menu-filter { flex-basis: 100%; }
  .contact-card { padding: 28px 20px; }
  .floating-whatsapp { width: 56px; height: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
