:root {
  --wine: #78293a;
  --wine-bright: #9b4052;
  --wine-dark: #2a1118;
  --cream: #f1e5d4;
  --paper: #faf6ee;
  --paper-deep: #eee1d0;
  --ink: #211916;
  --muted: #6f625a;
  --olive: #66705b;
  --radius-sm: 20px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --shadow-soft: 0 24px 70px rgba(43, 24, 20, .11);
  --ease-cinema: cubic-bezier(.22, 1, .36, 1);
  --motion-fast: 450ms;
  --motion-base: 750ms;
  --section-space: clamp(88px, 10vw, 150px);
}

*, *::before, *::after { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font: 400 18px/1.72 "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #d59d62; outline-offset: 4px; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  transform: translateY(-180%);
  transition: transform .2s;
}
.skip-link:focus { transform: none; }

.ambient-glow {
  position: fixed;
  z-index: -1;
  width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .13;
  pointer-events: none;
}
.ambient-glow-one { top: 35%; left: -220px; background: var(--wine-bright); }
.ambient-glow-two { right: -220px; bottom: 5%; background: #c99d5e; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 22px;
  left: 4vw;
  right: 4vw;
  width: auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 10px 12px 10px 20px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: #fff;
  transition: background var(--motion-fast), color var(--motion-fast), box-shadow var(--motion-fast), transform var(--motion-fast), border-color var(--motion-fast);
}
.site-header.scrolled {
  background: rgba(250, 246, 238, .84);
  color: var(--ink);
  border-color: rgba(75, 45, 34, .1);
  box-shadow: 0 12px 36px rgba(27, 16, 14, .12);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 1.12;
  letter-spacing: .14em;
}
.brand b { font-size: 15px; }
.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: none;
  border: 1px solid currentColor;
  border-radius: 50%;
  font: 24px/1 "Playfair Display", serif;
}
.site-header nav { display: flex; gap: 29px; margin-left: auto; }
.site-header nav a {
  position: relative;
  padding: 10px 0;
  text-decoration: none;
  font-size: 12px;
  font-family: Manrope, sans-serif;
}
.site-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--motion-fast) var(--ease-cinema);
}
.site-header nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; }

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  min-height: 54px;
  overflow: hidden;
  padding: 14px 24px;
  border: 1px solid var(--wine);
  border-radius: 999px;
  background: var(--wine);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(72, 21, 32, .18);
  transition: transform var(--motion-fast) var(--ease-cinema), box-shadow var(--motion-fast), background var(--motion-fast);
}
.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(110deg, var(--wine-bright), #5f1c2b);
  opacity: 0;
  transition: opacity var(--motion-fast);
}
.button:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(72, 21, 32, .25); }
.button:hover::before { opacity: 1; }
.button span { transition: transform var(--motion-fast) var(--ease-cinema); }
.button:hover span { transform: translateX(4px); }
.button-small { min-height: 46px; padding: 11px 20px; background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .45); box-shadow: none; }
.scrolled .button-small { border-color: var(--wine); background: var(--wine); }

