/* =========================================
   0. FONTS
   ========================================= */

/* Inter Tight */

@font-face {
  font-family: "Inter Tight";
  src: url("../assets/fonts/InterTight-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../assets/fonts/InterTight-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../assets/fonts/InterTight-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../assets/fonts/InterTight-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../assets/fonts/InterTight-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../assets/fonts/InterTight-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../assets/fonts/InterTight-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../assets/fonts/InterTight-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../assets/fonts/InterTight-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../assets/fonts/InterTight-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* La Luxes Serif */
@font-face {
  font-family: "La Luxes Serif";
  src: url("../assets/fonts/La%20Luxes%20Serif.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* La Luxes Script */
@font-face {
  font-family: "La Luxes Script";
  src: url("../assets/fonts/La%20Luxes%20Script.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* =========================================
   1. CSS VARIABLES & RESET
   ========================================= */
:root {
  /* Colors */
  --color-primary: #1a1a2e;
  --color-gold: #d4af37;
  --color-gold-light: rgba(212, 175, 55, 0.1); /* gold/10 */
  --color-gold-msg: rgba(212, 175, 55, 0.3); /* gold/30 */
  --color-background: #f8f6f2;
  --color-background-blur: rgba(250, 249, 248, 0.8);
  --color-body: #4a4a4a;
  --color-white: #ffffff;
  --color-white-alpha-5: rgba(
    255,
    255,
    255,
    0.05
  ); /* primary/5 equivalent for border */
  --color-white-alpha-10: rgba(255, 255, 255, 0.1);
  --color-white-alpha-50: rgba(255, 255, 255, 0.5);
  --color-white-alpha-70: rgba(255, 255, 255, 0.7);
  --color-white-alpha-80: rgba(255, 255, 255, 0.8);
  --color-white-alpha-90: rgba(255, 255, 255, 0.9);
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-500: #6b7280;
  --color-gray-700: #374151;
  --color-primary-alpha-5: rgba(26, 26, 46, 0.05);
  --color-primary-alpha-60: rgba(26, 26, 46, 0.6);
  --color-black-alpha-20: rgba(0, 0, 0, 0.2);

  /* Typography */
  --font-sans: "Inter Tight", system-ui, -apple-system, sans-serif;
  --font-serif: "La Luxes Serif", Georgia, serif;

  /* Spacing & Sizing */
  --site-max-width: 1440px;
  --header-height: 5rem; /* 20 * 0.25rem = 80px */
  --spacing-4: 1rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-12: 3rem;
  --spacing-16: 4rem;
  --spacing-20: 5rem;
  --spacing-24: 6rem;
  --spacing-32: 8rem;

  /* Shadows */
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Utilities */
  --border-radius-full: 9999px;
  --border-radius-2xl: 1rem;
  --border-radius-3xl: 1.5rem;
  --transition-fast: 300ms;
  --transition-medium: 500ms;
  --transition-slow: 700ms;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-background);
  color: var(--color-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================================
   2. SHARED COMPONENTS & UTILITIES
   ========================================= */

/* Material Symbols */
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
}

/* Typography Helpers */
.serif {
  font-family: var(--font-serif);
}
.script {
  font-family: "La Luxes Script", cursive;
}
.text-gold {
  color: var(--color-gold);
}
.text-primary {
  color: var(--color-primary);
}
.text-white {
  color: var(--color-white);
}
.uppercase-tracking {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem; /* text-xs */
  font-weight: 700;
}

/* Section Header Decoration (Line - Text - Line) */
.mobile-break {
  display: none;
}

.section-header-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-gold);
  font-size: 0.875rem; /* text-sm */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.section-header-label.centered {
  justify-content: center;
}

.section-label-line {
  width: 2rem;
  height: 1px;
  background-color: var(--color-gold);
}

/* Container */
.container {
  max-width: var(--site-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem; /* Roughly standard button padding */
  border-radius: var(
    --border-radius-full
  ); /* Assuming rounded styling from usage context, though not strict in config, commonly coupled with design */
  font-weight: 500;
  transition: all var(--transition-fast) ease;
  cursor: pointer;
}

.btn-primary {
  /* In original code, it was just "btn btn-primary" without definition in snippet, 
     assuming standard button from context or missing utility class. 
     Recreating based on primary color scheme. */
  background-color: var(--color-gold);
  color: var(--color-primary);
  font-weight: 600;
}

.btn-primary:hover {
  background-color: white;
  color: var(--color-gold);
  /* Note: The original HTML had "btn btn-primary" but no definition was provided in the context snippet for .btn-primary in Tailwind config. 
   I am inferring a style based on the "gold" and "primary" theme to make it look good. */
}

/* Drop Shadows */
.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* =========================================
   3. HEADER / NAVIGATION
   ========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition:
    transform 400ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 300ms ease;
  background-color: transparent;
  pointer-events: none;
}

.site-header.header-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.site-header * {
  pointer-events: auto;
}

.site-header-inner {
  /* max-width: var(--site-max-width); Removed to allow full width for logo positioning */
  width: 100%;
  margin: 0;
  padding: 1rem 2rem;
  height: auto;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: none; /* Hidden on mobile */
  gap: 2rem;
  align-items: center;
}

.glass-bubble {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 0.75rem 2rem;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-bubble .nav-link {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transition: all 250ms ease;
}

.glass-bubble .nav-link:hover {
  color: var(--color-gold);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

/* Scrolled State */
.site-header.scrolled .logo-text {
  color: var(--color-primary); /* Black/Dark text on light background */
}

.site-header.scrolled .glass-bubble {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.06) 100%
  );
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Links in scrolled state - use dark text for contrast */
.site-header.scrolled .glass-bubble .nav-link {
  color: var(--color-primary);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.site-header.scrolled .glass-bubble .nav-link:hover {
  color: var(--color-gold);
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.nav-link {
  font-size: 0.875rem; /* text-sm */
  font-weight: 500;
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

/* Override secondary if inside glass bubble or just generally ensure white dominates in bubble */
.glass-bubble .nav-link.secondary {
  color: #ebebeb;
}

/* Secondary link in scrolled bubble */
.site-header.scrolled .glass-bubble .nav-link.secondary {
  color: var(--color-gray-500);
}

.glass-bubble .nav-link.secondary:hover {
  color: #fff;
}

.nav-link:hover {
  color: var(--color-primary);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem; /* text-lg */
  color: #fff;
  letter-spacing: -0.025em; /* tracking-tight */
  display: block;
  transition: color var(--transition-medium);
}

.logo-img {
  height: 1.8rem;
  width: auto;
  display: block;
  filter: brightness(0) invert(1); /* Start White */
  transition: filter var(--transition-medium);
}

.site-header.scrolled .logo-img {
  /* Switch to dark/primary color approximation or just black */
  /* Using primary color #1a1a2e via filter generator matching would be ideal, 
     but brightness(0) gives black which is close enough or use specific filter */
  filter: brightness(0.2); /* Dark gray/black close to primary */
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  color: var(--color-primary);
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 9999px;
  transition: background-color var(--transition-fast);
}

.mobile-menu-btn:hover {
  background-color: var(--color-gray-100);
}

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero-section {
  position: relative;
  height: 85vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--color-black-alpha-20);
  z-index: 10;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* animate-kenburns logic would go here if defined, assuming static for now or adding keyframes below */
  animation: kenburns 20s infinite alternate;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-top: 3rem; /* Further reduced from 5rem to move content up */
  padding-left: 1rem;
  padding-right: 1rem;
}

.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem; /* Further reduced from 2rem */
  opacity: 0.9;
}

.hero-badge img {
  height: 12rem;
  width: auto;
  filter: brightness(0) invert(1);
}

.hero-badge svg {
  margin-bottom: 1rem;
  color: var(--color-gold);
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07));
}

.hero-badge-text {
  color: var(--color-white-alpha-80);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 1.75rem; /* Reduced from 2.25rem to prevent overflow */
  color: var(--color-white);
  margin-bottom: 4rem;
  letter-spacing: -0.05em;
  line-height: 1.1;
  overflow-wrap: break-word; /* Ensure text doesn't overflow container */
}

@media (min-width: 400px) {
  .hero-title {
    font-size: 2.25rem;
  }
}

/* Utility for image positioning */
.img-position-low {
  object-position: 50% 80%; /* Shift view lower on the specific image */
}

.hero-subtitle {
  font-family: var(--font-sans);
  color: var(--color-white-alpha-90);
  font-size: 1.125rem; /* text-lg */
  font-weight: 300;
  letter-spacing: 0.025em;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625;
  margin-bottom: 2.5rem;
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding: 0 1rem;
}

.hero-cta {
  background-color: var(--color-gold);
  color: var(--color-primary);
  width: 100%;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 4px; /* Default button radius if not rounded-full */
}

/* Custom button style for hero based on 'btn btn-primary' usage */
.btn-hero {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-radius: 2px;
  padding: 1rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}
.btn-hero:hover {
  background-color: var(--color-gold);
  color: white;
}

.scroll-indicator {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-white-alpha-50);
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, -25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translate(-50%, 0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

/* =========================================
   5. STORY SECTION (Présentation)
   ========================================= */
.section-story {
  padding: 5rem 0; /* py-20 */
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.story-content-title {
  font-family: var(--font-serif);
  font-size: 2.25rem; /* text-4xl */
  color: var(--color-primary);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.story-content-title .highlight {
  display: block;
  font-style: italic;
  color: var(--color-primary-alpha-60);
}

.story-text {
  font-size: 1.125rem; /* text-lg */
  font-weight: 300;
  color: var(--color-gray-700);
  line-height: 1.625;
  margin-top: 1.5rem;
}

.story-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 32rem; /* max-w-lg */
  margin: 0 auto;
}

.story-image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-2xl);
  box-shadow: var(--shadow-xl);
  z-index: 10;
  aspect-ratio: 4 / 3;
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.story-img:hover {
  transform: scale(1.05);
}

.story-decor-1 {
  position: absolute;
  background-color: var(--color-gold-light);
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  bottom: -1.5rem;
  right: -1.5rem;
  z-index: -10;
}

.story-decor-2 {
  position: absolute;
  border: 2px solid var(--color-gold-msg);
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  top: -1.5rem;
  left: -1.5rem;
  z-index: -10;
}

/* =========================================
   6. FEATURED CUVÉE SECTION
   ========================================= */
.section-featured {
  padding: 5rem 0;
  background-color: var(--color-white);
}

.featured-header {
  text-align: center;
  margin-bottom: 4rem;
}

.featured-title {
  font-family: var(--font-serif);
  font-size: 2.25rem; /* text-4xl */
  color: var(--color-primary);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.featured-subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--color-gray-700);
  max-width: 42rem;
  margin: 0 auto;
}

.featured-card-wrapper {
  max-width: 56rem; /* max-w-4xl */
  margin: 0 auto;
}

.featured-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  border-radius: 1.5rem; /* rounded-3xl */
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: all var(--transition-medium);
}

.featured-card:hover {
  box-shadow: var(--shadow-2xl);
}

.card-image-side {
  width: 100%;
  background: linear-gradient(
    to bottom,
    var(--color-gray-100),
    var(--color-gray-50)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.card-bottle-img {
  height: 16rem; /* h-64 */
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-medium);
  filter: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.1));
}

.featured-card:hover .card-bottle-img {
  transform: scale(1.05);
}

.card-content-side {
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-label {
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.875rem; /* text-3xl */
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.card-appellation {
  color: var(--color-gray-500);
  margin-bottom: 1rem;
}

.card-description {
  color: var(--color-gray-700);
  font-weight: 300;
  line-height: 1.625;
  margin-bottom: 2rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.featured-card:hover .card-link {
  color: var(--color-gold);
}

/* =========================================
   7. FOOTER
   ========================================= */
.site-footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 24rem;
  align-items: center; /* Center on mobile */
  text-align: center; /* Center on mobile */
  margin-left: auto; /* Center on mobile */
  margin-right: auto; /* Center on mobile */
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center; /* Center on mobile */
  gap: 0.5rem;
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-white);
}

.footer-logo-img {
  height: 1.8rem;
  width: auto;
  display: block;
  /* Ensure it's white on the dark footer background if the SVG is black */
  filter: brightness(0) invert(1);
}

.footer-desc {
  color: var(--color-white-alpha-70);
  font-weight: 300;
  line-height: 1.625;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-heading {
  color: var(--color-gold);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.footer-link {
  color: var(--color-white-alpha-80);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--color-white);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-white-alpha-10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  font-size: 0.75rem; /* text-xs */
  color: var(--color-white-alpha-50);
}

.footer-bottom-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* =========================================
   8. MEDIA QUERIES (RESPONSIVE)
   ========================================= */

@media (min-width: 640px) {
  /* sm */
  .footer-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  /* md */
  /* Header */
  .nav-links {
    display: flex;
  }

  .logo-text {
    display: block;
  }

  .mobile-menu-btn {
    display: none;
  }

  /* Hero */
  .hero-title {
    font-size: 4.5rem; /* md:text-7xl */
  }

  .hero-subtitle {
    font-size: 1.25rem; /* md:text-xl */
  }

  .hero-cta-wrapper {
    flex-direction: row;
    width: auto;
  }

  .btn-hero {
    width: auto;
  }

  /* Story */
  .section-story {
    padding: 8rem 0; /* md:py-32 */
  }

  .story-grid {
    grid-template-columns: 1fr 1fr; /* md:grid-cols-2 */
    gap: 6rem; /* md:gap-24 */
  }

  .story-content-title {
    font-size: 3rem; /* md:text-5xl */
  }

  .story-image-wrapper {
    max-width: none;
  }

  /* Featured */
  .section-featured {
    padding: 8rem 0;
  }

  .featured-title {
    font-size: 3rem; /* md:text-5xl */
  }

  .featured-card {
    flex-direction: row;
  }

  .card-image-side {
    width: 41.666667%; /* md:w-5/12 */
    padding: 3rem; /* md:p-12 */
  }

  .card-bottle-img {
    height: 20rem; /* md:h-80 */
  }

  .card-content-side {
    width: 58.333333%; /* md:w-7/12 */
    padding: 3rem; /* md:p-12 */
  }

  /* Footer */
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 4rem;
  }

  .footer-brand {
    align-items: flex-start;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .footer-logo {
    justify-content: flex-start;
  }

  .site-footer {
    padding-top: 3rem;
    padding-bottom: 2.5rem;
  }

  .footer-nav-grid {
    gap: 3rem;
  }

  .footer-column {
    gap: 1rem;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding-top: 2rem;
  }
}

@media (min-width: 1024px) {
  /* lg */
  .hero-title {
    font-size: 5rem; /* lg:text-8xl */
  }

  .footer-nav-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================================
   9. TABLES (E-LABEL)
   ========================================= */
.table-container {
  overflow-x: auto;
  width: 100%;
}

.data-table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}

.data-table th {
  padding: 1rem;
  font-weight: 400;
  border-bottom: 2px solid var(--color-primary-alpha-5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray-500);
  font-size: 0.875rem;
}

.data-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--color-gray-100);
  color: var(--color-body);
}

.data-table tr:hover td {
  background-color: var(--color-gray-50);
}

.text-right {
  text-align: right;
}
.font-medium {
  font-weight: 500;
}
.text-sm {
  font-size: 0.875rem;
}
.text-base {
  font-size: 1rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-2xl {
  font-size: 1.5rem;
}
.text-3xl {
  font-size: 1.875rem;
}
.text-4xl {
  font-size: 2.25rem;
}
.text-4-5xl {
  font-size: 2.6rem;
}
.text-5xl {
  font-size: 3rem;
}
.text-6xl {
  font-size: 3.75rem;
}
.italic {
  font-style: italic;
}

/* =========================================
   10. CUSTOM LISTS (CUVEES)
   ========================================= */
.custom-list {
  list-style: none;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.custom-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1.125rem; /* text-lg */
  font-weight: 300;
  line-height: 1.625;
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em; /* Align with text */
  width: 0.375rem; /* 1.5 equivalent */
  height: 0.375rem;
  background-color: var(--color-gold);
  border-radius: 50%;
}

/* =========================================
   11. CUVEE PAGE HERO SPLIT
   ========================================= */
.cuvee-hero-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* Mobile default height */
  height: 55vh;
}

.cuvee-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cuvee-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.6; /* Combined with overlay usually */
  animation: kenburns 20s infinite alternate;
}

/* Sticky Bottle Layout */
.bottle-sticky-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-top: 5rem; /* md:mt-32 - Reduced from 8rem to align with text */
}

.bottle-img-large {
  max-height: 65vh;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
  transition: transform 700ms;
}

.bottle-img-large:hover {
  transform: scale(1.05);
}

/* =========================================
   12. QUOTE BLOCK
   ========================================= */
.quote-block {
  background-color: var(--color-primary-alpha-5);
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--color-gold);
  margin-top: 2rem;
}

.quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--color-primary-alpha-60);
}

/* =========================================
   13. E-LABEL SPECIFIC
   ========================================= */
.label-header {
  padding-top: 8rem;
  padding-bottom: 4rem;
  text-align: center;
}

.label-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--color-primary);
}

.label-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 80rem; /* max-w-7xl */
  margin: 0 auto;
}

.label-card {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid var(--color-gray-100);
}

@media (min-width: 768px) {
  .cuvee-hero-wrapper {
    position: sticky;
    top: 0;
    height: 55vh;
    z-index: -10;
  }

  .bottle-sticky-section {
    position: sticky;
    top: 5rem;
  }

  .bottle-img-large {
    max-height: 800px;
  }

  .label-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-section {
    height: 55vh; /* Adjust global hero as well if needed, user mentioned 'hero page' usually refers to cuvee here */
  }
}

/* =========================================
   7. CUVEE PAGE LAYOUT (Grid & Sticky)
   ========================================= */

/* =========================================
   7. CUVEE PAGE LAYOUT (Content Sections)
   ========================================= */

.content-sections-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0; /* No gap between sections if we want to control via padding */
  padding-bottom: 5rem;
}

.section-split {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 2rem 1.5rem;
}

/* First section needs more top padding to match Hero gap */
.content-sections-wrapper .section-split:first-child {
  padding-top: 4rem;
}

