:root {
  --color-bg-primary: #FAF7F2;      /* Elegant soft off-white */
  --color-bg-secondary: #f0ede8;
  --color-text-primary: #1C1F1D;    /* Sophisticated deep off-black */
  --color-text-secondary: #5C605E;  /* Balanced gray-green shade */
  --color-accent: #111A15;          /* Rich forest black */
  --color-border: #D1CDCE;
  --color-gold: #C5A059;            /* Refined metallic gold tone */
  --color-gold-muted: rgba(197, 160, 89, 0.4);
  --color-bg-dark: #0A0F0C;         /* Dark background from "Join" section */
  --color-text-light: #EBEBE6;
  --container-standard: min(1400px, 90%);
  --container-wide: min(1440px, 94%);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  line-height: 1.2;
}

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

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

.container {
  width: var(--container-standard);
  margin: 0 auto;
}

.container-wide {
  width: var(--container-wide);
  margin: 0 auto;
}

/* Header & Overlay Navigation */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(10, 15, 12, 0.4) 0%, rgba(10, 15, 12, 0) 100%);
  transition: background-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.site-header.is-scrolled {
  position: fixed;
  background: #1C1F1D;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.header-inner {
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-toggle {
  display: none;
}

.nav-left, .nav-right {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-left a, .nav-right a {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

.nav-left a:hover, .nav-right a:hover {
  color: var(--color-gold);
}

.header-logo-placeholder {
  width: 180px; /* Center slot for brand logo */
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-logo {
  width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.mobile-menu {
  display: none;
}

/* Large Hero Title with Vineyards Background */
.brand-hero {
  position: relative;
  height: 95vh;
  min-height: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-bg-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/DFW-Banner.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(10,15,12,0.1) 0%, rgba(10,15,12,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 0 12px;
  transform: translate(-25%, 30%) !important;
}
.hero-title {
    font-size: clamp(2.8rem, 8.2vw, 5.5rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.03em;
    line-height: 1.05;
   
    filter: drop-shadow(0px 8px 15px rgba(0, 0, 0, 0.45));
}

.scroll-down-arrow {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: #fff;
  font-size: 1.8rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -10px); }
  60% { transform: translate(-50%, -5px); }
}

/* Critic Quote Section styling */
.quote-block-section {
  padding: 90px 0;
  background: var(--color-bg-primary);
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.critic-quote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--color-text-primary);
  margin-bottom: 18px;
  font-weight: 300;
}

.critic-author {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--color-text-secondary);
  text-transform: uppercase;
}

/* Shop & Bottle Showcase (Image 2 representation) */

.wine-subtitle{
font-size: 20px;
    font-weight: 700;
    color: #000;
}



.shop-showcase {
  padding: 100px 0;
  background: var(--color-bg-primary);
}

.section-title-block {
  text-align: center;
  margin-bottom: 60px;
}

.section-title-block h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-text-primary);
  margin-top: 10px;
}

.section-title-block.text-white h2 {
  color: #fff;
}

.eyebrow-dark {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  display: block;
}

.eyebrow-light {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  text-transform: uppercase;
  display: block;
}

/* 5 Bottles horizontal array container */
.bottles-scroll-container {
  width: 100%;
}

.bottles-row-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.shop-bottle-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s ease;
}

.shop-bottle-card:hover {
  transform: translateY(-8px);
}

.bottle-frame {
    /* height: 500px; */
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 25px;
    padding: 10px;
    height: 533px;
}

.bottle-frame img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.divider-line {
  border: none;
  height: 1px;
  background: var(--color-border);
  width: 80px;
  margin-bottom: 20px;
}

.wine-title {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text-primary);
  line-height: 1.4;
  text-transform: uppercase;
}

/* Visits & Experiences styling */
.experiences-section {
  position: relative;
  padding: 120px 0;
  background-color: var(--color-bg-dark);
  color: #fff;
  overflow: hidden;
}

/* Background Vineyard image spanning section */
.experiences-background-media {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom, rgba(10,15,12,0.85) 0%, rgba(10,15,12,0.6) 50%, rgba(10,15,12,0.9) 100%), 
                    url('https://ichef.bbci.co.uk/images/ic/1024xn/p017b1n4.jpg.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.relative-content {
  position: relative;
  z-index: 2;
}

.cards-overlay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.experience-glass-card {
  background: rgba(28, 31, 29, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.experience-glass-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-5px);
}

