:root {
  --void: #0a0705;
  --ink: #100c08;
  --surface: #16100c;
  --panel: #1c1510;
  --line: rgba(232, 192, 122, 0.18);
  --gold: #e8c07a;
  --gold-deep: #c47a2c;
  --copper: #b87333;
  --green: #00533a;
  --black: #050805;
  --paper: #f3e6d4;
  --muted: #9a8b78;
  --white: #fffbf2;
  --header: 80px;
  --wrap: 1240px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header); overflow-x: hidden; }

body {
  margin: 0;
  color: var(--paper);
  background: var(--void);
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 0.35em;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--void);
  padding: 8px 12px;
  z-index: 200;
}
.skip:focus { left: 8px; top: 8px; }

.wrap {
  width: min(var(--wrap), calc(100% - 48px));
  margin-inline: auto;
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.lead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: min(38rem, 100%);
  font-weight: 300;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--void);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.btn:hover { background: var(--paper); border-color: var(--paper); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(243, 230, 212, 0.28);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* Age gate — first cinematic frame */
.age {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: flex-end;
  color: var(--paper);
}
.age.is-open { display: flex; }
.age__bg {
  position: absolute;
  inset: 0;
}
.age__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.38) saturate(1.1);
}
.age__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,7,5,.2) 0%, rgba(10,7,5,.82) 70%);
}
.age__copy {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 48px));
  margin: 0 auto 8vh;
  text-align: center;
}
.age__copy h2 {
  font-size: clamp(48px, 8vw, 92px);
  font-style: italic;
  margin-bottom: 16px;
}
.age__copy p { color: var(--muted); }
.age__actions { display: flex; justify-content: center; gap: 12px; margin: 28px 0 18px; }
.age__warn { font-size: 12px; letter-spacing: 0.04em; color: rgba(243,230,212,.45); }

body:has(.age.is-open) { overflow: hidden; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: var(--header);
  background: var(--black);
  border-bottom: 3px solid var(--green);
  transition: box-shadow .4s var(--ease);
}
.site-header.is-on {
  box-shadow: 0 10px 28px rgba(0, 0, 0, .35);
}
.site-header__inner {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  padding-right: 28px;
}
.brand {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  flex: 0 0 auto;
  height: 100%;
  overflow: hidden;
}
.brand img {
  height: 100%;
  width: auto;
  max-width: min(420px, calc(100vw - 72px));
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
}
.brand--foot {
  height: 60px;
  max-width: 176px;
}
.brand--foot img {
  height: 60px;
  max-width: 176px;
  object-fit: contain;
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
}
.nav a { color: rgba(243,230,212,.78); transition: color .25s; }
.nav a:hover,
.nav a[aria-current="page"] { color: var(--gold); }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  margin-left: auto;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 10px 8px;
  border: 1px solid rgba(232, 192, 122, 0.35);
  background: transparent;
  cursor: pointer;
  z-index: 2;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gold);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background: var(--void);
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: brightness(.38) saturate(1.2) contrast(1.08);
  transform: scale(1.04);
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,7,5,.82) 0%, rgba(10,7,5,.45) 42%, rgba(10,7,5,.18) 70%, rgba(10,7,5,.55) 100%),
    linear-gradient(180deg, rgba(10,7,5,.28) 0%, transparent 35%, rgba(10,7,5,.72) 100%);
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  align-items: center;
  gap: 24px 48px;
  min-height: 100vh;
  padding: calc(var(--header) + 24px) 0 48px;
}
.hero__copy { max-width: 22rem; }
.hero h1 {
  font-size: clamp(36px, 5.4vw, 64px);
  font-style: italic;
  line-height: 1.02;
  margin: 0 0 14px;
}
.hero .lead {
  color: rgba(243,230,212,.82);
  font-size: 1.05rem;
  max-width: 28ch;
  margin-bottom: 0;
}
.hero__bottle {
  display: grid;
  place-items: end center;
  align-self: stretch;
  padding: 24px 0 8px;
}
.hero__bottle img {
  max-height: min(78vh, 720px);
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 28px 48px rgba(0,0,0,.55));
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10,7,5,.55) 0%, rgba(10,7,5,.08) 42%, rgba(10,7,5,.55) 100%);
}

