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

:root {
  --linen:      #f5f0e8;
  --charcoal:   #2a2a27;
  --green:      #2d4a3e;
  --green-mid:  #3d6355;
  --sand:       #c4a882;
  --sand-light: #e8ddd0;
  --muted:      #6b6860;
  --white:      #ffffff;

  --font-serif: 'Georgia', 'Times New Roman', serif;
  --font-sans:  system-ui, -apple-system, 'Segoe UI', sans-serif;

  --max-w: 1120px;
  --gap:    2rem;
}

html { scroll-behavior: smooth; }

body {
  background: var(--linen);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
}

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

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-serif); font-weight: normal; line-height: 1.2; }

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Layout helpers ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 2rem;
}

/* ── Nav ──────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--sand-light);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--green);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--green); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--green);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 6rem;
  padding-top: 120px;
}

.hero-content .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: var(--linen);
  max-width: 16ch;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--sand-light);
  max-width: 46ch;
  line-height: 1.6;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: var(--sand);
  color: var(--charcoal);
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-self: flex-start;
  transition: background 0.2s;
}

.hero-cta:hover { background: #b8996f; }

.hero-scroll {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 2rem;
  color: var(--sand-light);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.hero-scroll::before {
  content: '';
  display: block;
  width: 1px;
  height: 32px;
  background: var(--sand);
  opacity: 0.6;
}

/* ── Pillars ──────────────────────────────────────────────── */
.pillars {
  padding-block: 6rem;
  background: var(--white);
}

.pillars-header {
  margin-bottom: 3.5rem;
}

.pillars-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-top: 0.75rem;
  max-width: 24ch;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--sand-light);
}

.pillar {
  padding: 2.5rem 2rem 2.5rem 0;
  border-right: 1px solid var(--sand-light);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.pillar-number {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--sand);
}

.pillar h3 {
  font-size: 1.25rem;
  color: var(--green);
}

.pillar p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.pillar-link {
  font-size: 0.8125rem;
  color: var(--green-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}

.pillar-link:hover { gap: 0.7rem; }

/* ── Statement ────────────────────────────────────────────── */
.statement {
  padding-block: 7rem;
  background: var(--linen);
}

.statement-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.statement-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--green);
  line-height: 1.4;
  border-left: 3px solid var(--sand);
  padding-left: 2rem;
}

.statement-body p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

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

/* ── Numbers ──────────────────────────────────────────────── */
.numbers {
  padding-block: 5rem;
  background: var(--green);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.number-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.number-item .value {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--linen);
  line-height: 1;
}

.number-item .label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
}

/* ── Contact strip ────────────────────────────────────────── */
.contact-strip {
  padding-block: 6rem;
  background: var(--sand-light);
}

.contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.contact-strip h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  max-width: 28ch;
}

.contact-strip p {
  font-size: 0.9375rem;
  color: var(--muted);
  max-width: 40ch;
  margin-top: 0.75rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--green);
  color: var(--linen);
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--green-mid); }

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--charcoal);
  color: var(--muted);
  padding-block: 3rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--sand-light);
}

.footer-nav {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.8125rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--sand-light); }

.footer-legal {
  width: 100%;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #3a3a38;
  font-size: 0.75rem;
  color: #555;
  line-height: 1.6;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .pillar {
    padding: 2rem 0;
    border-right: none;
    border-bottom: 1px solid var(--sand-light);
  }

  .pillar:last-child { border-bottom: none; }

  .statement-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .numbers-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
