@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }

/* ─── Tokens ─── */
:root {
  --ochre:    #BF5B30;
  --ochre-dk: #A04A24;
  --cream:    #F7F2EC;
  --linen:    #F0E8DE;
  --gold:     #C9B99A;
  --red-dot:  #A0201A;
  --sage:     #5C7A5A;
  --ink:      #2e2319;
  --muted:    #4a3929;
  --label:    #8a7060;
  --soft:     #6b5a4e;
  --rule:     #C9B99A;
  --white-card: #FFFCF8;
}

/* ─── Base ─── */
body {
  background: var(--cream);
  font-family: 'Jost', sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

/* ─── Nav ─── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 3rem;
  background: var(--cream);
  border-bottom: 0.5px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo {
  height: 44px;
  width: auto;
}
.nav-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--ochre);
  letter-spacing: 0.03em;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ochre); }
.nav-links a.active {
  color: var(--ochre);
  border-bottom: 1px solid var(--ochre);
  padding-bottom: 1px;
}

/* ─── Hero (ochre) ─── */
.hero {
  background: var(--ochre);
  padding: 6rem 3rem 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(247,242,236,0.15) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
}
.hero > * { position: relative; }
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.75;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin: 0 auto 2rem;
  letter-spacing: -0.02em;
  max-width: 620px;
}
.hero-headline em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--cream);
  opacity: 0.9;
  max-width: 440px;
  margin: 0 auto 3rem;
  font-family: 'Cormorant Garamond', serif;
}
.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.hero-name em { font-style: italic; color: var(--gold); }
.hero-title {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  margin-bottom: 2.5rem;
}
.hero-intro {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  max-width: 580px;
  opacity: 0.92;
}

/* ─── Buttons ─── */
.btn-cream {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
  background: var(--cream);
  border: none;
  padding: 14px 36px;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s;
}
.btn-cream:hover { opacity: 0.88; }
.btn-outline-cream {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: transparent;
  border: 0.5px solid var(--cream);
  padding: 14px 36px;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s;
}
.btn-outline-cream:hover { opacity: 0.75; }
.btn-primary {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--ochre);
  border: none;
  padding: 14px 36px;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--ochre-dk); }
.btn-ghost {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
  background: transparent;
  border: 0.5px solid var(--ochre);
  padding: 14px 36px;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s;
}
.btn-ghost:hover { opacity: 0.7; }
.cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Dot divider ─── */
.dot-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 2.5rem 0;
  border-bottom: 0.5px solid var(--rule);
}
.dot-row .d-sm  { width: 6px;  height: 6px;  border-radius: 50%; background: var(--gold); }
.dot-row .d-md  { width: 9px;  height: 9px;  border-radius: 50%; background: var(--gold); }
.dot-row .d-lg  { width: 13px; height: 13px; border-radius: 50%; background: var(--gold); }
.dot-row .d-red { width: 9px;  height: 9px;  border-radius: 50%; background: var(--red-dot); }

/* ─── Section labels / eyebrows ─── */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--label);
  margin-bottom: 2rem;
}
.eyebrow-sage { color: var(--sage); }
.eyebrow-center { text-align: center; }

/* ─── Philosophy band ─── */
.philosophy {
  background: var(--linen);
  padding: 4rem 3rem;
  border-top: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.philosophy::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(191,91,48,0.07) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  pointer-events: none;
}
.phil-inner {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.phil-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  white-space: nowrap;
  padding-top: 6px;
  min-width: 80px;
}
.phil-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--ochre);
}

/* ─── Pullquote ─── */
.pullquote {
  padding: 4rem 3rem;
  border-bottom: 0.5px solid var(--rule);
  text-align: center;
  background: var(--linen);
  position: relative;
  overflow: hidden;
}
.pullquote::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(191,91,48,0.08) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  pointer-events: none;
}
.pq-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--ochre);
  max-width: 520px;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}
.pq-attr {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a8878;
  position: relative;
  z-index: 1;
}

/* ─── Access strip ─── */
.access-strip {
  border-top: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
  padding: 1.75rem 3rem;
  max-width: 100%;
}
.access-strip-inner { max-width: 680px; margin: 0 auto; }
.access-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: var(--ochre);
  margin-bottom: 0.5rem;
}
.access-text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--soft);
}

/* ─── CTA block ─── */
.cta-block {
  text-align: center;
  padding: 5rem 3rem 6rem;
}
.cta-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 300;
  color: var(--ochre);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.cta-headline em { font-style: italic; }
.cta-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.8;
  max-width: 400px;
  margin: 0 auto 2.5rem;
}

/* ─── Footer ─── */
.footer {
  border-top: 0.5px solid var(--rule);
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--ochre);
  text-decoration: none;
}
.footer-tag {
  font-size: 11px;
  color: #9a8878;
  letter-spacing: 0.08em;
  font-style: italic;
}
.red-dot { color: var(--red-dot); }

/* ─── Responsive ─── */
@media (max-width: 700px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-wordmark { display: none; }
  .nav-links { gap: 1.25rem; }
  .hero { padding: 4rem 1.5rem 3.5rem; }
  .philosophy, .pullquote, .access-strip { padding-left: 1.5rem; padding-right: 1.5rem; }
  .phil-inner { flex-direction: column; gap: 1rem; }
  .footer { padding: 1.5rem; flex-direction: column; text-align: center; }
  .cta-block { padding: 3rem 1.5rem 4rem; }
}
