/* ============================================================
   The Connected Presence Practice — Julie Lam
   Warm-brown / espresso editorial system
   ============================================================ */
:root {
  --bg: #f6f3ec;
  --bg-2: #efe9dc;
  --bg-3: #e6dcca;
  --ink: #2a2218;
  --ink-2: #4a3e30;
  --ink-3: #8b7d68;
  --rule: #d8ccb6;
  --brown: #36302a;
  --gold: #8b7046;
  --tan: #cdae94;
  --accent: var(--gold);

  --esp-1: #1e140a;
  --esp-2: #2d2010;
  --esp-3: #1a1208;

  --serif: "Cormorant Garamond", "Libre Baskerville", Georgia, serif;
  --book: "Libre Baskerville", Georgia, serif;
  --display: "Raleway", -apple-system, sans-serif;
  --sans: "Mulish", -apple-system, BlinkMacSystemFont, sans-serif;

  --pad-x: clamp(20px, 5vw, 84px);
  --max: 1280px;
  --gutter: clamp(18px, 3vw, 44px);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}
::selection {
  background: var(--gold);
  color: #fff;
}

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.eyebrow.on-dark {
  color: var(--tan);
}
.lede {
  font-family: var(--book);
  font-style: italic;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.6;
  color: var(--ink-2);
  font-weight: 400;
}
.italic {
  font-style: italic;
}

/* ---------- Layout ---------- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
}
.col-4 {
  grid-column: span 4;
}
.col-5 {
  grid-column: span 5;
}
.col-6 {
  grid-column: span 6;
}
.col-7 {
  grid-column: span 7;
}
.col-8 {
  grid-column: span 8;
}
.col-12 {
  grid-column: span 12;
}
@media (max-width: 860px) {
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8 {
    grid-column: span 12;
  }
}

section {
  padding: clamp(56px, 8vw, 116px) 0;
}
section.tight {
  padding: clamp(36px, 5vw, 72px) 0;
}
section.flush-top {
  padding-top: 0;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 14px var(--pad-x);
  background: color-mix(in oklab, var(--bg) 90%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in oklab, var(--rule) 70%, transparent);
  transition: transform 400ms ease;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-logo {
  height: 128px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 26px);
}
.nav-link {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-2);
  padding: 6px 2px;
  position: relative;
  white-space: nowrap;
  transition: color 200ms;
}
.nav-link:hover {
  color: var(--gold);
}
.nav-link.active {
  color: var(--gold);
}
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: var(--gold);
}
.nav-cta {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 9px 16px;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition:
    background 250ms,
    color 250ms;
  display: inline-block;
}
.nav-cta:hover {
  background: var(--gold);
  color: #fff;
}
.nav-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.nav-social svg {
  width: 34px;
  height: 34px;
  fill: var(--ink-3);
  transition: fill 200ms;
}
.nav-social a:hover svg {
  fill: var(--gold);
}
@media (max-width: 1080px) {
  .nav-social,
  .nav-cta {
    display: none;
  }
}
@media (max-width: 820px) {
  .nav-links {
    display: none;
  }
  .nav-mobile-toggle {
    display: inline-flex !important;
  }
}
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-mobile-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  display: block;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px var(--pad-x) 20px;
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in oklab, var(--rule) 50%, transparent);
  color: var(--ink-2);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 15px 26px;
  border: 1px solid var(--brown);
  color: var(--brown);
  background: transparent;
  transition:
    background 250ms,
    color 250ms,
    border-color 250ms;
}
.btn:hover {
  background: var(--brown);
  color: var(--bg);
}
.btn-solid {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.btn-solid:hover {
  background: var(--brown);
  border-color: var(--brown);
}
.btn-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: rgba(255, 255, 255, 0.92);
}
.btn-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}
.btn-light-solid {
  background: rgba(255, 255, 255, 0.92);
  border-color: transparent;
  color: var(--brown);
}
.btn-light-solid:hover {
  background: #fff;
}
.btn .arrow {
  transition: transform 250ms;
}
.btn:hover .arrow {
  transform: translateX(4px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: gap 250ms;
}
.text-link:hover {
  gap: 14px;
}

/* ---------- Section heads ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--gutter);
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 64px);
}
@media (max-width: 860px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}
.section-title .italic {
  font-style: italic;
  color: var(--gold);
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1000ms ease,
    transform 1000ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Page transition ---------- */
