/* =====================================================
   Maison Éclat — Luxury Event Agency Paris
   Palette: Champagne Gold / Deep Navy / Ivory / Ebony
   ===================================================== */

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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim: #8C6E2F;
  --navy: #0D1B2A;
  --navy-mid: #162338;
  --ivory: #F8F4EE;
  --ivory-dark: #EDE8DF;
  --ebony: #1A1410;
  --text: #2C2416;
  --text-mid: #5A4F3E;
  --text-light: #9A8F7E;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', system-ui, sans-serif;

  --section-gap: 120px;
  --radius: 2px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--ebony);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--ebony);
  padding: 16px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 300;
  cursor: pointer;
  transition: var(--transition);
}
.btn-submit:hover {
  background: var(--gold-light);
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.section-eyebrow--light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
}
.section-title em { font-style: italic; color: var(--gold-dim); }
.section-title--light { color: var(--ivory); }
.section-title--light em { color: var(--gold-light); }

.section-subtitle {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.section-subtitle--light { color: rgba(248, 244, 238, 0.7); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(12px);
  padding: 16px 60px;
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.15);
}

.nav-logo { display: flex; flex-direction: column; gap: 1px; }
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: 0.05em;
  line-height: 1;
}
.nav-logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  font-weight: 300;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 244, 238, 0.75);
  font-weight: 300;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 9px 22px;
}
.nav-links .nav-cta:hover {
  background: var(--gold);
  color: var(--ebony);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ivory);
  transition: var(--transition);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--navy);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right var(--transition);
  border-left: 1px solid rgba(201, 168, 76, 0.2);
}
.mobile-menu.open { right: 0; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 24px; text-align: center; }
.mobile-link {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 244, 238, 0.8);
  font-weight: 300;
  transition: color var(--transition);
}
.mobile-link:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3CdefinitioNs%3E%3C/definitions%3E%3C/svg%3E"),
    linear-gradient(
      135deg,
      #0D1B2A 0%,
      #162338 30%,
      #1a2f4a 60%,
      #0D1B2A 100%
    );
  background-size: cover;
  background-position: center;
}

/* Golden decorative gradient overlay suggesting luxury Parisian atmosphere */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 60%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
}

/* Architectural line motif */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 119px,
      rgba(201, 168, 76, 0.03) 119px,
      rgba(201, 168, 76, 0.03) 120px
    );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 27, 42, 0.2) 0%,
    rgba(13, 27, 42, 0.4) 50%,
    rgba(13, 27, 42, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 20px;
}

.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: block;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.05;
  margin-bottom: 28px;
}
.hero-title em { font-style: italic; color: var(--gold-light); }

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(248, 244, 238, 0.7);
  line-height: 1.8;
  margin-bottom: 44px;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  color: rgba(248, 244, 238, 0.4);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ===== INTRO ===== */
.intro {
  padding: var(--section-gap) 0;
  background: var(--ivory);
}
.intro-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.intro-ornament {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 32px;
  display: block;
  letter-spacing: 0.5em;
}
.intro-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 24px;
}
.intro-heading em { font-style: italic; color: var(--gold-dim); }
.intro-text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 56px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.intro-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--ivory-dark);
  border-bottom: 1px solid var(--ivory-dark);
  padding: 36px 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 48px;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold-dim);
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--ivory-dark);
}

/* ===== SERVICES ===== */
.services {
  padding: var(--section-gap) 0;
  background: var(--ivory);
}

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

.service-card {
  position: relative;
  background: white;
  padding: 44px 36px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), transform var(--transition);
}
.service-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-4px);
  z-index: 1;
}

.service-card--featured {
  background: var(--navy);
  color: var(--ivory);
}
.service-card--featured .service-title { color: var(--ivory); }
.service-card--featured .service-desc { color: rgba(248, 244, 238, 0.65); }
.service-card--featured .service-list li { color: rgba(248, 244, 238, 0.6); border-color: rgba(248, 244, 238, 0.1); }
.service-card--featured .service-list li::before { color: var(--gold-light); }
.service-card--featured .service-icon { color: var(--gold-light); }
.service-card--featured:hover { border-bottom-color: var(--gold-light); }

.service-featured-label {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 4px 10px;
}

.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  color: var(--gold-dim);
}
.service-icon svg { width: 100%; height: 100%; }

.service-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.3;
}
.service-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}
.service-list { display: flex; flex-direction: column; gap: 8px; }
.service-list li {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 300;
  padding-left: 16px;
  position: relative;
  border-top: 1px solid var(--ivory-dark);
  padding-top: 8px;
}
.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  line-height: 1.8;
}

