/* ==========================================================================
   WHITE ORCHARD MARQUEE — Luxury Design System v2
   Editorial Aesthetic: Vincenzo Dascanio × Calder Clark
   Palette: Jet Black · Warm White · Metallic Gold
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Montserrat:wght@300;400;500;600&display=swap');

/* ── TOKENS ──────────────────────────────────────────────────────────────── */
:root {
  --black:              #080808;
  --charcoal:           #111111;
  --charcoal-mid:       #1A1A1A;
  --white:              #FAFAF8;
  --cream:              #F2ECE3;
  --cream-deep:         #E6DDD0;
  --gold:               #C5A059;
  --gold-bright:        #D4AF37;
  --gold-pale:          rgba(212, 175, 55, 0.18);
  --text:               #0C0C0C;
  --text-mid:           #2E2E2E;
  --text-muted:         #565656;
  --text-on-dark:       #F0EBE2;
  --text-on-dark-muted: #A79F94;
  --border:             rgba(12,12,12,0.09);
  --border-gold:        rgba(197,160,89,0.30);
  --border-dark:        rgba(240,235,226,0.10);
  --font-display:       'Cormorant Garamond', Georgia, serif;
  --font-body:          'Montserrat', -apple-system, sans-serif;
  --s1: 0.5rem; --s2: 1rem; --s3: 2rem;
  --s4: 4rem;   --s5: 6rem; --s6: 9rem;
  --container: 1300px;
}

/* ── RESET ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── UTILITY ─────────────────────────────────────────────────────────────── */
.container  { max-width: var(--container); margin: 0 auto; padding: 0 3rem; }
.center     { text-align: center; margin-left: auto; margin-right: auto; }
.narrow     { max-width: 720px; }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.30s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ── EYEBROW ─────────────────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}
.eyebrow-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
.eyebrow-centered::before,
.eyebrow-centered::after {
  content: '';
  flex: 0 0 48px;
  height: 0.5px;
  background: var(--gold);
  opacity: 0.6;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 300; }
h1 { font-size: clamp(3.2rem, 6vw, 6.5rem); line-height: 0.97; letter-spacing: -0.015em; }
h2 { font-size: clamp(2.2rem, 3.8vw, 3.8rem); line-height: 1.06; }
h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); line-height: 1.2; }
em { font-style: italic; }

/* ── GOLD RULE ───────────────────────────────────────────────────────────── */
.gold-rule {
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
  margin: 3rem 0;
}
.gold-rule::before, .gold-rule::after {
  content: ''; flex: 0 0 80px; height: 0.5px; background: var(--gold); opacity: 0.5;
}
.gold-diamond {
  width: 7px; height: 7px;
  border: 0.5px solid var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.7em;
  padding: 1.05em 2.6em;
  font-family: var(--font-body); font-size: 10px;
  font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase;
  border: 0.5px solid transparent;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
}
.btn-gold  { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); transform: translateY(-2px); }
.btn-dark  { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: var(--charcoal-mid); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--text); color: var(--text); }
.btn-outline:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-outline-white { background: transparent; border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-row { display: flex; gap: 1.25rem; flex-wrap: wrap; align-items: center; }

/* ── HEADER ──────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 2rem 0;
  transition: background 0.5s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.site-header.scrolled {
  background: rgba(250,250,248,0.97);
  box-shadow: 0 0.5px 0 var(--border);
  padding: 1rem 0;
  backdrop-filter: blur(10px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }

/* wordmark */
.wordmark {
  display: flex; align-items: center; gap: 0.9rem;
  font-family: var(--font-display); font-style: italic;
  font-size: 1.6rem; line-height: 1.05; letter-spacing: 0.01em;
  color: var(--white); transition: color 0.4s ease;
  flex-shrink: 0; padding-right: 1.5rem;
}
.site-header.scrolled .wordmark { color: var(--black); }
.wordmark img {
  height: 68px; width: auto; flex-shrink: 0;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease, height 0.35s ease;
}
.site-header.scrolled .wordmark img { filter: none; height: 56px; }
.wordmark span { display: flex; flex-direction: column; }
.wordmark small {
  display: block; font-family: var(--font-body); font-style: normal;
  font-size: 8px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-top: 0.4rem;
  transition: color 0.4s ease;
}
.site-header.scrolled .wordmark small { color: var(--text-muted); }
@media (max-width: 520px) {
  .wordmark { font-size: 1.3rem; gap: 0.6rem; }
  .wordmark img { height: 52px; }
  .site-header.scrolled .wordmark img { height: 46px; }
}

/* nav */
.main-nav { display: flex; align-items: center; gap: 2.5rem; margin-left: auto; }
.main-nav ul { display: flex; gap: 2rem; }
.main-nav a {
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative; padding-bottom: 3px;
  transition: color 0.3s ease;
}
.main-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 0.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--gold); }
.site-header.scrolled .main-nav a { color: var(--text-mid); }
.site-header.scrolled .main-nav a:hover,
.site-header.scrolled .main-nav a.active { color: var(--gold); }
.nav-cta { margin-left: 1rem; }