.section-split.reverse-mobile {
  display: flex;
  flex-direction: column; /* Stack vertically on mobile */
}

@media (min-width: 1024px) {
  .section-split {
    flex-direction: row;
    align-items: center; /* Center vertically */
    gap: 6rem;
    padding: 3rem 1.5rem;
    max-width: var(--site-max-width);
    margin: 0 auto;
  }

  /* First section needs more top padding to match Hero gap (6rem) */
  .content-sections-wrapper .section-split:first-child {
    padding-top: 6rem;
  }

  .section-split.reverse-mobile {
    flex-direction: row; /* Normal row on desktop for Text Left | Image Right */
  }
}

/* Inter-Section Separator */
.section-separator-centered {
  width: 3rem;
  height: 1px;
  background-color: var(--color-gold);
  margin: 0 auto;
  flex-shrink: 0;
}

/* Crop Top Image Desktop */
@media (min-width: 1024px) {
  .section-image-container.crop-top-desktop {
    aspect-ratio: 16 / 10;
  }

  .section-image-container.crop-top-desktop .section-img {
    object-position: bottom;
  }
}

/* Columns */
.section-image-col,
.section-text-col {
  width: 100%;
}

@media (min-width: 1024px) {
  .section-image-col {
    width: 45%;
    flex-shrink: 0;
  }
  .section-text-col {
    width: 55%;
    flex-grow: 1;
  }
}

