/* ==========================================================================
   BELA WINES — Luxury site stylesheet
   Palette: cream / burgundy / gold
   ========================================================================== */

:root {
  --cream: #F7F2E7;
  --cream-2: #EFE7D4;
  --cream-3: #F9F6EE;
  --ink: #2A211D;
  --ink-soft: #4a3f39;
  --burgundy: #5C1327;
  --burgundy-2: #7A1D33;
  --burgundy-deep: #3C0C19;
  --gold: #B58A45;
  --gold-light: #D9BD84;
  --gold-pale: #EFE0C0;
  --line: rgba(42, 33, 29, 0.12);
  --line-gold: rgba(181, 138, 69, 0.35);

  --serif: 'Playfair Display', 'Georgia', serif;
  --script: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  --container: 1240px;
  --nav-h: 92px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--burgundy-deep);
  margin: 0 0 .5em;
  letter-spacing: .01em;
}

p {
  margin: 0 0 1.2em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- utility ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin-right: 12px;
  vertical-align: middle;
}

.center {
  text-align: center;
}

.section {
  padding: 120px 0;
}

.section--tight {
  padding: 80px 0;
}

.section--cream2 {
  background: var(--cream-2);
}

.section--burgundy {
  background: var(--burgundy-deep);
  color: var(--cream-3);
}

.section--burgundy h1,
.section--burgundy h2,
.section--burgundy h3 {
  color: var(--cream-3);
}

.divider {
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin: 26px auto;
  border: 0;
}

.divider--left {
  margin: 26px 0;
}

.lede {
  font-family: var(--script);
  font-size: 26px;
  font-style: italic;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.5;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 17px 34px;
  border: 1px solid var(--burgundy-deep);
  color: var(--burgundy-deep);
  background: transparent;
  cursor: pointer;
  transition: .35s ease;
}

.btn:hover {
  background: var(--burgundy-deep);
  color: var(--cream);
}

.btn--solid {
  background: var(--burgundy-deep);
  color: var(--cream);
}

.btn--solid:hover {
  background: var(--burgundy-2);
  border-color: var(--burgundy-2);
}

.btn--gold {
  border-color: var(--gold-light);
  color: var(--gold-pale);
}

.btn--gold:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--burgundy-deep);
}

.btn--light {
  border-color: rgba(247, 242, 231, .6);
  color: var(--cream);
}

.btn--light:hover {
  background: var(--cream);
  color: var(--burgundy-deep);
}

.tag {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line-gold);
  padding: 6px 14px;
  border-radius: 2px;
  font-weight: 500;
}

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .4s ease, box-shadow .4s ease, height .4s ease;
  background: transparent;
}

.site-header.is-scrolled {
  background: rgba(247, 242, 231, .96);
  box-shadow: 0 6px 24px rgba(42, 33, 29, .08);
  height: 76px;
  backdrop-filter: blur(6px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo img {
  height: 58px;
  width: auto;
  transition: .4s;
}

.site-header.is-scrolled .nav-logo img {
  height: 46px;
}

.nav-logo .logo-light {
  display: block;
}

.nav-logo .logo-dark {
  display: none;
}

.site-header.is-scrolled .logo-light {
  display: none;
}

.site-header.is-scrolled .logo-dark {
  display: block;
}

body.page-solid .site-header .logo-light {
  display: none;
}

body.page-solid .site-header .logo-dark {
  display: block;
}

body.page-solid .nav-logo img {
  height: 46px;
}

.nav-links {
  display: flex;
  gap: 44px;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width .3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.site-header.is-scrolled .nav-links a,
body.page-solid .site-header .nav-links a {
  color: var(--ink);
}

.nav-links a.active {
  color: var(--gold);
}

.site-header.is-scrolled .nav-links a.active,
body.page-solid .site-header .nav-links a.active {
  color: var(--burgundy);
}

.nav-cta {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: 1px solid var(--gold-light);
  color: var(--ink);
  padding: 11px 22px;
  font-weight: 500;
}

.site-header.is-scrolled .nav-cta,
body.page-solid .site-header .nav-cta {
  color: var(--burgundy);
  border-color: var(--gold);
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--burgundy-deep) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: 0;
}

.nav-toggle span {
  width: 26px;
  height: 1px;
  background: var(--ink);
  transition: .3s;
}

.site-header.is-scrolled .nav-toggle span,
body.page-solid .site-header .nav-toggle span {
  background: var(--ink);
}

body.page-solid .site-header {
  background: rgba(247, 242, 231, .98);
  box-shadow: 0 6px 24px rgba(42, 33, 29, .06);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F7F2E7;
  color: var(--cream);
}

/* .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 12, 10, .55) 0%, rgba(20, 12, 10, .35) 45%, rgba(20, 12, 10, .75) 100%);
} */

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-inner {
  max-width: 680px;
}

.hero .eyebrow {
  color: var(--gold-light);
}

.hero h1 {
  color: var(--burgundy-deep);
  font-size: 64px;
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero p.lede {
  color: rgba(247, 242, 231, .88);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(247, 242, 231, .7);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, rgba(247, 242, 231, .8), transparent);
}

.page-hero {
  position: relative;
  padding: 230px 0 110px;
  text-align: center;
  background: #1c1210 center/cover no-repeat;
  color: var(--cream);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 18, 16, .58);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--cream);
  font-size: 52px;
  margin-bottom: 14px;
}

