:root {
  --color-bg-primary: #fafafa;
  --color-bg-secondary: #f3f1ec;
  --color-text-primary: #1a1a1a;
  --color-text-secondary: #4a4a4a;
  --color-accent: #7a1f2d;
  --color-accent-hover: #5d1621;
  --color-border: #e0ded8;
  --color-bg-dark: #121212;
  --color-text-light: #ebeae5;
  --color-gold: #bda27e;
  --color-gold-hover: #a1835d;
  --container: min(1420px, 92%);
}

* {
  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.65;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.95);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  height: 44px;
  width: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.site-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-secondary);
  transition: color 0.25s ease;
}

.site-nav a:hover {
  color: var(--color-accent);
}

.nav-toggle-checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  background: var(--color-bg-primary);
  border-radius: 4px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--color-text-primary);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Image 1: Hero & Promo Section */
/* Image 1: Hero & Promo Section */
.hero-promo {
  background: linear-gradient(rgba(243, 241, 236, 0.88), rgba(243, 241, 236, 0.88)), 
              url("/assets/images/hero-bg.jpg") no-repeat center center;
  background-size: cover;
  padding: 60px 0;
  border-bottom: 1px solid var(--color-border);
}


.hero-promo-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  min-height: 520px;
}

.hero-promo-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eyebrow-handwritten {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.8rem;
  color: var(--color-gold);
  margin-bottom: 15px;
}

.promo-title {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  color: var(--color-text-primary);
  line-height: 1.05;
  margin-bottom: 30px;
  letter-spacing: -0.01em;
}

.hero-link {
  display: inline-block;
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.hero-link:hover {
  color: var(--color-accent-hover);
  opacity: 0.9;
}

.hero-promo-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 3 Bottles Showcase Stack */
.bottles-display {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 440px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.bottle-item {
  position: absolute;
  bottom: 0;
  width: 125px;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

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

.bottle-left {
  left: 20px;
  transform: rotate(-4deg) translateY(10px);
  z-index: 2;
}

.bottle-center {
  left: 50%;
  transform: translateX(-50%) scale(1.08) translateY(0);
  z-index: 3;
}

.bottle-right {
  right: 20px;
  transform: rotate(4deg) translateY(10px);
  z-index: 1;
}

/* Simulated wine glasses visible behind bottles in background */
.glass-bg {
  position: absolute;
  bottom: 60px;
  width: 65px;
  height: 160px;
  border: 1px solid rgba(189, 162, 126, 0.3);
  border-radius: 50% 50% 30% 30%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(2px);
  z-index: 0;
}

.white-glass {
  left: -10px;
}

.red-glass {
  right: -10px;
  background: linear-gradient(to top, rgba(122, 31, 45, 0.3) 30%, rgba(255,255,255,0.1) 70%);
}

/* Image 1: Categories Section */
.categories-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--color-border);
}

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

.category-card {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.category-img-container {
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  background: #ebeae5;
}

.category-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover .category-img-container img {
  transform: scale(1.04);
}

.category-info {
  padding: 24px 20px;
  text-align: left;
}

.category-info .tag {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-gold);
  display: block;
  margin-bottom: 6px;
}

.category-info h3 {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-text-primary);
}

/* Image 2: Philosophy and Approach Section */
.philosophy-section {
  padding: 100px 0;
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border);
}

.philosophy-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.philosophy-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--color-text-primary);
}

.philosophy-triple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 100px;
  text-align: center;
}

.philosophy-col {
  padding: 10px;
}

.deco-icon {
  font-size: 1.2rem;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.philosophy-col h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--color-text-primary);
}

.philosophy-col p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Part B: Leaf Shape Grids */
.deeper-header {
  text-align: center;
  margin-bottom: 50px;
}

.deeper-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-style: italic;
  color: var(--color-text-primary);
}

.leaf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 90px;
}

.leaf-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.leaf-shape {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
  /* Distinct organic leaf-shape curved corners styling matching the reference */
  border-radius: 120px 0 120px 0;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  background: var(--color-bg-secondary);
  margin-bottom: 25px;
}

.leaf-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leaf-label {
  display: inline-block;
  color: var(--color-text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 4px;
}

/* Part C: Quote / Citation Block */
.citation-block {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}

.citation-block blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-text-primary);
  margin-bottom: 15px;
}

.citation-block cite {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-secondary);
  font-style: normal;
}