/* Image Container */
.section-image-container {
  width: 100%;
  border-radius: var(--border-radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 3; /* Default landscape aspect */
}

/* Special Case for Portrait Image (Etiquette) */
.section-image-container:has(.portrait-img) {
  aspect-ratio: auto; /* Let image define ratio or custom */
  background: transparent;
  box-shadow: none; /* Maybe no shadow for cut-out bottle/label if it's transparent */
  display: flex;
  justify-content: center;
}

.section-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.section-img:hover {
  transform: scale(1.03);
}

.portrait-img {
  height: auto;
  max-height: 500px; /* Limit height */
  width: auto; /* Preserve aspect ratio */
  object-fit: contain;
}

/* Text Formatting and Alignment */
.text-left-col {
  text-align: left; /* Changed from right to left as requested */
}

.text-right-col {
  text-align: left; /* Text Right of Page -> Center Hugging -> Align Left */
}

/* Mobile: Reset Alignment? 
   Usually on mobile everything is left aligned or center.
   Let's keep left for readability on mobile.
*/
@media (max-width: 1023px) {
  .text-left-col,
  .text-right-col {
    text-align: left;
  }

  /* Order adjustments for Mobile if we want Image First always */
  /* Geo: Image | Text -> OK */
  /* Regards: Image | Text -> OK */
  /* Moyens: Text | Image -> Image should probably be first? */
  .section-split.reverse-mobile {
    flex-direction: column-reverse; /* Image (2nd child) on top, Text (1st) below */
  }
}

/* Section Label Line Alignment */
.section-label-line {
  margin-top: 2rem;
  width: 3rem;
  height: 2px;
  background-color: var(--color-gold);
}

/* Align Left of Text Block (For Text-Right-Col) */
.text-right-col .section-label-line {
  margin-right: auto;
  margin-left: 0;
}

/* Align Right of Text Block (For Text-Left-Col) */
.text-left-col .section-label-line {
  margin-left: auto;
  margin-right: 0;
}

@media (max-width: 1023px) {
  /* Reset line to left on mobile */
  .text-left-col .section-label-line {
    margin-left: 0;
    margin-right: auto;
  }
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 2.5rem;
  }
}