.page-hero p {
  color: rgba(247, 242, 231, .85);
  max-width: 560px;
  margin: 0 auto;
  font-family: var(--script);
  font-size: 22px;
  font-style: italic;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--burgundy-deep);
  color: rgba(247, 242, 231, .8);
  padding: 90px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(247, 242, 231, .14);
}

.footer-brand img {
  height: 76px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(247, 242, 231, .65);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(247, 242, 231, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: .3s;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--burgundy-deep);
}

.footer-col h4 {
  color: var(--cream);
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 500;
  margin-bottom: 22px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(247, 242, 231, .7);
  transition: .25s;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  font-size: 12px;
  color: rgba(247, 242, 231, .5);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: rgba(247, 242, 231, .5);
}

.age-note {
  font-size: 12px;
  letter-spacing: .05em;
}

/* ---------- grids / cards ---------- */
.wine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

.wine-card {
  background: var(--cream-3);
  border: 1px solid var(--line);
  padding: 0 0 34px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .45s ease, box-shadow .45s ease;
}

.wine-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px rgba(42, 33, 29, .14);
}

.wine-card .wine-card-img {
  background: linear-gradient(180deg, var(--cream-2), var(--cream-3));
  padding: 44px 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 340px;
}

.wine-card .wine-card-img img {
  height: 270px;
  width: auto;
  filter: drop-shadow(0 20px 24px rgba(42, 33, 29, .22));
  transition: transform .5s ease;
}

.wine-card:hover .wine-card-img img {
  transform: translateY(-6px) scale(1.02);
}

.wine-card .wine-tag {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.wine-card h3 {
  font-size: 25px;
  margin-bottom: 6px;
}

.wine-card .wine-region {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-style: italic;
  font-family: var(--script);
  font-size: 18px;
}

.wine-card .btn {
  padding: 13px 26px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}

.pillar {
  text-align: center;
  padding: 0 10px;
}

.pillar .num {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--gold);
  letter-spacing: .2em;
  margin-bottom: 18px;
  display: block;
}

.pillar h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.pillar p {
  color: var(--ink-soft);
  font-size: 15px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.split-reverse {
  direction: rtl;
}

.split-reverse>* {
  direction: ltr;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.stat .stat-num {
  font-family: var(--serif);
  font-size: 44px;
  color: var(--gold-light);
  display: block;
  margin-bottom: 8px;
}

.stat .stat-label {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(247, 242, 231, .7);
}

/* ---------- wine detail page ---------- */
.wine-hero {
  position: relative;
  padding: calc(var(--nav-h) + 60px) 0 0;
  background: var(--cream-2);
  overflow: hidden;
}

.wine-hero-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: end;
  gap: 40px;
  min-height: 640px;
}

.wine-hero-copy {
  padding-bottom: 80px;
}

.wine-hero-copy .eyebrow {
  color: var(--gold);
}

.wine-hero-copy h1 {
  font-size: 58px;
  line-height: 1.05;
  margin-bottom: 18px;
}

.wine-hero-copy .blend {
  font-family: var(--script);
  font-style: italic;
  font-size: 24px;
  color: var(--burgundy);
  margin-bottom: 26px;
}

.wine-hero-bottle {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  position: relative;
}

.wine-hero-bottle::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 138, 69, .22), transparent 70%);
}

