/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --pink:        #D4537E;
  --pink-light:  #FBEAF0;
  --purple:      #534AB7;
  --teal:        #1D9E75;
  --amber:       #BA7517;
  --ink:         #0E0C1A;
  --ink-60:      rgba(14,12,26,0.6);
  --ink-20:      rgba(14,12,26,0.08);
  --bg:          #F7F4EF;
  --white:       #FFFFFF;
  --ff-display:  'Cormorant Garamond', Georgia, serif;
  --ff-body:     'DM Sans', system-ui, sans-serif;
  --ff-mono:     'DM Mono', monospace;
  --radius:      14px;
  --max:         1120px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(247,244,239,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--ink-20);
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--ink);
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
  font-size: 14px; font-weight: 400;
}
.nav-links a { color: var(--ink-60); transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta {
  background: var(--ink) !important;
  color: var(--bg) !important;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 500;
  transition: opacity 0.15s !important;
}
.nav-cta:hover { opacity: 0.8 !important; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 120px 40px 80px;
  display: flex; align-items: center;
  gap: 60px;
  max-width: var(--max); margin: 0 auto;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: -1;
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #D4537E, transparent 70%);
  top: -200px; right: -100px;
  animation: drift1 12s ease-in-out infinite alternate;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #534AB7, transparent 70%);
  bottom: -100px; left: -100px;
  animation: drift2 15s ease-in-out infinite alternate;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}
@keyframes drift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(-40px,30px) scale(1.1); } }
@keyframes drift2 { from { transform: translate(0,0) scale(1); } to { transform: translate(30px,-20px) scale(1.08); } }

.hero-content { flex: 1; max-width: 580px; }
.hero-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--pink); margin-bottom: 20px;
  animation: fadeUp 0.6s ease both;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300; line-height: 1.05;
  color: var(--ink); margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-title em { font-style: italic; color: var(--pink); }
.hero-sub {
  font-size: 17px; font-weight: 300; color: var(--ink-60);
  line-height: 1.7; margin-bottom: 36px;
  max-width: 480px;
  animation: fadeUp 0.6s 0.2s ease both;
}

/* ─── WAITLIST FORM ──────────────────────────────────────── */
.waitlist-form {
  display: flex; gap: 10px;
  animation: fadeUp 0.6s 0.3s ease both;
}
.waitlist-form--center { justify-content: center; }
.waitlist-input {
  flex: 1; max-width: 300px;
  padding: 12px 18px;
  border: 0.5px solid var(--ink-20);
  border-radius: 12px;
  background: var(--white);
  font-family: var(--ff-body); font-size: 15px;
  color: var(--ink); outline: none;
  transition: border-color 0.15s;
}
.waitlist-input:focus { border-color: var(--pink); }
.waitlist-btn {
  padding: 12px 24px;
  background: var(--pink); color: var(--white);
  border: none; border-radius: 12px;
  font-family: var(--ff-body); font-size: 15px; font-weight: 500;
  cursor: pointer; white-space: nowrap;
  transition: opacity 0.15s, transform 0.15s;
}
.waitlist-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.hero-note {
  font-size: 12px; color: var(--ink-60); margin-top: 12px;
  animation: fadeUp 0.6s 0.35s ease both;
}