/* mobile toggle */
.nav-toggle { display: none; width: 26px; height: 18px; position: relative; z-index: 110; }
.nav-toggle span { position: absolute; left: 0; right: 0; height: 1px; background: var(--white); transition: all 0.3s ease; }
.site-header.scrolled .nav-toggle span { background: var(--black); }
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 8px; }
.nav-toggle span:nth-child(3) { top: 16px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1100px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 0; background: var(--black);
    flex-direction: column; justify-content: center; align-items: center;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 2.25rem; text-align: center; }
  .main-nav a { color: rgba(255,255,255,0.85) !important; font-size: 13px; letter-spacing: 0.3em; }
  .nav-cta { margin-left: 0; margin-top: 2.5rem; }
}

/* ── PAGE HERO (interior pages) ──────────────────────────────────────────── */
.page-hero {
  position: relative; padding: 11rem 0 6rem;
  background: var(--charcoal); color: var(--white); text-align: center; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(197,160,89,0.08), transparent 55%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--gold); margin-bottom: 1.75rem; }
.page-hero h1 { color: var(--white); }
.page-hero > .container > p { color: var(--text-on-dark-muted); max-width: 540px; margin: 1.75rem auto 0; font-size: 0.82rem; line-height: 1.9; }

/* ── HERO (homepage) ─────────────────────────────────────────────────────── */
.hero {
  position: relative; height: 100svh; min-height: 680px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; background: var(--charcoal);
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.52) 55%, rgba(0,0,0,0.70) 100%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 920px; padding: 0 2rem;
  animation: heroFade 1.4s ease-out both;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content .eyebrow { color: rgba(197,160,89,0.9); margin-bottom: 2.25rem; }
.hero h1 {
  color: var(--white);
  font-size: clamp(3.8rem, 7.5vw, 8.5rem);
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.hero h1 .line-italic { font-style: italic; color: rgba(255,255,255,0.82); display: block; }
.hero-sub {
  margin: 2.75rem auto;
  max-width: 500px;
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem; letter-spacing: 0.07em; line-height: 2;
}
.hero .btn-row { justify-content: center; }
.hero-scroll {
  position: absolute; bottom: 2.75rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-body); font-size: 8.5px; letter-spacing: 0.32em;
  text-transform: uppercase; color: rgba(255,255,255,0.42); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.85rem;
}
.hero-scroll::after {
  content: ''; width: 0.5px; height: 44px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollLine 2.2s ease infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── MANIFESTO ───────────────────────────────────────────────────────────── */
.manifesto { padding: var(--s5) 0; background: var(--white); }
.manifesto-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.manifesto-text {
  font-family: var(--font-display); font-weight: 300; font-style: italic;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem); line-height: 1.55; color: var(--text-mid);
}
.manifesto-text strong { font-weight: 500; font-style: normal; color: var(--text); }

