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

:root {
  --bg:         #ffffff;
  --text:       #1a1a1a;
  --text-muted: #5a5a5a;
  --accent:     #2e3d52;
  --rule:       #e0e0e0;
  --font-serif: 'EB Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ─── Layout ─────────────────────────────────────────────────────────────── */
.site {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ─── Header / Logo ──────────────────────────────────────────────────────── */
.site-header {
  padding: 3.5rem 0 0;
}

.logo {
  display: block;
  width: 580px;
  max-width: 100%;
  /* Pull up and down to crop the baked-in whitespace.
     Image is ~1230px tall; logo band is ~37%-65% = top 455px, bottom 430px of dead space */
  margin-top: -32%;
  margin-bottom: -36%;
  margin-left: -7.5%;
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  padding: 1rem 0 3.5rem;
}

.hero-tag {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--accent);
  margin-top: 1.5rem;
}

.hero-intro {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  max-width: 720px;
}

/* ─── Divider ────────────────────────────────────────────────────────────── */
.section-rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0;
}

/* ─── Content Blocks ─────────────────────────────────────────────────────── */
.blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 3.5rem 0;
}

.block {
  padding: 0 2.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.block:not(:first-child) {
  padding-left: 2.5rem;
  border-left: 1px solid var(--rule);
}

.block-title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.block-body {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ─── CTA ────────────────────────────────────────────────────────────────── */
.cta-section {
  padding: 3.5rem 0 5rem;
}

.cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
}

.cta-link {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 400;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity 0.2s ease;
}

.cta-link:hover {
  opacity: 0.6;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: 1.75rem 2.5rem;
  max-width: 860px;
  margin: 0 auto;
  font-size: 0.75rem;
  color: #aaa;
  letter-spacing: 0.04em;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .site {
    padding: 0 1.5rem;
  }

  .blocks {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 0;
  }

  .block {
    padding: 0;
    border-left: none !important;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--rule);
  }

  .block:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .site-footer {
    padding: 1.75rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .site {
    padding: 0 1.25rem;
  }

  .site-footer {
    padding: 1.75rem 1.25rem;
  }
}
