:root {
  --navy: #4d3a2a;
  --navy-deep: #2b2018;
  --terracotta: #4f7f91;
  --terracotta-deep: #3a5f6d;
  --terracotta-soft: #78a4b1;
  --gold: #ecdfb8;
  --sage: #7fa4b0;
  --cream: #f5efe3;
  --paper: #dde6e8;
  --ink: #2b2018;
  --ink-soft: #6f5d4d;
}

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

html {
  scroll-behavior: smooth;
  background: var(--cream);
  color-scheme: light;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--navy-deep);
}

/* ---------- nav ---------- */
.site-header {
  padding: 26px 0;
  border-bottom: 1px solid rgba(43,38,32,0.08);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brandmark {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.brandmark span { color: var(--terracotta); }

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  font-size: 15px;
}
.nav-links a {
  color: var(--ink-soft);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--navy-deep);
  border-bottom-color: var(--terracotta);
}

.nav-toggle {
  display: none;
}
.nav-toggle-label {
  display: none;
  cursor: pointer;
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 18px;
    border-bottom: 1px solid rgba(43,38,32,0.1);
    display: none;
    z-index: 50;
    box-shadow: 0 8px 16px rgba(31,41,55,0.08);
  }
  .nav-links li { padding: 10px 0; border-top: 1px solid rgba(43,38,32,0.07); }
  .nav-links li:first-child { border-top: none; }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-toggle-label {
    display: block;
    font-size: 15px;
    color: var(--navy-deep);
    font-weight: 600;
  }
  .site-header { position: relative; }
}

/* ---------- hero / orbit motif ---------- */
.hero {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
}
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(193, 99, 63, 0.25);
  pointer-events: none;
}
.orbit-dot {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--terracotta);
}
.orbit-dot.gold { background: var(--gold); width: 9px; height: 9px; }

.eyebrow {
  font-size: 14px;
  color: var(--sage);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

h1.display {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.14;
}

.lede {
  margin-top: 20px;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 48ch;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--paper);
}
.btn-primary:hover { background: var(--terracotta-soft); }
.btn-dark {
  background: var(--navy-deep);
  color: var(--cream);
}
.btn-dark:hover { background: var(--navy); }
.btn-outline {
  border: 1px solid var(--navy-deep);
  color: var(--navy-deep);
}
.btn-outline:hover { background: var(--navy-deep); color: var(--cream); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

/* ---------- sections ---------- */
.section {
  padding: 72px 0;
}
.section-paper {
  background: var(--paper);
  border-top: 1px solid rgba(43,38,32,0.08);
  border-bottom: 1px solid rgba(43,38,32,0.08);
}

.section-head {
  max-width: 56ch;
  margin-bottom: 44px;
}
.section-head h2 { font-size: 28px; margin-bottom: 12px; }
.section-head p { color: var(--ink-soft); font-size: 16px; }

/* ---------- cards / grids ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 760px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
}

.pillar-card {
  padding: 28px 24px;
  background: var(--cream);
  border: 1px solid rgba(43,38,32,0.08);
  border-radius: 4px;
}
.pillar-card .mark {
  font-family: 'Playfair Display', serif;
  color: var(--terracotta);
  font-size: 20px;
  margin-bottom: 14px;
  display: block;
}
.pillar-card h3 { font-size: 17px; margin-bottom: 8px; }
.pillar-card p { font-size: 15px; color: var(--ink-soft); }

.list-clean { list-style: none; }
.list-clean li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(43,38,32,0.09);
}
.list-clean li:last-child { border-bottom: 1px solid rgba(43,38,32,0.09); }
.list-clean .mark {
  font-family: 'Playfair Display', serif;
  color: var(--terracotta);
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1.5;
}
.list-clean .txt p:first-child { font-weight: 600; font-size: 16px; color: var(--navy-deep); margin-bottom: 3px; }
.list-clean .txt p:last-child { font-size: 15px; color: var(--ink-soft); }

/* ---------- forms ---------- */
.form-card {
  background: var(--terracotta);
  color: var(--cream);
  border-radius: 6px;
  padding: 40px 34px;
  box-shadow: 0 1px 2px rgba(31,41,55,0.08);
}
.form-card h3 { color: var(--cream); font-size: 22px; margin-bottom: 8px; }
.form-card .form-sub { font-size: 14px; color: rgba(246,242,236,0.7); margin-bottom: 26px; }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px;
  color: rgba(246,242,236,0.75);
  margin-bottom: 6px;
}
.field input, .field textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 3px;
  color: var(--cream);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(246,242,236,0.35); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.11);
}