.experience-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.experience-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-card-body {
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.exp-title {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  color: #fff;
  text-transform: uppercase;
}

.exp-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.btn-text-link {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  border-bottom: 1px solid var(--color-gold);
  padding-bottom: 4px;
  align-self: flex-start;
  margin-bottom: 25px;
  transition: color 0.3s ease;
}

.btn-text-link:hover {
  color: var(--color-gold);
}

.card-footer-badge {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

/* Exclusive Access (Newsletter / Split section) */
.access-signup-section {
  background: var(--color-bg-dark);
  color: #fff;
  padding: 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.access-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.access-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-top: 15px;
  margin-bottom: 25px;
  color: #fff;
}

.access-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 40px;
}

.btn-outline-gold {
  display: inline-block;
  border: 1px solid var(--color-gold);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  padding: 16px 36px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

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

/* Stacked Service Images on right of Join */
.split-visuals-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.access-visual-item {
  aspect-ratio: 9 / 12;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.access-visual-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Layout variation to create asymmetrical depth */
.item-candid {
  transform: translateY(25px);
}

/* ================================================================
   FOOTER
================================================================ */
footer {
  background: var(--color-bg-dark);
  padding: 4rem 3.5rem;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.footer-top {
    /* display: flex; */
    /* align-items: center; */
    justify-content: space-between;
}

.footer-brand {
    display: flex;
    /* flex-direction: column; */
    width: 300px;
}


.footer-nav {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    margin-top: 20px;
}
.footer-nav a {
  font-size: clamp(0.65rem, 0.9vw, 0.8rem);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(244, 234, 219, 0.38);
  transition: color var(--t-fast);
}
.footer-nav a:hover { color: rgba(244, 234, 219, 0.75); }

.footer-rule {
  width: 100%;
  border: none;
  border-top: 1px solid rgba(244, 234, 219, 0.07);
}

.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(0.6rem, 0.85vw, 0.75rem);
  color: rgba(244, 234, 219, 0.3);
  letter-spacing: 0.05em;
}
.footer-bottom a {
  color: rgba(244, 234, 219, 0.45);
  transition: color var(--t-fast);
}
.footer-bottom a:hover { color: rgba(244, 234, 219, 0.75); }


/* CSS Animation reveals on scrolling */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive breakpoints styling structure */

@media (max-width: 1100px) {
  .hero-content {
    width: min(900px, 94%);
    transform: translate(-10%, 30%) !important;
  }

 
}

@media (max-width: 1100px) {
  /* Bottles viewports transition cleanly to elegant touch-swipe format on medium-sized screens */
  .hero-content {
   
    transform: translate(0) !important;
}
  .bottles-scroll-container {
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none; /* Firefox option */
    -webkit-overflow-scrolling: touch;
  }

  .bottles-scroll-container::-webkit-scrollbar {
    display: none; /* Safari, Chrome option */
  }

  .bottles-row-grid {
    grid-template-columns: repeat(3, 260px);
    padding-bottom: 20px;
  }

  .cards-overlay-grid {
    grid-template-columns: 1fr 1fr;
  }

  .access-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .item-candid {
    transform: none;
  }
}

@media (max-width: 991px) {
  .site-header {
    position: fixed;
    background: #1C1F1D;
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header-inner {
    height: 76px;
   
    position: relative;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .header-logo-placeholder {
    display: flex;
    width: 150px;
  }

  .header-logo {
    max-height: 46px;
  }

  .mobile-nav-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    border-radius: 6px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
  }

  .mobile-nav-toggle span {
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .mobile-nav-open .mobile-nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-nav-open .mobile-nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-open .mobile-nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    background: #0a0f0c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: max-height 0.35s ease, opacity 0.25s ease;
  }

  .mobile-menu a {
    padding: 14px 5%;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-menu .nav-cta {
    color: var(--color-gold);
  }

  .mobile-nav-open .mobile-menu {
    max-height: 270px;
    opacity: 1;
    pointer-events: auto;
  }

  main {
    padding-top: 76px;
  }

  .cards-overlay-grid {
    grid-template-columns: 1fr;
  }

  .bottles-scroll-container {
    overflow: visible;
    padding-bottom: 0;
  }

  .bottles-row-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding-bottom: 0;
  }

  .brand-hero {
    height: min(82svh, 760px);
    min-height: 500px;
  }

  .hero-bg {
    background-position: 52% center;
  }

  .hero-content {
    width: min(900px, 94%);
    transform: translateY(clamp(28px, 9vh, 88px));
  }

  .hero-title {
    font-size: clamp(2.2rem, 8.4vw, 4rem);
    line-height: 1.08;
    letter-spacing: 0.02em;
  }

  .access-signup-section {
    padding: 80px 0;
  }

  /* .bottle-frame {
    height: 320px;
  } */

  .experience-card-body {
    padding: 28px 24px;
  }

  .split-visuals-wrapper {
    grid-template-columns: 1fr;
  }

  .access-visual-item {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 680px) {
  .bottles-row-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 30px;
}
.footer-bottom span {
    /* display: block; */
    width: 100%;
    text-align: center;
}
  .bottle-frame {
    height: auto;
  }
}

@media (max-width: 520px) {
  .brand-hero {
    height: min(74svh, 610px);
    min-height: 420px;
  }

  .hero-content {
    width: 94%;
    transform: translateY(clamp(12px, 7vh, 38px));
    padding: 0 8px;
  }

  .hero-title {
    font-size: clamp(1.9rem, 10.2vw, 2.8rem);
    line-height: 1.12;
    letter-spacing: 0.01em;
  }

  .scroll-down-arrow {
    bottom: 20px;
    font-size: 1.5rem;
  }

  .quote-block-section {
    padding: 70px 0;
  }

  .shop-showcase,
  .experiences-section,
  .access-signup-section {
    padding: 72px 0;
  }

  .section-title-block {
    margin-bottom: 42px;
  }

  .btn-outline-gold {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }
}
