/* =========================================================
   LIFE² — Site Styles
   Palette and type drawn directly from the blueprint.
   ========================================================= */

:root {
  /* Surfaces */
  --surface: #FFFFFF;         /* main page background */
  --paper: #FBF4EC;           /* seashell accent band */
  --paper-deep: #F0E4D4;      /* reserve warm beige (held back) */

  /* Text */
  --ink: #3F3933;             /* warm ink — softer than black */
  --stone: #7A7065;           /* secondary text */

  /* Primary accent */
  --accent: #1E3A5F;          /* navy — buttons, links, calm panels */
  --accent-dark: #142844;     /* navy hover */

  /* Special highlight */
  --highlight: #B5306E;       /* magenta — wordmark mark, emotional peaks */

  /* Four sides — jewel tones */
  --mindset: #E0A21A;         /* golden amber */
  --health: #1F8A8A;          /* teal */
  --wealth: #1E3A5F;          /* navy */
  --connection: #B5306E;      /* magenta */

  /* Borders */
  --hairline: #E4D3BE;        /* sand taupe */

  --max: 1140px;
  --gutter: clamp(20px, 4vw, 48px);

  --display: 'Poppins', system-ui, -apple-system, sans-serif;
  --body: 'Lora', Georgia, serif;
  --ui: 'Poppins', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }

/* --------- Typography --------- */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 0.6em; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.12em; }

p { margin: 0 0 1.2em; }

.eyebrow {
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.5rem;
}

.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  color: var(--ink);
}

.quiet { color: var(--stone); }

/* --------- Layout --------- */

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: clamp(64px, 9vw, 120px) 0;
}

.section-tight { padding: clamp(48px, 6vw, 80px) 0; }

.divider {
  border: 0;
  border-top: 1px solid var(--hairline);
  margin: 0;
}

/* --------- Buttons --------- */

.btn {
  display: inline-block;
  font-family: var(--ui);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 2px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 8px 0;
  border: 0;
  border-bottom: 1.5px solid var(--ink);
  border-radius: 0;
}
.btn-ghost:hover { color: var(--accent); border-color: var(--accent); }

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

/* --------- Navigation --------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 244, 236, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 280px;
  width: auto;
  display: block;
  margin: -90px 0;
}
@media (max-width: 1100px) {
  .nav-logo img { height: 220px; margin: -70px 0; }
}
@media (max-width: 880px) {
  .nav-logo img { height: 160px; margin: -50px 0; }
}
@media (max-width: 500px) {
  .nav-logo img { height: 120px; margin: -38px 0; }
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--ui);
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav-links a.active,
.nav-links a:hover { color: var(--accent); }

.nav-cta { white-space: nowrap; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--ink);
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--paper);
    padding: 20px var(--gutter);
    border-bottom: 1px solid var(--hairline);
    gap: 18px;
  }
}

/* --------- Hero --------- */

.hero {
  padding: clamp(64px, 10vw, 130px) 0 clamp(48px, 7vw, 90px);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 700;
}

.hero-sub {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  color: var(--stone);
  max-width: 32em;
  line-height: 1.6;
}

/* Decorative square in the hero — the brand device */
.hero-square {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  margin-left: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  background: transparent;
  padding: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(63, 57, 51, 0.25);
}
.hero-square .quad {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  color: #fff;
  font-family: var(--ui);
  border-radius: 2px;
  min-height: 0;
  text-align: center;
}
.hero-square .quad .title {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.hero-square .q-mindset { background: var(--mindset); }
.hero-square .q-health { background: var(--health); }
.hero-square .q-wealth { background: var(--wealth); }
.hero-square .q-connection { background: var(--connection); }

@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-square { margin: 24px auto 0; max-width: 360px; }
}

/* --------- Recognition section --------- */

.recognition {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}
.recognition p {
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  line-height: 1.6;
}

/* --------- Four sides grid (Model page + Home) --------- */