/* ── SPLIT SECTIONS (full-bleed) ─────────────────────────────────────────── */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 680px;
}
.split.split-tall { min-height: 780px; }
.split-image { position: relative; overflow: hidden; background: var(--charcoal-mid); }
.split-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
}
.split-image:hover img { transform: scale(1.04); }
.split-image-tag {
  position: absolute; bottom: 2rem; left: 2rem;
  font-family: var(--font-body); font-size: 8.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.42);
  border: 0.5px solid rgba(255,255,255,0.18); padding: 0.35em 0.85em;
}
.split-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 6rem; background: var(--white);
}
.split-content.on-dark { background: var(--charcoal); }
.split-content.on-dark h2 { color: var(--white); }
.split-content.on-dark p  { color: var(--text-on-dark-muted); }
.split-content.on-dark .split-tags span { border-color: var(--border-dark); color: var(--text-on-dark-muted); }
.split-content .eyebrow { margin-bottom: 1.75rem; }
.split-content h2 { color: var(--text); margin-bottom: 1.75rem; }
.split-content p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.95; max-width: 430px; margin-bottom: 1.1rem; }
.split-content .btn-row { margin-top: 2.75rem; }
.split-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.split-tags span {
  font-size: 8.5px; letter-spacing: 0.18em; text-transform: uppercase;
  border: 0.5px solid var(--border); color: var(--text-muted);
  padding: 0.45em 1em;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split-image { min-height: 380px; }
  .split-content { padding: 3.5rem 2.5rem; }
  .split-content p { max-width: 100%; }
}

/* ── STATS STRIP ─────────────────────────────────────────────────────────── */
.stats-strip {
  background: var(--charcoal);
  border-top: 0.5px solid rgba(197,160,89,0.2);
  border-bottom: 0.5px solid rgba(197,160,89,0.2);
  padding: 4.5rem 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); text-align: center; gap: 2rem; }
.stat-num {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2.8rem,4vw,4rem); color: var(--gold);
  display: block; line-height: 1;
}
.stat-label {
  display: block; font-size: 9px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--text-on-dark-muted); margin-top: 0.9rem;
}
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2,1fr); row-gap: 3rem; } }

/* ── HALL CARDS ──────────────────────────────────────────────────────────── */
.halls-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 0.5px solid var(--border); border-left: 0.5px solid var(--border);
  margin-top: var(--s4);
}
.hall-card {
  border-right: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border);
  overflow: hidden; transition: box-shadow 0.4s ease;
}
.hall-card:hover { box-shadow: 0 24px 64px -24px rgba(0,0,0,0.14); }
.hall-image { position: relative; overflow: hidden; background: var(--cream); }
.hall-image { aspect-ratio: 3/4; }
.hall-image img { width:100%; height:100%; object-fit: cover; transition: transform 0.8s ease; }
.hall-card:hover .hall-image img { transform: scale(1.055); }
.hall-body { padding: 2.25rem; }
.hall-cap { font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.hall-body h3 { margin: 0.6rem 0 0.9rem; }
.hall-body > p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 1.5rem; }
.hall-feats li {
  font-size: 0.78rem; color: var(--text-mid); padding: 0.45em 0 0.45em 1.1rem;
  border-bottom: 0.5px dashed var(--border); position: relative;
}
.hall-feats li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 0.55rem; top: 0.6em; }
.hall-body .btn { margin-top: 2rem; }
@media (max-width: 900px) { .halls-grid { grid-template-columns: 1fr; } }

