/* ============================================================
   KinCove Journeys — Design System
   Palette: ink #17354A / ivory #F7F3EA / stone #DED5C7
            sage #899181 / charcoal #313333 / bronze #A58B63
   ============================================================ */

:root {
  --ink: #17354A;
  --ink-deep: #102738;
  --ivory: #F7F3EA;
  --ivory-soft: #FBF8F1;
  --stone: #DED5C7;
  --stone-light: #EAE3D7;
  --sage: #899181;
  --sage-light: #B9BFAF;
  --charcoal: #313333;
  --bronze: #A58B63;
  --line: rgba(23, 53, 74, 0.14);
  --serif: "Cormorant Garamond", "Noto Serif", Georgia, serif;
  --sans: "Inter", "Noto Sans", -apple-system, sans-serif;
  --maxw: 1180px;
  --radius: 4px;
  --shadow-soft: 0 18px 50px -24px rgba(23, 53, 74, 0.22);
  --transition: 0.5s cubic-bezier(0.22, 0.61, 0.21, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.18;
  margin: 0 0 0.5em;
  letter-spacing: 0.005em;
}
h1 { font-size: clamp(2.6rem, 5.2vw, 4.2rem); line-height: 1.08; }
h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1.1em; max-width: 68ch; }
p:last-child { margin-bottom: 0; }
a { color: var(--ink); text-decoration-color: var(--bronze); text-underline-offset: 3px; }
a:hover { color: var(--bronze); }
strong { font-weight: 600; color: var(--ink); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--bronze);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--bronze);
  display: inline-block;
}

