/* ── Reset & Base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #B8922A;
  --gold-btn:   #C5973A;
  --cream:      #F5F0E8;
  --near-black: #181510;
  --grey:       #6B6561;
  --grey-light: #9A9A9A;
  --white:      #FFFFFF;
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'DM Sans', system-ui, sans-serif;
  --mono:       'JetBrains Mono', monospace;
}

html, body { height: 100%; overflow: hidden; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--near-black);
}

/* ── Grid Layout ───────────────────────────────────────────────────────── */
.page-wrapper {
  display: grid;
  grid-template-columns: 51.2% 48.8%;
  height: 100vh;
  overflow: hidden;
}

/* ── Left Panel ────────────────────────────────────────────────────────── */
.panel-left {
  background: var(--cream);
  display: flex;
  align-items: center;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.panel-left::-webkit-scrollbar { display: none; }

.panel-left__inner {
  width: 100%;
  padding: 60px 80px 60px 72px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ── Header ────────────────────────────────────────────────────────────── */
.header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-badge {
  width: 30px;
  height: 30px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ── Status Row ────────────────────────────────────────────────────────── */
.status-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}

.status-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ── Headline ──────────────────────────────────────────────────────────── */
.headline-block { margin-top: 4px; }

.headline {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(48px, 5.5vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--near-black);
  display: flex;
  flex-direction: column;
}

.headline__line2 {
  font-style: italic;
  color: var(--gold);
}

/* ── Gold Separator ────────────────────────────────────────────────────── */
.gold-sep {
  width: 44px;
  height: 2px;
  background: var(--gold-btn);
}

/* ── Description ───────────────────────────────────────────────────────── */
.description {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.68;
  color: var(--grey);
  max-width: 380px;
}

.description em { font-style: italic; color: var(--near-black); }
.description strong { font-weight: 500; color: var(--near-black); }

/* ── Countdown ─────────────────────────────────────────────────────────── */
.countdown-grid {
  display: flex;
  align-items: center;
  gap: 0;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.countdown-num {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  color: var(--near-black);
  font-feature-settings: 'tnum';
  line-height: 1;
}

.countdown-lbl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-top: 4px;
}

.countdown-sep {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold);
  padding: 0 4px;
  padding-bottom: 16px;
  line-height: 1;
  align-self: flex-start;
  margin-top: 2px;
}

/* ── Notify Form ───────────────────────────────────────────────────────── */
.notify-form { display: flex; flex-direction: column; gap: 10px; max-width: 400px; }

.form-row {
  display: flex;
  border-bottom: 1.5px solid #C8BFB0;
  transition: border-color 0.2s;
}
.form-row:focus-within { border-color: var(--gold); }

.form-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--near-black);
  padding: 10px 0;
}

.form-input::placeholder { color: var(--grey-light); }

.form-btn {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-btn);
  padding: 10px 0 10px 16px;
  transition: color 0.2s;
}
.form-btn:hover { color: var(--near-black); }

.form-fine-print {
  font-size: 11px;
  color: var(--grey-light);
  line-height: 1.5;
}

.form-message {
  font-size: 13px;
  min-height: 18px;
  font-weight: 400;
}
.form-message.success { color: #3a7d44; }
.form-message.error   { color: #b94040; }

/* ── Right Panel ───────────────────────────────────────────────────────── */
.panel-right {
  position: relative;
  background: linear-gradient(160deg, #2C2218 0%, #1A1410 55%, #0E0B08 100%);
  overflow: hidden;
}

.panel-right__portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  mix-blend-mode: luminosity;
  opacity: 0.55;
}

.panel-right__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(184,146,42,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.panel-right__content {
  position: absolute;
  bottom: 60px;
  left: 52px;
  right: 52px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.right-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.right-title {
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.12;
  max-width: 320px;
}

.right-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.72;
  color: rgba(255,255,255,0.55);
  max-width: 300px;
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  html, body { overflow: auto; }

  .page-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
    min-height: 100vh;
  }

  .panel-left__inner { padding: 48px 32px 40px; }

  .panel-right {
    min-height: 360px;
    order: -1;
  }

  .panel-right__content { bottom: 40px; left: 32px; right: 32px; }
}