.scarce {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  padding: 28px 0;
  text-align: center;
}
.scarce strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  letter-spacing: -0.03em;
}
.scarce span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Sections */
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section h2 { font-size: clamp(36px, 5.4vw, 64px); }
.section--paper {
  background: var(--paper);
  color: var(--ink);
}
.section--paper .kicker { color: var(--gold-deep); }
.section--paper .muted,
.section--paper .lead { color: #5e5348; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.split--rev { direction: rtl; }
.split--rev > * { direction: ltr; }
.split__media {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  filter: saturate(1.05) contrast(1.04);
}
.split__media--shelf img {
  object-position: 54% 38%;
  filter: none;
}
.split__media--arquivo {
  background: #070504;
  display: grid;
  place-items: center;
}
.split__media--arquivo img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 72vh;
  min-height: 0;
  object-fit: contain;
  filter: none;
}
.split__media--host {
  min-height: 560px;
  background: #120c08;
}
.split__media--host img {
  object-fit: cover;
  object-position: 40% center;
  filter: none;
}

/* Woods */
.woods {
  padding: 80px 0 40px;
  background: var(--void);
  --wood: #1c1510;
  transition: background .7s var(--ease);
}
.woods__head { margin-bottom: 36px; }
.woods__list {
  display: flex;
  gap: 8px;
  height: min(78vh, 720px);
}
.wood {
  position: relative;
  flex: 1;
  overflow: hidden;
  background: var(--tema, var(--panel));
  cursor: pointer;
  transition: flex .7s var(--ease);
  color: var(--paper);
  min-width: 0;
  border: 0;
  text-align: left;
  padding: 0;
  display: block;
}
.wood.is-on,
.wood:hover { flex: 2.6; }
.wood img.wood__bottle {
  position: absolute;
  left: 50%;
  bottom: 26%;
  height: auto;
  width: auto;
  max-height: 70%;
  max-width: 82%;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-50%);
  opacity: .96;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,.45));
  transition: transform .7s var(--ease), opacity .7s;
  pointer-events: none;
}
.wood.is-on img.wood__bottle,
.wood:hover img.wood__bottle {
  transform: translateX(-50%) scale(1.04);
  opacity: 1;
}
.wood__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,7,5,.1) 20%, rgba(10,7,5,.82) 100%);
}
.wood__copy {
  position: absolute;
  left: 14px;
  right: 10px;
  bottom: 24px;
  z-index: 1;
}
.wood__copy .num {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold);
}
.wood__copy h3 {
  font-size: clamp(17px, 1.45vw, 40px);
  font-style: italic;
  margin: 8px 0 6px;
  line-height: 1.08;
}
.wood.is-on .wood__copy,
.wood:hover .wood__copy {
  left: 24px;
  right: 24px;
}
.wood.is-on .wood__copy h3,
.wood:hover .wood__copy h3 {
  font-size: clamp(26px, 2.8vw, 44px);
}
.wood__copy p {
  max-width: 28ch;
  color: var(--muted);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity .45s, max-height .45s;
  margin: 0;
  font-size: 15px;
}
.wood.is-on .wood__copy p,
.wood:hover .wood__copy p {
  opacity: 1;
  max-height: 8em;
}
.wood__meta {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Awards */
.awards-band {
  padding: 100px 0;
  background:
    linear-gradient(180deg, rgba(10,7,5,.82) 0%, rgba(10,7,5,.9) 100%),
    url("../img/produtos/extra-premium-lifestyle.jpg") center/cover;
}
.awards-band h2 { font-size: clamp(40px, 6vw, 80px); font-style: italic; max-width: 14ch; }
.awards-band .lead { color: rgba(243, 230, 212, 0.88); }
.award-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.award-row--3 {
  grid-template-columns: repeat(3, 1fr);
  border: 0;
  padding: 0;
  margin-top: 48px;
}
.award-row article small {
  display: block;
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.award-row h3 { font-size: 22px; font-style: italic; }
.award-row p { color: rgba(243, 230, 212, 0.78); font-size: 14px; margin: 0; }
.premio-selos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  margin-bottom: 18px;
  min-height: 148px;
}
.premio-selos img {
  width: auto;
  height: 148px;
  max-width: 148px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.4));
}

/* Cycle */
.cycle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 40px;
}
.cycle article {
  background: var(--void);
  padding: 36px 28px;
  min-height: 220px;
}
.cycle span {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 12px;
}
.cycle h3 { font-size: 24px; }
.cycle p { color: var(--muted); margin: 0; font-size: 15px; }

