/* Medovina.pro — luxury nocturnal craft */

:root {
  --bg: #0E0A07;
  --bg-deep: #0A0705;
  --bg-elevated: #17110C;
  --bg-card: #1A130E;
  --amber-deep: #3D1F0A;
  --amber: #5C2E0F;
  --amber-glow: rgba(196, 154, 60, 0.14);
  --gold-dim: #8A6A28;
  --gold: #C49A3C;
  --gold-bright: #E2C06A;
  --cream: #F3E6C8;
  --cream-muted: rgba(243, 230, 200, 0.72);
  --cream-soft: rgba(243, 230, 200, 0.42);
  --line: rgba(196, 154, 60, 0.28);
  --line-strong: rgba(196, 154, 60, 0.55);
  --foil: linear-gradient(
    120deg,
    #6e5320 0%,
    #C49A3C 28%,
    #f0d78a 48%,
    #C49A3C 62%,
    #8a6a28 82%,
    #C49A3C 100%
  );
  --foil-soft: linear-gradient(
    105deg,
    transparent 0%,
    rgba(240, 215, 138, 0.08) 35%,
    rgba(240, 215, 138, 0.35) 50%,
    rgba(240, 215, 138, 0.08) 65%,
    transparent 100%
  );
  --font-display: "Cinzel", serif;
  --font-body: "Literata", Georgia, serif;
  --radius: 2px;
  --max: 1120px;
  --header-h: 76px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--cream);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 90% 55% at 50% -8%, rgba(92, 46, 15, 0.55), transparent 58%),
    radial-gradient(ellipse 45% 35% at 95% 18%, rgba(196, 154, 60, 0.1), transparent 52%),
    radial-gradient(ellipse 35% 28% at 5% 70%, rgba(92, 46, 15, 0.28), transparent 50%),
    linear-gradient(180deg, #0E0A07 0%, #15100B 38%, #0E0A07 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s var(--ease-soft), opacity 0.3s var(--ease-soft);
}

a:hover {
  color: var(--cream);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.25;
  margin: 0 0 0.75rem;
  color: var(--cream);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; color: var(--gold); }

p { margin: 0 0 1rem; color: var(--cream-muted); }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.65rem;
}

/* —— Atmosphere: honeycomb + soft gold —— */
.honeycomb {
  position: relative;
  isolation: isolate;
}

.honeycomb::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath fill='none' stroke='%23C49A3C' stroke-width='0.9' d='M28 0 L56 16 L56 48 L28 64 L0 48 L0 16 Z M28 64 L56 80 L56 112 L28 128 L0 112 L0 80 Z M-28 32 L0 48 L0 80 L-28 96 L-56 80 L-56 48 Z M84 32 L112 48 L112 80 L84 96 L56 80 L56 48 Z'/%3E%3C/svg%3E");
  background-size: 56px 100px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.honeycomb::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(196, 154, 60, 0.06), transparent 70%),
    radial-gradient(ellipse 40% 35% at 80% 75%, rgba(92, 46, 15, 0.2), transparent 65%);
}

.honeycomb > * {
  position: relative;
  z-index: 1;
}

/* —— Foil shimmer (tasteful, CSS only) —— */
.foil-shimmer {
  position: relative;
  overflow: hidden;
}

.foil-shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--foil-soft);
  background-size: 220% 100%;
  background-position: 120% 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease-soft), background-position 0.9s var(--ease-out);
  z-index: 2;
}

.foil-shimmer:hover::after {
  opacity: 1;
  background-position: -40% 0;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(14, 10, 7, 0.72);
  backdrop-filter: blur(16px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease-soft), border-color 0.35s var(--ease-soft), box-shadow 0.35s var(--ease-soft);
}

.site-header.is-scrolled {
  background: rgba(10, 7, 5, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--foil);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
  transition: background-position 0.7s var(--ease-out);
}

.logo:hover {
  background-position: 100% 0;
  color: transparent;
}

.logo span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  color: var(--cream-soft);
  margin-top: 0.15rem;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-muted);
  padding-bottom: 0.2rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--foil);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.nav a:hover,
.nav a.active {
  color: var(--gold);
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--gold);
  padding: 0.45rem 0.7rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.04);
  animation: hero-drift 32s ease-in-out infinite alternate;
  filter: saturate(0.92) contrast(1.08) brightness(0.92);
}

@keyframes hero-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 10, 7, 0.28) 0%, rgba(14, 10, 7, 0.42) 35%, rgba(14, 10, 7, 0.88) 72%, rgba(14, 10, 7, 0.97) 100%),
    linear-gradient(95deg, rgba(14, 10, 7, 0.82) 0%, rgba(14, 10, 7, 0.35) 42%, transparent 68%),
    radial-gradient(ellipse 55% 50% at 70% 45%, rgba(196, 154, 60, 0.12), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4.5rem 0 5.5rem;
  max-width: 38rem;
}