/* ===== VENUES ===== */
.venues {
  position: relative;
  padding: var(--section-gap) 0;
  background: var(--navy);
  overflow: hidden;
}
.venues-bg-text {
  position: absolute;
  bottom: -0.15em;
  right: -0.02em;
  font-family: var(--font-serif);
  font-size: 22vw;
  font-weight: 300;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.venues-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-bottom: 56px;
}

.venue-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: border-color var(--transition);
}
.venue-card:hover { border-color: rgba(201, 168, 76, 0.4); }
.venue-card:hover .venue-img { transform: scale(1.04); }

.venue-card--tall {
  grid-row: span 2;
  grid-column: 1;
}

.venue-img {
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.venue-card--tall .venue-img { height: 520px; }
.venue-card:not(.venue-card--tall) .venue-img { height: 230px; }

/* Sophisticated CSS gradients representing venue atmospheres */
.venue-img--palace {
  background: linear-gradient(160deg,
    #2a1f3d 0%,
    #1a1428 40%,
    #0d1020 70%,
    #1a1010 100%
  );
  position: relative;
}
.venue-img--palace::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 30%, rgba(180, 140, 60, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, transparent 40%, rgba(10,8,6,0.6) 100%);
}
.venue-img--palace::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 100px;
  background: linear-gradient(to top, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
  clip-path: polygon(30% 100%, 70% 100%, 80% 50%, 90% 40%, 100% 0, 50% 10%, 0 0, 10% 40%, 20% 50%);
}

.venue-img--rooftop {
  background: linear-gradient(180deg,
    #0a0f1a 0%,
    #0d1525 35%,
    #162338 60%,
    #1a1008 100%
  );
  position: relative;
}
.venue-img--rooftop::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 30% at 50% 75%, rgba(201, 168, 76, 0.2) 0%, transparent 60%),
    radial-gradient(circle 3px at 20% 20%, rgba(255,255,220,0.8), transparent),
    radial-gradient(circle 2px at 40% 15%, rgba(255,255,220,0.6), transparent),
    radial-gradient(circle 2px at 70% 25%, rgba(255,255,220,0.5), transparent),
    radial-gradient(circle 2px at 85% 10%, rgba(255,255,220,0.7), transparent);
}

.venue-img--gallery {
  background: linear-gradient(135deg,
    #f0ece4 0%,
    #e8e0d0 50%,
    #c8c0a8 100%
  );
  position: relative;
}
.venue-img--gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(20, 16, 10, 0.35) 100%),
    repeating-linear-gradient(90deg, transparent 0, transparent 60px, rgba(180,160,120,0.08) 60px, rgba(180,160,120,0.08) 61px);
}

.venue-img--boat {
  background: linear-gradient(180deg,
    #0a1520 0%,
    #0d2030 50%,
    #0a1520 100%
  );
  position: relative;
}
.venue-img--boat::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 20% at 50% 60%, rgba(201, 168, 76, 0.12) 0%, transparent 100%),
    linear-gradient(180deg, transparent 45%, rgba(0,10,20,0.5) 100%);
}

.venue-img--garden {
  background: linear-gradient(160deg,
    #1a2a14 0%,
    #243820 40%,
    #1c2c18 70%,
    #0e1a0c 100%
  );
  position: relative;
}
.venue-img--garden::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 30% at 50% 80%, rgba(255,255,200,0.08) 0%, transparent 70%),
    linear-gradient(180deg, rgba(0,0,0,0.1) 0%, transparent 40%, rgba(0,0,0,0.4) 100%);
}

.venue-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(10,8,6,0.9) 0%, transparent 100%);
}

.venue-type {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.venue-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 6px;
}
.venue-desc {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(248, 244, 238, 0.6);
  line-height: 1.6;
  margin-bottom: 10px;
  display: none;
}
.venue-card--tall .venue-desc { display: block; }
.venue-capacity {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: rgba(201, 168, 76, 0.7);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 3px 10px;
}

.venues-cta {
  text-align: center;
}
.venues-cta p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(248, 244, 238, 0.5);
  margin-bottom: 20px;
}

/* ===== ACTIVITIES ===== */
.activities {
  padding: var(--section-gap) 0;
  background: var(--ivory);
}

.activities-tabs {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--ivory-dark);
}
.tab-btn {
  padding: 12px 28px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
  font-weight: 300;
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.tab-btn:hover { color: var(--text); }
.tab-btn--active { color: var(--gold-dim); }
.tab-btn--active::after { transform: scaleX(1); }

.tab-panel { display: none; }
.tab-panel--active { display: block; }

.activity-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.activity-item {
  display: flex;
  gap: 28px;
  padding: 36px;
  background: white;
  transition: background var(--transition);
}
.activity-item:hover { background: var(--ivory-dark); }

.activity-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--ivory-dark);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  text-align: right;
}
.activity-body h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}
.activity-body p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
}

