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

:root {
  --ink:      #1A1814;
  --ink-2:    #6B6660;
  --ink-3:    #B0AAA4;
  --surface:  #F5F2ED;
  --white:    #FDFCFA;
  --card:     #FFFFFF;
  --gold:     #9C7D3E;
  --gold-lt:  #EDE3D0;
  --border:   rgba(26,24,20,0.10);
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink:     #EDE9E3;
    --ink-2:   #9A9590;
    --ink-3:   #555250;
    --surface: #131210;
    --white:   #1C1A17;
    --card:    #201E1B;
    --gold:    #C9A05A;
    --gold-lt: #2C2415;
    --border:  rgba(255,255,255,0.08);
  }
}

html, body {
  height: 100vh;
  overflow: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── Page grid ── */
.page {
  height: 100vh;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

/* ── Header ── */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 3rem;
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name span:first-child {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.brand-name span:last-child {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.header-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ── Hero ── */
main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0;
  overflow: hidden;
}

/* Left: visual column */
.visual-col {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}

/* subtle grid texture */
.visual-col::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.building-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2rem;
}

.visual-caption {
  margin-top: 2rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

/* Right: copy column */
.copy-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3.5rem 3rem 4rem;
  background: var(--white);
  overflow: hidden;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}
.eyebrow-line { width: 24px; height: 1px; background: var(--gold); }
.eyebrow-text {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.8rem;
}

h1 em {
  font-style: italic;
  font-weight: 400;
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin-bottom: 1.8rem;
}

.copy-body {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--ink-2);
  font-weight: 300;
  max-width: 340px;
  margin-bottom: 2rem;
}

/* progress */
.progress-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  max-width: 280px;
}
.progress-label span:last-child { color: var(--gold); }

.progress-track {
  width: 280px;
  height: 1px;
  background: var(--border);
}
.progress-fill {
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: fill 2s cubic-bezier(.4,0,.2,1) 0.8s forwards;
}
@keyframes fill { to { width: 72%; } }

/* ── Footer ── */
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  border-top: 1px solid var(--border);
  font-size: 0.65rem;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links { display: flex; gap: 1.5rem; }

/* ── Mobile ── */
@media (max-width: 720px) {
  html, body { height: auto; overflow: auto; }
  .page { height: auto; overflow: visible; }
  header { padding: 1.2rem 1.5rem; }
  .header-tag { display: none; }
  main { grid-template-columns: 1fr; overflow: visible; }
  .visual-col { padding: 3rem 2rem; min-height: 260px; }
  .copy-col { padding: 2rem 1.75rem; overflow: visible; }
  .progress-track { max-width: 100%; width: 100%; }
  .progress-label { max-width: 100%; }
  h1 { font-size: 2.2rem; }
  footer { padding: 1rem 1.5rem; flex-direction: column; gap: 0.5rem; }
}