/* ── SERVICES GRID ───────────────────────────────────────────────────────── */
.services-header { margin-bottom: var(--s4); }
.services-header h2 { margin-top: 1.25rem; }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 0.5px solid var(--border); border-left: 0.5px solid var(--border);
}
.service-card {
  border-right: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border);
  padding: 3.25rem 2.75rem;
  transition: background 0.45s ease;
}
.service-card:hover { background: var(--cream); }
.service-no {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: 3.25rem; color: var(--cream-deep); line-height: 1;
  margin-bottom: 1.75rem; transition: color 0.4s ease; display: block;
}
.service-card:hover .service-no { color: rgba(197,160,89,0.35); }
.service-card h3 { font-size: 1.3rem; margin-bottom: 0.9rem; }
.service-card > p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.95; }
.service-details { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 0.45rem; }
.service-details span {
  font-size: 8px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted); padding: 0.35em 0.85em;
  border: 0.5px solid var(--border);
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* ── LOOKBOOK ────────────────────────────────────────────────────────────── */
.lookbook-header { margin-bottom: 3.5rem; }
.lookbook-header h2 { margin-top: 1.25rem; }
.lookbook-tabs {
  display: flex; border-bottom: 0.5px solid var(--border);
  margin-bottom: 3rem; overflow-x: auto;
}
.lookbook-tab {
  font-size: 10px; font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--text-muted); padding: 1.1rem 1.75rem; background: none;
  position: relative; white-space: nowrap; transition: color 0.3s ease;
}
.lookbook-tab::after {
  content: ''; position: absolute; bottom: -0.5px; left: 0; right: 0;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s ease;
}
.lookbook-tab:hover, .lookbook-tab.active { color: var(--text); }
.lookbook-tab.active::after { transform: scaleX(1); }
.lookbook-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  grid-auto-rows: 290px; gap: 1rem;
}
.lb-item {
  position: relative; overflow: hidden; background: var(--cream-deep); cursor: pointer;
  transition: opacity 0.4s ease;
}
.lb-item.hidden { display: none; }
.lb-item img { width:100%; height:100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94); }
.lb-item:hover img { transform: scale(1.06); }
.lb-item.tall { grid-row: span 2; }
.lb-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1.5rem 1.25rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.62));
  font-size: 8.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.lb-item:hover .lb-label { opacity: 1; transform: translateY(0); }
.lb-ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem;
}
.lb-ph-line { width: 40px; height: 0.5px; background: var(--border); }
.lb-ph-txt { font-size: 8px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); }
@media (max-width: 900px) { .lookbook-grid { grid-template-columns: repeat(2,1fr); } .lb-item.tall { grid-row: span 1; } }
@media (max-width: 560px) { .lookbook-grid { grid-template-columns: 1fr; } }

/* ── TESTIMONIAL ─────────────────────────────────────────────────────────── */
.testimonial-wrap { max-width: 760px; margin: 0 auto; text-align: center; }
.testimonial-mark {
  font-family: var(--font-display); font-style: italic; font-size: 6rem;
  color: var(--gold); opacity: 0.3; line-height: 0.6; display: block; margin-bottom: 0.5rem;
}
.testimonial-quote {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(1.4rem, 2.6vw, 2rem); color: var(--text); line-height: 1.58; margin: 1.5rem 0;
}
.testimonial-cite { font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); font-weight: 500; }

/* ── CTA BAND ────────────────────────────────────────────────────────────── */
.cta-band { position: relative; padding: var(--s6) 0; text-align: center; overflow: hidden; background: var(--charcoal); }
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(197,160,89,0.10), transparent 60%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 1.25rem; }
.cta-band p { color: var(--text-on-dark-muted); max-width: 420px; margin: 0 auto 3rem; font-size: 0.8rem; line-height: 1.95; }
.cta-band .btn-row { justify-content: center; }

/* ── SECTION WRAPPERS ────────────────────────────────────────────────────── */
.section-lg   { padding: var(--s6) 0; }
.section-md   { padding: var(--s5) 0; }
.section-sm   { padding: var(--s4) 0; }
.bg-cream     { background: var(--cream); }
.bg-dark      { background: var(--charcoal); }
.section-header { margin-bottom: var(--s3); }
.section-header .eyebrow { margin-bottom: 1.25rem; }