.page {
  animation: pageIn 700ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px var(--pad-x) clamp(80px, 12vw, 160px);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20, 14, 8, 0.86) 0%,
    rgba(30, 24, 12, 0.66) 45%,
    rgba(45, 35, 24, 0.34) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.hero-content {
  max-width: 760px;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  color: #fff;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 18px 0 0;
  text-wrap: balance;
}
.hero-title .italic {
  font-style: italic;
  color: var(--tan);
}
.hero-tagline {
  font-family: var(--book);
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(18px, 2.1vw, 26px);
  line-height: 1.5;
  margin: 28px 0 0;
  max-width: 620px;
}
.hero-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.8;
  margin: 22px 0 0;
  max-width: 560px;
}
.hero-sub strong {
  color: #fff;
  font-weight: 600;
}

/* wavy divider */
.wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}
.wave svg {
  display: block;
  width: 100%;
  height: clamp(40px, 5vw, 70px);
}

/* ---------- Intro ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 860px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
}
.intro-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
}
.intro-lines p {
  margin: 0 0 6px;
  font-size: 16.5px;
  color: var(--ink-2);
  line-height: 1.75;
}
.intro-lines p.short {
  font-family: var(--book);
  font-style: italic;
  font-size: 19px;
  color: var(--brown);
}
.highlight {
  background: rgba(139, 112, 70, 0.09);
  border-left: 3px solid var(--gold);
  padding: 18px 22px;
  margin-top: 28px;
  font-family: var(--book);
  font-style: italic;
  font-size: 17px;
  color: var(--brown);
  line-height: 1.7;
}

/* ---------- Espresso section ---------- */
.espresso {
  background: linear-gradient(
    160deg,
    var(--esp-1) 0%,
    var(--esp-2) 50%,
    var(--esp-3) 100%
  );
  color: rgba(255, 255, 255, 0.85);
}
.espresso .section-title {
  color: rgba(255, 255, 255, 0.96);
}
.espresso .section-title .italic {
  color: var(--tan);
}
.espresso p {
  color: rgba(255, 255, 255, 0.82);
}
.espresso a.inline {
  color: var(--tan);
  border-bottom: 1px solid rgba(205, 174, 148, 0.4);
}
.narrative {
  columns: 2;
  column-gap: clamp(32px, 5vw, 64px);
}
.narrative p {
  margin: 0 0 1em;
  break-inside: avoid;
  font-size: 15.5px;
  line-height: 1.85;
}
.narrative.single {
  columns: 1;
}
@media (max-width: 760px) {
  .narrative {
    columns: 1;
  }
}

/* ---------- Reader ---------- */
.reader {
  max-width: 660px;
}
.reader p {
  font-family: var(--book);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.85;
  color: var(--ink-2);
  margin: 0 0 1.1em;
  text-wrap: pretty;
}
.reader p.first::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-size: 4.4em;
  line-height: 0.85;
  float: left;
  padding: 10px 14px 0 0;
  color: var(--gold);
}

/* ---------- Offerings ---------- */
.offerings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}
@media (max-width: 900px) {
  .offerings {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
}
.offering {
  display: flex;
  flex-direction: column;
}
.offering-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.offering-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--display);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.offering-name {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 16px 0 12px;
}
.offering p {
  margin: 0 0 18px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.7;
}
.offering .text-link {
  margin-top: auto;
}

/* diploma band */
.diploma {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--gutter);
  align-items: center;
  padding: 36px;
  border: 1px solid var(--rule);
  background: var(--bg-2);
  margin-top: var(--gutter);
}
@media (max-width: 760px) {
  .diploma {
    grid-template-columns: 1fr;
    text-align: left;
  }
}
.diploma h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.diploma p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14.5px;
  max-width: 640px;
}
.diploma-logo {
  height: 64px;
  width: auto;
}

/* ---------- Pull quote ---------- */
.pull {
  position: relative;
  text-align: center;
  padding: clamp(56px, 9vw, 120px) 0;
  overflow: hidden;
}
.pull-bg {
  position: absolute;
  inset: 0;
  opacity: 0.5;
}
.pull-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pull-inner {
  position: relative;
  z-index: 2;
}
.pull-text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 4.4vw, 56px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  max-width: 20ch;
  margin: 0 auto;
  color: var(--brown);
  text-wrap: balance;
}
.pull-attr {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 28px;
  font-weight: 600;
}