.sides-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: transparent;
  padding: 0;
  border-radius: 4px;
  max-width: 720px;
  margin: 0 auto;
  aspect-ratio: 1;
}
.sides-grid .side {
  background: #fff;
  padding: clamp(20px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s ease;
  border-radius: 2px;
}
.sides-grid .side:hover { transform: scale(1.01); }
.sides-grid .side .label {
  font-family: var(--ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.sides-grid .side .title {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 700;
  margin: 8px 0;
}
.sides-grid .side .desc {
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--stone);
  margin: 0;
}
.side-mindset { border-top: 4px solid var(--mindset); }
.side-health { border-top: 4px solid var(--health); }
.side-wealth { border-top: 4px solid var(--wealth); }
.side-connection { border-top: 4px solid var(--connection); }

.side-mindset .label { color: var(--mindset); }
.side-health .label { color: var(--health); }
.side-wealth .label { color: var(--wealth); }
.side-connection .label { color: var(--connection); }

@media (max-width: 600px) {
  .sides-grid { aspect-ratio: auto; grid-template-columns: 1fr; }
}

/* --------- Compounding section --------- */

.compounding {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

/* --------- Three ways cards --------- */

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2.5rem;
}
.card {
  background: #fff;
  padding: 36px 28px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hairline);
}
.card h3 { margin-bottom: 0.4em; }
.card p { color: var(--stone); flex-grow: 1; }
.card .btn { align-self: flex-start; margin-top: 1rem; }

@media (max-width: 800px) {
  .cards-3 { grid-template-columns: 1fr; }
}

/* --------- Meet Johno (short) --------- */

.meet {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  background: #fff;
  padding: clamp(32px, 5vw, 64px);
  border-radius: 4px;
}
.meet-photo {
  aspect-ratio: 4/5;
  background: var(--paper);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  font-family: var(--ui);
  font-size: 0.85rem;
  text-align: center;
}
@media (max-width: 700px) {
  .meet { grid-template-columns: 1fr; }
}

/* --------- Final CTA block --------- */

.final-cta {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: clamp(64px, 9vw, 110px) var(--gutter);
}
.final-cta h2 { color: var(--paper); }
.final-cta p { color: rgba(251, 244, 236, 0.75); max-width: 36em; margin-left: auto; margin-right: auto; }
.final-cta .btn-secondary { color: var(--paper); border-color: var(--paper); }
.final-cta .btn-secondary:hover { background: var(--paper); color: var(--ink); }

/* --------- Footer --------- */

footer {
  background: var(--ink);
  color: rgba(251, 244, 236, 0.7);
  padding: 64px 0 32px;
  font-family: var(--ui);
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-grid h4 {
  color: var(--paper);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  margin-bottom: 1.2em;
}
.footer-grid a {
  color: rgba(251, 244, 236, 0.7);
  display: block;
  padding: 4px 0;
}
.footer-grid a:hover { color: var(--accent); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-bottom {
  border-top: 1px solid rgba(251, 244, 236, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(251, 244, 236, 0.5);
}
.footer-equation {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  color: var(--paper);
  font-size: 1.05rem;
  margin-bottom: 0.8em;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 2px;
  border: 1px solid rgba(251, 244, 236, 0.25);
  background: rgba(251, 244, 236, 0.06);
  color: var(--paper);
  font-family: var(--ui);
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: rgba(251, 244, 236, 0.4); }
.newsletter-form button {
  padding: 12px 18px;
  font-size: 0.85rem;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* --------- Philosophy page --------- */

.belief {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.belief blockquote {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}

.is-isnot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  margin-top: 2rem;
}
.is-isnot > div {
  background: #fff;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 4px;
  border-top: 4px solid var(--accent);
}
.is-isnot h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--stone); }
.is-isnot ul { margin: 1em 0 0; padding-left: 1.2em; }
.is-isnot li { margin-bottom: 0.6em; }
@media (max-width: 700px) { .is-isnot { grid-template-columns: 1fr; } }

.manifesto {
  background: var(--paper);
  padding: clamp(64px, 9vw, 130px) 0;
}
.manifesto .container {
  max-width: 760px;
}
.manifesto p {
  font-family: var(--body);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.6;
  margin-bottom: 1.6em;
}
/* Drop-cap removed per Johno's note — keeps the opening line clean */

/* --------- Model page --------- */

.stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2rem;
}
.stage {
  background: #fff;
  padding: 32px 28px;
  border-radius: 4px;
  border-left: 4px solid var(--accent);
}
.stage .num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4em;
}
.stage h3 { font-size: 1.25rem; margin-bottom: 0.5em; }
.stage p { font-size: 0.95rem; color: var(--stone); margin: 0; }
@media (max-width: 800px) { .stages { grid-template-columns: 1fr; } }

.side-detail {
  padding: clamp(48px, 7vw, 96px) 0;
  scroll-margin-top: 80px;
}
.side-detail.alt { background: #fff; }
.side-detail .side-label {
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.side-detail h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.5em; }
.side-detail .tagline { font-style: italic; color: var(--stone); font-size: 1.15rem; }
.side-detail .strong-weak {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 2rem 0;
}
.side-detail .strong-weak > div {
  background: var(--paper);
  padding: 24px;
  border-radius: 4px;
}
.side-detail.alt .strong-weak > div { background: #FAF6F0; }
.side-detail .strong-weak h4 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  margin-bottom: 1em;
}
.side-detail .focus {
  border-top: 1px solid var(--hairline);
  padding-top: 1.5rem;
  font-size: 1rem;
}
.side-detail .focus strong {
  font-family: var(--ui);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  display: block;
  margin-bottom: 0.5em;
}

.side-mindset-detail .side-label { color: var(--mindset); }
.side-mindset-detail h2 { color: var(--mindset); }
.side-health-detail .side-label { color: var(--health); }
.side-health-detail h2 { color: var(--health); }
.side-wealth-detail .side-label { color: var(--wealth); }
.side-wealth-detail h2 { color: var(--wealth); }
.side-connection-detail .side-label { color: var(--connection); }
.side-connection-detail h2 { color: var(--connection); }

@media (max-width: 700px) { .side-detail .strong-weak { grid-template-columns: 1fr; } }

/* --------- Work With Me page --------- */

.offer {
  background: #fff;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hairline);
}
.offer h3 { font-size: 1.6rem; }
.offer .price {
  font-family: var(--ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.5rem;
}
.offer ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  flex-grow: 1;
}
.offer ul li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 0.95rem;
}
.offer ul li::before {
  content: '■';
  color: var(--accent);
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 0.7rem;
}

/* --------- About page --------- */

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.about-hero .photo {
  aspect-ratio: 4/5;
  background: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  font-family: var(--ui);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}
@media (max-width: 800px) { .about-hero { grid-template-columns: 1fr; } }

.story-block {
  max-width: 720px;
  margin: 0 auto;
}
.story-block h2 { margin-top: 2em; }

/* --------- Contact page --------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  margin-top: 2rem;
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.channel {
  background: #fff;
  padding: 24px 28px;
  border-radius: 4px;
  border-left: 4px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.15s ease;
}
.channel:hover { transform: translateX(4px); }
.channel .channel-name {
  font-family: var(--ui);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}
.channel .channel-handle { color: var(--stone); font-size: 0.92rem; }

.contact-form {
  background: #fff;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 4px;
}
.contact-form label {
  display: block;
  font-family: var(--ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 1.2em 0 0.4em;
  color: var(--stone);
  text-transform: uppercase;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--hairline);
  border-radius: 2px;
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button { margin-top: 1.5rem; width: 100%; }

@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

/* --------- Page header (interior pages) --------- */

.page-header {
  padding: clamp(60px, 8vw, 110px) 0 clamp(40px, 5vw, 70px);
  text-align: center;
}
.page-header h1 { max-width: 18em; margin-left: auto; margin-right: auto; }
.page-header .lead { max-width: 32em; margin-left: auto; margin-right: auto; }

/* --------- Off / Right grids (Model page) --------- */

.feel-block {
  padding: clamp(56px, 8vw, 100px) 0;
}
.feel-block.feel-off {
  background: var(--ink);
  color: rgba(251, 244, 236, 0.92);
}
.feel-block.feel-off h2 { color: var(--paper); }
.feel-block.feel-off .feel-intro { color: rgba(251, 244, 236, 0.65); }

.feel-block.feel-right {
  background: #FBF4EC;
}

.feel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 2.5rem;
}
.feel-row {
  background: rgba(251, 244, 236, 0.06);
  border-left: 4px solid;
  padding: 24px 28px;
  border-radius: 4px;
}
.feel-block.feel-right .feel-row {
  background: #fff;
}
.feel-row .feel-side {
  font-family: var(--ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.6em;
  display: block;
}
.feel-row p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
}
.feel-row.row-mindset { border-left-color: var(--mindset); }
.feel-row.row-mindset .feel-side { color: var(--mindset); }
.feel-row.row-health { border-left-color: var(--health); }
.feel-row.row-health .feel-side { color: var(--health); }
.feel-row.row-wealth { border-left-color: var(--wealth); }
.feel-row.row-wealth .feel-side { color: var(--wealth); }
.feel-row.row-connection { border-left-color: var(--connection); }
.feel-row.row-connection .feel-side { color: var(--connection); }

