/* ─────────────────────────────────────────
   Performance Shadow Work™ — Coming Soon
   style.css
───────────────────────────────────────── */

/* ── VARIABLES ── */
:root {
  --gold:      #B89A58;
  --gold-lt:   #D4B978;
  --gold-dk:   #8E6E35;
  --blue:      #7A9BAD;
  --blue-pale: #A8C0CC;
  --blue-dk:   #4E7080;
  --cream:     #FAF8F3;
  --beige:     #F2EDE3;
  --beige-mid: #E8E0D2;
  --ink:       #2A2620;
  --ink-mid:   #4A4540;
  --ink-lt:    #7A7268;
}

/* ── RESET ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  background: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  overflow: hidden;
}

/* ── BACKGROUND ── */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.bg-base {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 35%, #FAF8F3 0%, #F2EDE3 55%, #EAE2D4 100%);
}

/* Soft gold haze top-left */
.bg-haze-gold {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 40% at 15% 15%,
    rgba(184,154,88,0.07) 0%, transparent 70%);
}

/* Soft blue haze bottom-right */
.bg-haze-blue {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 40% at 85% 85%,
    rgba(122,155,173,0.07) 0%, transparent 65%);
}

/* Horizon line */
.horizon {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 0.5px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(184,154,88,0.15) 20%,
    rgba(184,154,88,0.3)  50%,
    rgba(184,154,88,0.15) 80%,
    transparent 100%
  );
}

/* Side lines */
.side-line {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 0.5px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(184,154,88,0.18) 20%,
    rgba(184,154,88,0.18) 80%,
    transparent 100%
  );
}
.side-line.left  { left: 48px; }
.side-line.right { right: 48px; }

/* ── PAGE LAYOUT ── */
.page {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

/* ── LOGO ── */
.logo-lockup {
  display: flex;
  align-items: center;
  margin-bottom: 64px;
  animation: fadeDown 1.6s cubic-bezier(0.22,1,0.36,1) both;
}

.logo-type {
  display: flex;
  flex-direction: column;
}

.logo-eyebrow {
  font-family: 'Cinzel', serif;
  font-weight: 300;
  font-size: 7.5px;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 7px;
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 30px;
  line-height: 0.88;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.logo-name em {
  font-style: italic;
  color: var(--ink-mid);
}

.logo-tag-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.logo-tag-line {
  width: 20px;
  height: 0.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.logo-tagline {
  font-family: 'Cinzel', serif;
  font-weight: 300;
  font-size: 6.5px;
  letter-spacing: 0.42em;
  color: var(--blue-dk);
  text-transform: uppercase;
}

/* ── CENTRAL MESSAGE ── */
.message-block {
  text-align: center;
  max-width: 660px;
  animation: fadeUp 1.8s 0.25s cubic-bezier(0.22,1,0.36,1) both;
}

.pre-line {
  font-family: 'Cinzel', serif;
  font-weight: 300;
  font-size: 8.5px;
  letter-spacing: 0.52em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.pre-line::before,
.pre-line::after {
  content: '';
  display: block;
  width: 32px;
  height: 0.5px;
}
.pre-line::before { background: linear-gradient(90deg, transparent, var(--gold)); }
.pre-line::after  { background: linear-gradient(90deg, var(--gold), transparent); }

.headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}
.headline em {
  font-style: italic;
  color: var(--gold-dk);
}

.body-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.75;
  color: var(--ink-lt);
  max-width: 500px;
  margin: 0 auto 42px;
  letter-spacing: 0.02em;
}

/* ── CTA ── */
.cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  animation: fadeUp 1.8s 0.5s cubic-bezier(0.22,1,0.36,1) both;
}

.cta-label {
  font-family: 'Cinzel', serif;
  font-weight: 300;
  font-size: 7.5px;
  letter-spacing: 0.48em;
  color: var(--ink-lt);
  text-transform: uppercase;
}

.email-row {
  display: flex;
  align-items: stretch;
  border: 0.5px solid rgba(184,154,88,0.4);
  background: rgba(250,248,243,0.8);
}

.email-input {
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--ink);
  width: 250px;
  caret-color: var(--gold);
}
.email-input::placeholder {
  color: rgba(42,38,32,0.3);
}

.email-btn {
  background: var(--ink);
  border: none;
  outline: none;
  cursor: pointer;
  padding: 12px 22px;
  font-family: 'Cinzel', serif;
  font-weight: 300;
  font-size: 8px;
  letter-spacing: 0.44em;
  color: var(--cream);
  text-transform: uppercase;
  transition: background 0.3s ease;
}
.email-btn:hover {
  background: var(--gold-dk);
}

/* ── FOOTER ── */
.footer {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  animation: fadeUp 1.8s 0.65s cubic-bezier(0.22,1,0.36,1) both;
}

.footer-text {
  font-family: 'Cinzel', serif;
  font-weight: 300;
  font-size: 7px;
  letter-spacing: 0.44em;
  color: rgba(122,114,104,0.45);
  text-transform: uppercase;
}

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

/* ── FORM MESSAGES ── */
.form-message {
  font-family: 'Cinzel', serif;
  font-weight: 300;
  font-size: 7.5px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  min-height: 16px;
}
.form-message.success {
  color: var(--gold-dk);
}
.form-message.error {
  color: #A05050;
}