.wine-hero-bottle img {
  height: 560px;
  width: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 40px 40px rgba(42, 33, 29, .28));
}

.badge-medal {
  position: absolute;
  top: calc(var(--nav-h) + 40px);
  right: 24px;
  width: 96px;
  z-index: 3;
}

.meta-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.meta-item {}

.meta-item .meta-label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.meta-item .meta-value {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--burgundy-deep);
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.notes-col {
  padding: 52px 44px;
  border-left: 1px solid var(--line);
}

.notes-col:first-child {
  border-left: 0;
}

.notes-col .icon {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.notes-col h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.notes-col p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 0;
}

.terroir-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.terroir-copy {
  padding: 100px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.terroir-img {
  position: relative;
}

.terroir-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
}

.pairing-strip {
  background: var(--burgundy-deep);
  color: var(--cream);
  padding: 90px 0;
  text-align: center;
}

.pairing-strip .lede {
  color: var(--gold-pale);
  max-width: 640px;
  margin: 0 auto;
}

.label-story {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.label-story img {
  box-shadow: 0 30px 60px rgba(42, 33, 29, .25);
  border: 6px solid var(--cream-3);
}

.wine-nav-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--line);
}

.wine-nav-strip a {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.wine-nav-strip a:hover {
  color: var(--gold);
}

/* ---------- about page ---------- */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.founder-card {
  background: var(--cream-3);
  border: 1px solid var(--line);
  padding: 52px;
}

.founder-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--burgundy-deep);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 26px;
  margin-bottom: 26px;
  border: 1px solid var(--gold);
}

.founder-card h3 {
  font-size: 24px;
  margin-bottom: 4px;
}

.founder-role {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.founder-card .credentials {
  font-size: 13px;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 18px;
  font-family: var(--script);
  font-size: 17px;
}

.founder-card p {
  color: var(--ink-soft);
  font-size: 15px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

.timeline-item {
  border-top: 2px solid var(--gold);
  padding-top: 20px;
}

.timeline-item .year {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--burgundy);
  display: block;
  margin-bottom: 10px;
}

.timeline-item p {
  font-size: 14px;
  color: var(--ink-soft);
}

/* ---------- journal ---------- */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

.journal-card {
  display: block;
}

.journal-card .j-img {
  height: 280px;
  overflow: hidden;
  margin-bottom: 24px;
}

.journal-card .j-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.journal-card:hover .j-img img {
  transform: scale(1.06);
}

.journal-card .j-cat {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.journal-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.journal-card p {
  font-size: 14px;
  color: var(--ink-soft);
}

.journal-card .j-date {
  font-size: 12px;
  color: var(--ink-soft);
  opacity: .7;
  margin-top: 14px;
  display: block;
}

.journal-feature {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 0;
  background: var(--cream-3);
  border: 1px solid var(--line);
  margin-bottom: 80px;
}

.journal-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.journal-feature-copy {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-info-item .ci-icon {
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 16px;
}

.contact-info-item h4 {
  font-size: 16px;
  margin-bottom: 6px;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--burgundy);
}

.contact-info-item p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 0;
}

.form-field {
  margin-bottom: 26px;
}

.form-field label {
  display: block;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 12px 4px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold);
}

.map-strip {
  height: 340px;
  background: var(--cream-2) center/cover no-repeat;
  position: relative;
}

/* ---------- misc components ---------- */
.quote-block {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.quote-block .mark {
  font-family: var(--serif);
  font-size: 60px;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

.quote-block p {
  font-family: var(--script);
  font-style: italic;
  font-size: 30px;
  color: var(--cream-3);
  line-height: 1.5;
  margin-bottom: 20px;
}

.quote-block .attrib {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.newsletter {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(247, 242, 231, .4);
  padding-bottom: 10px;
}

.newsletter input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 14px;
  padding: 8px;
}

.newsletter input::placeholder {
  color: rgba(247, 242, 231, .55);
}

.newsletter button {
  background: none;
  border: 0;
  color: var(--gold-light);
  letter-spacing: .18em;
  font-size: 11px;
  text-transform: uppercase;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- award band ---------- */
.award-band {
  padding: 110px 0;
}

.award-band-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 60px;
}

.award-band h2 {
  font-size: 38px;
  line-height: 1.15;
}

.award-band-medal {
  text-align: center;
}

.award-band-medal img {
  width: 190px;
  height: 190px;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .35));
}