/* =========================================
   14. PAGE LAYOUT DESIGN
   ========================================= */

/* Header - Three Column Layout */
.page-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.5rem 2rem;
  gap: 3.75rem;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  background-color: transparent;
}

.page-header.scrolled {
  background-color: var(--color-white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 0.75rem 2rem;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    transparent 100%
  );
  pointer-events: none;
  z-index: -1;
  transition: opacity 400ms ease;
}

.page-header.scrolled .page-header-overlay {
  opacity: 0;
}

/* Navigation Menu (Desktop Default / Base) */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-self: start;
  grid-row: 1;
  grid-column: 1;
}

.header-logo {
  grid-row: 1;
  grid-column: 2;
  justify-self: center;
}

/* Mobile Header Layout Adjustment (Split Header Strategy) */
@media (max-width: 767px) {
  .page-header {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto;
    align-items: center;
    gap: 3.75rem;
  }

  /* 1. Hide Burger Button */
  .header-menu-btn {
    display: none !important;
  }

  /* 2. Show Navigation items in Grid - handled by override below */
  .main-nav {
    display: contents;
  }

  /* Left: Home Link - forced to column 1 */
  .main-nav > .nav-link:first-child {
    grid-row: 1;
    grid-column: 1;
    justify-self: end;
    align-self: center; /* Ensure alignment */
    font-size: 0.9rem;
    color: var(--color-white);
    padding: 0;
  }
  .page-header.scrolled .main-nav > .nav-link:first-child {
    color: var(--color-primary);
  }

  /* Right: Cuvées Dropdown Trigger - forced to column 3 */
  .nav-dropdown {
    grid-row: 1;
    grid-column: 3;
    justify-self: start;
    align-self: center;
    display: block;
    width: auto;
  }

  .nav-dropdown-trigger {
    font-size: 0.9rem;
    color: var(--color-white);
    padding: 0;
    justify-content: flex-start;
  }
  .page-header.scrolled .nav-dropdown-trigger {
    color: var(--color-primary);
  }

  /* Right-Aligned Minimalist Transparent Dropdown */
  .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    width: max-content; /* Only as wide as needed */
    min-width: 0; /* Remove constraint */
    max-width: 60vw;
    padding: 0; /* Remove container padding */

    transform: none !important;

    /* Highly discreet 'floating text' look with minimal backing */
    background: rgba(
      0,
      0,
      0,
      0.2
    ); /* Lighter/Clearer tint as requested (was 0.5) */
    backdrop-filter: blur(4px); /* Light blur */
    -webkit-backdrop-filter: blur(4px);
    border: none; /* No border for seamless look */
    border-radius: 0.5rem;
    box-shadow: none; /* No shadow */

    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;

    display: flex;
    flex-direction: column;
    gap: 0; /* Compact */
  }

  .nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem; /* Small offset */
  }

  .dropdown-item {
    text-align: right;
    font-size: 0.85rem; /* Smaller, discreet */
    color: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 0.75rem;
    background: transparent;
    border-radius: 0.5rem;
  }

  .dropdown-item:hover {
    color: var(--color-gold);
    background: rgba(255, 255, 255, 0.05);
  }
}
/* End Mobile Header Adjustment */

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.02em;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition:
    opacity 300ms ease,
    color 300ms ease;
}

