:root {
  --bg: #f7f5f1;
  --surface: #ffffff;
  --text: #111111;
  --muted: rgba(17, 17, 17, 0.68);
  --gold: #d4af37;
  --border: rgba(17, 17, 17, 0.12);
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
  --radius: 28px;
  --page-max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
main {
  background: var(--bg);
}
body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a, button { text-decoration: none; color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--page-max), calc(100% - 2rem)); margin: 0 auto; }

.prelaunch-header {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: min(92%, 1800px);
  padding: 0 1rem;
}
.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 18px 24px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: none;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand img {
  height: 67px;
  width: auto;
  display: block;
}
.header-actions { display: flex; gap: 12px; align-items: center; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.button:hover { transform: translateY(-1px); box-shadow: none; }
.button-primary { background: var(--text); color: #fff; }
.button-ghost { background: rgba(255,255,255,0.16); color: #fff; border-color: rgba(255,255,255,0.24); }

.hero,
.hero-video {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 4.8rem 0 3rem;
  overflow: hidden;
}
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.34) 45%, rgba(0,0,0,0.56) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--page-max), calc(100% - 2rem));
  margin: 0 auto;
  max-width: 760px;
  color: #fff;
  padding-bottom: 2.4rem;
  transform: translateY(40px);
}
.hero-eyebrow {
  display: inline-block;
  margin-bottom: 1.25rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.82);
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 4.6vw, 4.5rem);
  line-height: 1.02;
  margin: 0 0 1rem;
  max-width: 11ch;
  font-weight: 700;
}
.hero-content p { margin: 0 0 1.6rem; font-size: 1.1rem; max-width: 44ch; color: rgba(255,255,255,0.9); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.section {
  padding: 2.8rem 0;
}
.section-about {
  padding-top: 3rem;
}
.section-panel {
  background: #e8c86b;
  border-radius: 32px;
  padding: 2rem 2.2rem;
  border: 0;
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.section-panel.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.section-panel-soft {
  background: #e2e6eb;
  border-radius: 32px;
  padding: 2rem 2.2rem;
  border: 0;
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.section-panel-soft.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.section-panel-purple {
  background: #e4dbf2;
  border-radius: 32px;
  padding: 2rem 2.2rem;
  border: 0;
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.section-panel-purple.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.section-panel-warm {
  background: #ddd3c4;
  border-radius: 32px;
  padding: 2rem 2.2rem;
  border: 0;
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.section-panel-warm.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.section-panel-champagne {
  background: #ead7a2;
  border-radius: 32px;
  padding: 2rem 2.2rem;
  border: 0;
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.section-panel-champagne.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
}
.eyebrow {
  display: none;
}
.section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0;
}
.section-copy {
  margin: 0;
  max-width: 64ch;
  color: #000000;
  font-size: 1.03rem;
  line-height: 1.8;
  font-weight: 400;
}
.partner-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 1rem;
}
.partner-list li {
  padding-left: 1.15rem;
  border-left: 2px solid rgba(17, 17, 17, 0.16);
}
.partner-list strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
}
.partner-copy {
  max-width: 58ch;
  font-size: 0.98rem;
  color: rgba(17, 17, 17, 0.78);
}
.hero-support {
  margin: 0 0 1.6rem;
  max-width: 56ch;
  color: rgba(255,255,255,0.92);
  font-size: 1rem;
  line-height: 1.8;
}
.section-actions {
  margin-top: 1.4rem;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}
.partner-card {
  display: flex;
  align-items: center;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #000000;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
}
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}
.checklist-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  color: #000000;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
}
.checklist-grid li {
  position: relative;
  padding-left: 1rem;
  margin: 0;
}
.checklist-grid li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}
.timeline-step {
  padding: 1rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.timeline-number {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.timeline-step p {
  margin: 0;
  color: #000000;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.checkbox-row input {
  margin-top: 0.35rem;
}
.disclosure {
  padding-top: 0.25rem;
  padding-bottom: 2.5rem;
}
.disclosure p {
  margin: 0 auto;
  width: min(72ch, 100%);
  text-align: center;
  color: rgba(17,17,17,0.64);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
}
.about-panel {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  color: var(--muted);
}
.enquiry-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1.5rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  align-items: start;
}
.enquiry-intro p { color: var(--muted); max-width: 46ch; }
.enquiry-form { display: grid; gap: 1rem; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.enquiry-form label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(17,17,17,0.14);
  background: #fff;
  color: var(--text);
}
.enquiry-form textarea { min-height: 120px; resize: vertical; }
.form-full { grid-column: 1 / -1; }
.enquiry-form input,
.enquiry-form textarea {
  padding: 0.9rem 0.95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.contact-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.contact-card h3 { margin: 0 0 0.4rem; font-size: 1.05rem; }
.contact-card p { margin: 0; color: var(--muted); }

.site-footer-dark {
  background: #0f0f10;
  color: rgba(255,255,255,0.92);
  padding: 4rem 0;
}
.footer-brand img {
  height: 66px;
  width: auto;
}
.footer-grid {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-grid > div { flex: 1 1 220px; }
.footer-brand { color: #fff; }
.footer-brand img { height: 44px; }
.site-footer-dark p,
.site-footer-dark h3,
.site-footer-dark a { color: rgba(255,255,255,0.9); }
.site-footer-dark ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer-dark li a { color: rgba(255,255,255,0.72); }

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.76);
  backdrop-filter: blur(6px);
}
.modal-card {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.35);
  padding: 1rem;
}
.modal-card h3 { margin: 0.25rem 0 1rem; font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; }
.modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.8rem;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
}
.modal-card video { width: 100%; border-radius: 16px; background: #000; }

@media (max-width: 900px) {
  .prelaunch-header { top: 12px; width: calc(100% - 1rem); padding: 0; }
  .header-shell { border-radius: 24px; padding: 14px 16px; }
  .header-actions { display: none; }
  .section { padding: 3.25rem 0; }
  .section-grid,
  .enquiry-shell,
  .contact-grid,
  .checklist-grid,
  .partner-grid,
  .timeline { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-content { padding-bottom: 1.25rem; transform: translateY(30px); }
  .hero h1 { max-width: none; }
}