.award-band-text {
  text-align: right;
}

.award-line1,
.award-line2 {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--cream);
  margin: 0;
  line-height: 1.4;
}

.award-desc {
  font-size: 13px;
  letter-spacing: .02em;
  color: rgba(247, 242, 231, .65);
  max-width: 280px;
  margin: 16px 0 0 auto;
}

/* ---------- parallax section ---------- */
.parallax-hero {
  position: relative;
  height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-attachment: fixed;
}

.parallax-media {
  position: absolute;
  top: -25%;
  left: 0;
  right: 0;
  height: 150%;
  z-index: 0;
  will-change: transform;
}

.parallax-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(18, 11, 9, .78) 0%, rgba(18, 11, 9, .42) 52%, rgba(18, 11, 9, .12) 100%);
}

.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  color: var(--cream);
}

.parallax-content h2 {
  color: var(--cream);
  font-size: 44px;
  line-height: 1.22;
  margin-bottom: 30px;
}

/* ---------- tasting notes panel ---------- */
.notes-panel-section {
  background: var(--cream);
}

.notes-panel-head {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.notes-panel-title-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.notes-panel-title-row .line {
  width: 80px;
  height: 1px;
  background: var(--gold);
}

.notes-panel-title {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--burgundy-deep);
  white-space: nowrap;
}

.notes-panel-leaf {
  color: var(--gold);
}

.notes-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 20px 50px;
  align-items: start;
}

.notes-panel-col {
  display: flex;
  flex-direction: column;
}

.notes-panel-item {
  display: flex;
  gap: 16px;
  margin-bottom: 38px;
}

.notes-panel-item .leaf-icon {
  width: 34px;
  height: 26px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.notes-panel-item h4 {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--burgundy-deep);
  margin: 0 0 6px;
}

.notes-panel-item p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
}

.notes-panel-art {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: var(--gold-light);
  opacity: .9;
}

.notes-panel-footnote {
  font-size: 11px;
  color: var(--ink-soft);
  opacity: .55;
  text-align: right;
  font-style: italic;
  margin-top: -10px;
}

/* ---------- video grid ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.video-tile {
  position: relative;
  height: 760px;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
}

.video-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  display: block;
}

.video-tile:hover img {
  transform: scale(1.06);
}

.video-tile .video-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 12, 10, .15) 0%, rgba(20, 12, 10, .6) 100%);
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(247, 242, 231, .85);
  background: rgba(20, 12, 10, .35);
  color: var(--cream);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
  transition: .3s ease;
}

.video-tile:hover .video-play {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--burgundy-deep);
}

.video-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(20, 12, 10, .55);
  color: var(--gold-light);
  padding: 6px 12px;
  border: 1px solid rgba(217, 189, 132, .5);
}

.video-caption {
  position: absolute;
  bottom: 20px;
  left: 22px;
  z-index: 2;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 20px;
}

/* ---------- gallery page ---------- */
.gallery-grid {
  column-count: 3;
  column-gap: 26px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 26px;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(180deg, transparent, rgba(20, 12, 10, .75));
  color: var(--cream);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .35s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(18, 11, 9, .94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}

.lightbox-close {
  position: absolute;
  top: 28px;
  right: 36px;
  color: var(--cream);
  font-size: 32px;
  font-weight: 300;
  background: none;
  border: 0;
  cursor: pointer;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--gold-light);
}
.contact-container{
  width: 50%;
  margin: 40px;
}

  .cnt-main{
   margin: 30px 20px;
  }

