/* =========================================================
   LE ROUA — Private Dining & Venue
   Dark luxury (black / champagne gold / serif)
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, picture, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

/* ---------- Tokens ---------- */
:root {
  --bg: #0a0a0a;
  --bg-elev: #141414;
  --bg-card: #1a1a1a;
  --line: #2a2a2a;
  --line-soft: #1f1f1f;
  --gold: #c9a961;
  --gold-soft: #8a7440;
  --gold-bright: #e0c890;
  --text: #f3f0e8;
  --text-muted: #9a9a92;
  --text-dim: #6b6b65;
  --white: #ffffff;

  --font-display: "Cormorant Garamond", "Playfair Display", "Noto Serif KR", serif;
  --font-serif: "Playfair Display", "Noto Serif KR", serif;
  --font-body-kr: "Noto Serif KR", "Cormorant Garamond", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;

  --container: 1280px;
  --container-wide: 1480px;
  --section-py: clamp(72px, 12vw, 140px);
  --radius: 2px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Base ---------- */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body-kr);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--bg); }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text);
}

h1.display { font-size: clamp(40px, 6.5vw, 92px); }
h2.display { font-size: clamp(32px, 4.8vw, 64px); }
h3.display { font-size: clamp(24px, 3vw, 40px); }

.serif-italic { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 60ch;
}

.divider {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 16px;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container.wide { max-width: var(--container-wide); }
.section { padding: var(--section-py) 0; }
.section.tight { padding: clamp(48px, 8vw, 96px) 0; }
.section.bg-elev { background: var(--bg-elev); }
.section-header { text-align: center; margin-bottom: clamp(48px, 6vw, 80px); }
.section-header .eyebrow { display: block; margin-bottom: 20px; }
.section-header p { color: var(--text-muted); margin-top: 24px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  background: transparent;
  transition: background .35s var(--ease), padding .35s var(--ease), border-color .35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom-color: var(--line-soft);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  color: var(--text);
}
.brand .brand-logo {
  height: 36px;
  width: auto;
  display: block;
  transition: height .35s var(--ease), opacity .25s;
}
.site-header.scrolled .brand .brand-logo { height: 30px; }
.brand:hover .brand-logo { opacity: 0.85; }
.nav { display: flex; align-items: center; gap: 40px; }
.nav a {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 400;
  position: relative;
  padding: 8px 0;
  transition: color .25s;
}
.nav a:hover, .nav a.active { color: var(--gold); }
.nav a.active::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 14px; height: 1px; background: var(--gold);
  transform: translateX(-50%);
}
.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 10px 22px !important;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--bg) !important;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  width: 28px; height: 28px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  display: block; width: 22px; height: 1px; background: var(--text);
  transition: transform .3s var(--ease), opacity .2s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) saturate(0.95);
  transform: scale(1.04);
  z-index: 0;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.1) 35%, rgba(10,10,10,0.85) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 32px;
  max-width: 900px;
}
.hero .eyebrow { margin-bottom: 28px; }
/* eyebrow sits closer to where it was on the original layout —
   push it up by lifting the h1+lockup with extra top spacing */
