:root {
  --white: #FBFAF7;
  --border: #EFEBE2;
  --navy: #0E1F38;
  --navy-soft: #16294A;
  --gold: #B4A26A;
  --gold-dim: #8C7F55;
  --sand: #F1ECDD;
  --sand-icon: #C4B588;
  --text: #2C3446;
  --text-muted: #5A6578;
  --text-faint: #9C9585;
  --serif: 'Bodoni Moda', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max: 1120px;
  --max-narrow: 640px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}
.wrap-narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.mark {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--navy);
  text-decoration: none;
}
.primary-nav {
  display: flex;
  gap: 2rem;
}
.primary-nav a {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--navy);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 1px;
  background: var(--navy);
  display: block;
}

/* Hero */
.hero {
  text-align: center;
  padding: 6rem 2rem 5rem;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin: 0 0 1.75rem;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 1px;
  line-height: 1.3;
  color: var(--navy);
  margin: 0 auto;
  max-width: 640px;
}
.rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 2rem auto;
}
.hero-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto;
}
.cta {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 14px 36px;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.cta:hover,
.cta:focus-visible {
  background: var(--navy);
  color: var(--white);
}

/* Photo slots — swap to a real background-image on the same class once
   photography is ready; remove .photo-slot's icon/label rule when replaced. */
.photo-slot {
  background: var(--sand);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.photo-slot i {
  font-size: 28px;
  color: var(--sand-icon);
}
.photo-slot span {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* Hero image */
.hero-image {
  margin: 0;
  height: 380px;
}

/* Pillar image */
.pillar-image {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}
.pillar-image i { font-size: 22px; }

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
  padding: 5rem 2rem;
}
.pillar h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 0.9rem;
}
.pillar p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* Quote band */
.quote-band {
  background: var(--navy);
  padding: 4.5rem 2rem;
}
.quote-band blockquote {
  margin: 0 auto;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  line-height: 1.6;
  color: var(--white);
  text-align: center;
}

/* Intro */
.intro {
  padding: 5rem 2rem;
  text-align: center;
}
.intro p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
}
.text-link {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.text-link:hover,
.text-link:focus-visible {
  color: var(--gold-dim);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--text-faint);
}

/* Focus visibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* Responsive */
@media (max-width: 720px) {
  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
  }
  .primary-nav.open { display: flex; }
  .primary-nav a {
    padding: 14px 2rem;
  }
  .nav-toggle { display: flex; }
  .header-row { position: relative; }
  .pillars { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { padding: 4rem 1.5rem 3.5rem; }
  .hero-image { height: 260px; }
  .pillar-expanded { flex-direction: column; text-align: center; }
  .pillar-expanded .pillar-image { margin: 0 auto 1.25rem; }
  .offer-formats { grid-template-columns: 1fr; }
}

/* Page hero (interior pages) */
.page-hero {
  text-align: center;
  padding: 5rem 2rem 3rem;
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  letter-spacing: 0.5px;
  line-height: 1.35;
  color: var(--navy);
  margin: 0;
}

/* About portrait */
.about-portrait {
  margin: 0 auto 3rem;
  width: 100%;
  max-width: 640px;
  height: 420px;
}

/* Podcast cover */
.podcast-cover {
  margin: 0 auto 3rem;
  width: 100%;
  max-width: 420px;
  height: 420px;
}

/* Prose blocks */
.prose {
  padding: 0 2rem 3rem;
}
.prose p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}
.prose .lede {
  font-size: 17px;
  color: var(--text);
  font-weight: 400;
}
.prose em {
  color: var(--navy);
  font-style: italic;
}

/* Where this differs */
.differ {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.differ-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin: 0 0 1.25rem;
}
.differ p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}
.differ p:last-child { margin-bottom: 0; }

/* Expanded pillars (Philosophy page) */
.pillars-expanded {
  padding: 5rem 2rem;
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dim);
  text-align: center;
  margin: 0 0 3rem;
}
.pillar-expanded {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.pillar-expanded:last-child { margin-bottom: 0; }
.pillar-expanded .pillar-image {
  flex-shrink: 0;
  margin: 0;
}
.pillar-copy h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin: 8px 0 0.75rem;
}
.pillar-copy p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* Invitation */
.invitation {
  padding: 4rem 2rem 5rem;
  text-align: center;
}
.invitation h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  color: var(--navy);
  margin: 0 0 1rem;
}
.invitation p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 0 2rem;
}

/* Offer cards (The work) */
.offer-formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 1rem 2rem 4rem;
}
.offer-card {
  border: 1px solid var(--border);
  padding: 2.5rem 1.75rem;
  text-align: center;
}
.offer-card i {
  font-size: 26px;
  color: var(--gold);
}
.offer-card h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin: 1.25rem 0 0.9rem;
}
.offer-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* Netlify Forms honeypot — hidden from people, visible to bots */
.bot-field-wrap {
  position: absolute;
  left: -9999px;
}
.contact-form-wrap {
  padding: 1rem 2rem 5rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-form label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: -0.9rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
  outline: none;
  transition: border-color 0.2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--gold);
}
.contact-form textarea { resize: vertical; }
.cta-submit {
  align-self: flex-start;
  background: none;
  cursor: pointer;
  font-family: var(--sans);
  margin-top: 0.5rem;
}