/* ── FORM (contact page) ─────────────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem var(--s3); }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 8.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 300;
  background: transparent; border: none; border-bottom: 0.5px solid var(--border);
  padding: 0.75em 0.1em; color: var(--text); transition: border-color 0.3s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-bottom-color: var(--gold);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-actions { grid-column: 1 / -1; display: flex; gap: 1.25rem; flex-wrap: wrap; align-items: center; margin-top: 1rem; }
.form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 1.5rem; }
.form-msg { font-size: 0.85rem; padding: 0.9em 1.2em; border-left: 1.5px solid var(--gold); background: var(--cream); display: none; margin-top: 1rem; }
.form-msg.show { display: block; }

/* ── INFO ROW (contact page) ─────────────────────────────────────────────── */
.info-row { display: flex; gap: 1.25rem; align-items: flex-start; margin-bottom: 2.5rem; }
.info-icon {
  width: 42px; height: 42px; border: 0.5px solid var(--border-gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-icon svg { width: 17px; height: 17px; stroke: var(--gold); }
.info-row h4 { font-size: 8.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.3rem; }
.info-row p { font-size: 0.95rem; }

/* ── GALLERY FILTER (gallery page) ──────────────────────────────────────── */
.filter-row { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: var(--s3); }
.filter-btn {
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.65em 1.4em; border: 0.5px solid var(--border); color: var(--text-muted);
  transition: all 0.3s ease;
}
.filter-btn:hover, .filter-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3,1fr); grid-auto-rows: 240px; gap: var(--s2);
}
.gallery-grid > div:nth-child(3n+1) { grid-row: span 2; }
.gallery-grid .ph { height: 100%; }
@media (max-width: 880px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } .gallery-grid > div:nth-child(3n+1) { grid-row: span 1; } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ── PLACEHOLDER ─────────────────────────────────────────────────────────── */
.ph {
  position: relative; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
}
.ph::after {
  content: attr(data-label); position: absolute; bottom: 1rem; left: 1rem;
  font-family: var(--font-body); font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); border: 0.5px solid var(--border); padding: 0.3em 0.75em;
}
.ph.dark { background: var(--charcoal-mid); }
.ph.dark::after { color: var(--text-on-dark-muted); border-color: var(--border-dark); }

/* ── PACKAGES (packages page) ────────────────────────────────────────────── */
.pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s3); margin-top: var(--s4); }
@media (max-width: 900px) { .pkg-grid { grid-template-columns: 1fr; } }
.pkg-card { border: 0.5px solid var(--border); overflow: hidden; transition: box-shadow 0.4s ease; }
.pkg-card:hover { box-shadow: 0 20px 55px -20px rgba(0,0,0,0.12); }
.pkg-card .hall-image { aspect-ratio: 16/10; }
.pkg-card-body { padding: 2rem; }
.pkg-card-body .hall-cap { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.pkg-card-body h3 { margin-bottom: 0.75rem; }
.pkg-card-body > p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 1.25rem; }
.pkg-feat-list li {
  font-size: 0.78rem; color: var(--text-mid); padding: 0.4em 0 0.4em 1em;
  border-bottom: 0.5px dashed var(--border); position: relative;
}
.pkg-feat-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 0.55rem; top: 0.55em; }
.pkg-card-body .btn { margin-top: 1.75rem; }