.hero-inner .hero-h1 { margin-top: clamp(48px, 6vw, 88px); }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 9.5vw, 140px);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 28px;
}
.hero-mark {
  width: clamp(72px, 9vw, 120px);
  height: auto;
  margin: 0 auto 22px;
  display: block;
  opacity: 0.96;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.35));
  animation: heroMarkIn 1.2s var(--ease) both;
}
.hero-lockup {
  width: clamp(220px, 28vw, 380px);
  height: auto;
  display: block;
  margin: 0 auto 28px;
  animation:
    heroMarkIn 1.2s var(--ease) both,
    leroyGlow 7s ease-in-out 1.4s infinite;
}
h1.hero-h1 { margin: 0; padding: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
@keyframes heroMarkIn {
  from { opacity: 0; transform: translateY(12px) scale(.96); }
  to   { opacity: 0.96; transform: none; }
}
@keyframes leroyGlow {
  0%, 100% {
    filter:
      drop-shadow(0 6px 30px rgba(0,0,0,0.4))
      drop-shadow(0 0 6px rgba(201, 169, 97, 0));
  }
  50% {
    filter:
      drop-shadow(0 6px 30px rgba(0,0,0,0.4))
      drop-shadow(0 0 18px rgba(201, 169, 97, 0.28))
      drop-shadow(0 0 46px rgba(224, 200, 144, 0.16));
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-lockup {
    animation: heroMarkIn 1.2s var(--ease) both;
    filter: drop-shadow(0 6px 30px rgba(0,0,0,0.4));
  }
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero p.tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--text);
  margin-bottom: 48px;
  opacity: 0.92;
}
.hero .cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--text-muted);
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.scroll-cue::after {
  content: ""; width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2.4s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Sub hero (interior pages) */
.subhero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 200px 32px 120px;
  overflow: hidden;
}
.subhero .hero-bg { filter: brightness(0.4); }
.subhero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.3) 50%, rgba(10,10,10,0.9) 100%);
  z-index: 1;
}
.subhero-inner { position: relative; z-index: 2; }
.subhero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.subhero-mark {
  width: clamp(48px, 5vw, 64px);
  height: auto;
  display: block;
  margin: 0 auto 22px;
  opacity: 0.9;
}
.subhero .eyebrow { display: block; margin-bottom: 20px; }
.subhero p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn:hover {
  background: var(--gold);
  color: var(--bg);
}
.btn.solid {
  background: var(--gold);
  color: var(--bg);
}
.btn.solid:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}
.btn.ghost {
  border-color: var(--text);
  color: var(--text);
}
.btn.ghost:hover {
  background: var(--text);
  color: var(--bg);
}

/* ---------- Intro section ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.intro-grid .intro-text .eyebrow { display: block; margin-bottom: 24px; }
.intro-grid .intro-text h2 { margin-bottom: 28px; }
.intro-grid .intro-text .lead { margin-bottom: 32px; }
.intro-grid .intro-image {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
}

/* ---------- Usage / Value section ---------- */
.usage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.usage-card {
  background: var(--bg);
  padding: 56px 36px;
  text-align: center;
  transition: background .35s;
  position: relative;
}
.usage-card:hover { background: var(--bg-elev); }
.usage-card .num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.25em;
  margin-bottom: 24px;
}
.usage-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  color: var(--text);
}
.usage-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- Venue preview ---------- */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(160px, auto);
  gap: 16px;
}
.venue-card {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: block;
  border: 1px solid var(--line-soft);
  isolation: isolate;
}
.venue-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
  transition: opacity .35s;
}
.venue-card:hover::after { opacity: 0.6; }
.venue-card .label {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  z-index: 2;
  color: var(--text);
}
.venue-card .label .eyebrow { display: block; margin-bottom: 8px; color: var(--gold); }
.venue-card .label h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.venue-card .label p {
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

.venue-card.lg { grid-column: span 8; grid-row: span 2; }
.venue-card.md { grid-column: span 4; grid-row: span 2; }
.venue-card.sm { grid-column: span 4; grid-row: span 1; }
.venue-card.sm2 { grid-column: span 6; grid-row: span 1; }
.venue-card.sm3 { grid-column: span 6; grid-row: span 1; }
.venue-card.hero-row { min-height: 360px; }

/* ---------- Stat row ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 60px 24px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat .n {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 12px;
}
.stat .label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- Featured projects ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.feature-card .img {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}
.feature-card .body { padding: 40px 36px; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  color: var(--gold);
}
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* ---------- Two col (about page) ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.two-col.reverse { grid-template-columns: 1.1fr 1fr; }
.two-col .col-img {
  aspect-ratio: 5 / 6;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
}
.two-col h2 { margin-bottom: 28px; }
.two-col p { margin-bottom: 16px; color: var(--text-muted); }
.two-col .eyebrow { display: block; margin-bottom: 20px; }

/* ---------- Wine / Sommelier strip ---------- */
.wine-section { background: var(--bg-elev); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.wine-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.wine-card {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 48px 40px;
  position: relative;
}
.wine-card .badge {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.wine-card h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  color: var(--text);
}
.wine-card p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* ---------- Catering ---------- */
.catering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: stretch;
}
.catering-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 540px;
  position: relative;
  border: 1px solid var(--line);
}
.catering-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
}
.catering-menus {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.catering-card {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: clamp(28px, 3vw, 40px);
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.catering-card .badge {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: inline-block;
}
.catering-card .badge-premium { color: var(--gold-bright); }
.catering-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 1.8vw, 26px);
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  color: var(--text);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.catering-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 28px;
  column-rule: 1px solid var(--line-soft);
}
.catering-list li {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.45;
  padding: 7px 0 7px 14px;
  position: relative;
  break-inside: avoid;
  letter-spacing: 0.01em;
}
.catering-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--gold);
  font-weight: 700;
}
.catering-list li em {
  font-style: normal;
  color: var(--gold-bright);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .catering-grid { grid-template-columns: 1fr; }
  .catering-image { min-height: 380px; aspect-ratio: 4/3; }
}
@media (max-width: 540px) {
  .catering-list { columns: 1; }
  .catering-image { min-height: 280px; }
}