.hp-field { position: absolute; left: -9999px; }

.form-fine { margin-top: 16px; font-size: 12.5px; color: rgba(246,242,236,0.55); }

.form-success { display: none; text-align: center; padding: 12px 0; }
.form-success.active { display: block; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { font-size: 14px; color: rgba(246,242,236,0.7); }

/* light (on-cream) form variant, used on Contact */
.form-card.light {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid rgba(43,38,32,0.08);
}
.form-card.light h3 { color: var(--navy-deep); }
.form-card.light .form-sub { color: var(--ink-soft); }
.form-card.light .field label { color: var(--ink-soft); }
.form-card.light .field input,
.form-card.light .field textarea {
  background: var(--cream);
  border: 1px solid rgba(43,38,32,0.14);
  color: var(--ink);
}
.form-card.light .field input::placeholder,
.form-card.light .field textarea::placeholder { color: rgba(43,38,32,0.35); }
.form-card.light .form-fine { color: var(--ink-soft); }

button[type="submit"] {
  width: 100%;
  padding: 14px 18px;
  background: var(--navy-deep);
  color: var(--cream);
  border: none;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.15s ease;
}
button[type="submit"]:hover { background: var(--navy); }
button[type="submit"]:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ---------- host/profile card ---------- */
.host-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(43,38,32,0.09);
}
.host-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}
.host-name { font-weight: 600; font-size: 15px; color: var(--navy-deep); }
.host-role { font-size: 14px; color: var(--ink-soft); margin-top: 1px; }

/* ---------- pricing / program ---------- */
.price-card {
  background: var(--navy-deep);
  color: var(--cream);
  border-radius: 6px;
  padding: 40px 34px;
}
.price-card .price-eyebrow { color: rgba(246,242,236,0.6); font-size: 13px; margin-bottom: 6px; }
.price-card .price-value { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 40px; margin-bottom: 4px; }
.price-card .price-note { font-size: 13.5px; color: rgba(246,242,236,0.55); margin-bottom: 26px; }
.price-card .list-clean li { border-top-color: rgba(255,255,255,0.12); }
.price-card .list-clean li:last-child { border-bottom-color: rgba(255,255,255,0.12); }
.price-card .list-clean .txt p:first-child { color: var(--cream); }
.price-card .list-clean .txt p:last-child { color: rgba(246,242,236,0.65); }
.price-card .list-clean .mark { color: var(--terracotta-soft); }
.price-card .btn-primary { width: 100%; text-align: center; margin-top: 24px; }

/* ---------- blog cards ---------- */
.post-card {
  padding: 26px 0;
  border-top: 1px solid rgba(43,38,32,0.09);
}
.post-card:last-child { border-bottom: 1px solid rgba(43,38,32,0.09); }
.post-card .post-date { font-size: 13px; color: var(--sage); margin-bottom: 6px; }
.post-card h3 { font-size: 20px; margin-bottom: 8px; }
.post-card p { font-size: 15px; color: var(--ink-soft); max-width: 60ch; }
.post-card .post-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--terracotta);
  font-weight: 600;
}

.coming-soon-note {
  margin-top: 40px;
  padding: 20px 22px;
  background: var(--cream);
  border: 1px dashed rgba(43,38,32,0.2);
  border-radius: 4px;
  font-size: 14.5px;
  color: var(--ink-soft);
}

/* ---------- footer ---------- */
.site-footer {
  padding: 48px 0 60px;
  border-top: 1px solid rgba(43,38,32,0.08);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-links {
  display: flex;
  gap: 22px;
  list-style: none;
  font-size: 14px;
  color: var(--ink-soft);
}
.footer-fine { font-size: 13px; color: var(--ink-soft); margin-top: 20px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