.hero-stage {
  position: relative;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--foil);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 0.75rem;
  line-height: 1.05;
}

.hero-line {
  width: 4.5rem;
  height: 1px;
  background: var(--foil);
  margin: 1.35rem 0;
  transform-origin: left center;
}

.hero p,
.hero-lead {
  font-size: 1.12rem;
  max-width: 28rem;
  color: var(--cream-muted);
}

/* Elegant staged reveal */
.hero-reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(4px);
  transition:
    opacity 0.95s var(--ease-out),
    transform 0.95s var(--ease-out),
    filter 0.95s var(--ease-out);
}

.hero.is-ready .hero-reveal {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.hero.is-ready .hero-reveal[data-reveal="1"] { transition-delay: 0.12s; }
.hero.is-ready .hero-reveal[data-reveal="2"] { transition-delay: 0.32s; }
.hero.is-ready .hero-reveal[data-reveal="3"] { transition-delay: 0.5s; }
.hero.is-ready .hero-reveal[data-reveal="4"] { transition-delay: 0.68s; }

.hero.is-ready .hero-reveal[data-reveal="2"] {
  animation: line-grow 1.1s 0.32s var(--ease-out) both;
}

@keyframes line-grow {
  from { width: 0; opacity: 0; }
  to { width: 4.5rem; opacity: 1; }
}

/* Floating labels (parallax-ish) */
.float-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.float-label {
  position: absolute;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(243, 230, 200, 0.55);
  border: 1px solid rgba(196, 154, 60, 0.28);
  padding: 0.55rem 0.9rem;
  background: rgba(14, 10, 7, 0.35);
  backdrop-filter: blur(6px);
  will-change: transform;
  transition: opacity 0.6s var(--ease-soft);
}

.float-label::before {
  content: "";
  display: inline-block;
  width: 1.1rem;
  height: 1px;
  background: var(--gold);
  margin-right: 0.55rem;
  vertical-align: middle;
  opacity: 0.7;
}

.float-label[data-pos="a"] { top: 18%; right: 8%; }
.float-label[data-pos="b"] { top: 42%; right: 18%; }
.float-label[data-pos="c"] { bottom: 28%; right: 6%; }

@media (max-width: 900px) {
  .float-label[data-pos="b"],
  .float-label[data-pos="c"] { display: none; }
  .float-label[data-pos="a"] { top: 14%; right: 5%; font-size: 0.6rem; }
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.35s var(--ease-soft), color 0.35s var(--ease-soft), transform 0.35s var(--ease-soft), box-shadow 0.35s var(--ease-soft), border-color 0.35s var(--ease-soft);
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-deep);
}

.btn-primary:hover {
  background: var(--gold-bright);
  color: var(--bg-deep);
  box-shadow: 0 0 28px rgba(196, 154, 60, 0.22);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
}

.btn-ghost:hover {
  background: rgba(196, 154, 60, 0.1);
  color: var(--gold);
  border-color: var(--line-strong);
}

/* —— Ornamental dividers —— */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.35rem 0;
  margin: 0;
  border: 0;
}

.ornament-line {
  display: block;
  flex: 1;
  max-width: 12rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), var(--gold), var(--gold-dim), transparent);
  opacity: 0.7;
}

.ornament-mark {
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  background: rgba(196, 154, 60, 0.12);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(196, 154, 60, 0.15);
}

.ornament--wide .ornament-line {
  max-width: none;
}

/* —— Sections —— */
.section {
  padding: 5.75rem 0;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2.75rem;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(23, 17, 12, 0.75), rgba(14, 10, 7, 0.4));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.foil-rule {
  height: 1px;
  background: var(--foil);
  opacity: 0.45;
  border: 0;
  margin: 0;
}

/* —— Story grid —— */
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.story-visual {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.story-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08) brightness(0.95);
  transition: transform 1s var(--ease-out), filter 0.6s var(--ease-soft);
}

.story-visual:hover img {
  transform: scale(1.04);
  filter: saturate(0.98) contrast(1.1) brightness(1);
}

.story-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, transparent 40%, rgba(14, 10, 7, 0.35));
  pointer-events: none;
}

.story-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  pointer-events: none;
  z-index: 2;
  transition: border-color 0.4s var(--ease-soft), box-shadow 0.4s var(--ease-soft);
}

.story-visual:hover::after {
  border-color: var(--line-strong);
  box-shadow: inset 0 0 0 1px rgba(196, 154, 60, 0.12);
}