/* ---------- Venue page — space detail ---------- */
.space-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.space-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: 40px;
}
.space-header .eyebrow { display: block; margin-bottom: 16px; }
.space-header h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(32px, 4.5vw, 56px); margin-bottom: 16px; }
.space-header p { color: var(--text-muted); }
.space-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}
.space-meta .item .label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.space-meta .item .val {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery .g {
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line-soft);
  overflow: hidden;
}
.gallery .g.w12 { grid-column: span 12; grid-row: span 2; }
.gallery .g.w8 { grid-column: span 8; grid-row: span 2; }
.gallery .g.w6 { grid-column: span 6; grid-row: span 2; }
.gallery .g.w4 { grid-column: span 4; grid-row: span 2; }
.gallery .g.w4-1 { grid-column: span 4; grid-row: span 1; }

.space-divider { height: 1px; background: var(--line); margin: clamp(72px, 10vw, 140px) 0; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
}
.contact-info .item {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info .item:first-of-type { padding-top: 0; }
.contact-info .item .lbl {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.contact-info .item .val {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text);
  font-weight: 400;
}
.contact-info .item .val.lg { font-size: 26px; }
.contact-info .sub { font-size: 13px; color: var(--text-muted); margin-top: 6px; }

.contact-form { background: var(--bg-elev); border: 1px solid var(--line); padding: clamp(32px, 4vw, 56px); }
.contact-form h3 { font-family: var(--font-display); font-size: 32px; font-weight: 400; margin-bottom: 28px; color: var(--text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.single { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-body-kr);
  font-size: 15px;
  padding: 14px 16px;
  border-radius: 0;
  outline: none;
  transition: border-color .25s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 140px; }
.form-actions { margin-top: 24px; }

.form-status {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  min-height: 1em;
  letter-spacing: 0.01em;
}
.form-status.pending { color: var(--text-muted); }
.form-status.error {
  color: #e9b6a0;
  padding: 14px 16px;
  background: rgba(180, 90, 60, 0.08);
  border: 1px solid rgba(180, 90, 60, 0.28);
}
.form-status.error a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-thanks {
  padding: clamp(24px, 4vw, 48px) 0 clamp(12px, 2vw, 24px);
  text-align: center;
}
.form-thanks h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--text);
}
.form-thanks p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.85;
}
.form-thanks a {
  color: var(--gold-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 169, 97, 0.45);
  padding-bottom: 1px;
}
.form-thanks a:hover { border-bottom-color: var(--gold-bright); }
#inquirySubmit:disabled {
  opacity: 0.55;
  cursor: progress;
}

/* ---- Custom choice (checkbox / radio) ---- */
.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  padding: 10px 0 2px;
}

.choice-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 14px;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  line-height: 1.4;
  transition: color .25s var(--ease);
  user-select: none;
}

.choice-item:hover { color: var(--text); }

.choice-item input[type="checkbox"],
.choice-item input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  margin: 0;
  flex-shrink: 0;
  position: relative;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}

.choice-item input[type="radio"] { border-radius: 50%; }

.choice-item input[type="checkbox"]:hover,
.choice-item input[type="radio"]:hover { border-color: var(--gold); }

.choice-item input[type="checkbox"]:checked,
.choice-item input[type="radio"]:checked {
  border-color: var(--gold);
  background: var(--gold);
}

.choice-item input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 4px;
  width: 4px;
  height: 8px;
  border: solid #0a0a0a;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.choice-item input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0a0a0a;
}

.choice-item input[type="checkbox"]:focus-visible,
.choice-item input[type="radio"]:focus-visible {
  outline: 1px solid var(--gold-bright);
  outline-offset: 2px;
}

.optional-tag,
.required-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 6px;
  vertical-align: 2px;
}

.optional-tag { color: var(--text-muted); opacity: 0.7; }
.required-tag {
  color: var(--gold-bright);
  font-style: normal;
}