/* In off-block, lighten the side label tints for contrast */
/* On the dark "When life feels off" block, use the true side colours.
   Wealth (navy) would be unreadable on near-black, so we lift it to a
   lighter navy-blue that's still recognisably the Wealth tone. */
.feel-block.feel-off .row-mindset .feel-side { color: #E0A21A; }    /* golden amber */
.feel-block.feel-off .row-health .feel-side { color: #2DB5B5; }     /* teal — lifted slightly for contrast */
.feel-block.feel-off .row-wealth .feel-side { color: #6A8FBF; }     /* navy lifted to readable on dark */
.feel-block.feel-off .row-connection .feel-side { color: #D9418A; } /* magenta lifted slightly */

@media (max-width: 700px) {
  .feel-grid { grid-template-columns: 1fr; }
}

/* "What it is not" list block */
.is-not {
  max-width: 760px;
  margin: 0 auto;
}
.is-not-item {
  padding: 1.4em 0;
  border-bottom: 1px solid var(--hairline);
}
.is-not-item:last-child { border-bottom: 0; }
.is-not-item strong {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.4em;
  color: var(--accent);
}
.is-not-item p { margin: 0; color: var(--stone); }

/* Stands-for list (Manifesto page) */
.stands-for {
  max-width: 760px;
  margin: 3rem auto 0;
}
.stand-item {
  padding: 1.8em 0;
  border-top: 1px solid var(--hairline);
}
.stand-item h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 0.5em;
}
.stand-item p { margin: 0; }

/* Meet the Coach — bio layout */
.coach-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: #fff;
  padding: clamp(32px, 5vw, 64px);
  border-radius: 4px;
}
.coach-photo {
  aspect-ratio: 4/5;
  background: var(--paper);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  font-family: var(--ui);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
  position: sticky;
  top: 110px;
}
.coach-block .label {
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8em;
  display: block;
}
.coach-block h3 {
  font-family: var(--ui);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 2em 0 0.6em;
}
.coach-pullquote {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.35;
  color: var(--ink);
  border-left: 4px solid var(--accent);
  padding-left: 1.2em;
  margin: 2rem 0;
}
@media (max-width: 800px) {
  .coach-block { grid-template-columns: 1fr; }
  .coach-photo { position: static; }
}

/* Pull-quote section (Home + others) */
.pull-quote {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
}
.pull-quote blockquote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 1.5rem;
}
.pull-quote cite {
  font-family: var(--ui);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  font-style: normal;
}

/* --------- Utilities --------- */

.text-center { text-align: center; }
.bg-white { background: #fff; }
.bg-paper { background: var(--paper); }
.mt-0 { margin-top: 0; }
