/* ============================================
   C3LLAR — Vin & Hip Hop · Burgundy Trip
   ============================================ */

@font-face {
  font-family: 'Albertus';
  src: url('fonts/AlbertusMTStd-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plantin';
  src: url('fonts/Plantin Std Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #0a0a0c;
  --dark: #101218;
  --dark-2: #171a22;
  --dark-3: #23262f;
  --navy: #16243a;
  --navy-deep: #0e1828;
  --cream: #f3ede3;
  --cream-dim: #cdc6ba;
  --wine: #b0414f;
  --wine-light: #d06f7b;
  --wine-deep: #7d2b36;
  --white: #fafafa;
  --font-display: 'Albertus', Georgia, serif;
  --font-subtitle: 'Plantin', Georgia, serif;
  --font-body: 'Plantin', Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background: var(--wine);
  color: var(--white);
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   Preloader
   ============================================ */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
}

.preloader.done {
  opacity: 0;
}

.preloader.done .preloader-logo-fill {
  opacity: 0;
  transition: opacity 0.8s ease-in;
}

.preloader.done .preloader-logo-img {
  filter: blur(0);
}

.preloader-inner {
  position: absolute;
  inset: 0;
  animation: preloaderFadeIn 0.8s ease-out forwards;
}

.preloader-logo-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url('assets/Logo_C3llar-2.svg');
  mask-image: url('assets/Logo_C3llar-2.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  transform-origin: center center;
  will-change: transform, opacity;
}

.preloader-logo-img {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-first.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(4px);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
}

@keyframes preloaderFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
  background: rgba(10, 10, 12, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 18px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-links a {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--wine-light);
}

.nav-cta {
  color: var(--wine-light) !important;
  border: 1px solid var(--wine);
  padding: 0.5rem 1.2rem;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--wine);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--cream);
  position: absolute;
  left: 0;
  transition: all 0.3s;
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; }
.nav-toggle span:nth-child(3) { top: 100%; }

.nav-toggle.active span:nth-child(1) { top: 50%; transform: rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { top: 50%; transform: rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.mobile-menu-links a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
  transition: color 0.3s;
}

.mobile-menu-links a:hover {
  color: var(--wine-light);
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-first-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
  will-change: opacity;
}

.hero-video {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(10, 10, 12, 0);
  pointer-events: none;
  transition: none;
}

/* Intro scrolls OVER the pinned hero */
.intro {
  position: relative;
  z-index: 10;
  margin-top: -100vh;
  background: linear-gradient(to bottom, transparent 0%, var(--black) 38%);
  padding-top: 60vh;
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding-bottom: 6vh;
  will-change: transform;
}

.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.3rem;
  padding-left: 0.4em;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 1s ease-out 0.4s, transform 1s ease-out 0.4s;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.hero-content.visible .hero-eyebrow {
  opacity: 1;
  transform: translateY(0);
}

.hero-invite {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  display: none;
}

.hero-invite.active { display: block; }

.hero-content.visible .hero-invite {
  opacity: 1;
  transform: translateY(0);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 0.86;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-title-line {
  display: block;
  font-size: clamp(3rem, 11vw, 9rem);
  letter-spacing: 0.05em;
  color: var(--cream);
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-shadow: 0 4px 60px rgba(0,0,0,0.6), 0 0 120px rgba(0,0,0,0.35);
}

.hero-content.visible .hero-title-line {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.hero-content.visible .hero-title-line:nth-child(2) {
  transition-delay: 0.7s;
}

.hero-details-top {
  margin-bottom: 2rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.28em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.hero-content.visible .hero-details-top {
  opacity: 1;
  transform: translateY(0);
}

.hero-subtitle {
  font-family: var(--font-subtitle);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream-dim);
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 1s ease-out 1.2s, transform 1s ease-out 1.2s;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-content.visible .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.hero-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--cream-dim);
  opacity: 0;
  transition: opacity 0.8s ease-out 0.8s;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-content.visible .hero-details {
  opacity: 1;
}

.hero-divider {
  width: 40px;
  height: 1px;
  background: var(--wine-light);
}

.scroll-indicator {
  position: absolute;
  z-index: 7;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.6s ease-out 1s;
}

.scroll-indicator.visible { opacity: 1; }

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--wine-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   Sections Common
   ============================================ */

.section {
  padding: 8rem 0;
  position: relative;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wine-light);
  margin-bottom: 2rem;
}

.section-tag.light {
  color: var(--wine-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section-title.light { color: var(--white); }

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--wine-light);
  margin-bottom: 1.5rem;
}

.section-body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--cream-dim);
  margin-bottom: 1.5rem;
  max-width: 540px;
}

.section-body.light { color: rgba(255, 255, 255, 0.82); }

.section-body.highlight {
  color: var(--wine-light);
  font-style: italic;
  font-family: var(--font-subtitle);
  font-size: 1.3rem;
}