/* ---- Privacy consent block ---- */
.privacy-consent {
  border-top: 1px solid var(--line);
  padding-top: 22px !important;
  margin-top: 8px !important;
}

.privacy-detail {
  margin-bottom: 14px;
}

.privacy-detail summary {
  cursor: pointer;
  padding: 4px 0;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  transition: color .2s var(--ease);
}

.privacy-detail summary::-webkit-details-marker { display: none; }
.privacy-detail summary::marker { content: ''; }

.privacy-detail summary::before {
  content: '+';
  font-size: 15px;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  width: 12px;
  text-align: center;
  transition: transform .2s var(--ease);
}

.privacy-detail[open] summary::before { content: '−'; }

.privacy-detail summary:hover { color: var(--text); }

.privacy-text {
  margin-top: 12px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.025);
  border-left: 2px solid var(--gold);
  line-height: 1.8;
}

.privacy-text p {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.privacy-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-text li {
  font-size: 12.5px;
  color: var(--text-muted);
  padding: 3px 0 3px 12px;
  position: relative;
}

.privacy-text li::before {
  content: '·';
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--gold);
  font-weight: 700;
}

.privacy-text li strong {
  color: var(--text);
  font-weight: 500;
  margin-right: 2px;
}

.consent-summary {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-muted);
  margin: 0 0 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.025);
  border-left: 2px solid var(--gold);
  letter-spacing: 0.005em;
}
.consent-summary a {
  color: var(--gold-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(224, 200, 144, 0.4);
  padding-bottom: 1px;
  transition: border-color .2s var(--ease);
}
.consent-summary a:hover { border-bottom-color: var(--gold-bright); }

.consent-item {
  font-size: 14px;
  padding: 8px 0 2px;
}

.consent-item em.required-tag {
  font-size: 13px;
  margin-left: 4px;
  letter-spacing: 0;
  text-transform: none;
  vertical-align: 0;
}

.map-wrap {
  margin-top: 32px;
  height: 360px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: invert(0.92) hue-rotate(180deg) saturate(0.6); }

/* ---------- Big CTA ---------- */
.cta-band {
  position: relative;
  padding: clamp(72px, 12vw, 160px) 32px;
  text-align: center;
  overflow: hidden;
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-band-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.4);
  z-index: 0;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band .eyebrow { display: block; margin-bottom: 24px; }
.cta-band h2 { font-family: var(--font-display); font-weight: 300; font-size: clamp(32px, 5vw, 64px); margin-bottom: 32px; line-height: 1.15; }

/* ---------- Footer ---------- */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--line-soft);
  padding: 80px 0 40px;
  color: var(--text-muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  margin-bottom: 24px;
}
.footer-brand .brand-logo {
  height: 42px;
  width: auto;
  display: block;
  opacity: 0.95;
}
.footer-brand .accent { color: var(--gold); }
.footer-grid p, .footer-grid li {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-muted);
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col li a:hover { color: var(--gold); }

/* ---- Footer legal block (business identification) ---- */
.footer-legal {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}
.footer-legal ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  row-gap: 6px;
  column-gap: 0;
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
.footer-legal li {
  display: inline-flex;
  align-items: center;
}
.footer-legal li:not(:last-child)::after {
  content: '·';
  color: var(--text-dim);
  opacity: 0.45;
  padding: 0 14px;
}
.footer-legal li strong {
  color: var(--text-muted);
  font-weight: 500;
  margin-right: 6px;
}
.footer-legal li a {
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 169, 97, 0.35);
  padding-bottom: 1px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.footer-legal li a:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-bright);
}

.footer-bottom {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
  font-family: var(--font-sans);
}