.activities-footer {
  text-align: center;
  margin-top: 56px;
}
.activities-note {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 24px;
}

/* ===== PROCESS ===== */
.process {
  position: relative;
  padding: var(--section-gap) 0;
  overflow: hidden;
}
.process-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.process-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 100% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process-step {
  position: relative;
  padding: 0 40px 0 0;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.12);
  line-height: 1;
  margin-bottom: 24px;
  display: block;
}
.step-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 14px;
}
.step-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(248, 244, 238, 0.55);
  line-height: 1.8;
}
.step-connector {
  position: absolute;
  top: 28px;
  right: 0;
  width: 32px;
  height: 1px;
  background: linear-gradient(to right, rgba(201, 168, 76, 0.4), rgba(201, 168, 76, 0.1));
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--section-gap) 0;
  background: var(--ivory-dark);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.testimonial-card {
  background: white;
  padding: 44px 40px;
  position: relative;
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card--featured {
  background: var(--navy);
  color: var(--ivory);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.6;
  margin-bottom: 24px;
  display: block;
}
.testimonial-card--featured .testimonial-quote { opacity: 0.4; }

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 36px;
}
.testimonial-card--featured .testimonial-text { color: rgba(248, 244, 238, 0.7); }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-initials {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 400;
  color: white;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.testimonial-card--featured .testimonial-initials { background: var(--gold); color: var(--ebony); }
.testimonial-name {
  display: block;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.04em;
}
.testimonial-card--featured .testimonial-name { color: var(--ivory); }
.testimonial-detail {
  display: block;
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.testimonial-card--featured .testimonial-detail { color: rgba(248,244,238,0.4); }

/* ===== CONTACT ===== */
.contact {
  position: relative;
  padding: var(--section-gap) 0;
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, var(--ebony) 0%, #14100e 60%, var(--navy) 100%);
}
.contact-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 0% 100%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
}

.contact-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 24px;
}
.contact-title em { font-style: italic; color: var(--gold-light); }

.contact-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(248, 244, 238, 0.6);
  line-height: 1.85;
  margin-bottom: 48px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; flex-direction: column; gap: 4px; }
.contact-detail-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-detail-value {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(248, 244, 238, 0.75);
}

.contact-form-wrap {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 52px 48px;
  backdrop-filter: blur(8px);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 244, 238, 0.4);
  font-weight: 300;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  color: var(--ivory);
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(248, 244, 238, 0.2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(201, 168, 76, 0.5); }

.form-group select option { background: var(--navy); color: var(--ivory); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-note {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(248, 244, 238, 0.3);
  text-align: center;
  line-height: 1.6;
  margin-top: -4px;
}

.form-success {
  text-align: center;
  padding: 60px 20px;
}
.success-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 16px;
}
.form-success p {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(248, 244, 238, 0.6);
  line-height: 1.75;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ebony);
  padding: 72px 0 40px;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-inner {
  display: flex;
  gap: 80px;
  margin-bottom: 60px;
  align-items: flex-start;
}
.footer-brand { flex-shrink: 0; }
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: 0.05em;
  line-height: 1;
}
.footer-logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 20px;
  margin-top: 2px;
  display: block;
}
.footer-tagline {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(248, 244, 238, 0.3);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 60px;
  flex: 1;
  justify-content: flex-end;
}
.footer-col h4 {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 300;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(248, 244, 238, 0.35);
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom p {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(248, 244, 238, 0.2);
  letter-spacing: 0.05em;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --section-gap: 90px; }
  .container { padding: 0 28px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .venues-grid { grid-template-columns: 1fr 1fr; }
  .venue-card--tall { grid-row: span 1; }
  .venue-card--tall .venue-img { height: 280px; }
  .venue-card:not(.venue-card--tall) .venue-img { height: 230px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 48px; }
  .step-connector { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav { padding: 20px 28px; }
  .nav.scrolled { padding: 14px 28px; }

  .hero-subtitle br { display: none; }

  .intro-stats { flex-direction: column; gap: 24px; }
  .stat-divider { width: 40px; height: 1px; }

  .services-grid { grid-template-columns: 1fr; }
  .venues-grid { grid-template-columns: 1fr; }
  .venue-card--tall .venue-img,
  .venue-card:not(.venue-card--tall) .venue-img { height: 240px; }
  .venue-card--tall .venue-desc { display: block; }

  .activities-tabs { flex-wrap: wrap; gap: 0; }
  .tab-btn { font-size: 0.68rem; padding: 10px 16px; }
  .activity-items { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 36px 28px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-links { justify-content: flex-start; flex-wrap: wrap; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; text-align: center; }
  .stat { padding: 0 28px; }
}