.highlight-light {
  color: var(--cream) !important;
  font-style: italic;
  font-family: var(--font-subtitle);
}

.domaine-line {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  line-height: 2.1;
  color: var(--wine-light);
  margin-top: 1.5rem;
  max-width: 540px;
}

/* ============================================
   Section Light (alternating)
   ============================================ */

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

.section-light .section-title { color: var(--navy-deep); }

.section-light .section-body,
.section-light .partner-desc,
.section-light .section-label,
.section-light .domaines-intro {
  color: #4a4640;
}

.section-light .section-tag { color: var(--wine-deep); }

/* ============================================
   Split Layout
   ============================================ */

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

/* ============================================
   Intro
   ============================================ */

.intro .split-layout { align-items: start; }

/* ============================================
   Nexus / Parallax
   ============================================ */

.nexus {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.parallax-image {
  position: absolute;
  inset: -20% 0;
  background: var(--navy-deep);
}

.parallax-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  will-change: transform;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--black) 0%,
    rgba(14, 24, 40, 0.78) 25%,
    rgba(14, 24, 40, 0.72) 50%,
    rgba(14, 24, 40, 0.8) 75%,
    var(--black) 100%
  );
}

.nexus-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.nexus-moments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.nexus-moment-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(208, 111, 123, 0.4);
}

.nexus-moment .section-body { margin-bottom: 0; }

/* ============================================
   MC Solaar
   ============================================ */

.solaar {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.solaar-bg-parallax {
  position: absolute;
  inset: -8% 0;
}

.solaar-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
  will-change: transform;
}

.solaar-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,12,0.95) 0%, rgba(10,10,12,0.8) 45%, rgba(10,10,12,0.35) 100%),
    linear-gradient(to bottom, var(--black) 0%, transparent 30%, transparent 70%, var(--black) 100%);
}

.solaar-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.solaar-logo {
  height: 92px;
  width: auto;
  margin-bottom: 1.5rem;
}

.solaar-name {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 2.5rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.solaar-bio { margin-top: 1rem; }

/* ============================================
   Itinerary / Days
   ============================================ */

.journey .container.day-block { margin-top: 5rem; }
.journey > .container:first-child { margin-bottom: 1rem; }

.day-block .split-layout { align-items: center; }

.day-img-frame {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.45);
}

.day-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.day-img-frame:hover img { transform: scale(1.04); }

.day-head {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.day-date {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--wine-light);
}

.day-num {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: 0.6;
}

.day-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.05;
}

.day-schedule {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.day-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.5rem;
  align-items: baseline;
  padding-top: 1.3rem;
  border-top: 1px solid var(--dark-3);
}

.day-time {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine-light);
  padding-top: 0.15rem;
}

.day-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cream-dim);
}

/* ============================================
   Retreat — Depth Stack
   ============================================ */

.retreat-depth-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
}

.retreat-depth-img {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  will-change: transform;
}

.retreat-depth-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.depth-1 { top: 0; left: 4%; width: 74%; height: 58%; z-index: 1; }
.depth-2 { bottom: 6%; right: 0; width: 58%; height: 46%; z-index: 2; }
.depth-3 { bottom: 0; left: 0; width: 40%; height: 34%; z-index: 3; }

/* ============================================
   Tables
   ============================================ */

.tables { padding-top: 0; }

.tables-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: 5rem;
}

.tables-hero-img {
  position: absolute;
  top: -8%;
  left: 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  object-position: center center;
  will-change: transform;
}

.tables-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,12,0.3) 0%, rgba(10,10,12,0.2) 50%, rgba(10,10,12,0.92) 100%);
}

.tables-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 4rem;
  max-width: 640px;
}

.tables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.table-card {
  background: var(--dark);
  border: 1px solid var(--dark-3);
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s;
}

.table-card:hover {
  border-color: rgba(176, 65, 79, 0.5);
  transform: translateY(-4px);
}

.table-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.table-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.table-card-body { padding: 1.8rem 2rem 2rem; }

.table-card.text-card {
  display: flex;
  align-items: center;
  min-height: 160px;
  background: var(--navy);
}

.table-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.table-region {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine-light);
}

/* ============================================
   Domaines
   ============================================ */

.domaines-intro {
  max-width: 640px;
  margin-bottom: 3rem;
}

.domaines-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(125, 43, 54, 0.2);
}

.domaines-list li {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  font-weight: 300;
  color: var(--navy-deep);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 1.4rem 1rem 1.4rem 0;
  border-bottom: 1px solid rgba(125, 43, 54, 0.2);
  transition: color 0.3s, padding-left 0.3s;
}

.domaines-list li:hover {
  color: var(--wine);
  padding-left: 0.6rem;
}

/* ============================================
   Investment / At a Glance
   ============================================ */

.investment {
  background: var(--navy-deep);
  text-align: center;
  padding: 8rem 0;
}

.investment-content { max-width: 720px; }

.investment .section-title { margin-bottom: 1rem; }