/* ── MENU TABLE ──────────────────────────────────────────────────────────── */
.menu-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.menu-table th {
  text-align: left; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); padding: 0.9em 1em; border-bottom: 0.5px solid var(--border);
}
.menu-table td { padding: 0.85em 1em; border-bottom: 0.5px solid var(--border); color: var(--text-muted); vertical-align: top; }
.menu-table td:first-child { color: var(--text); font-weight: 400; }
.menu-table tr:last-child td { border-bottom: none; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.site-footer { background: var(--black); color: var(--text-on-dark-muted); padding: 6rem 0 3rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s3);
  padding-bottom: var(--s4); border-bottom: 0.5px solid var(--border-dark);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-wordmark {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-display); font-style: italic; font-size: 1.45rem;
  color: var(--white); margin-bottom: 1.5rem;
}
.footer-wordmark img { height: 36px; width: auto; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.78rem; line-height: 1.9; max-width: 270px; }
.footer-col h4 { color: var(--gold); font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 1.5rem; font-weight: 500; }
.footer-col ul li { margin-bottom: 0.65rem; font-size: 0.78rem; }
.footer-col ul a { transition: color 0.3s ease; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; padding-top: 2.5rem;
  font-size: 0.68rem; letter-spacing: 0.06em; color: rgba(240,235,226,0.25);
}
.social-row { display: flex; gap: 0.9rem; }
.social-row a {
  width: 36px; height: 36px; border: 0.5px solid rgba(255,255,255,0.10);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.social-row a:hover { border-color: var(--gold); background: rgba(197,160,89,0.08); }
.social-row svg { width: 14px; height: 14px; stroke: var(--text-on-dark-muted); transition: stroke 0.3s ease; }
.social-row a:hover svg { stroke: var(--gold); }

/* ── TIMELINE (about page) ───────────────────────────────────────────────── */
.timeline { position: relative; max-width: 700px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 90px; top: 0; bottom: 0;
  width: 0.5px; background: var(--border);
}
.timeline-item { display: grid; grid-template-columns: 90px 1fr; gap: 2.5rem; padding-bottom: var(--s3); position: relative; }
.timeline-year { font-family: var(--font-display); font-style: italic; color: var(--gold); font-size: 1.1rem; text-align: right; padding-top: 0.1rem; }
.timeline-dot { position: absolute; left: 86px; top: 0.45rem; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); border: 2px solid var(--white); box-shadow: 0 0 0 1px var(--gold); }
.timeline-item h4 { font-family: var(--font-body); font-weight: 500; font-size: 0.9rem; margin-bottom: 0.35rem; }
.timeline-item p { font-size: 0.82rem; color: var(--text-muted); }
@media (max-width: 560px) { .timeline::before { left: 50px; } .timeline-item { grid-template-columns: 50px 1fr; gap: 1.5rem; } .timeline-dot { left: 46px; } }

/* ── DECOR PAGE ──────────────────────────────────────────────────────────── */
.process-step { display: flex; gap: 2rem; align-items: flex-start; margin-bottom: 2.5rem; }
.process-step-num { font-family: var(--font-display); font-style: italic; font-size: 2.5rem; color: var(--gold); opacity: 0.4; line-height: 1; flex-shrink: 0; width: 40px; }
.process-step-text h4 { font-family: var(--font-body); font-weight: 500; font-size: 0.9rem; margin-bottom: 0.4rem; color: var(--text); }
.process-step-text p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.85; }

/* ── MENU PAGE ───────────────────────────────────────────────────────────── */
.menu-cat-title {
  font-family: var(--font-display); font-style: italic; font-size: 1.7rem;
  color: var(--text); border-bottom: 0.5px solid var(--border);
  padding-bottom: var(--s1); margin-bottom: 1.25rem; font-weight: 300;
}
.menu-items-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.35rem var(--s3); margin-bottom: var(--s3); }
.menu-item { font-size: 0.88rem; color: var(--text-mid); padding: 0.5em 0; border-bottom: 0.5px dashed var(--border); }
@media (max-width: 600px) { .menu-items-grid { grid-template-columns: 1fr; } }
.menu-note { font-size: 0.78rem; color: var(--text-muted); font-style: italic; margin-top: var(--s2); }