.hero {
  position: relative;
  min-height: 850px;
  height: min(1000px, 100svh);
  margin: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 132px 7.5vw 80px;
  border-radius: var(--radius-lg);
  background: var(--wine-dark);
  color: #fff;
  perspective: 1200px;
}
.hero-frame { position: absolute; inset: 0; transform: scale(1.04); }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 70%) var(--mouse-y, 40%), rgba(220, 173, 118, .16), transparent 26%), linear-gradient(90deg, rgba(22, 11, 10, .92) 0%, rgba(22, 11, 10, .64) 41%, rgba(22, 11, 10, .08) 75%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(22, 11, 10, .25), transparent);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 4; max-width: 760px; }
.eyebrow, .overline {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 10px;
  font-weight: 600;
}
.hero h1, .section h2 {
  margin: 24px 0;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  line-height: .97;
  letter-spacing: -.035em;
}
.hero h1 { max-width: 880px; font-size: clamp(58px, 6.6vw, 98px); line-height: 1.02; }
.hero h1 em { color: #e6c9a4; font-weight: 400; }
.hero-copy { max-width: 650px; color: rgba(255, 255, 255, .88); font: 22px/1.55 "Playfair Display", serif; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.text-link { position: relative; font-size: 12px; text-underline-offset: 7px; }
.hero-note {
  position: absolute;
  z-index: 5;
  right: 5vw;
  bottom: 5vw;
  width: 230px;
  padding: 22px;
  display: grid;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
  -webkit-backdrop-filter: blur(13px);
  backdrop-filter: blur(13px);
  transform-style: preserve-3d;
}
.hero-note strong { font: 40px/1 "Playfair Display", serif; }
.hero-note span { margin-top: 8px; font-size: 9px; line-height: 1.5; letter-spacing: .14em; text-transform: uppercase; }
.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 34px;
  left: 7.5vw;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .62);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.scroll-cue span { width: 42px; height: 1px; background: currentColor; animation: breathe 2.4s ease-in-out infinite; }
.hero-orb { position: absolute; z-index: 2; border: 1px solid rgba(255, 255, 255, .14); border-radius: 50%; pointer-events: none; animation: float 8s ease-in-out infinite; }
.hero-orb-one { width: 180px; height: 180px; top: 17%; right: 9%; }
.hero-orb-two { width: 76px; height: 76px; right: 31%; bottom: 13%; animation-delay: -3s; }

.section { position: relative; padding: var(--section-space) 7vw; }
.booking-strip {
  margin: 24px 7vw 0;
  padding: 22px 24px 22px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid rgba(92, 47, 42, .1);
  border-radius: var(--radius-md);
  background: #fffaf2;
  box-shadow: var(--shadow-soft);
}
.booking-strip > div:first-child { display: grid; gap: 2px; }
.booking-strip > div:first-child span { color: var(--wine); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.booking-strip > div:first-child strong { font: 22px/1.35 "Playfair Display", serif; }
.booking-actions { display: flex; gap: 10px; }
.booking-actions a {
  min-width: 190px;
  padding: 13px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-radius: 999px;
  background: var(--wine);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: transform var(--motion-fast) var(--ease-cinema), background var(--motion-fast);
}
.booking-actions a:hover { transform: translateY(-3px); background: var(--wine-bright); }
.booking-actions small { grid-column: 1 / -1; color: rgba(255,255,255,.68); font-size: 9px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.section-kicker { align-self: start; display: flex; align-items: center; gap: 14px; font-size: 9px; letter-spacing: .17em; text-transform: uppercase; }
.section-kicker span { font: 18px/1 "Playfair Display", serif; }
.section h2 { font-size: clamp(45px, 5.4vw, 76px); }
.intro { display: grid; grid-template-columns: .65fr 1.5fr .9fr; gap: 6vw; align-items: start; }
.intro::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 25%;
  right: -8%;
  width: 320px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 41, 58, .11), transparent 68%);
}
.intro-copy > p:not(.overline) { max-width: 650px; color: #51463f; font: 20px/1.65 "Playfair Display", serif; }
.story-timeline { margin: 40px 0 26px; border-top: 1px solid rgba(45, 29, 23, .17); }
.story-timeline > div { padding: 18px 0; display: grid; grid-template-columns: 120px 1fr; gap: 25px; border-bottom: 1px solid rgba(45, 29, 23, .17); }
.story-timeline strong { color: var(--wine); font-size: 13px; letter-spacing: .04em; }
.story-timeline p { margin: 0; color: #51463f; font-size: 15px; line-height: 1.75; }
.text-link.dark { display: inline-block; margin-top: 18px; color: var(--wine); font-weight: 600; }
.quote-card {
  position: relative;
  align-self: end;
  overflow: hidden;
  padding: 36px;
  border: 1px solid rgba(111, 73, 59, .1);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #f3e8d8, #ead9c4);
  box-shadow: var(--shadow-soft);
  transform-style: preserve-3d;
}
.quote-card::after { content: ""; position: absolute; width: 130px; aspect-ratio: 1; top: -70px; right: -50px; border-radius: 50%; border: 1px solid rgba(120, 41, 58, .2); }
.quote-mark { color: var(--wine); font: 58px/.7 "Playfair Display", serif; }
.quote-card blockquote { margin: 25px 0; font: 24px/1.4 "Playfair Display", serif; }
.quote-card p { font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }

.experience-gallery {
  padding-top: 30px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 20px;
  align-items: end;
}
.gallery-card { position: relative; min-height: 560px; margin: 0; overflow: hidden; border-radius: var(--radius-lg); background: var(--paper-deep); box-shadow: var(--shadow-soft); }
.gallery-wine { min-height: 470px; }
.gallery-card img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform 900ms var(--ease-cinema); }
.gallery-card:hover img { transform: scale(1.035); }
.gallery-card::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(to top, rgba(19, 10, 9, .78), transparent); }
.gallery-card figcaption { position: absolute; z-index: 2; right: 30px; bottom: 28px; left: 30px; color: #fff; }
.gallery-card figcaption span { display: block; margin-bottom: 6px; font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.gallery-card figcaption strong { display: block; max-width: 480px; font: 30px/1.2 "Playfair Display", serif; }

.events {
  margin: 0 12px 12px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 12% 8%, rgba(155, 64, 82, .28), transparent 25%), #241219;
  color: var(--cream);
}
.events::after {
  content: "LIVE";
  position: absolute;
  right: -30px;
  top: 15px;
  color: rgba(255,255,255,.025);
  font: 220px/1 "Playfair Display", serif;
  pointer-events: none;
}
.events-heading { position: relative; z-index: 1; display: grid; grid-template-columns: .65fr 1.5fr; gap: 7vw; }
.events-heading h2 { margin-top: 18px; }
.events-heading > div:last-child > p:last-child { max-width: 680px; color: #cabdb6; font-size: 15px; }
.events-media { position: relative; z-index: 1; height: clamp(360px, 48vw, 610px); margin: 65px 0 0; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-lg); background: #1b1114; box-shadow: 0 28px 70px rgba(0,0,0,.22); }
.events-media::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(to top, rgba(20,9,13,.82), transparent); }
.events-media img { width: 100%; height: 100%; object-fit: cover; }
.events-media figcaption { position: absolute; z-index: 2; right: 30px; bottom: 28px; left: 30px; max-width: 620px; font: 26px/1.3 "Playfair Display", serif; }
.events-media figcaption span { display: block; margin-bottom: 6px; color: #d7ac80; font: 700 10px/1.4 "Manrope", sans-serif; letter-spacing: .16em; text-transform: uppercase; }
.events-list { position: relative; z-index: 1; max-width: 1080px; margin: 70px 0 0 auto; display: grid; gap: 12px; perspective: 1000px; }
.event-card {
  min-height: 132px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 26px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  transform-style: preserve-3d;
  transition: border-color var(--motion-fast), background var(--motion-fast), box-shadow var(--motion-fast);
}
.event-card:hover { border-color: rgba(255,255,255,.28); background: linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.05)); box-shadow: 0 24px 55px rgba(0,0,0,.18); }
.event-past { opacity: .58; }
.event-date { align-self: stretch; display: grid; place-content: center; text-align: center; border-right: 1px solid rgba(255,255,255,.14); }
.event-date strong { font: 46px/.95 "Playfair Display", serif; }
.event-date span { margin-top: 6px; font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.events-past-list .event-card { grid-template-columns: 72px 1fr; }
.event-number { align-self: stretch; display: grid; place-items: center; border-right: 1px solid rgba(255,255,255,.14); color: #d7ac80; font: 26px/1 "Playfair Display", serif; }
.event-info h3 { margin: 4px 0; font: 25px/1.2 "Playfair Display", serif; }
.event-info p { margin: 0; color: #c9bbb4; font-size: 13px; }
.event-status { color: #d7ac80; font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.event-card > a { min-width: 145px; padding: 13px 17px; display: flex; justify-content: space-between; gap: 20px; border-radius: 999px; background: var(--cream); color: var(--wine-dark); text-decoration: none; font-size: 11px; font-weight: 700; transition: transform var(--motion-fast) var(--ease-cinema), background var(--motion-fast); }
.event-card > a:hover { transform: translateY(-3px); background: #fff; }
.events-cta { position: relative; z-index: 1; margin: 35px 0 0 auto; max-width: 1080px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.events-cta p { margin: 0; color: #bfb0a8; font-size: 11px; }
.events-cta p span { display: block; color: var(--cream); font-weight: 700; }

.selection {
  margin: 0 12px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 80% 5%, rgba(155, 64, 82, .25), transparent 30%), var(--wine-dark);
  color: var(--cream);
}
.scroll-glass {
  position: absolute;
  z-index: 1;
  top: 44%;
  right: 2.8%;
  width: clamp(76px, 8vw, 118px);
  color: rgba(236, 215, 191, .72);
  filter: drop-shadow(0 22px 30px rgba(0,0,0,.3));
  pointer-events: none;
  will-change: transform;
  transform: translate3d(0, 70px, 0) rotate(-5deg);
}
.scroll-glass svg { display: block; width: 100%; overflow: visible; }
.scroll-glass .glass-outline { fill: rgba(255,255,255,.035); stroke: currentColor; stroke-width: 3; }
.scroll-glass .glass-wine { fill: rgba(145, 45, 64, .78); stroke: rgba(231, 158, 170, .5); stroke-width: 1; }
.scroll-glass .glass-stem { fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; }
.scroll-glass circle { fill: rgba(255,255,255,.45); }
.selection-heading, .product-grid { position: relative; z-index: 2; }
.selection-heading { display: grid; grid-template-columns: .6fr .7fr 1.5fr; gap: 6vw; align-items: start; }
.selection-heading .overline { margin-top: 6px; color: #c7b7ae; }
.selection-heading h2 { margin-top: 0; }
.product-grid { margin: 70px 0 0 28%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; perspective: 1100px; }
.product-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
  box-shadow: 0 30px 55px rgba(8, 3, 5, .16);
  transform-style: preserve-3d;
  transition: border-color var(--motion-fast), background var(--motion-fast), box-shadow var(--motion-fast);
}
.product-card:nth-child(2) { transform: translateY(28px); }
.product-card:hover { border-color: rgba(255, 255, 255, .3); background: linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .05)); box-shadow: 0 34px 70px rgba(8, 3, 5, .24); }
.product-card > span { color: #c5a188; font: 16px/1 "Playfair Display", serif; }
.product-card h3 { margin: 0 0 14px; font: 30px/1.15 "Playfair Display", serif; }
.product-card p { margin: 0; color: #d8cbc3; font-size: 14px; line-height: 1.75; }
.product-card i { position: absolute; right: 16px; bottom: -28px; color: rgba(255, 255, 255, .035); font: 160px/1 "Playfair Display", serif; }

.tastings { min-height: 820px; display: grid; grid-template-columns: 1.02fr .98fr; gap: 18px; padding: 12px; }
.tasting-image { position: relative; min-height: 650px; margin: 0; overflow: hidden; border-radius: var(--radius-lg); background: var(--paper-deep); box-shadow: var(--shadow-soft); }
.tasting-image img { width: 100%; height: 112%; object-fit: cover; object-position: 73% center; transition: transform 900ms var(--ease-cinema); }
.tasting-image:hover img { transform: scale(1.035); }
.tasting-image figcaption {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius-sm);
  background: rgba(31, 18, 15, .38);
  color: #fff;
  font: 20px/1.2 "Playfair Display", serif;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.tasting-image figcaption span { display: block; margin-bottom: 3px; font: 10px/1.4 "Manrope", sans-serif; letter-spacing: .18em; text-transform: uppercase; }
.tasting-copy { padding: 90px clamp(32px, 7vw, 105px); display: flex; flex-direction: column; justify-content: center; border-radius: var(--radius-lg); background: linear-gradient(145deg, var(--cream), #ecddc9); }
.tasting-copy .section-kicker { margin-bottom: 60px; }
.tasting-copy > p:not(.overline) { color: #574d46; line-height: 1.75; }
.tasting-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 25px 0 34px; }
.tasting-points span { padding: 12px 0; border-top: 1px solid rgba(45, 29, 23, .18); font-size: 10px; }
.button-dark { align-self: flex-start; border-color: var(--ink); background: var(--ink); }
.tasting-copy small { max-width: 470px; margin-top: 17px; color: #766b64; font-size: 9px; line-height: 1.6; }

.contact {
  margin: 0 12px 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.5fr .62fr;
  gap: 7vw;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 80% 15%, rgba(255, 255, 255, .12), transparent 25%), var(--olive);
  color: #fff;
}
.contact-main h2 { max-width: 900px; }
.contact-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.contact-details > div { padding: 20px; border: 1px solid rgba(255, 255, 255, .17); border-radius: var(--radius-sm); background: rgba(255, 255, 255, .055); }
.contact-details span { font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.venue-types { margin: 25px 0 0; color: var(--wine); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.contact-details p { font: 20px/1.45 "Playfair Display", serif; }
.contact-details a { font-size: 11px; text-underline-offset: 5px; }
.contact-details small { color: rgba(255, 255, 255, .64); font-size: 9px; }
.call-card {
  align-self: end;
  padding: 40px;
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 70px rgba(16, 25, 13, .18);
  transform-style: preserve-3d;
}
.call-card > p { font: 28px/1.25 "Playfair Display", serif; }
.call-card > a { display: block; padding: 20px 0; border-top: 1px solid rgba(32, 26, 23, .16); border-bottom: 1px solid rgba(32, 26, 23, .16); text-decoration: none; }
.call-card a span { display: block; margin-bottom: 7px; color: var(--wine); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.call-card a strong { font: 29px/1 "Playfair Display", serif; }
.call-card small { display: block; margin-top: 17px; color: #756d66; font-size: 9px; }

footer { margin: 12px; padding: 58px 7vw 82px; display: flex; align-items: center; gap: 70px; border-radius: var(--radius-lg); background: #1d1715; color: #fff; }
.footer-brand { flex: none; letter-spacing: .1em; }
.footer-brand b { font-size: clamp(23px, 1.8vw, 31px); font-weight: 600; }
footer p { color: #bcb0a8; font: 17px/1.5 "Playfair Display", serif; }
footer > div { display: flex; gap: 25px; margin-left: auto; font-size: 10px; }
.mobile-call { display: none; }

/* Typographic refinement: larger, sturdier and more readable display face. */
.hero h1, .section h2, .hero-copy, .hero-note strong,
.booking-strip > div:first-child strong, .section-kicker span,
.intro-copy > p:not(.overline), .quote-mark, .quote-card blockquote,
.gallery-card figcaption strong, .events-media figcaption,
.event-date strong, .event-number, .event-info h3,
.product-card > span, .product-card h3, .product-card i,
.tasting-image figcaption, .contact-details p, .call-card > p,
.call-card a strong, footer p { font-family: Lora, serif; }
.hero h1 { max-width: 850px; font-size: clamp(44px, 4.8vw, 70px); line-height: 1.04; font-weight: 500; letter-spacing: -.035em; }
.hero h1 span { display: block; text-wrap: balance; }
.hero h1 em { display: block; margin-top: 18px; font-size: .42em; line-height: 1.35; letter-spacing: .01em; }
.hero-copy { max-width: 690px; font-size: 23px; line-height: 1.58; }
.section h2 { font-weight: 600; }
.intro-copy > p:not(.overline) { font-size: 21px; line-height: 1.7; }
.gallery-card figcaption strong { font-size: 31px; line-height: 1.25; font-weight: 600; }
.event-info h3 { font-size: 26px; font-weight: 600; }
.product-card h3 { font-size: 31px; font-weight: 600; }

.reviews { margin: 0 7px 7px; overflow: hidden; border-radius: var(--radius-lg); background: #f2eadc; color: var(--ink); }
.reviews-heading { display: grid; grid-template-columns: .48fr 1.15fr .72fr; gap: 5vw; align-items: end; }
.reviews-heading h2 { margin: 0; }
.reviews-heading > p { max-width: 430px; color: #6f655e; line-height: 1.7; }
.reviews-links { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(32, 26, 23, .16); border-bottom: 1px solid rgba(32, 26, 23, .16); }
.reviews-links > a { min-height: 150px; padding: 30px; display: grid; grid-template-columns: 48px 1fr auto; gap: 20px; align-items: center; color: inherit; text-decoration: none; transition: background var(--motion-fast), transform var(--motion-fast); }
.reviews-links > a + a { border-left: 1px solid rgba(32, 26, 23, .16); }
.reviews-links > a:hover { background: rgba(255, 255, 255, .38); }
.reviews-links > a > span { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(32, 26, 23, .2); border-radius: 50%; font-size: 11px; font-weight: 700; letter-spacing: .04em; }
.reviews-links div { display: flex; flex-direction: column; gap: 7px; }
.reviews-links small { color: #766d66; font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }
.reviews-links strong { font: 600 24px/1.1 Lora, serif; }
.reviews-links i { font-style: normal; }
.reviews-note { margin: 18px 0 0; color: #80766f; font-size: 10px; }

.reveal { opacity: 0; transform: translate3d(0, 28px, 0); transition: opacity var(--motion-base) var(--ease-cinema), transform var(--motion-base) var(--ease-cinema); }
.reveal.visible, .hero .reveal { opacity: 1; transform: translate3d(0, 0, 0); }
.product-card.reveal:nth-child(2) { transform: translate3d(0, 56px, 0); }
.product-card.reveal.visible:nth-child(2) { transform: translate3d(0, 28px, 0); }
.product-card:nth-child(1) { transition-delay: 0ms; }
.product-card:nth-child(2) { transition-delay: 100ms; }
.product-card:nth-child(3) { transition-delay: 200ms; }

@keyframes float { 0%, 100% { transform: translate3d(0, 0, 0) rotate(0); } 50% { transform: translate3d(0, -12px, 0) rotate(2deg); } }
@keyframes breathe { 0%, 100% { transform: scaleX(.55); transform-origin: left; } 50% { transform: scaleX(1); transform-origin: left; } }

@media (max-width: 1040px) {
  .site-header { left: 20px; right: 20px; }
  .site-header nav { gap: 18px; }
  .intro { grid-template-columns: .45fr 1.4fr .85fr; gap: 4vw; }
  .product-grid { margin-left: 15%; }
  .contact { grid-template-columns: 1fr; }
  .call-card { width: min(100%, 480px); }
}

@media (max-width: 820px) {
  :root { --radius-lg: 30px; --radius-md: 24px; }
  .site-header { top: 12px; min-height: 62px; padding: 7px 9px 7px 15px; }
  .site-header nav {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    height: 100svh;
    margin: 0;
    padding: 120px 28px 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    border-radius: 0 0 30px 30px;
    background: rgba(38, 16, 22, .97);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-24px);
    transition: opacity var(--motion-fast), transform var(--motion-fast) var(--ease-cinema), visibility var(--motion-fast);
  }
  .site-header nav.open { opacity: 1; visibility: visible; transform: none; }
  .site-header nav a { font: 600 38px/1.25 Lora, serif; }
  .menu-toggle { width: 46px; height: 46px; margin-left: auto; display: grid; place-content: center; gap: 5px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .12); color: currentColor; }
  .menu-toggle span { width: 19px; height: 1px; display: block; background: currentColor; transition: transform var(--motion-fast) var(--ease-cinema), opacity .25s; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .header-cta { display: none; }
  .hero { min-height: 750px; height: 100svh; margin: 7px; padding: 115px 24px 95px; }
  .hero-frame img { object-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(22, 11, 10, .91), rgba(22, 11, 10, .44)); }
  .hero h1 { max-width: 620px; font-size: clamp(40px, 10.5vw, 60px); }
  .hero h1 em { margin-top: 14px; font-size: .47em; }
  .hero-copy { font-size: 19px; }
  .hero-note, .scroll-cue { display: none; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .booking-strip { margin: 14px 7px 0; padding: 24px; align-items: stretch; flex-direction: column; }
  .booking-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .booking-actions a { min-width: 0; }
  .section { padding: 90px 24px; }
  .intro { grid-template-columns: 1fr; gap: 38px; }
  .quote-card { max-width: 520px; }
  .experience-gallery { padding-top: 7px; grid-template-columns: 1fr; }
  .gallery-card, .gallery-wine { min-height: 500px; }
  .events { margin: 0 7px 7px; }
  .events::after { font-size: 120px; }
  .events-heading { grid-template-columns: 1fr; gap: 30px; }
  .events-list { margin-top: 45px; }
  .events-media { height: 450px; margin-top: 42px; }
  .events-media img { object-position: 56% center; }
  .event-card { grid-template-columns: 80px 1fr; gap: 18px; }
  .events-past-list .event-card { grid-template-columns: 64px 1fr; }
  .event-card > a { grid-column: 1 / -1; width: 100%; }
  .events-cta { align-items: stretch; flex-direction: column; }
  .selection { margin: 0 7px; }
  .scroll-glass { display: none; }
  .selection-heading { grid-template-columns: 1fr; gap: 25px; }
  .product-grid { margin: 45px 0 0; grid-template-columns: 1fr; }
  .product-card, .product-card:nth-child(2), .product-card.reveal:nth-child(2), .product-card.reveal.visible:nth-child(2) { min-height: 220px; transform: none; }
  .tastings { grid-template-columns: 1fr; gap: 7px; padding: 7px; }
  .tasting-image { min-height: 470px; }
  .tasting-image img { height: 100%; }
  .tasting-copy { padding: 80px 24px; }
  .tasting-copy .section-kicker { margin-bottom: 46px; }
  .contact { margin: 0 7px 7px; }
  .contact-details { grid-template-columns: 1fr; }
  .call-card { padding: 32px; }
  .reviews-heading { grid-template-columns: 1fr; gap: 28px; }
  .reviews-heading > p { margin: 0; }
  .reviews-links { margin-top: 42px; grid-template-columns: 1fr; }
  .reviews-links > a { min-height: 112px; padding: 22px 0; }
  .reviews-links > a + a { border-left: 0; border-top: 1px solid rgba(32, 26, 23, .16); }
  .mobile-call { position: fixed; z-index: 45; right: 12px; bottom: 12px; left: 12px; min-height: 56px; padding: 15px 21px; display: flex; align-items: center; justify-content: space-between; border: 1px solid rgba(255, 255, 255, .14); border-radius: 999px; background: rgba(99, 30, 45, .92); color: #fff; box-shadow: 0 16px 35px rgba(38, 10, 18, .3); text-decoration: none; font-size: 12px; font-weight: 600; -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
  footer { margin: 7px; padding: 52px 25px 110px; align-items: flex-start; flex-direction: column; gap: 20px; }
  .footer-brand b { font-size: 23px; }
  footer > div { margin-left: 0; }
}

@media (max-width: 460px) {
  .brand-mark { width: 38px; }
  .hero { padding-right: 18px; padding-left: 18px; }
  .hero h1 { font-size: 40px; }
  .hero h1 em { font-size: .5em; line-height: 1.45; }
  .section h2 { font-size: 46px; }
  .button { width: 100%; }
  .booking-actions { grid-template-columns: 1fr; }
  .story-timeline > div { grid-template-columns: 1fr; gap: 6px; }
  .gallery-card, .gallery-wine { min-height: 400px; }
  .gallery-card figcaption { right: 20px; bottom: 20px; left: 20px; }
  .gallery-card figcaption strong { font-size: 25px; }
  .event-card { padding: 16px; grid-template-columns: 64px 1fr; }
  .event-date strong { font-size: 38px; }
  .event-info h3 { font-size: 22px; }
  .tasting-points { grid-template-columns: 1fr; }
  .tasting-image { min-height: 390px; }
  .tasting-image figcaption { right: 15px; bottom: 15px; left: 15px; }
  .contact-details { margin-top: 42px; }
}

@media (hover: none), (pointer: coarse) {
  [data-tilt] { transform: none !important; }
  .tasting-image:hover img { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; transition-delay: 0ms !important; }
  .reveal, .product-card.reveal:nth-child(2) { opacity: 1; transform: none; }
  .parallax-layer, [data-tilt] { transform: none !important; }
  .scroll-glass { display: none; }
}