/* ─── PHONE MOCK ─────────────────────────────────────────── */
.hero-visual {
  flex-shrink: 0;
  animation: fadeUp 0.7s 0.2s ease both;
}
.phone-mock {
  width: 260px;
  background: var(--ink);
  border-radius: 36px;
  padding: 16px;
  box-shadow: 0 40px 80px rgba(14,12,26,0.25), 0 0 0 1px rgba(255,255,255,0.06);
}
.phone-screen {
  background: #F7F4EF;
  border-radius: 24px;
  overflow: hidden;
  padding: 14px;
}
.mock-topbar {
  background: var(--pink);
  margin: -14px -14px 12px;
  padding: 14px 16px 12px;
  color: white;
}
.mock-title { font-size: 14px; font-weight: 500; }
.mock-sub { font-size: 10px; opacity: 0.8; margin-top: 2px; }
.mock-events { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.mock-event {
  display: flex; align-items: center; gap: 8px;
  background: white; border-radius: 8px; padding: 6px 8px;
}
.mock-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--c); flex-shrink: 0;
}
.mock-ename { font-size: 11px; font-weight: 500; color: var(--ink); }
.mock-emeta { font-size: 9px; color: var(--ink-60); }
.mock-seating { background: white; border-radius: 10px; padding: 10px; }
.mock-s-label { font-size: 9px; font-weight: 600; color: var(--ink-60); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.mock-tables { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.mock-table { background: #F7F4EF; border-radius: 8px; padding: 7px; }
.mock-tname { font-size: 11px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.mock-chips { display: flex; gap: 3px; flex-wrap: wrap; margin-bottom: 4px; }
.chip { font-size: 9px; background: #E1F5EE; color: #085041; border-radius: 20px; padding: 1px 5px; }
.mock-status { font-size: 9px; }
.mock-status.ok { color: #0F6E56; }
.mock-status.warn { color: #BA7517; }

/* ─── FEATURES ───────────────────────────────────────────── */
.features {
  padding: 100px 40px;
  max-width: var(--max); margin: 0 auto;
}
.section-label {
  font-family: var(--ff-mono);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--pink); margin-bottom: 16px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 60px; color: var(--ink);
}
.section-title em { font-style: italic; color: var(--pink); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--white);
  border: 0.5px solid var(--ink-20);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(14,12,26,0.08);
}
.feature-large { grid-column: span 2; }
.feature-icon { font-size: 28px; margin-bottom: 14px; }
.feature-card h3 {
  font-family: var(--ff-display);
  font-size: 22px; font-weight: 600;
  margin-bottom: 8px; color: var(--ink);
}
.feature-card p { font-size: 14px; color: var(--ink-60); line-height: 1.65; }

/* ─── OCCASIONS ──────────────────────────────────────────── */
.occasions {
  padding: 0 40px 100px;
  max-width: var(--max); margin: 0 auto;
}
.occasions-row {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px;
}
.occasion {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 0.5px solid var(--ink-20);
  border-radius: 40px; padding: 10px 20px;
  font-size: 14px; font-weight: 400; color: var(--ink);
}

/* ─── CTA SECTION ────────────────────────────────────────── */
.cta-section {
  position: relative; overflow: hidden;
  background: var(--ink);
  padding: 100px 40px;
  text-align: center;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,83,126,0.3), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  border-radius: 50%;
}
.cta-content { position: relative; z-index: 1; max-width: 520px; margin: 0 auto; }
.cta-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300; color: var(--white); line-height: 1.1;
  margin-bottom: 16px;
}
.cta-content h2 em { font-style: italic; color: var(--pink); }
.cta-content p { color: rgba(255,255,255,0.6); font-size: 16px; margin-bottom: 36px; }
.cta-section .waitlist-input { background: rgba(255,255,255,0.1); color: white; border-color: rgba(255,255,255,0.15); }
.cta-section .waitlist-input::placeholder { color: rgba(255,255,255,0.4); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  border-top: 0.5px solid rgba(255,255,255,0.08);
  padding: 32px 40px;
  display: flex; align-items: center;
  gap: 32px; flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--ff-display);
  font-size: 18px; font-weight: 600;
  color: var(--white); letter-spacing: 0.5px;
  margin-right: auto;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); width: 100%; }

/* ─── ABOUT PAGE ─────────────────────────────────────────── */
.about-main { padding-top: 64px; max-width: var(--max); margin: 0 auto; }
.about-hero {
  padding: 80px 40px 60px;
  border-bottom: 0.5px solid var(--ink-20);
}
.about-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300; line-height: 1.1; color: var(--ink);
  margin-top: 16px;
}
.about-title em { font-style: italic; color: var(--pink); }
.about-body { padding: 60px 40px 100px; max-width: 720px; }
.about-lead {
  font-family: var(--ff-display);
  font-size: 24px; font-weight: 300; line-height: 1.5;
  color: var(--ink); margin-bottom: 28px;
}
.about-block p { font-size: 16px; color: var(--ink-60); line-height: 1.75; margin-bottom: 18px; }
.about-values { margin: 60px 0; display: flex; flex-direction: column; gap: 40px; }
.about-value { display: flex; gap: 28px; }
.av-num {
  font-family: var(--ff-mono); font-size: 12px; color: var(--pink);
  flex-shrink: 0; padding-top: 4px;
}
.av-content h3 {
  font-family: var(--ff-display); font-size: 22px; font-weight: 600;
  margin-bottom: 8px; color: var(--ink);
}
.av-content p { font-size: 15px; color: var(--ink-60); line-height: 1.7; }
.about-contact { margin-top: 60px; padding-top: 40px; border-top: 0.5px solid var(--ink-20); }
.about-contact p { font-size: 16px; color: var(--ink-60); margin: 12px 0 20px; }
.about-email {
  font-family: var(--ff-display); font-size: 24px; font-weight: 400;
  color: var(--pink); border-bottom: 1px solid var(--pink);
  padding-bottom: 2px; transition: opacity 0.15s;
}
.about-email:hover { opacity: 0.7; }