/* —— Bottle cards + tasting tabs —— */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.bottle-card {
  position: relative;
  background:
    linear-gradient(165deg, rgba(92, 46, 15, 0.32) 0%, rgba(14, 10, 7, 0.92) 48%),
    var(--bg-card);
  border: 1px solid var(--line);
  padding: 1.6rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s var(--ease-soft), transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-soft);
  overflow: hidden;
}

.bottle-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--foil);
  opacity: 0.35;
  transition: opacity 0.4s var(--ease-soft);
}

.bottle-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--foil-soft);
  background-size: 220% 100%;
  background-position: 130% 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-soft), background-position 0.95s var(--ease-out);
}

.bottle-card:hover {
  border-color: rgba(196, 154, 60, 0.7);
  transform: translateY(-5px);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(196, 154, 60, 0.08);
}

.bottle-card:hover::before {
  opacity: 0.85;
}

.bottle-card:hover::after {
  opacity: 1;
  background-position: -30% 0;
}

.bottle-meta {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  position: relative;
  z-index: 1;
}

.bottle-card h3 {
  color: var(--cream);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.bottle-card > p {
  font-size: 0.95rem;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.tasting-tabs {
  margin-top: 1.35rem;
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
  position: relative;
  z-index: 1;
}

.tab-list {
  position: relative;
  display: flex;
  gap: 0;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(196, 154, 60, 0.18);
}

.tab-ink {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  width: 33.333%;
  background: var(--foil);
  border-radius: 1px;
  transition: transform 0.4s var(--ease-out), width 0.4s var(--ease-out);
  box-shadow: 0 0 10px rgba(196, 154, 60, 0.35);
  pointer-events: none;
  z-index: 1;
}

.tab-btn {
  flex: 1;
  position: relative;
  background: transparent;
  border: 0;
  color: var(--cream-soft);
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.65rem 0.25rem 0.75rem;
  cursor: pointer;
  transition: color 0.3s var(--ease-soft);
}

.tab-btn:hover {
  color: var(--cream);
}

.tab-btn.active {
  color: var(--gold-bright);
}

.tab-panel {
  display: none;
  font-size: 0.92rem;
  color: var(--cream-muted);
  min-height: 4.5rem;
  line-height: 1.65;
}

.tab-panel.active {
  display: block;
  animation: fade-panel 0.4s var(--ease-out);
}

@keyframes fade-panel {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* —— Feature bands —— */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-item {
  position: relative;
  padding-top: 0.25rem;
}

.feature-item h3 {
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.95rem;
}

.feature-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* —— Page hero (inner) —— */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero .hero-media img {
  animation: hero-drift 40s ease-in-out infinite alternate;
  object-position: center;
}

.page-hero .hero-content {
  padding: 3.75rem 0 3.25rem;
  max-width: 40rem;
}

.page-hero .brand-mark {
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.14em;
}

.page-hero.is-ready .hero-reveal[data-reveal="1"] { transition-delay: 0.08s; }
.page-hero.is-ready .hero-reveal[data-reveal="2"] { transition-delay: 0.24s; }
.page-hero.is-ready .hero-reveal[data-reveal="3"] { transition-delay: 0.4s; }

/* —— Tasting immersion —— */
.tasting-atmosphere {
  position: relative;
}

.tasting-atmosphere .ritual-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 2.5rem 0 0;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(92, 46, 15, 0.18), rgba(14, 10, 7, 0.5));
}

.ritual-step {
  padding: 1.6rem 1.4rem;
  border-right: 1px solid var(--line);
  position: relative;
}

.ritual-step:last-child {
  border-right: 0;
}

.ritual-step .feature-num {
  margin-bottom: 0.9rem;
}

.ritual-step h3 {
  color: var(--cream);
  font-size: 1.1rem;
}

.immersive-banner {
  position: relative;
  min-height: 38vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0;
}

.immersive-banner .hero-media img {
  animation: none;
  transform: scale(1.05);
  filter: saturate(0.88) contrast(1.1) brightness(0.75);
}

.immersive-banner .hero-overlay {
  background:
    linear-gradient(90deg, rgba(14, 10, 7, 0.88) 0%, rgba(14, 10, 7, 0.55) 45%, rgba(14, 10, 7, 0.75) 100%),
    radial-gradient(ellipse 50% 60% at 60% 50%, rgba(196, 154, 60, 0.1), transparent 70%);
}

.immersive-banner .hero-content {
  padding: 3.5rem 0;
  max-width: 32rem;
}

.quote-line {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: 0.06em;
  color: var(--cream);
  line-height: 1.4;
  margin: 0;
}

.quote-line cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* —— Forms —— */
.form-grid {
  display: grid;
  gap: 1.1rem;
  max-width: 34rem;
}

label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

input,
select,
textarea {
  width: 100%;
  background: rgba(14, 10, 7, 0.75);
  border: 1px solid var(--line);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8rem 0.95rem;
  outline: none;
  transition: border-color 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 154, 60, 0.12);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

select {
  cursor: pointer;
}

.form-note {
  font-size: 0.85rem;
  color: var(--cream-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-block {
  border-left: 1px solid var(--line);
  padding-left: 1.5rem;
  margin-bottom: 1.75rem;
}

.contact-block strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.contact-block p {
  margin: 0;
  color: var(--cream);
}

/* —— Legal —— */
.legal {
  max-width: 42rem;
}

.legal h2 {
  margin-top: 2.5rem;
  font-size: 1.35rem;
  color: var(--gold);
}

.legal ul {
  color: var(--cream-muted);
  padding-left: 1.2rem;
}

.legal li {
  margin-bottom: 0.5rem;
}

/* —— Tasting packages —— */
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.package {
  position: relative;
  border: 1px solid var(--line);
  padding: 1.85rem 1.55rem;
  background: rgba(23, 17, 12, 0.65);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.4s var(--ease-soft), transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-soft);
}

.package::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--foil-soft);
  background-size: 220% 100%;
  background-position: 130% 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-soft), background-position 0.95s var(--ease-out);
}

