/* === BASE === */
:root {
  --navy: #0d1b2a;
  --sand: #e4d0b8;
  --sand-dark: #c8b89a;
  --teal: #2a7c8c;
  --teal-light: #4fc8de;
  --ink: #0a0f14;
  --off-white: #f5ede3;
  --body-text: #b8a898;
  --section-pad: 100px 0;
  --content-width: 1100px;
  --radius: 4px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--off-white);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garant', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 16px;
}

.section-headline {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 560px;
}

/* === LAYOUT === */
.section-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 48px;
}

/* === HERO === */
.hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(42,124,140,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(228,212,184,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 80px 48px 80px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand-dark);
  opacity: 0.7;
  display: block;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Cormorant Garant', Georgia, serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 300;
  color: var(--sand);
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: italic;
  color: var(--teal-light);
}

.hero-sub {
  font-size: 17px;
  color: var(--sand-dark);
  max-width: 380px;
  margin-bottom: 48px;
  line-height: 1.65;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-value {
  font-family: 'Cormorant Garant', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--sand);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 10px;
  color: var(--sand-dark);
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  max-width: 90px;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(228,212,184,0.2);
}

/* Hero visual */
.hero-visual { display: flex; align-items: center; justify-content: center; }

.harbor-map {
  width: 100%;
  max-width: 420px;
  border: 1px solid rgba(228,212,184,0.15);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(42,124,140,0.1);
}

.harbor-map svg { display: block; width: 100%; height: auto; }

/* === HOW IT WORKS === */
.howitworks {
  background: var(--off-white);
  padding: var(--section-pad);
}

.howitworks .section-headline {
  margin-bottom: 64px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 60px;
  right: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand-dark), var(--sand-dark), transparent);
  opacity: 0.4;
}

.step {
  padding: 0 40px 0 0;
  position: relative;
}

.step-number {
  font-family: 'Cormorant Garant', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.7;
}

.step-connector {
  width: 1px;
  height: 60px;
  background: var(--sand-dark);
  opacity: 0.3;
  margin-bottom: 20px;
}

.step-connector--last { background: transparent; }

.step-title {
  font-family: 'Cormorant Garant', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step-body {
  font-size: 15px;
  color: #7a7068;
  line-height: 1.65;
  max-width: 280px;
}

/* === OUTCOMES === */
.outcomes {
  background: var(--sand);
  padding: var(--section-pad);
}

.outcomes .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.outcomes .section-headline { max-width: 420px; }

.outcomes-body {
  font-size: 16px;
  color: #7a6a5a;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 360px;
}

.outcomes-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.outcome-card {
  padding: 32px 0;
  border-bottom: 1px solid rgba(13,27,42,0.12);
}

.outcome-card:first-child { border-top: 1px solid rgba(13,27,42,0.12); }

.outcome-icon {
  margin-bottom: 14px;
  opacity: 0.8;
}

.outcome-title {
  font-family: 'Cormorant Garant', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}

.outcome-text {
  font-size: 14px;
  color: #7a7068;
  line-height: 1.7;
}

.outcomes-drawing {
  width: 100%;
  max-width: 320px;
  margin-top: 32px;
}

/* === PHILOSOPHY === */
.philosophy {
  background: var(--navy);
  padding: var(--section-pad);
}

.philosophy .section-label { color: var(--teal-light); }

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 72px;
  align-items: start;
}

.philosophy-headline {
  font-size: clamp(28px, 3.5vw, 46px);
  color: var(--sand);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.philosophy-body {
  font-size: 15px;
  color: #9a8e80;
  line-height: 1.8;
  margin-bottom: 20px;
}

.philosophy-body:last-child { margin-bottom: 0; }

.philosophy-body--accent {
  color: var(--sand-dark) !important;
  font-family: 'Cormorant Garant', serif;
  font-size: 18px;
  font-style: italic;
  padding-top: 12px;
  border-top: 1px solid rgba(228,212,184,0.15);
}

.neighborhood-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(228,212,184,0.12);
  padding-top: 48px;
}

.fact {
  padding-right: 48px;
  border-right: 1px solid rgba(228,212,184,0.12);
  padding-left: 0;
}

.fact:first-child { padding-left: 0; }
.fact:last-child { border-right: none; padding-right: 0; }

.fact-stat {
  display: block;
  font-family: 'Cormorant Garant', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--teal-light);
  margin-bottom: 10px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.fact-label {
  font-size: 13px;
  color: #9a8e80;
  line-height: 1.65;
  display: block;
}

/* === CLOSING === */
.closing {
  background: var(--off-white);
  padding: 100px 0;
  text-align: center;
}

.closing-content { max-width: 680px; margin: 0 auto; }

.closing-quote {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(22px, 3vw, 34px);
  font-style: italic;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 24px;
  font-weight: 300;
}

.closing-attr {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
}

/* === FOOTER === */
.site-footer {
  background: var(--ink);
  padding: 40px 0;
}

.site-footer .section-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-name {
  font-family: 'Cormorant Garant', serif;
  font-size: 18px;
  color: var(--sand);
  display: block;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 12px;
  color: #7a7068;
  display: block;
}

.footer-meta {
  font-size: 11px;
  color: #5a5048;
  letter-spacing: 0.08em;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 60px 32px; gap: 48px; }
  .hero-visual { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .step { border-left: 2px solid var(--teal); padding-left: 24px; margin-bottom: 40px; }
  .step-connector, .step-connector--last { display: none; }
  .outcomes .section-inner { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .neighborhood-facts { grid-template-columns: 1fr; }
  .fact { border-right: none; border-bottom: 1px solid rgba(228,212,184,0.12); padding-bottom: 32px; margin-bottom: 32px; }
  .fact:last-child { border-bottom: none; margin-bottom: 0; }
  .site-footer .section-inner { flex-direction: column; gap: 16px; text-align: center; }
  .section-inner { padding: 0 32px; }
  .howitworks, .outcomes, .philosophy, .closing { padding: 72px 0; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 44px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .section-inner { padding: 0 20px; }
}