/* ── BACKWARD COMPAT (interior pages from v1 markup) ─────────────────────── */
.grid        { display: grid; gap: var(--s3); }
.grid-3      { grid-template-columns: repeat(3,1fr); }
.grid-2      { grid-template-columns: repeat(2,1fr); }
@media (max-width: 880px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* Section shading */
.section-dark  { background: var(--charcoal); color: var(--text-on-dark); padding: var(--s6) 0; }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .section-intro p { color: var(--text-on-dark-muted); }
.section-mist  { background: var(--cream); padding: var(--s6) 0; }
section        { padding: var(--s6) 0; }

/* Feature cards */
.card {
  background: var(--white); border: 0.5px solid var(--border);
  padding: 2.75rem; transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px -20px rgba(0,0,0,0.12); }
.card h3 { margin-bottom: 0.75rem; }
.card p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.9; }

.icon-frame {
  width: 52px; height: 52px; border: 0.5px solid var(--border-gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s3);
}
.icon-frame svg { width: 24px; height: 24px; stroke: var(--gold); }

/* Cta band (v1 compatible) */
.cta-band {
  background: var(--charcoal); color: var(--text-on-dark);
  padding: var(--s6) 0; text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 1.25rem; }
.cta-band p  { color: var(--text-on-dark-muted); max-width: 440px; margin: 0 auto 3rem; font-size: 0.82rem; line-height: 1.9; }
.cta-band .btn-row { justify-content: center; }

/* Orchid divider → gold rule */
.orchid-divider { display: flex; justify-content: center; margin: var(--s5) 0; }
.orchid-divider svg { width: 200px; height: auto; }

/* Section intro */
.section-intro { max-width: 600px; }
.section-intro.center { margin-left: auto; margin-right: auto; }
.section-intro h2 { margin-top: 1rem; }
.section-intro p  { margin-top: 1.25rem; font-size: 0.88rem; color: var(--text-muted); line-height: 1.9; }

/* Tag list (about page) */
.tag-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.75rem; }
.tag-list li { font-size: 8.5px; letter-spacing: 0.14em; text-transform: uppercase; border: 0.5px solid var(--border); padding: 0.45em 1em; color: var(--text-muted); }

/* Split (v1 compatible — existing pages use different structure) */
.split-media .ph { aspect-ratio: 4/5; }

/* Stat strip (v1 pages) */
.stat-strip { background: var(--charcoal); padding: 4rem 0; border-top: 0.5px solid var(--border-gold); border-bottom: 0.5px solid var(--border-gold); }
.stat-strip .container > div { display: grid; grid-template-columns: repeat(4,1fr); text-align: center; gap: 2rem; }
.stat-strip .num  { font-family: var(--font-display); font-size: 3rem; color: var(--gold); display: block; line-height: 1; }
.stat-strip .label { display: block; font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-on-dark-muted); margin-top: 0.75rem; }
@media (max-width: 700px) { .stat-strip .container > div { grid-template-columns: repeat(2,1fr); } }

/* Testimonial (v1 pages) */
.testimonial { max-width: 720px; margin: 0 auto; text-align: center; }
.testimonial blockquote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem,2.4vw,1.8rem); color: var(--text); line-height: 1.55; }
.section-dark .testimonial blockquote { color: var(--white); }
.testimonial cite { display: block; margin-top: 1.5rem; font-style: normal; font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 500; }

/* Pkg-card-body (v1 packages page) */
.pkg-card-body .cap { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.pkg-card-body h3 { margin-bottom: 0.75rem; }
.pkg-card-body p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 1.25rem; }
.pkg-feat-list li { font-size: 0.78rem; color: var(--text-mid); padding: 0.4em 0 0.4em 1.1rem; border-bottom: 0.5px dashed var(--border); position: relative; }
.pkg-feat-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 0.55rem; top: 0.55em; }

/* Eyebrow on dark */
.section-dark .eyebrow, .page-hero .eyebrow { color: var(--gold); }
.section-dark .eyebrow::before, .section-dark .eyebrow::after { background: var(--gold); }

/* Grid-3 pkg cards layout */
.section-dark .icon-frame { border-color: rgba(197,160,89,0.3); }
.section-dark .card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
.section-dark .card h3 { color: var(--white); }
.section-dark .card p  { color: var(--text-on-dark-muted); }