/* Drinks strip */
.drink-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.drink-card {
  display: block;
  background: var(--surface);
  overflow: hidden;
  color: var(--paper);
}
.drink-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: saturate(1.05);
  transition: transform .7s var(--ease);
}
.drink-card:hover img { transform: scale(1.04); }
.drink-card div { padding: 18px 18px 22px; }
.drink-card h3 { font-size: 26px; font-style: italic; }
.drink-card p { color: var(--muted); font-size: 14px; margin: 0; }

/* Film */
.film {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: end start;
  overflow: hidden;
  background: #000;
}
.film__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.film::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,7,5,.15) 0%, rgba(10,7,5,.2) 40%, rgba(10,7,5,.82) 100%);
  pointer-events: none;
}
.film__copy {
  position: relative;
  z-index: 1;
  padding-bottom: 64px;
  max-width: 22rem;
}
.film h2 {
  font-size: clamp(36px, 5.4vw, 64px);
  font-style: italic;
}
.film--open {
  min-height: 100vh;
  place-items: end center;
  background: #000 url("../video/engenho-poster.jpg") center/cover no-repeat;
}
.film--open .film__copy {
  width: 100%;
  max-width: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 72px;
}
.film--open h2 {
  font-size: clamp(44px, 7vw, 88px);
  max-width: 12ch;
  margin: 0;
}
.film--open .btn-row { justify-content: center; }

.process-film {
  display: block;
  width: 100%;
  aspect-ratio: 1600 / 708;
  margin-top: 36px;
  background: #000;
}

/* Place teaser */
.place {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: end start;
  overflow: hidden;
}
.place img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.42);
}
.place::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,7,5,.25) 0%, rgba(10,7,5,.55) 45%, rgba(10,7,5,.92) 100%);
  pointer-events: none;
}
.place .wrap { position: relative; z-index: 1; padding-bottom: 72px; }
.place h2 { font-size: clamp(40px, 6vw, 76px); font-style: italic; max-width: 12ch; }
.place .lead { color: rgba(243, 230, 212, 0.9); }

/* Product page */
.bottle-page {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 100vh;
  align-items: stretch;
  background: var(--tema, var(--void));
}
.bottle-stage {
  position: relative;
  min-height: 100%;
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: calc(var(--header) + 16px) 0 48px;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(232, 192, 122, 0.14), transparent 58%),
    var(--void);
}
.bottle-stage img {
  position: sticky;
  top: calc(var(--header) + 16px);
  width: auto;
  height: auto;
  max-width: 70%;
  max-height: calc(100vh - var(--header) - 40px);
  object-fit: contain;
  filter: drop-shadow(0 28px 40px rgba(0,0,0,.45));
}
.bottle-copy {
  padding: 140px 64px 80px 24px;
  max-width: 640px;
}
.bottle-copy h1 { font-size: clamp(44px, 6vw, 76px); font-style: italic; }
.aromas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 32px;
}
.aromas li {
  border: 1px solid var(--line);
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.facts small { display: block; color: var(--muted); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.facts b { font-family: "Cormorant Garamond", Georgia, serif; font-size: 28px; font-weight: 500; }

.wood-index {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.wood-index a {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  min-height: 560px;
  position: relative;
  overflow: hidden;
  padding: 28px 16px 0;
  color: inherit;
  text-decoration: none;
}
.wood-index a > p:not(.kicker) {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}
.wood-index h3 {
  position: relative;
  z-index: 1;
  font-size: 32px;
  font-style: italic;
  margin: 8px 0 4px;
}
.wood-index__shot {
  flex: 1 1 auto;
  position: relative;
  min-height: 340px;
  margin-top: 16px;
}
.wood-index img {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: block;
  width: auto;
  height: auto;
  max-width: 86%;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 16px 24px rgba(0,0,0,.4));
}
.wood-index--4 {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
}
.wood-index--4 a { min-height: 420px; }
.wood-index--4 .wood-index__shot { min-height: 280px; }

.yt {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  background: #000;
  cursor: pointer;
  overflow: hidden;
}
.yt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
}
.yt__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  border-radius: 50%;
  background: rgba(10, 7, 5, 0.72);
  border: 1px solid var(--gold);
}
.yt__play::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 22px;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent var(--gold);
}
.yt iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Page hero */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: grid;
  place-items: end start;
  overflow: hidden;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.42) saturate(1.04);
}
.page-hero .wrap { position: relative; z-index: 1; padding-bottom: 56px; }
.page-hero h1 { font-size: clamp(44px, 7vw, 88px); font-style: italic; max-width: 14ch; }
.page-hero--shelf img {
  object-position: 54% 42%;
  filter: brightness(.58) saturate(1.06);
}
.page-hero--shelf::after {
  background: linear-gradient(180deg, rgba(10,7,5,.45) 0%, rgba(10,7,5,.06) 38%, rgba(10,7,5,.78) 100%);
}

.quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  font-style: italic;
  line-height: 1.25;
  color: var(--gold);
  margin: 24px 0 8px;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.step span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 40px;
  font-style: italic;
  color: var(--gold);
}
.step h3 { font-size: 26px; }
.step p { color: var(--muted); margin: 0; }

.stores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.store {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid transparent;
  transition: border-color .3s;
}
.store:hover { border-color: var(--gold); }
.store img { width: 56px; height: 56px; object-fit: contain; background: #fff; }
.store small { display: block; color: var(--muted); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }

.contact { display: grid; gap: 14px; max-width: 520px; }
.contact label { display: grid; gap: 6px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.contact input,
.contact textarea {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 12px 14px;
  color: var(--paper);
}
.contact textarea { min-height: 140px; resize: vertical; }
.form-ok { color: var(--gold); }
.form-err { color: #e08a4a; }
.map { width: 100%; min-height: 360px; border: 0; filter: grayscale(1) contrast(1.1) brightness(.85); }
.notice { color: var(--muted); font-size: 14px; margin-top: 16px; }
.card { background: var(--surface); }
.card__body { padding: 28px; }

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 20px;
}
.media-grid iframe { width: 100%; aspect-ratio: 16/9; border: 0; }
.media-grid h3 {
  margin: 14px 0 6px;
  font-size: 24px;
  font-style: italic;
}
.media-grid p { color: var(--muted); margin: 0; }

/* Footer */
.site-footer {
  padding: 72px 0 28px;
  border-top: 1px solid var(--line);
  background: #070504;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-style: italic;
  color: var(--gold);
  margin: 16px 0 4px;
}
.footer-since { color: var(--muted); font-size: 13px; }
.footer-links { display: grid; gap: 8px; color: var(--muted); font-size: 15px; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: rgba(243,230,212,.4);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.reveal { opacity: 0; transform: translateY(24px); animation: up .9s var(--ease) forwards; }
@keyframes up { to { opacity: 1; transform: none; } }

@media (max-width: 980px) {
  :root { --header: 64px; }
  .site-header__inner { padding-right: 12px; gap: 12px; }
  .wrap { width: min(var(--wrap), calc(100% - 32px)); }
  .hero h1,
  .page-hero h1 { font-size: clamp(36px, 10vw, 52px); }
  .hero .lead { font-size: 1.02rem; max-width: 36ch; }
  .hero__grid { grid-template-columns: 1fr; min-height: auto; padding: calc(var(--header) + 32px) 0 48px; gap: 12px; }
  .hero__bottle { min-height: 52vh; order: -1; }
  .hero__bottle img { max-height: 48vh; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .age__copy h2 { font-size: clamp(36px, 11vw, 56px); }
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: var(--header) 0 0 0;
    background: var(--black);
    border-top: 1px solid var(--green);
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    font-size: 18px;
    display: none;
    margin-left: 0;
    padding: 24px;
  }
  .nav.is-open { display: flex; }
  .kicker { font-size: 13px; letter-spacing: 0.2em; }
  .premio-selos { min-height: 120px; }
  .premio-selos img { height: 120px; max-width: 120px; }
  .split__media--host { min-height: 0; }
  .split__media--host img {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }
  .split,
  .split--rev,
  .bottle-page,
  .award-row,
  .award-row--3,
  .cycle,
  .process,
  .drink-grid,
  .wood-index,
  .wood-index--4,
  .stores,
  .footer-grid,
  .media-grid { grid-template-columns: 1fr; direction: ltr; }
  .woods__list {
    flex-direction: column;
    height: auto;
  }
  .wood { min-height: 280px; flex: none !important; }
  .wood img.wood__bottle { bottom: 22%; max-height: 64%; }
  .wood__copy p { opacity: 1; max-height: none; }
  .wood-index a,
  .wood-index--4 a { min-height: 480px; }
  .wood-index__shot { min-height: 300px; }
  .bottle-stage { height: auto; min-height: 62vh; padding: 24px 0 8px; }
  .bottle-stage img { position: static; max-width: 56%; max-height: 52vh; }
  .bottle-copy { padding: 40px 24px 72px; }
  .hero__copy { padding-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