/* ─── LEGAL PAGE ─────────────────────────────────────────── */
.legal-main { padding-top: 64px; max-width: 760px; margin: 0 auto; padding-left: 40px; padding-right: 40px; }
.legal-header { padding: 60px 0 40px; border-bottom: 0.5px solid var(--ink-20); }
.legal-header h1 {
  font-family: var(--ff-display); font-size: 48px; font-weight: 300;
  margin-top: 12px; color: var(--ink);
}
.legal-date { font-size: 13px; color: var(--ink-60); margin-top: 8px; }
.legal-body { padding: 48px 0 100px; }
.legal-section { margin-bottom: 40px; }
.legal-section h2 {
  font-family: var(--ff-display); font-size: 22px; font-weight: 600;
  margin-bottom: 12px; color: var(--ink);
}
.legal-section h3 { font-size: 14px; font-weight: 500; margin: 16px 0 6px; color: var(--ink); }
.legal-section p { font-size: 15px; color: var(--ink-60); line-height: 1.75; margin-bottom: 12px; }
.legal-section ul { padding-left: 20px; margin: 8px 0; }
.legal-section ul li { font-size: 15px; color: var(--ink-60); line-height: 1.75; margin-bottom: 6px; }
.legal-section a { color: var(--pink); border-bottom: 1px solid var(--pink); padding-bottom: 1px; }

/* ─── TOAST ──────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: var(--white);
  padding: 12px 24px; border-radius: 24px;
  font-size: 14px; font-weight: 500;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { flex-direction: column; padding-top: 100px; text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .waitlist-form { justify-content: center; }
  .hero-note { text-align: center; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-large { grid-column: span 1; }
  .hero-visual { display: none; }
}
@media (max-width: 600px) {
  .nav { padding: 0 20px; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 100px 20px 60px; }
  .features, .occasions { padding-left: 20px; padding-right: 20px; }
  .footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
  .footer-logo { margin-right: 0; }
  .about-body, .legal-main { padding-left: 20px; padding-right: 20px; }
  .about-value { flex-direction: column; gap: 8px; }
}

/* data-color attribute replaces inline CSS vars for CSP compliance */
.mock-event[data-color="purple"] .mock-dot { background: #534AB7; }
.mock-event[data-color="pink"]   .mock-dot { background: #D4537E; }
.mock-event[data-color="teal"]   .mock-dot { background: #1D9E75; }
.mock-event[data-color="amber"]  .mock-dot { background: #BA7517; }

/* ─── LANGUAGE SWITCHER ──────────────────────────────────── */
.lang-switcher {
  display: flex; gap: 2px;
  background: var(--ink-20); border-radius: 20px; padding: 3px;
}
.lang-btn {
  background: transparent; border: none;
  font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.5px;
  color: var(--ink-60); padding: 3px 8px; border-radius: 16px;
  cursor: pointer; transition: all 0.15s;
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.active {
  background: var(--white); color: var(--ink);
  box-shadow: 0 1px 3px rgba(14,12,26,0.1);
}

/* ─── MOCK PILLS ─────────────────────────────────────────── */
.mock-pills {
  display: flex; gap: 4px; flex-wrap: wrap; margin-top: 8px;
}
.mock-pill {
  font-size: 9px; background: white; border: 0.5px solid rgba(14,12,26,0.1);
  border-radius: 20px; padding: 2px 8px; color: var(--ink-60);
}
