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

:root {
  --bg: #0B1219;
  --bg-card: #0F1A24;
  --green: #0B2B1C;
  --green-light: #122D1E;
  --gold: #C9932A;
  --gold-light: #D4A93E;
  --gold-dim: rgba(201, 147, 42, 0.15);
  --text: #F0EDE6;
  --text-muted: #8A9BAA;
  --text-dim: #4A5A68;
  --border: rgba(201, 147, 42, 0.18);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

.section-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-header {
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 80px 100px;
  overflow: hidden;
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Geometric house forms - stacked blocks in gold */
.shape {
  position: absolute;
  border: 1px solid var(--gold);
}

.shape-1 {
  width: 280px; height: 200px;
  top: 15%; right: 8%;
  background: var(--gold-dim);
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 80%);
}

.shape-2 {
  width: 220px; height: 260px;
  top: 20%; right: 18%;
  background: transparent;
  clip-path: polygon(10% 0, 90% 5%, 100% 95%, 5% 100%);
  border-color: rgba(201,147,42,0.35);
}

.shape-3 {
  width: 160px; height: 180px;
  top: 25%; right: 12%;
  background: rgba(201,147,42,0.06);
  clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
}

.shape-4 {
  width: 100px; height: 140px;
  top: 8%; right: 6%;
  border-color: rgba(201,147,42,0.5);
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}

.shape-5 {
  width: 60px; height: 80px;
  top: 5%; right: 4%;
  background: rgba(201,147,42,0.12);
  border-color: var(--gold-light);
}

/* Subtle grid pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,147,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,147,42,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Gold accent line */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 80px;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 60%);
}

.hero__content {
  position: relative;
  max-width: 720px;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero__headline {
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.08;
  font-family: 'Playfair Display', serif;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__sub {
  font-size: 20px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 48px;
}

.stat__value {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: -0.01em;
}

.stat__label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  line-height: 1.3;
}

.stat__divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin-right: 48px;
  flex-shrink: 0;
}

/* ─── Proof ─── */
.proof {
  background: var(--green);
  padding: 80px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.proof__quote {
  position: relative;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.8;
  margin-bottom: -20px;
  display: block;
}

blockquote p {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
}

.quote-attr {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quote-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.quote-location {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.proof__metrics {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.metric {}

.metric__number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.metric__label {
  font-size: 14px;
  color: var(--text-muted);
}

/* ─── Process ─── */
.process {
  padding: 100px 80px;
}

.process .section-header {
  text-align: center;
}

.process .section-header h2 {
  font-size: clamp(32px, 4vw, 52px);
}

.process .section-sub {
  margin: 0 auto;
  text-align: center;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin: 64px 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.step:hover { border-color: var(--gold); }

.step__number {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--gold-dim);
  line-height: 1;
  padding-top: 4px;
}

.step__content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

.step__content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

.process__guarantee {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 36px;
  background: var(--green-light);
  border: 1px solid var(--border);
  max-width: 680px;
  margin: 0 auto;
}

.guarantee__icon { flex-shrink: 0; }

.guarantee__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.guarantee__text strong { color: var(--text); }

/* ─── Positioning ─── */
.positioning {
  background: var(--bg-card);
  padding: 100px 80px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.positioning__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.positioning__text .section-tag { display: block; }

.positioning__text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 24px;
}

.positioning__text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

.positioning__gap {
  font-size: 18px !important;
  color: var(--text) !important;
  margin-bottom: 32px !important;
}

.positioning__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.positioning__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

.list-marker { flex-shrink: 0; margin-top: 1px; }

/* Geometric stack visual */
.positioning__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.geo-stack {
  position: relative;
  width: 260px;
  height: 320px;
}

.geo-block {
  position: absolute;
  border: 1px solid var(--gold);
  transition: transform 0.3s;
}

.geo-block--1 {
  width: 180px; height: 120px;
  bottom: 0; left: 40px;
  background: rgba(201,147,42,0.08);
  clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 85%);
}

.geo-block--2 {
  width: 150px; height: 130px;
  bottom: 40px; left: 60px;
  background: rgba(201,147,42,0.05);
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 80%);
  border-color: rgba(201,147,42,0.4);
}

.geo-block--3 {
  width: 120px; height: 110px;
  bottom: 80px; left: 75px;
  background: rgba(201,147,42,0.1);
  clip-path: polygon(5% 0, 95% 5%, 100% 95%, 0 100%);
  border-color: rgba(201,147,42,0.6);
}

.geo-block--4 {
  width: 80px; height: 90px;
  bottom: 120px; left: 85px;
  background: rgba(201,147,42,0.15);
  border-color: var(--gold-light);
}

/* ─── Curriculum ─── */
.curriculum {
  padding: 100px 80px;
}

.curriculum .section-header { text-align: center; }

.curriculum__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.curriculum__item {
  padding: 40px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.curriculum__item:hover { border-color: var(--gold); }

.curriculum__icon { margin-bottom: 20px; }

.curriculum__item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

.curriculum__item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── Closing ─── */
.closing {
  padding: 120px 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--green) 100%);
  border-top: 1px solid var(--border);
}

.closing__inner {
  max-width: 760px;
  margin: 0 auto;
}

.closing__headline h2 {
  font-size: clamp(32px, 4.5vw, 60px);
  margin-bottom: 40px;
  line-height: 1.1;
}

.closing__body p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.closing__body p:last-child {
  color: var(--text);
  font-size: 20px;
}

/* ─── Footer ─── */
.footer {
  background: var(--green);
  padding: 60px 80px 40px;
  border-top: 1px solid var(--border);
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  margin-bottom: 12px;
}

.footer__brand p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.6;
}

.footer__links span {
  font-size: 13px;
  color: var(--text-dim);
}

.footer__bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.footer__bottom span {
  font-size: 12px;
  color: var(--text-dim);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero, .proof, .process, .positioning, .curriculum, .closing, .footer {
    padding-left: 40px;
    padding-right: 40px;
  }
  .hero { padding-top: 100px; }
  .proof__inner,
  .positioning__inner { grid-template-columns: 1fr; gap: 48px; }
  .curriculum__grid { grid-template-columns: repeat(2, 1fr); }
  .geo-stack { display: none; }
}

@media (max-width: 768px) {
  .hero, .proof, .process, .positioning, .curriculum, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero__headline { font-size: 40px; }
  .hero__stats { flex-wrap: wrap; gap: 24px; }
  .stat { padding-right: 0; border-right: none; }
  .process__steps { grid-template-columns: 1fr; }
  .curriculum__grid { grid-template-columns: 1fr; }
  .hero__bg-shapes { display: none; }
  .proof__metrics { gap: 24px; }
  .metric__number { font-size: 40px; }
  .footer__inner { flex-direction: column; }
}