:root {
  --bg-deep: #1C1410;
  --bg-deep-2: #2A1E18;
  --light: #F4EFE9;
  --light-soft: rgba(244, 239, 233, 0.78);
  --light-faint: rgba(244, 239, 233, 0.50);
  --light-rule: rgba(244, 239, 233, 0.14);
  --accent: #C4896A;
  --accent-soft: rgba(196, 137, 106, 0.7);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

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

html, body {
  height: 100%;
  background: var(--bg-deep);
  color: var(--light);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- Stage: split layout ---------- */
.stage {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 100vh;
  min-height: 100dvh;
  background:
    radial-gradient(ellipse 70% 50% at 30% 35%, rgba(196, 137, 106, 0.10), transparent 60%),
    var(--bg-deep);
}

/* ---------- Photo column ---------- */
.stage-photo {
  position: relative;
  overflow: hidden;
  order: 2;
  background: #0E0805;
}
.stage-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.stage-photo-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 20, 16, 0.45) 0%, transparent 18%),
    linear-gradient(180deg, rgba(28, 20, 16, 0.30) 0%, transparent 25%, transparent 70%, rgba(28, 20, 16, 0.40) 100%);
  pointer-events: none;
}

/* ---------- Text panel ---------- */
.stage-panel {
  order: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(28px, 4vw, 56px) clamp(28px, 5vw, 80px);
  position: relative;
}

/* ---------- Top: wordmark + badge ---------- */
.stage-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wordmark {
  font-family: var(--serif);
  font-size: clamp(22px, 2.1vw, 30px);
  letter-spacing: 0.2px;
  color: var(--light);
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
}
.wordmark-paren {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
  font-size: 0.78em;
  letter-spacing: -0.5px;
  margin-right: 1px;
}
.wordmark-name {
  font-style: italic;
  font-weight: 400;
}

.stage-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 15px 8px 13px;
  border-radius: 999px;
  border: 1px solid var(--light-rule);
  background: rgba(244, 239, 233, 0.04);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--light);
  white-space: nowrap;
}
.stage-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(196, 137, 106, 0.55);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(196, 137, 106, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(196, 137, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(196, 137, 106, 0); }
}

/* ---------- Centered content ---------- */
.stage-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 560px;
  padding: 48px 0;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  display: inline-block;
}

h1 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(44px, 5.6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.6px;
  color: var(--light);
  margin-bottom: 32px;
  text-wrap: balance;
}
h1 em {
  font-style: italic;
  color: var(--accent);
}

.lede {
  font-family: var(--sans);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  color: var(--light-soft);
  max-width: 440px;
  text-wrap: pretty;
}

/* ---------- Footer ---------- */
.stage-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--light-rule);
  font-size: 12.5px;
  color: var(--light-faint);
  letter-spacing: 0.2px;
}
.stage-foot nav {
  display: flex;
  gap: 22px;
}
.stage-foot a {
  transition: color 160ms ease;
}
.stage-foot a:hover { color: var(--light); }

/* ---------- Tablet ---------- */
@media (max-width: 980px) {
  .stage {
    grid-template-columns: 1fr 0.85fr;
  }
  .stage-panel {
    padding: 28px 36px;
  }
  .stage-content { padding: 32px 0; }
}

/* ---------- Mobile: stack photo above ---------- */
@media (max-width: 720px) {
  .stage {
    grid-template-columns: 1fr;
    grid-template-rows: 46vh 1fr;
    min-height: 100vh;
    min-height: 100dvh;
  }
  .stage-photo {
    order: 1;
  }
  .stage-photo img {
    object-position: 50% 30%;
  }
  .stage-photo-tint {
    background:
      linear-gradient(180deg, rgba(28, 20, 16, 0.20) 0%, transparent 30%, transparent 60%, rgba(28, 20, 16, 0.85) 100%);
  }
  .stage-panel {
    order: 2;
    padding: 24px 24px 28px;
    grid-template-rows: auto 1fr auto;
  }
  .stage-top {
    margin-top: -42px;
    position: relative;
    z-index: 2;
  }
  .wordmark { font-size: 24px; }
  .stage-content {
    padding: 24px 0;
    align-items: flex-start;
  }
  .eyebrow {
    font-size: 10.5px;
    letter-spacing: 2.6px;
    margin-bottom: 18px;
  }
  h1 {
    font-size: clamp(38px, 9vw, 52px);
    margin-bottom: 22px;
  }
  .lede { font-size: 15px; }
  .stage-foot {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding-top: 14px;
  }
}

@media (max-width: 380px) {
  .stage-badge { display: none; }
}
