@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #1a0b0b;
  --bg2: #2a0f14;
  --warm: #4a1d1d;
  --accent: #d4a373;
  --text: #e7e1dc;
  --muted: #b7aead;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --shadow: 0 25px 60px rgba(0,0,0,0.38);
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

.site-shell {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: .68;
  filter: blur(80px);
  background:
    radial-gradient(circle at 50% 28%, rgba(58,21,16,.95) 0, transparent 60%),
    radial-gradient(circle at 12% 82%, rgba(74,29,29,.85) 0, transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(42,10,10,.8) 0, transparent 40%);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255,255,255,.04) .8px, transparent .8px);
  background-size: 22px 22px;
  opacity: .1;
  pointer-events: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 34px;
  z-index: 30;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 999px;
}

.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.brand-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-style: italic;
  letter-spacing: .03em;
  opacity: .88;
}

.header-meta {
  display: flex;
  gap: 20px;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: rgba(231,225,220,.62);
}

.side-ornament {
  position: fixed;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  opacity: .22;
  z-index: 8;
}

.side-line {
  width: 1px;
  height: 110px;
  background: rgba(255,255,255,.58);
}

.vertical-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-transform: uppercase;
  letter-spacing: .5em;
  font-size: .6rem;
  white-space: nowrap;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 24px 120px;
}

.home-wrap {
  max-width: 950px;
  text-align: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .24em;
  color: rgba(255,245,236,.86);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(4rem, 11vw, 8.5rem);
  line-height: .95;
  letter-spacing: -.04em;
  margin: 0;
}

.hero-title .accent,
.step-title .accent { color: var(--accent); font-style: italic; }

.hero-text {
  max-width: 680px;
  margin: 22px auto 0;
  font-size: clamp(1.08rem, 2.1vw, 1.38rem);
  line-height: 1.75;
  color: var(--muted);
}

.primary-btn,
.secondary-btn,
.ghost-btn {
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  padding: 18px 30px;
  border-radius: 999px;
  background: var(--accent);
  color: #2a1710;
  font-weight: 600;
  box-shadow: 0 0 0 rgba(212,163,115,0);
}
.primary-btn:hover { transform: translateY(-1px); box-shadow: 0 0 32px rgba(212,163,115,.28); }

.step-grid {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}

.step-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.04);
}

.step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,11,11,.84), transparent 48%, rgba(8,5,8,.18));
}

.step-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.step-icon svg { width: 24px; height: 24px; }

.step-num {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .34em;
  font-weight: 700;
  color: rgba(255,245,236,.7);
}

.step-copy { padding-left: 10px; }
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  font-weight: 300;
  line-height: .95;
  margin: 0;
}

.step-text {
  margin-top: 24px;
  font-size: clamp(1.12rem, 2.2vw, 1.52rem);
  line-height: 1.8;
  color: #d6ceca;
  max-width: 540px;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #beb4b0;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .8rem;
  font-weight: 600;
}
.ghost-btn:hover { color: #fff; }

.secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  border-radius: 999px;
  color: #f5ede7;
}
.secondary-btn:hover { background: rgba(255,255,255,.08); }

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 18px;
  border-radius: 999px;
  z-index: 35;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.2);
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.nav-dot:hover { background: rgba(255,255,255,.42); }
.nav-dot.active {
  background: var(--accent);
  transform: scale(1.2);
  box-shadow: 0 0 16px rgba(212,163,115,.55);
}

.fade-in {
  animation: fadeIn .55s ease both;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  .side-ornament { display: none; }
  .step-grid { grid-template-columns: 1fr; gap: 28px; }
  .step-copy { padding-left: 0; }
}

@media (max-width: 760px) {
  .header {
    padding: 22px 18px;
    gap: 12px;
    align-items: flex-start;
  }
  .header-meta { display: none; }
  .brand-title { font-size: 1.42rem; }
  .page { padding: 100px 16px 120px; }
  .step-badge { left: 18px; bottom: 18px; gap: 12px; }
  .step-icon { width: 46px; height: 46px; }
  .bottom-nav { bottom: 18px; padding: 13px 16px; gap: 11px; }
}