.nav-link:hover {
  opacity: 0.7;
}

.page-header.scrolled .nav-link {
  color: var(--color-primary);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-arrow {
  font-size: 1.25rem;
  transition: transform 300ms ease;
}

.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

@media (min-width: 768px) {
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    margin-top: 1rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 1rem;
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.3),
      0 0 0 1px rgba(255, 255, 255, 0.1);
    min-width: 220px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

.dropdown-item {
  display: block;
  padding: 0.875rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-white);
  text-decoration: none;
  border-radius: 0.5rem;
  transition:
    background-color 200ms ease,
    color 200ms ease;
}

.dropdown-item:hover {
  background-color: var(--color-gold-light);
  color: var(--color-gold);
}

/* Header Menu Button */
.header-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-white);
  transition: all 300ms ease;
}

.header-menu-btn .material-symbols-outlined {
  font-size: 1.75rem;
  font-variation-settings: "wght" 200;
}

.header-menu-btn:hover {
  opacity: 0.7;
}

.page-header.scrolled .header-menu-btn {
  color: var(--color-primary);
}

/* Header Spacer (for grid alignment) */
.header-spacer {
  justify-self: end;
}

/* Mobile/Desktop visibility */
.mobile-only {
  display: flex;
  justify-self: end;
}

.desktop-only {
  display: none;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo-img {
  height: 4rem;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all 400ms ease;
}

.page-header.scrolled .header-logo-img {
  height: 2.5rem;
  filter: brightness(0.2);
}

.page-header.header-hidden {
  transform: translateY(-100%);
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 767px) {
  .hero {
    height: 60vh;
    min-height: 450px;
  }

  .hero-content {
    padding-top: 12rem;
  }

  .hero-title-line:nth-child(2) {
    white-space: normal;
    font-size: clamp(1.3rem, 9vw, 2rem);
    text-align: center;
    line-height: 1.4;
  }

  .mobile-break {
    display: block;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-kenburns 25s ease-in-out infinite alternate;
}

@keyframes hero-kenburns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  padding-top: 8rem;
  max-width: 900px;
}

.hero-title {
  font-family: var(--font-serif);
  color: var(--color-white);
  font-weight: 400;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-title-line {
  display: block;
  font-size: 1.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-title-line:nth-child(2) {
  font-size: 2rem;
  letter-spacing: 0.15em;
  white-space: nowrap;
  margin-top: 2rem;
}

.hero-title-year {
  font-size: 2rem;
  letter-spacing: 0.3em;
  opacity: 0.8;
  margin-top: 2rem;
  font-style: italic;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--color-white);
  line-height: 1.8;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Main Content */
.main-content {
  background-color: var(--color-white);
  position: relative;
  z-index: 10;
}

/* Content Sections */
.content-section {
  padding: 6rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-primary);
  letter-spacing: 0.2em;
  font-weight: 400;
  text-transform: uppercase;
}

.section-body {
  text-align: center;
}

.lead-text {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  color: var(--color-primary);
  line-height: 1.8;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.body-text {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  color: var(--color-body);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.styled-list {
  list-style: none;
  text-align: left;
  max-width: 600px;
  margin: 2rem auto;
  padding: 0;
}

.styled-list li {
  position: relative;
  padding-left: 1.5rem;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  color: var(--color-body);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.styled-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

.signature {
  font-family: "La Luxes Script", cursive;
  font-size: 3rem;
  color: var(--color-primary);
  margin-top: 2rem;
  text-align: right;
}

/* Full Width Image */
.full-image {
  width: 100%;
  overflow: hidden;
}

.full-image img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  object-position: center;
}

/* Full Image with Quote Overlay */
.full-image-with-quote {
  position: relative;
  width: 100%;
}

.full-image-with-quote .full-image {
  margin-bottom: 0;
}

.image-quote-overlay {
  background-color: var(--color-primary);
  padding: 3rem 2rem;
  text-align: center;
}

.image-quote-text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-white);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  border: none;
  opacity: 0.95;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .image-quote-overlay {
    padding: 4rem 3rem;
  }

  .image-quote-text {
    font-size: 1.35rem;
  }
}

/* Split Section */
.content-section-split {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.split-content {
  padding: 2rem;
}

.split-content .section-header {
  text-align: left;
}

.split-content .section-body {
  text-align: left;
}

.split-image {
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.split-image img {
  max-height: 85vh;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* Reverse split: Full-bleed image left, content right (inspired design) */
.content-section.content-section-split-reverse {
  max-width: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  gap: 0;
  min-height: auto;
  align-items: stretch;
}

.content-section-split-reverse .split-image {
  padding: 0;
  margin: 0;
  min-height: 50vh;
  justify-content: flex-start;
}

.content-section-split-reverse .split-image img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  filter: none;
}

.content-section-split-reverse .split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2rem;
  background-color: var(--color-background);
}

@media (min-width: 768px) {
  .content-section.content-section-split-reverse {
    grid-template-columns: 45% 1fr;
  }

  .content-section-split-reverse .split-image {
    order: -1;
    min-height: auto;
  }

  .content-section-split-reverse .split-content {
    padding: 4rem 5rem 4rem 4rem;
  }
}

/* Section Regards Croisés - reduced spacing */
.section-regards-croises {
  margin-top: 1rem;
  padding-top: 1rem;
  max-width: 1200px !important;
}

.section-regards-croises .split-image {
  padding: 0;
}

.section-regards-croises .split-image img {
  max-height: none !important;
  height: auto !important;
  max-width: 100%;
  width: 100%;
}

@media (min-width: 768px) {
  .section-regards-croises {
    margin-top: 2rem;
    grid-template-columns: 1fr 1.2fr;
  }

  .section-regards-croises .split-image img {
    width: 100% !important;
    max-height: none !important;
  }
}

/* Quote Section */
.quote-section {
  padding: 6rem 2rem;
  background-color: var(--color-background);
  text-align: center;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-primary);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
  border: none;
}

/* CTA Section */
.cta-section {
  padding: 4rem 2rem;
  text-align: center;
  background-color: var(--color-white);
}

.cta-link {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  color: var(--color-primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid var(--color-primary);
  transition: all 300ms ease;
}

.cta-link:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* Page Footer */
.page-footer {
  background-color: var(--color-white);
  padding: 4rem 2rem;
  border-top: 1px solid var(--color-gray-100);
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  color: var(--color-body);
  letter-spacing: 0.05em;
  transition: color 300ms ease;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--color-gray-500);
  margin-bottom: 0.5rem;
}

.footer-warning {
  font-size: 0.625rem;
  color: var(--color-gray-500);
}

/* Responsive Styles */
@media (min-width: 768px) {
  .page-header {
    padding: 2rem 3rem;
  }

  .page-header.scrolled {
    padding: 0.75rem 3rem;
  }

  /* Show navigation, hide mobile menu - already handled by display: contents in base */

  .mobile-only {
    display: none;
  }

  .desktop-only {
    display: block;
  }

  .header-logo-img {
    height: 5rem;
  }

  .page-header.scrolled .header-logo-img {
    height: 3rem;
  }

  .hero-title-line {
    font-size: 3.5rem;
  }

  .hero-title-line:nth-child(2) {
    font-size: 4rem;
  }

  .hero-title-year {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .content-section {
    padding: 8rem 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .lead-text {
    font-size: 1.25rem;
  }

  .content-section-split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .quote-text {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title-line {
    font-size: 4rem;
  }

  .hero-title-line:nth-child(2) {
    font-size: 5rem;
  }

  .hero-title-year {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Override for Regards Croisés section - placed at end for priority */
.content-section.content-section-split.section-regards-croises {
  max-width: 1200px;
  padding: 2rem;
}

.content-section.content-section-split.section-regards-croises .split-image {
  padding: 0;
}

.content-section.content-section-split.section-regards-croises
  .split-image
  img {
  max-height: none;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .content-section.content-section-split.section-regards-croises {
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
  }
}

/* =========================================
   7. CUSTOM IMAGE LAYOUTS
   ========================================= */
.images-row {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.images-row .image-wrapper {
  width: 100%;
  height: 300px; /* Mobile height */
  position: relative;
}

.images-row .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .images-row {
    flex-direction: row;
  }

  .images-row .image-wrapper {
    flex: 1;
    height: 600px; /* Desktop height */
  }
}