/* ---------- Book cover ---------- */
.cover-shadow {
  box-shadow:
    0 40px 70px -24px rgba(40, 28, 14, 0.45),
    0 14px 24px -12px rgba(40, 28, 14, 0.3);
}

/* ---------- Band (full-bleed) ---------- */
.band {
  position: relative;
  overflow: hidden;
}
.band-bg {
  position: absolute;
  inset: 0;
}
.band-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.band-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(40, 30, 18, 0.4);
}

/* ---------- About bio ---------- */
.bio-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 5vw, 76px);
  align-items: start;
}
@media (max-width: 900px) {
  .bio-grid {
    grid-template-columns: 1fr;
  }
}
.bio-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
}
.bio-meta {
  margin-top: 26px;
}
.bio-meta-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--rule);
}
.bio-meta-row .k {
  font-family: var(--display);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  padding-top: 2px;
}
.bio-meta-row .v {
  font-size: 14.5px;
  color: var(--ink-2);
}

/* ---------- Course list ---------- */
.course-list {
  display: grid;
}
.course {
  display: grid;
  grid-template-columns: 64px 1.3fr 2fr 1fr auto;
  gap: var(--gutter);
  padding: 36px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
  transition: padding-left 250ms;
}
.course:last-child {
  border-bottom: 1px solid var(--rule);
}
.course:hover {
  padding-left: 12px;
}
.course-num {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 700;
  padding-top: 8px;
}
.course-name {
  font-family: var(--serif);
  font-size: clamp(23px, 2.3vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  font-weight: 400;
}
.course-desc {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.7;
}
.course-meta {
  font-family: var(--display);
  font-size: 10.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  padding-top: 8px;
  display: grid;
  gap: 7px;
}
.course-meta .price {
  color: var(--gold);
}
.course-action {
  padding-top: 4px;
}
@media (max-width: 920px) {
  .course {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .course-num,
  .course-meta {
    padding-top: 0;
  }
}

/* ---------- For-whom list ---------- */
.whom {
  display: grid;
  gap: 0;
  margin-top: 8px;
  padding-left: 0;
}
.whom li {
  list-style: none;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
  font-family: var(--book);
  font-size: 17px;
  font-style: italic;
  color: var(--ink-2);
  display: flex;
  gap: 16px;
  align-items: baseline;
}
.whom li::before {
  content: "✦";
  color: var(--tan);
  font-style: normal;
  font-size: 13px;
  flex-shrink: 0;
}
.whom li:last-child {
  border-bottom: 1px solid var(--rule);
}

/* closing poem */
.closing {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.4;
  color: var(--brown);
  text-align: center;
}

/* ---------- Testimonials ---------- */
.tcard {
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}
.tcard p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.4;
  color: var(--ink-2);
  margin: 0 0 14px;
}
.tcard .by {
  font-family: var(--display);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}

/* ---------- Events ---------- */
.events {
  display: grid;
}
.event {
  display: grid;
  grid-template-columns: 150px 1.4fr 1.4fr auto;
  gap: var(--gutter);
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  align-items: center;
}
.event:last-child {
  border-bottom: 1px solid var(--rule);
}
.event-date {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.event-date small {
  display: block;
  font-family: var(--display);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 6px;
  font-weight: 600;
}
.event-name {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.2;
}
.event-where {
  font-size: 13.5px;
  color: var(--ink-2);
}
.event-where .status {
  display: block;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 5px;
}
@media (max-width: 920px) {
  .event {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ---------- Blog ---------- */
.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}
@media (max-width: 900px) {
  .posts {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
}
.post {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.post-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.post-cat {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 18px 0 8px;
}
.post-title {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.post-excerpt {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0;
}
.post-meta {
  font-family: var(--display);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 12px;
  font-weight: 600;
}
/* Post cards are links — strip default anchor styling */
a.post {
  text-decoration: none;
  color: inherit;
}
a.post .post-title {
  transition: color 0.25s ease;
}
a.post:hover .post-title {
  color: var(--gold);
}

/* ---------- Single post ---------- */
.post-back {
  display: inline-block;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-3);
  text-decoration: none;
  margin-bottom: clamp(28px, 5vw, 48px);
}
.post-back:hover {
  color: var(--gold);
}
.post-head {
  max-width: 660px;
}
.post-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 8px 0 14px;
}
/* Rendered Markdown inside .reader */
.reader h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
  margin: 1.6em 0 0.5em;
}
.reader h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(21px, 2.4vw, 26px);
  margin: 1.4em 0 0.4em;
}
.reader blockquote {
  margin: 1.6em 0;
  padding-left: clamp(20px, 3vw, 32px);
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(21px, 2.4vw, 27px);
  line-height: 1.45;
  color: var(--ink);
}
.reader blockquote p {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.reader ul,
.reader ol {
  font-family: var(--book);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.85;
  color: var(--ink-2);
  margin: 0 0 1.1em;
  padding-left: 1.4em;
}
.reader li {
  margin: 0 0 0.5em;
}
.reader a {
  color: var(--gold);
  border-bottom: 1px solid rgba(139, 112, 70, 0.35);
  text-decoration: none;
}
.reader img {
  max-width: 100%;
  height: auto;
  margin: 1.6em 0;
}

/* ---------- Connect ---------- */
.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 900px) {
  .connect-grid {
    grid-template-columns: 1fr;
  }
}
.field {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}
.field label {
  font-family: var(--display);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.field input,
.field textarea,
.field select {
  font: inherit;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 11px 0;
  color: var(--ink);
  outline: none;
  font-size: 15px;
  transition: border-color 200ms;
  width: 100%;
}
.field textarea {
  resize: vertical;
  min-height: 110px;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
}
.connect-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
}
.contact-rows {
  display: grid;
}
.contact-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
}
.contact-row:last-child {
  border-bottom: 1px solid var(--rule);
}
.contact-row .k {
  font-family: var(--display);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.contact-row .v {
  font-family: var(--book);
  font-size: 17px;
  color: var(--ink);
}

/* ---------- Footer ---------- */
.foot {
  background: linear-gradient(160deg, var(--esp-1), var(--esp-3));
  color: rgba(255, 255, 255, 0.8);
  padding: clamp(60px, 8vw, 110px) var(--pad-x) 30px;
}
.foot-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.foot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--gutter);
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
@media (max-width: 820px) {
  .foot-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.foot-title {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-weight: 400;
  margin: 0 0 22px;
  color: #fff;
  text-wrap: balance;
}
.foot-title .italic {
  font-style: italic;
  color: var(--tan);
}
.foot p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 400px;
  margin: 0 0 22px;
  font-size: 15px;
}
.foot-col h4 {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tan);
  margin: 0 0 18px;
  font-weight: 600;
}
.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 11px;
}
.foot-col a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 200ms;
}
.foot-col a:hover {
  color: #fff;
}
.subscribe {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.4);
  max-width: 400px;
}
.subscribe input[type="email"] {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 14px 16px;
  font: inherit;
  font-size: 14px;
  color: #fff;
  outline: none;
}
.subscribe input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
/* hide Mailchimp honeypot */
.subscribe .mc-honeypot {
  position: absolute;
  left: -5000px;
}
.subscribe button {
  padding: 0 22px;
  background: var(--gold);
  color: #fff;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 200ms;
  white-space: nowrap;
}
.subscribe button:hover {
  background: var(--tan);
  color: var(--brown);
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 26px;
  flex-wrap: wrap;
}
.foot-bottom .copy {
  font-family: var(--display);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
}
.foot-social {
  display: flex;
  gap: 16px;
}
.foot-social svg {
  width: 22px;
  height: 22px;
  fill: rgba(255, 255, 255, 0.6);
  transition: fill 200ms;
}
.foot-social a:hover svg {
  fill: #fff;
}

/* ---------- Accreditation ---------- */
.accred {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.accred-logos {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
}
.accred-logos img {
  height: 52px;
  width: auto;
}

/* ---------- Line cadence ----------
   Mirrors the one-sentence-per-line rhythm of Julie's own copy.
   Each <p> inside .cadence is one line exactly as written;
   .sp opens a breath where the source leaves a gap. */
.cadence p {
  margin: 0 0 0.2em;
  text-wrap: balance;
}
.cadence p.sp {
  margin-top: 1.15em;
}
.cadence p.first::first-letter {
  padding-bottom: 6px;
}