.package:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
}

.package:hover::after {
  opacity: 1;
  background-position: -30% 0;
}

.package > * {
  position: relative;
  z-index: 1;
}

.package.featured {
  border-color: rgba(196, 154, 60, 0.75);
  background:
    linear-gradient(165deg, rgba(196, 154, 60, 0.14), rgba(14, 10, 7, 0.88));
  box-shadow: 0 0 0 1px rgba(196, 154, 60, 0.08), 0 18px 40px rgba(0, 0, 0, 0.25);
}

.package.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--foil);
}

.package .price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin: 0.75rem 0 1rem;
}

.package ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex-grow: 1;
}

.package li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.55rem;
  color: var(--cream-muted);
  font-size: 0.95rem;
}

.package li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

/* —— Timeline / about —— */
.timeline {
  display: grid;
  gap: 1.5rem;
  border-left: 1px solid var(--line);
  padding-left: 1.75rem;
  margin-top: 2rem;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.95rem;
  top: 0.45rem;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 0 4px rgba(196, 154, 60, 0.12);
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.gallery-strip figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}

.gallery-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.5s var(--ease-soft);
  filter: saturate(0.9) brightness(0.92);
}

.gallery-strip figure:hover img {
  transform: scale(1.05);
  filter: saturate(1) brightness(1);
}

.gallery-strip figcaption {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-soft);
  padding: 0.65rem 0.75rem;
  background: var(--bg-elevated);
}

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 2rem;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(92, 46, 15, 0.25), transparent 60%),
    #0A0705;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--foil);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.75rem;
}

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: var(--cream-muted);
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196, 154, 60, 0.18);
  font-size: 0.85rem;
  color: var(--cream-soft);
}

.age-notice {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* —— Cookie banner —— */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(14, 10, 7, 0.97);
  border-top: 1px solid var(--line);
  padding: 1.25rem 0;
  transform: translateY(110%);
  transition: transform 0.45s var(--ease-out);
  box-shadow: 0 -16px 40px rgba(0, 0, 0, 0.35);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cookie-inner p {
  margin: 0;
  flex: 1 1 280px;
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

/* —— Scroll reveals —— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img,
  .page-hero .hero-media img { animation: none !important; }
  .hero-reveal,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .float-label { display: none; }
  .bottle-card::after,
  .package::after,
  .foil-shimmer::after { display: none; }
}

/* —— Responsive —— */
@media (max-width: 960px) {
  .products-grid,
  .packages,
  .feature-row,
  .gallery-strip,
  .tasting-atmosphere .ritual-rail {
    grid-template-columns: 1fr 1fr;
  }

  .ritual-step:nth-child(2) {
    border-right: 0;
  }

  .ritual-step:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .story-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(10, 7, 5, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 0;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 0.9rem 1.5rem;
    border-top: 1px solid rgba(196, 154, 60, 0.15);
  }

  .nav a::after {
    display: none;
  }

  .products-grid,
  .packages,
  .feature-row,
  .gallery-strip,
  .tasting-atmosphere .ritual-rail {
    grid-template-columns: 1fr;
  }

  .ritual-step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .ritual-step:last-child {
    border-bottom: 0;
  }

  .ritual-step:nth-child(3) {
    grid-column: auto;
    border-top: 0;
  }

  .hero {
    min-height: 88vh;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .ornament-line {
    max-width: 5rem;
  }
}