/* ---------- responsive ---------- */
@media (max-width:1080px) {

  .wine-grid,
  .pillars,
  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .terroir-block,
  .label-story,
  .founder-grid,
  .contact-grid,
  .journal-feature,
  .wine-hero-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .split img,
  .terroir-img img {
    height: 360px;
    min-height: 0;
  }

  .hero h1 {
    font-size: 46px;
  }

  .notes-grid {
    grid-template-columns: 1fr;
  }

  .notes-col {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .notes-col:first-child {
    border-top: 0;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .wine-hero-copy {
    padding-bottom: 40px;
  }

  .wine-hero-bottle img {
    height: 400px;
  }

  .award-band-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 34px;
  }

  .award-band-text {
    text-align: center;
  }

  .award-desc {
    margin: 16px auto 0;
  }

  .notes-panel-grid {
    grid-template-columns: 1fr 1fr;
  }

  .notes-panel-art {
    display: none;
  }

  .video-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    column-count: 2;
  }
}

.terrior{
  grid-template-columns: 1fr 2fr 1fr;
}

@media (max-width:760px) {

  .terrior{
  grid-template-columns: 1fr;
}
  .container {
    padding: 0 22px;
  }

  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: 78%;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    padding: 120px 40px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform .4s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, .15);
  }

  .nav-links a {
    color: var(--ink) !important;
    font-size: 14px;
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .wine-grid,
  .pillars,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 36px;
  }

  .section {
    padding: 80px 0;
  }

  .page-hero {
    padding: 180px 0 80px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .stat-row {
    justify-content: flex-start;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .wine-hero-copy h1 {
    font-size: 40px;
  }

  .badge-medal {
    width: 70px;
    top: calc(var(--nav-h) + 20px);
    right: 14px;
  }

  .terroir-copy {
    padding: 60px 30px;
  }

  .founder-card {
    padding: 36px;
  }

  .journal-feature-copy {
    padding: 36px;
  }

  .nav-logo img {
    height: 44px;
  }

  .parallax-hero {
    height: 520px;
  }

  .parallax-content h2 {
    font-size: 30px;
  }

  .notes-panel-grid {
    grid-template-columns: 1fr;
  }

  .notes-panel-title-row .line {
    width: 36px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-tile {
    height: 700px;
  }

  .gallery-grid {
    column-count: 2;
    column-gap: 15px;
  }

  .award-band {
    padding: 70px 0;
  }

  .award-band h2 {
    font-size: 30px;
  }
  .contact-container{
    width: 90%;
    margin: 00px;
  }
  .cnt-main{
   margin: 0px;
  }
}



/* =========================
   WINES DROPDOWN
========================= */

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
}

.dropdown-arrow {
  font-size: 15px;
  line-height: 1;
  transition: transform .3s ease;
}

/* Desktop submenu */
.nav-submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 190px;
  padding: 10px 0;
  background: rgba(247, 242, 231, .98);
  box-shadow: 0 10px 30px rgba(42, 33, 29, .12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .3s ease;
  z-index: 1001;
}

/* Small top gap bridge so hover doesn't disappear */
.nav-submenu::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}

/* Show submenu on hover */
.nav-dropdown:hover .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Submenu links */
.nav-submenu a {
  display: block;
  padding: 11px 20px;
  color: var(--ink) !important;
  font-size: 11px;
  letter-spacing: .15em;
  white-space: nowrap;
  transition: all .25s ease;
}

.nav-submenu a::after {
  display: none;
}

.nav-submenu a:hover {
  background: rgba(180, 145, 80, .1);
  color: var(--burgundy) !important;
  padding-left: 25px;
}

@media (max-width: 768px) {

  /* .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    background: rgba(247, 242, 231, .98);
    box-shadow: 0 10px 30px rgba(42, 33, 29, .1);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all .3s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links > a,
  .nav-dropdown-toggle {
    padding: 14px 0;
    color: var(--ink) !important;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
  } */

  /* Mobile submenu */
  .nav-submenu {
    position: static;
    transform: none;
    min-width: 0;
    padding: 0;
    margin: 0 0 5px;
    background: transparent;
    box-shadow: none;

    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    /* display: none; */
  }

  /* Open mobile submenu */
  .nav-dropdown.open .nav-submenu {
    display: block;
  }

  .nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
  }

  .nav-submenu a {
    padding: 10px 15px 10px 20px;
    font-size: 10px;
    color: var(--ink) !important;
  }

  .nav-submenu a:hover {
    padding-left: 25px;
  }

  .nav-submenu::before {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }
}