.lead { font-size: 1.16rem; line-height: 1.8; color: #45474a; }
.serif-note {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
}
.text-small { font-size: 0.86rem; line-height: 1.6; color: #5b5e60; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.section--stone { background: var(--stone-light); }
.section--sage { background: #EDEEE7; }
.section--ink { background: var(--ink); color: #E9E4D8; }
.section--ink h2, .section--ink h3 { color: var(--ivory); }
.section--ink p { color: #C9CFC9; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.split--wide-left { grid-template-columns: 1.15fr 0.85fr; }
.split--wide-right { grid-template-columns: 0.85fr 1.15fr; }
.center { text-align: center; }
.center p { margin-left: auto; margin-right: auto; }
.narrow { max-width: 760px; }
.narrow--center { max-width: 780px; margin: 0 auto; text-align: center; }
.narrow--center p { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 1rem 2.1rem;
  min-height: 54px;
  border-radius: 2px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--ivory);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn:hover { background: var(--ink-deep); color: #fff; border-color: var(--ink-deep); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(23,53,74,0.4); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(23,53,74,0.05); color: var(--ink); }
.btn--light { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.btn--light:hover { background: #fff; border-color: #fff; color: var(--ink); }
.btn--ghost-light { background: transparent; color: var(--ivory); border-color: rgba(247,243,234,0.45); }
.btn--ghost-light:hover { border-color: var(--ivory); background: rgba(247,243,234,0.08); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.center .btn-row, .narrow--center .btn-row, .btn-row.center { justify-content: center; }

.link-arrow {
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 3px;
}
.link-arrow::after { content: "→"; color: var(--bronze); transition: var(--transition); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.site-header .header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.1rem clamp(1.25rem, 3.5vw, 2.75rem);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-header.is-solid {
  background: rgba(247, 243, 234, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-right: auto;
}
.brand img { width: 44px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--serif); font-size: 1.45rem; color: var(--ink); font-weight: 600; letter-spacing: 0.01em; }
.brand-sub { font-size: 0.6rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--bronze); font-weight: 600; }

.main-nav { display: flex; align-items: center; gap: 1.9rem; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  padding: 0.4rem 0;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--bronze);
  transition: width 0.35s ease;
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { width: 100%; }
.main-nav a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.header-cta { padding: 0.7rem 1.5rem; min-height: 44px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.6rem;
  cursor: pointer;
  width: 48px; height: 48px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--ink);
  margin: 5px auto;
  transition: var(--transition);
}

:focus-visible { outline: 2px solid var(--bronze); outline-offset: 3px; border-radius: 2px; }

/* Gentle scrim behind the header on photo-hero pages, until the solid header appears */
body:has(.page-hero--image) .site-header:not(.is-solid) {
  background: linear-gradient(180deg, rgba(16, 39, 56, 0.42), rgba(16, 39, 56, 0));
}

/* ---------- Hero (home) ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(7rem, 12vw, 9rem) 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
  width: 100%;
}
.hero-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 1.6rem;
}
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 em { font-style: italic; color: var(--bronze); }
.hero-sub { font-size: 1.18rem; line-height: 1.8; color: #45474a; max-width: 46ch; }
.hero-note {
  margin-top: 2.4rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-note::before { content: ""; width: 44px; height: 1px; background: var(--sage); }
.hero-media { position: relative; }
.hero-media .arch {
  border-radius: 999px 999px 6px 6px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 0.82;
}
.hero-media .arch img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::before {
  content: "";
  position: absolute;
  inset: -1.4rem -1.4rem auto auto;
  width: 58%; height: 46%;
  border: 1px solid var(--bronze);
  border-radius: 999px 999px 0 0;
  opacity: 0.5;
  pointer-events: none;
}
.shoreline {
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  width: 100%;
  height: 110px;
  pointer-events: none;
}
.shoreline path {
  fill: none;
  stroke: var(--sage);
  stroke-width: 1.2;
  opacity: 0.55;
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
  animation: shore 14s ease-in-out infinite alternate;
}
.shoreline path:nth-child(2) { stroke: var(--bronze); opacity: 0.35; animation-delay: -6s; }
@keyframes shore { to { stroke-dashoffset: 0; } }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: clamp(9rem, 16vw, 13rem) 0 clamp(3.5rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.page-hero h1 { max-width: 15ch; }
.page-hero .lead { max-width: 56ch; }
.page-hero--image {
  min-height: 72svh;
  display: flex;
  align-items: flex-end;
  color: var(--ivory);
}
.page-hero--image .bg {
  position: absolute; inset: 0;
}
.page-hero--image .bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero--image .bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,39,56,0.34) 0%, rgba(16,39,56,0.12) 45%, rgba(16,39,56,0.62) 100%);
}
.page-hero--image .wrap { position: relative; z-index: 1; }
.page-hero--image h1 { color: var(--ivory); }
.page-hero--image .lead { color: #E4DFD2; }

/* ---------- Trust strip ---------- */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ivory-soft); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  padding: 2.6rem 0;
}
.trust-item { display: flex; flex-direction: column; gap: 0.7rem; align-items: flex-start; }
.trust-item svg { width: 30px; height: 30px; stroke: var(--sage); fill: none; stroke-width: 1.3; }
.trust-item span { font-size: 0.88rem; font-weight: 600; color: var(--ink); line-height: 1.45; }
.licence-note {
  border-top: 1px dashed var(--line);
  padding: 0.9rem 0;
  font-size: 0.8rem;
  color: #6a6d6f;
  letter-spacing: 0.02em;
}
.placeholder-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a6d43;
  background: rgba(165, 139, 99, 0.14);
  border: 1px dashed rgba(165, 139, 99, 0.55);
  padding: 0.15rem 0.55rem;
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 0.4rem;
}

/* ---------- Pathways ---------- */
.pathways { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 3.5vw, 3rem); margin-top: 3.5rem; }
.pathway {
  background: var(--ivory-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.pathway:hover { box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.pathway .img-wrap { aspect-ratio: 16/9.6; overflow: hidden; }
.pathway .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.pathway:hover .img-wrap img { transform: scale(1.03); }
.pathway-body { padding: clamp(1.8rem, 3vw, 2.6rem); display: flex; flex-direction: column; flex: 1; }
.pathway-body h3 { margin-bottom: 0.8rem; }
.pathway-list { list-style: none; padding: 0; margin: 1.4rem 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1.2rem; }
.pathway-list li { font-size: 0.86rem; color: #54575a; padding-left: 1.1rem; position: relative; line-height: 1.5; }
.pathway-list li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 5px; height: 5px; border-radius: 50%; background: var(--bronze); }
.pathway-body .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Principles ---------- */
.principles { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.6rem); margin-top: 3.5rem; }
.principle { border-top: 1px solid var(--bronze); padding-top: 1.4rem; }
.principle .num { font-family: var(--serif); font-size: 0.95rem; color: var(--bronze); letter-spacing: 0.14em; display: block; margin-bottom: 0.7rem; }
.principle h3 { font-size: 1.32rem; margin-bottom: 0.6rem; }
.principle p { font-size: 0.93rem; color: #54575a; }

.rhythm-day {
  margin-top: clamp(3rem, 6vw, 5rem);
  background: var(--ivory-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3.2rem);
}
.rhythm-day h3 { text-align: center; font-size: 1.4rem; margin-bottom: 2.4rem; }
.rhythm-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.rhythm-steps::before {
  content: "";
  position: absolute;
  top: 21px; left: 10%; right: 10%;
  border-top: 1px dashed var(--sage);
}
.rhythm-step { text-align: center; padding: 0 0.6rem; position: relative; }
.rhythm-step .dot {
  width: 43px; height: 43px;
  border-radius: 50%;
  border: 1px solid var(--sage);
  background: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.9rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  position: relative;
  z-index: 1;
}
.rhythm-step span { font-size: 0.86rem; font-weight: 600; color: var(--ink); line-height: 1.45; display: block; }
.rhythm-note { text-align: center; margin-top: 2rem; font-size: 0.83rem; color: #6a6d6f; font-style: italic; }

/* ---------- Feature (flagship) ---------- */
.feature-media { position: relative; }
.feature-media img { border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.feature-media .caption-card {
  position: absolute;
  bottom: -1.6rem;
  left: -1.6rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 1.1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  max-width: 260px;
}
.caption-card .t { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); line-height: 1.3; }
.caption-card .s { font-size: 0.78rem; color: var(--sage); letter-spacing: 0.06em; margin-top: 0.25rem; }
.detail-list { list-style: none; margin: 1.8rem 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem 1.6rem; }
.detail-list li { font-size: 0.92rem; padding-left: 1.35rem; position: relative; color: #45474a; line-height: 1.5; }
.detail-list li::before { content: ""; position: absolute; left: 0; top: 0.58em; width: 7px; height: 7px; border: 1px solid var(--bronze); border-radius: 50%; }
.quote-line { font-size: 0.85rem; color: #6a6d6f; margin-top: 1.6rem; padding-top: 1.2rem; border-top: 1px dashed var(--line); }

/* ---------- Highlights (editorial alternating) ---------- */
.highlight-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(2.2rem, 4.5vw, 3.8rem) 0;
  border-bottom: 1px solid var(--line);
}
.highlight-row:last-of-type { border-bottom: 0; }
.highlight-row:nth-child(even) { direction: rtl; }
.highlight-row:nth-child(even) > * { direction: ltr; }
.highlight-row .idx {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 4.6rem);
  color: #C6B79C;
  line-height: 1;
  display: block;
}
.highlight-row h3 { margin-top: 0.4rem; }
.highlight-row p { color: #54575a; font-size: 0.98rem; }

/* ---------- Phone mockup ---------- */
.phone {
  width: min(300px, 82vw);
  margin: 0 auto;
  background: #1d1f21;
  border-radius: 38px;
  padding: 12px;
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(0,0,0,0.25);
  position: relative;
}
.phone::before {
  content: "";
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 88px; height: 22px;
  background: #1d1f21;
  border-radius: 12px;
  z-index: 2;
}
.phone-screen {
  background: linear-gradient(180deg, #F3EEE2, #EAE3D3);
  border-radius: 28px;
  padding: 3.6rem 1.2rem 1.4rem;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.chat-app { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage); text-align: center; }
.chat-name { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); text-align: center; margin-bottom: 0.4rem; }
.bubble {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px 14px 14px 4px;
  padding: 0.85rem 1rem;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--charcoal);
  max-width: 92%;
  box-shadow: 0 2px 8px -4px rgba(23,53,74,0.12);
}
.bubble .time { display: block; font-size: 0.68rem; color: #8b8e90; margin-top: 0.4rem; }
.bubble--soft { background: #E9EDE4; border-color: rgba(137,145,129,0.3); }

/* ---------- Considerations (editorial questions) ---------- */
.consider-grid { columns: 2; column-gap: clamp(2rem, 5vw, 4.5rem); margin-top: 3rem; }
.consider-item {
  break-inside: avoid;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1.1rem;
  align-items: baseline;
}
.consider-item .q-num { font-family: var(--serif); font-style: italic; color: var(--bronze); font-size: 1.05rem; flex: none; }
.consider-item p { margin: 0; font-family: var(--serif); font-size: 1.28rem; color: var(--ink); line-height: 1.45; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; margin-top: 3rem; display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(1.4rem, 2.5vw, 2.2rem); }
.step { counter-increment: step; position: relative; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.step::before {
  content: "0" counter(step);
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--bronze);
  display: block;
  margin-bottom: 0.8rem;
}
.step h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.88rem; color: #54575a; }

/* ---------- Founder ---------- */
.founder-card { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.founder-photo {
  aspect-ratio: 0.85;
  border-radius: 999px 999px 6px 6px;
  background:
    radial-gradient(circle at 50% 28%, rgba(165,139,99,0.16), transparent 60%),
    var(--stone);
  border: 1px solid rgba(165, 139, 99, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
}
.founder-photo img { width: 84px; opacity: 0.85; }
.founder-photo span { font-size: 0.8rem; color: #7c6a4f; max-width: 24ch; line-height: 1.6; }
.bio-placeholder {
  border: 1px dashed rgba(165, 139, 99, 0.55);
  background: rgba(165, 139, 99, 0.07);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  font-size: 0.87rem;
  color: #6d5f45;
  margin-top: 1.6rem;
}

/* ---------- Journal cards ---------- */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 3vw, 2.6rem); margin-top: 3rem; }
.article-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--ivory-soft); transition: var(--transition); }
.article-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-3px); color: inherit; }
.article-card .img-wrap { aspect-ratio: 16/10; overflow: hidden; }
.article-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.article-card:hover .img-wrap img { transform: scale(1.03); }
.article-body { padding: 1.5rem 1.6rem 1.7rem; }
.article-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage); }
.article-body h3 { font-size: 1.28rem; margin: 0.5rem 0 0.6rem; }
.article-body p { font-size: 0.88rem; color: #54575a; }
.article-meta { font-size: 0.76rem; color: #8b8e90; margin-top: 1rem; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--ivory-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 3rem);
  color: var(--charcoal);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 1.4rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: 0.84rem; font-weight: 600; color: var(--ink); }
.form-field label .req { color: #9a5b4f; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--charcoal);
  background: #fff;
  border: 1px solid rgba(23,53,74,0.25);
  border-radius: 3px;
  padding: 0.85rem 1rem;
  min-height: 52px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(165,139,99,0.22);
}
.form-field .error-msg { font-size: 0.78rem; color: #9a3f33; display: none; }
.form-field.has-error input, .form-field.has-error select, .form-field.has-error textarea { border-color: #9a3f33; }
.form-field.has-error .error-msg { display: block; }
.consent-row { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.85rem; color: #54575a; }
.consent-row input { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--ink); flex: none; }
.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}
.form-success.is-visible { display: block; }
.form-success h3 { margin-bottom: 0.6rem; }
.form-note { font-size: 0.8rem; color: #6a6d6f; margin-top: 1.2rem; }

/* ---------- Journey info row ---------- */
.info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 2.8rem;
}
.info-row .info-cell {
  flex: 1 1 160px;
  padding: 1.3rem 1.4rem;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.info-row .info-cell:last-child { border-right: 0; }
.info-cell .k { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage); }
.info-cell .v { font-family: var(--serif); font-size: 1.12rem; color: var(--ink); }

/* ---------- Accordions (days / FAQ) ---------- */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.6rem 0.4rem;
  font-family: var(--serif);
  transition: background 0.3s ease;
}
.acc-head:hover { background: rgba(23,53,74,0.03); }
.acc-head .day-num {
  font-size: 0.95rem;
  color: var(--bronze);
  letter-spacing: 0.1em;
  flex: none;
  width: 64px;
}
.acc-head .day-title { font-size: clamp(1.2rem, 2.2vw, 1.55rem); color: var(--ink); flex: 1; }
.acc-head .day-tag {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  border: 1px solid rgba(137,145,129,0.45);
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  flex: none;
}
.acc-icon {
  flex: none;
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  color: var(--ink);
  font-size: 1.2rem;
  font-family: var(--sans);
  font-weight: 300;
}
.acc-item.is-open .acc-icon { transform: rotate(45deg); background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.22, 0.61, 0.21, 1);
}
.acc-body-inner { padding: 0.4rem 0.4rem 2.2rem calc(64px + 1.8rem); display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2.5rem; }
.acc-body p { font-size: 0.96rem; color: #45474a; }
.day-highlights { list-style: none; margin: 0; padding: 0; }
.day-highlights li {
  font-size: 0.88rem;
  padding: 0.5rem 0 0.5rem 1.3rem;
  border-bottom: 1px dashed var(--line);
  position: relative;
  color: #54575a;
}
.day-highlights li:last-child { border-bottom: 0; }
.day-highlights li::before { content: ""; position: absolute; left: 0; top: 1.05em; width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }
.day-note { font-size: 0.82rem; font-style: italic; color: #7a6a4d; margin-top: 1rem; }

.faq-item .acc-head { font-size: 1.12rem; padding: 1.35rem 0.4rem; gap: 1rem; }
.faq-item .acc-body-inner { padding: 0.2rem 0.4rem 1.8rem 0.4rem; display: block; }

/* ---------- Cards grid (journeys page) ---------- */
.journey-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.6rem, 3vw, 2.6rem); margin-top: 3rem; }
.journey-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--ivory-soft); display: flex; flex-direction: column; transition: var(--transition); }
.journey-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.journey-card .img-wrap { aspect-ratio: 16/8.5; overflow: hidden; }
.journey-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.journey-card .body { padding: 1.8rem 2rem 2rem; display: flex; flex-direction: column; flex: 1; }
.journey-card .body .btn { margin-top: auto; align-self: flex-start; }
.journey-card--quiet { background: transparent; border-style: dashed; }
.journey-card--quiet .body { padding-top: 2.2rem; }
.status-tag { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage); border: 1px solid rgba(137,145,129,0.5); border-radius: 20px; padding: 0.25rem 0.8rem; align-self: flex-start; margin-bottom: 1rem; }

/* ---------- Care / families page blocks ---------- */
.care-block { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); padding: clamp(2.6rem, 5vw, 4rem) 0; border-bottom: 1px solid var(--line); align-items: start; }
.care-block:last-of-type { border-bottom: 0; }
.care-block h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem 1.6rem; }
.check-list li { font-size: 0.92rem; padding-left: 1.5rem; position: relative; color: #45474a; line-height: 1.55; }
.check-list li::before { content: "—"; position: absolute; left: 0; color: var(--bronze); }
.statement-band {
  border-left: 2px solid var(--bronze);
  padding: 0.4rem 0 0.4rem 1.8rem;
  margin: 2.6rem 0;
}
.statement-band p { font-family: var(--serif); font-size: clamp(1.35rem, 2.6vw, 1.8rem); color: var(--ink); line-height: 1.5; margin: 0; }

/* ---------- Seal ---------- */
.seal {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border: 1.5px solid rgba(165, 139, 99, 0.75);
  border-radius: 6px;
  color: var(--bronze);
  font-family: "Noto Serif", serif;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: 0.05em;
  background: rgba(165, 139, 99, 0.08);
}

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 20ch; margin-left: auto; margin-right: auto; }
.cta-band .lead { max-width: 56ch; margin-left: auto; margin-right: auto; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #B9C2C4; padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); }
.site-footer h4 { color: var(--ivory); font-family: var(--sans); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.site-footer a { color: #B9C2C4; text-decoration: none; }
.site-footer a:hover { color: var(--ivory); }
.footer-brand img { width: 120px; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.88rem; color: #9FB0B5; max-width: 34ch; }
.footer-tagline { font-family: var(--serif); font-size: 1.15rem; font-style: italic; color: var(--stone); margin-bottom: 1rem; }
.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(247,243,234,0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #8AA0A8;
}
.footer-bottom .seal { width: 52px; height: 52px; font-size: 1.05rem; border-color: rgba(165,139,99,0.5); }
.footer-legal-links { display: flex; gap: 1.6rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22,0.61,0.21,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--slow { transition-duration: 1.3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); row-gap: 2.2rem; }
  .principles { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); row-gap: 2.4rem; }
  .journal-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .acc-body-inner { grid-template-columns: 1fr; gap: 1.4rem; }
}

@media (max-width: 860px) {
  body { font-size: 16px; }
  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--ivory);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(0.22,0.61,0.21,1);
    z-index: -1;
  }
  .main-nav a { font-size: 1.35rem; font-family: var(--serif); }
  .main-nav.is-open { transform: none; z-index: 99; }
  .nav-toggle { display: block; z-index: 101; position: relative; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .header-cta { display: none; }
  .hero .wrap, .split, .split--wide-left, .split--wide-right, .founder-card { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 8rem; }
  .hero-media { max-width: 480px; margin: 0 auto; order: -1; }
  .hero-media .arch { aspect-ratio: 1; }
  .pathways { grid-template-columns: 1fr; }
  .highlight-row { grid-template-columns: 1fr; gap: 1rem; }
  .highlight-row:nth-child(even) { direction: ltr; }
  .consider-grid { columns: 1; }
  .rhythm-steps { grid-template-columns: 1fr; gap: 1.4rem; }
  .rhythm-steps::before { display: none; }
  .rhythm-step { display: flex; align-items: center; gap: 1rem; text-align: left; }
  .rhythm-step .dot { margin: 0; flex: none; }
  .steps { grid-template-columns: 1fr; }
  .journal-grid, .journey-cards { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .care-block { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .detail-list { grid-template-columns: 1fr; }
  .feature-media .caption-card { position: static; margin-top: 1rem; max-width: none; }
  .info-row { flex-direction: column; }
  .info-row .info-cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .acc-head .day-tag { display: none; }
  .acc-head .day-num { width: 44px; }
  .acc-body-inner { padding-left: 0.4rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