.investment-grid { margin: 2.5rem 0 3.5rem; }

.investment-list {
  list-style: none;
  text-align: left;
  max-width: 560px;
  margin: 0 auto;
}

.investment-list li {
  font-size: 0.98rem;
  color: var(--cream-dim);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-left: 1.5rem;
  position: relative;
}

.investment-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--wine-light);
  font-size: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
}

.investment-price { margin-bottom: 2rem; }

.investment-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--wine-light);
  margin-bottom: 0.5rem;
}

.price {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.price-couple {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: 0.04em;
  margin-top: 1.5rem;
}

.price-note {
  font-size: 1rem;
  color: var(--cream-dim);
  margin-top: 0.25rem;
}

.limited {
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  color: var(--wine-light);
  margin-top: 2rem;
}

/* ============================================
   RSVP Form
   ============================================ */

.rsvp { padding: 8rem 0; }
.rsvp .container { max-width: 700px; }
.rsvp-intro { margin-bottom: 3rem; }

.rsvp-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--dark-3);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  padding: 0.75rem 0;
  transition: border-color 0.3s;
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--wine); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(205, 198, 186, 0.3); }

.booking-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.booking-option { cursor: pointer; }
.booking-option input[type="radio"] { display: none; }

.booking-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1.5rem 1rem;
  border: 1px solid var(--dark-3);
  background: var(--dark);
  transition: border-color 0.3s, background 0.3s;
}

.booking-option input:checked + .booking-card {
  border-color: var(--wine);
  background: rgba(176, 65, 79, 0.1);
}

.booking-type {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.booking-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.03em;
}

.booking-label {
  font-size: 0.75rem;
  color: var(--cream-dim);
  opacity: 0.6;
}

.checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--cream-dim) !important;
  line-height: 1.5 !important;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
  accent-color: var(--wine);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  border: 1px solid var(--wine);
  color: var(--wine-light);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 1rem;
  align-self: flex-start;
}

.btn-submit:hover {
  background: var(--wine);
  color: var(--white);
}

.btn-submit svg { transition: transform 0.3s; }
.btn-submit:hover svg { transform: translateX(4px); }

/* Form Success */
.form-success {
  display: none;
  text-align: center;
  padding: 4rem 0;
}

.form-success.visible { display: block; }

.success-icon {
  width: 60px;
  height: 60px;
  border: 1px solid var(--wine);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--wine-light);
  margin: 0 auto 2rem;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-success p { color: var(--cream-dim); font-size: 0.95rem; }
.success-contact { margin-top: 1.5rem; }

.success-contact a {
  color: var(--wine-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  padding: 4rem 0;
  border-top: 1px solid var(--dark-3);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand { display: flex; align-items: center; }
.footer-logo-img { height: 16px; width: auto; }
.footer-links { display: flex; gap: 2rem; }

.footer-links a {
  font-size: 0.8rem;
  color: var(--cream-dim);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--wine-light); }

.footer-copy {
  font-size: 0.75rem;
  color: var(--cream-dim);
  opacity: 0.5;
  width: 100%;
  text-align: center;
  margin-top: 1rem;
}

/* ============================================
   Scroll Reveal Animations
   ============================================ */

.reveal-text {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-text.revealed { opacity: 1; transform: translateY(0); }

.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.revealed { opacity: 1; transform: translateY(0); }

.section-tag {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section-tag.revealed { opacity: 1; transform: translateX(0); }

.reveal-up:nth-child(2) { transition-delay: 0.1s; }
.reveal-up:nth-child(3) { transition-delay: 0.2s; }
.reveal-up:nth-child(4) { transition-delay: 0.3s; }

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .split-layout { grid-template-columns: 1fr; gap: 3rem; }
  .split-layout.reverse { direction: ltr; }
  .section { padding: 6rem 0; }
  .nexus-moments { grid-template-columns: 1fr; gap: 2rem; }
  .tables-grid { grid-template-columns: repeat(2, 1fr); }
  .domaines-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

@media (max-width: 768px) {
  .hero-title-line { letter-spacing: 0.06em; }

  .hero-details { flex-direction: column; gap: 0.75rem; }
  .hero-divider { display: none; }

  .day-img-frame { aspect-ratio: 4/3; }
  .day-row { grid-template-columns: 1fr; gap: 0.4rem; }

  .tables-grid { grid-template-columns: 1fr; }
  .tables-hero { min-height: 65vh; }

  .form-row { grid-template-columns: 1fr; }

  .section { padding: 5rem 0; }
  .container { padding: 0 1.5rem; }

  .footer-content { flex-direction: column; text-align: center; }
  .footer-links { flex-direction: column; gap: 0.75rem; }
}

@media (max-width: 480px) {
  .hero-title-line { font-size: 3.2rem; }
  .section-title { font-size: 2rem; }
  .solaar-name { font-size: 2.6rem; }
  .domaines-list { grid-template-columns: 1fr; }
}