/* ---- Privacy / Legal page ---- */
.legal-section {
  padding: clamp(120px, 16vw, 200px) 0 clamp(80px, 10vw, 140px);
  background: var(--bg);
}
.legal-container {
  max-width: 880px;
}
.legal-header {
  text-align: center;
  margin-bottom: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(40px, 6vw, 64px);
  border-bottom: 1px solid var(--line-soft);
}
.legal-header .eyebrow {
  display: inline-block;
  margin-bottom: 20px;
}
.legal-header h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--text);
  margin: 0 0 18px;
  line-height: 1.15;
}
.legal-meta {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
  font-family: var(--font-sans);
  margin: 0;
}
.legal-body { color: var(--text-muted); }
.legal-intro {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.95;
  color: var(--text);
  margin-bottom: clamp(48px, 6vw, 72px);
  padding: clamp(20px, 2.5vw, 28px) clamp(22px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.025);
  border-left: 2px solid var(--gold);
  letter-spacing: 0.005em;
}
.legal-article {
  margin-bottom: clamp(40px, 5vw, 56px);
}
.legal-article h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: 0.005em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}
.legal-article p {
  font-size: 14.5px;
  line-height: 1.95;
  margin-bottom: 14px;
  color: var(--text-muted);
}
.legal-list,
.legal-sublist {
  list-style: none;
  padding: 0;
  margin: 12px 0 14px;
}
.legal-list > li {
  padding: 8px 0 8px 22px;
  position: relative;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text-muted);
  counter-increment: legal-item;
}
.legal-list {
  counter-reset: legal-item;
}
.legal-list > li::before {
  content: counter(legal-item) '.';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
}
.legal-sublist {
  margin: 10px 0 10px 6px;
}
.legal-sublist li {
  padding: 4px 0 4px 16px;
  position: relative;
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-muted);
}
.legal-sublist li::before {
  content: '·';
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--gold);
  font-weight: 700;
}
.legal-list strong,
.legal-sublist strong {
  color: var(--text);
  font-weight: 500;
  margin-right: 2px;
}
.legal-list em {
  font-style: normal;
  color: var(--gold-bright);
}
.legal-note {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-dim);
  margin-top: 10px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
}
.legal-table-wrap {
  margin: 14px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  min-width: 460px;
}
.legal-table th,
.legal-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
  line-height: 1.6;
}
.legal-table th {
  color: var(--text);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.025);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-top: 1px solid var(--line);
}
.legal-table td {
  color: var(--text-muted);
}
.legal-table tr:last-child td {
  border-bottom: 1px solid var(--line);
}
.legal-contact {
  margin: 16px 0;
  padding: 18px 22px;
  background: rgba(201, 169, 97, 0.05);
  border: 1px solid rgba(201, 169, 97, 0.18);
}
.legal-contact .legal-sublist { margin: 0; }
.legal-contact a {
  color: var(--gold-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(224, 200, 144, 0.4);
}
.legal-contact a:hover { border-bottom-color: var(--gold-bright); }

.legal-footer-meta {
  margin-top: clamp(64px, 8vw, 96px);
  padding-top: clamp(32px, 4vw, 44px);
  border-top: 1px solid var(--line);
}
.legal-business {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 28px;
  margin: 0;
}
@media (min-width: 700px) {
  .legal-business {
    grid-template-columns: 1fr 1fr;
  }
}
.legal-business > div {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line-soft);
  font-size: 13px;
  line-height: 1.6;
}
.legal-business dt {
  flex: 0 0 110px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  font-family: var(--font-sans);
  font-size: 12px;
  padding-top: 1px;
}
.legal-business dd {
  margin: 0;
  color: var(--text-muted);
  flex: 1;
}
.legal-business a {
  color: var(--gold-bright);
  text-decoration: none;
}
.legal-business a:hover { color: var(--text); }

/* ---------- TBD pill ---------- */
.tbd {
  display: inline-block;
  background: rgba(201, 169, 97, 0.12);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px dashed var(--gold-soft);
  vertical-align: middle;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-grid .intro-image { aspect-ratio: 16/10; max-width: 600px; }
  .two-col, .two-col.reverse { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .usage-grid { grid-template-columns: repeat(2, 1fr); }
  .venue-card.lg { grid-column: span 12; }
  .venue-card.md { grid-column: span 6; }
  .venue-card.sm { grid-column: span 6; }
  .venue-card.sm2, .venue-card.sm3 { grid-column: span 12; }
  .gallery .g.w8 { grid-column: span 12; }
  .gallery .g.w6 { grid-column: span 12; }
  .gallery .g.w4 { grid-column: span 6; }
  .space-header { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding: 12px 24px 28px;
  }
  .nav.open a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 13px;
  }
  .nav.open a.nav-cta {
    margin-top: 16px;
    text-align: center;
    border-bottom: 1px solid var(--gold);
  }
  .usage-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
  .wine-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery .g.w4 { grid-column: span 12; }
  .gallery { grid-auto-rows: 200px; }
  .space-meta { gap: 20px; }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