/* Image 3: Parallax Wine Club Scene */
.clubs-section {
  position: relative;
  min-height: 80vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  isolation: isolate;
  padding: 0;
}

.parallax-media {
  position: absolute;
  inset: -14% 0;
  z-index: -2;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.parallax-media img {
  width: 100%;
  height: 125%;
  object-fit: cover;
  filter: brightness(0.48) saturate(0.95);
}

.clubs-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(12, 10, 9, 0.35) 0%,
    rgba(12, 10, 9, 0.62) 100%
  );
}

.clubs-overlay {
  width: min(760px, 88vw);
  text-align: center;
  color: #f6efe4;
  padding: 48px 34px;
  border: 1px solid rgba(246, 239, 228, 0.24);
  background: rgba(10, 9, 8, 0.32);
  backdrop-filter: blur(4px);
}

.clubs-kicker {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  margin-bottom: 18px;
  color: rgba(246, 239, 228, 0.74);
}

.clubs-overlay blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4.3vw, 3.3rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

.clubs-overlay p {
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  color: rgba(246, 239, 228, 0.86);
  max-width: 62ch;
  margin: 0 auto;
}

/* Footer Styling */
/* ================================================================
   FOOTER
================================================================ */
footer {
  background: var(--color-bg-dark);
  padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 4vw, 3.5rem);
}

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

.footer-top {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  display: block;
  height: clamp(42px, 6vw, 58px);
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-sub {
  font-size: clamp(0.55rem, 0.8vw, 0.7rem);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(244, 234, 219, 0.28);
  margin-top: -2px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.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 0.25s ease;
}
.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;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.65rem 1.25rem;
  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 0.25s ease;
}
.footer-bottom a:hover { color: rgba(244, 234, 219, 0.75); }

@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav {
    gap: 1rem 1.4rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .footer-inner {
    gap: 1.6rem;
  }

  .footer-top,
  .footer-bottom {
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .footer-bottom {
    gap: 0.5rem;
  }
}
/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  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 Overrides */
@media (max-width: 1100px) {
  .hero-promo-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
    padding: 40px 0;
  }

  .hero-promo-content {
    align-items: center;
  }

  .bottles-display {
    max-width: 320px;
    height: 380px;
    margin: 0 auto;
  }

  .clubs-overlay {
    width: min(680px, 90vw);
    padding: 42px 28px;
  }
}

@media (max-width: 900px) {
  .categories-grid,
  .philosophy-triple-grid,
  .leaf-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

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

  .clubs-section {
    min-height: 72vh;
  }
}

@media (max-width: 768px) {
  .hero-promo {
    padding: 44px 0;
  }

  .hero-promo-inner {
    min-height: auto;
    gap: 30px;
    padding: 20px 0;
  }

  .promo-title {
    margin-bottom: 20px;
  }

  .bottles-display {
    max-width: 270px;
    height: 330px;
  }

  .bottle-item {
    width: 100px;
  }

  .categories-section,
  .philosophy-section {
    padding: 64px 0;
  }

  .clubs-section {
    min-height: 68vh;
  }

  .clubs-overlay {
    width: min(620px, 92vw);
    padding: 34px 20px;
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  .site-header {
    padding: 8px 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    height: 38px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(250, 250, 250, 0.99);
    border: 1px solid var(--color-border);
    border-top: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 99;
  }

  .site-nav a {
    width: 100%;
    padding: 14px 18px;
    border-top: 1px solid var(--color-border);
    letter-spacing: 0.1em;
  }

  .nav-toggle-checkbox:checked ~ .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

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

  .nav-toggle-checkbox:checked + .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

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

  .categories-grid,
  .philosophy-triple-grid,
  .leaf-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-triple-grid {
    margin-bottom: 64px;
  }

  .leaf-grid {
    margin-bottom: 60px;
  }

  .citation-block blockquote {
    font-size: 1.28rem;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(1120px, 94%);
  }

  .eyebrow-handwritten {
    font-size: 1.45rem;
  }

  .promo-title {
    font-size: clamp(2.2rem, 11vw, 2.9rem);
  }

  .category-info h3 {
    font-size: 1.2rem;
  }

  .clubs-overlay blockquote {
    font-size: clamp(1.58rem, 9.2vw, 2.1rem);
  }

  .clubs-overlay p {
    font-size: 0.9rem;
  }
}
