/* ============================================================
   HAILO — built to the Hailo brand guide (Angie & Co., 2024)

   Palette      Tints and shades mixed from the brand's eight hexes; the
                pure colours are kept for small, deliberate moments.
   Type         Newsreader (for the guide's Editor's Note) carries titles;
                DIN Alternate the small uppercase labels; Montserrat text.
   Grid         One structure, used everywhere: a masthead row of
                label / title / standfirst, then the section body aligned
                under the title. The hero is the single deliberate break.
   Shape        The logo is three overlapping ellipses, so the page is
                drawn in curves: arched sections, pill buttons, soft cards.
   ============================================================ */

/* ---------- tokens ---------- */
:root {
  --pine: #112317;  --mint: #dcedcd;  --orange: #fe5524;  --sugar: #f9f7d0;
  --grass: #194922; --terra: #aa8156; --white: #ffffff;   --shamrock: #4caa48;

  /* derived, for rest */
  --linen: #fdfcef; --cream: #fbf9de; --haze: #eef6e6; --sage: #abc4a2;
  --clay: #d0ba91;  --moss: #446d48;  --ink: #293b2d;  --rust: #b74620;

  --serif: "Newsreader", Iowan Old Style, Georgia, "Times New Roman", serif;
  --display: "DIN Alternate", "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
  --sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --t-display: clamp(2.4rem, 6.2vw, 5.3rem);
  --t-h2:      clamp(1.85rem, 3.4vw, 2.9rem);
  --t-h3:      clamp(1.08rem, 1.35vw, 1.26rem);
  --t-lede:    clamp(1.05rem, 1.25vw, 1.2rem);
  --t-body:    clamp(1rem, 1.02vw, 1.06rem);
  --t-micro:   0.7rem;

  /* one spacing scale, used everywhere */
  --s1: clamp(0.5rem, 0.8vw, 0.75rem);
  --s2: clamp(0.9rem, 1.4vw, 1.25rem);
  --s3: clamp(1.4rem, 2.2vw, 2rem);
  --s4: clamp(2.25rem, 3.6vw, 3.25rem);
  --s5: clamp(3.5rem, 5.5vw, 5rem);
  --s6: clamp(5rem, 9vw, 8rem);

  --gut: clamp(1.4rem, 5.5vw, 5.5rem);
  --sec-y: clamp(6rem, 12vw, 11rem);
  --maxw: 1320px;
  --gap: clamp(0.9rem, 1.8vw, 1.75rem);

  --arch: clamp(2.5rem, 7vw, 6.5rem);
  --round: clamp(1.35rem, 2.6vw, 2.1rem);
  --round-sm: clamp(0.9rem, 1.5vw, 1.25rem);

  --shadow: 0 26px 56px -42px rgb(41 59 45 / 0.42);
  --shadow-lift: 0 34px 68px -42px rgb(41 59 45 / 0.5);

  /* ground roles — re-tuned by the hour of day */
  --g1: var(--haze); --g2: var(--linen); --g3: var(--cream);
  --g-sage: var(--sage); --g-clay: var(--clay);

  --bg: var(--g1); --fg: var(--ink); --accent: var(--rust); --soft: var(--white);
  --line: rgb(41 59 45 / 0.14); --muted: rgb(41 59 45 / 0.7);
}

/* ---------- section grounds ---------- */
.sec--haze  { --bg: var(--g1); --fg: var(--ink); --accent: var(--rust); --soft: var(--white); }
.sec--linen { --bg: var(--g2); --fg: var(--ink); --accent: var(--rust); --soft: var(--white); }
.sec--cream { --bg: var(--g3); --fg: var(--ink); --accent: var(--rust); --soft: var(--white); }
.sec--mint  { --bg: var(--mint); --fg: var(--ink); --accent: var(--rust); --soft: var(--white); }
.sec--sage  { --bg: var(--g-sage); --fg: var(--ink); --accent: var(--ink); --soft: var(--linen);
              --line: rgb(41 59 45 / 0.2); --muted: rgb(41 59 45 / 0.76); }
.sec--clay  { --bg: var(--g-clay); --fg: var(--ink); --accent: var(--ink); --soft: var(--linen);
              --line: rgb(41 59 45 / 0.2); --muted: rgb(41 59 45 / 0.76); }
.sec--pine  { --bg: var(--pine); --fg: var(--mint); --accent: var(--orange); --soft: var(--moss);
              --line: rgb(220 237 205 / 0.16); --muted: rgb(220 237 205 / 0.72); }

/* ------------------------------------------------------------
   THE HOUR OF DAY
   Only the pale grounds move. Ink, Rust, Moss, Pine and Mint are
   fixed, so contrast holds at every hour (tightest 4.20:1).
   ------------------------------------------------------------ */
html[data-daypart="dawn"]  { --g1: #e9f3df; --g2: #f6f9e8; --g3: #f5f7db; --g-sage: #b5ccab; --g-clay: #d6c39a; }
html[data-daypart="dusk"]  { --g1: #f2f6de; --g2: #fbfae1; --g3: #f5f0d3; --g-sage: #b2c29f; --g-clay: #d0ba91; }
html[data-daypart="night"] {
  --g1: #dde7d5; --g2: #edefe0; --g3: #ececd2; --g-sage: #a2ba9a; --g-clay: #c8b38b;
  --shadow: 0 26px 56px -42px rgb(41 59 45 / 0.34);
  --shadow-lift: 0 34px 68px -42px rgb(41 59 45 / 0.42);
}
.sec, body { transition: background-color 2.4s ease; }
.footer__light { text-transform: lowercase; opacity: 0.75; }

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--g1);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--t-body);
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; }
p { text-wrap: pretty; }
::selection { background: var(--sage); color: var(--ink); }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--moss); color: var(--linen);
  padding: 0.85rem 1.4rem; border-radius: 0 0 999px 0;
  letter-spacing: 0.1em; font-size: var(--t-micro); font-weight: 600;
}
.skip:focus { left: 0; }
:focus-visible { outline: 2px solid var(--moss); outline-offset: 3px; border-radius: 6px; }

/* ============================================================
   THE GRID

   Every section is a 12-column field. The masthead row is always
   label (1–4) / title (4–10) / standfirst (10–13), top-aligned, and
   the body always begins at column 4, hanging under the title. The
   hero is the one section that breaks it, which is what makes the
   break read as a decision.
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.sec {
  position: relative;
  background: var(--bg);
  color: var(--fg);
  padding-block: var(--sec-y);
  overflow: hidden;
}
.sec + .sec {
  border-radius: var(--arch) var(--arch) 0 0;
  margin-top: calc(var(--arch) * -1);
  padding-top: calc(var(--sec-y) + var(--arch) * 0.4);
}
.sec > .container { position: relative; z-index: 1; }

.field {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gap);
  align-items: start;
}
.head { display: contents; }
.head .section-tag { grid-column: 1 / 4; padding-top: 0.45em; }
.head h2 { grid-column: 4 / 10; }
.head .standfirst { grid-column: 10 / 13; padding-top: 0.5em; }
.body { grid-column: 4 / 13; margin-top: var(--s5); }
.body--wide { grid-column: 1 / 13; }

@media (max-width: 900px) {
  .field { display: block; }
  .head .section-tag, .head h2, .head .standfirst, .body {
    grid-column: auto;
    padding-top: 0;
  }
  .head .section-tag { display: block; margin-bottom: var(--s2); }
  .head .standfirst { margin-top: var(--s2); }
  .body { margin-top: var(--s4); }
}

.bloom { position: absolute; border-radius: 50%; background: var(--soft); pointer-events: none; z-index: 0; }

/* a slow warmth that follows the pointer */
.warmth {
  position: fixed;
  top: 0; left: 0;
  width: 44rem; height: 44rem;
  margin: -22rem 0 0 -22rem;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgb(249 247 208 / 0.45), rgb(249 247 208 / 0) 62%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.warmth.is-on { opacity: 1; }

/* The cursor halo. Hailo's mark is a halo, so the pointer gets one: a thin
   ring that trails just behind you and opens up over anything clickable.
   Orange is the palette's rarest colour, which is what makes it read as a
   small event rather than decoration. */
.halo {
  position: fixed;
  top: 0; left: 0;
  width: 34px; height: 34px;
  margin: -17px 0 0 -17px;
  border: 1.5px solid var(--orange);
  border-radius: 50%;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  z-index: 90;
  will-change: transform;
  transition:
    opacity 0.5s ease,
    width 0.4s cubic-bezier(.16, 1, .3, 1),
    height 0.4s cubic-bezier(.16, 1, .3, 1),
    margin 0.4s cubic-bezier(.16, 1, .3, 1),
    background-color 0.4s ease;
}
.halo.is-on { opacity: 0.5; }
/* over a link, a button, a question: the halo opens and fills */
.halo.is-hot {
  width: 62px; height: 62px;
  margin: -31px 0 0 -31px;
  background: rgb(254 85 36 / 0.1);
  opacity: 0.85;
}
/* and closes on the press */
.halo.is-down { width: 22px; height: 22px; margin: -11px 0 0 -11px; opacity: 0.9; }

/* ---------- type ---------- */
h1, h2, .display {
  font-family: var(--serif);
  font-weight: 300;
  font-optical-sizing: auto;
  line-height: 1.16;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h2 { font-size: var(--t-h2); }
h3 {
  font-size: var(--t-h3);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.002em;
  text-wrap: balance;
}
.standfirst { font-size: 0.97rem; line-height: 1.7; color: var(--muted); }

.eyebrow, .section-tag {
  display: inline-block;
  font-family: var(--display);
  font-size: var(--t-micro);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--accent);
  width: max-content;
  max-width: 100%;
}
.section-tag--center { display: block; text-align: center; width: auto; }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--moss);
  --btn-fg: var(--linen);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 1.1em 2.1em;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  border: 1.5px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: background 0.45s ease, color 0.45s ease,
              border-color 0.45s ease, transform 0.45s ease, box-shadow 0.45s ease;
}
.btn--lg { padding: 1.25em 2.5em; font-size: 1rem; }
.btn--block { width: 100%; }
.btn:hover { transform: translateY(-2px); }
.btn--solid { box-shadow: 0 16px 34px -24px rgb(41 59 45 / 0.8); }
.btn--solid:hover { --btn-bg: var(--ink); }
.btn--warm { --btn-bg: var(--orange); --btn-fg: var(--white); }
.btn--warm:hover { --btn-bg: var(--rust); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--fg); border-color: var(--line); }
.btn--ghost:hover { --btn-bg: var(--soft); border-color: transparent; }
.btn__arrow { transition: transform 0.45s ease; }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn:disabled { opacity: 0.55; cursor: default; transform: none; }

/* ---------- chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: var(--s1); }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.65em 1.15em;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1;
}
.chip::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.75;
  flex: none;
}

/* ============================================================
   NAV
   ============================================================ */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background 0.5s ease, box-shadow 0.5s ease; }
.nav.is-stuck {
  background: rgb(238 246 230 / 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 34px -30px rgb(41 59 45 / 0.8);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: clamp(76px, 8vw, 96px);
}
.brand { display: inline-flex; align-items: flex-start; color: var(--ink); }
.brand__wordmark { height: 30px; width: auto; fill: currentColor; }
.brand__tm { font-size: 0.6rem; font-weight: 600; margin-left: 0.15rem; color: currentColor; }

.nav__links { display: flex; gap: clamp(0.15rem, 0.6vw, 0.5rem); }
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  transition: color 0.35s ease, background 0.35s ease;
}
.nav__links a:hover { color: var(--ink); background: rgb(41 59 45 / 0.05); }
.nav__links a.is-active { color: var(--ink); background: rgb(41 59 45 / 0.06); }
.nav__cta { padding: 0.85em 1.6em; font-size: 0.9rem; }

.nav__burger { display: none; width: 46px; height: 46px; background: none; border: 0; cursor: pointer; position: relative; }
.nav__burger span {
  position: absolute; left: 11px; width: 24px; height: 1.5px;
  border-radius: 2px; background: var(--ink);
  transition: transform 0.4s ease;
}
.nav__burger span:nth-child(1) { top: 19px; }
.nav__burger span:nth-child(2) { top: 26px; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--g1); color: var(--ink);
  display: flex; flex-direction: column; justify-content: center; gap: 0.15rem;
  padding: 6rem var(--gut) 3rem;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.2, 1);
  visibility: hidden;
}
.mobile-menu.is-open { transform: none; visibility: visible; }
.mobile-menu a:not(.btn) {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 7.5vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -0.008em;
  line-height: 1.55;
  color: var(--ink);
}
.mobile-menu a:not(.btn):hover { color: var(--moss); }
.mobile-menu .btn { margin-top: 2rem; align-self: flex-start; }

@media (max-width: 940px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
}

/* ============================================================
   HERO — the one place the grid gives way
   ============================================================ */
.hero {
  min-height: min(100svh, 940px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(8.5rem, 16vh, 12rem) clamp(5rem, 10vh, 8rem);
}
.bloom--hero {
  background: var(--mint);
  width: min(72vw, 800px);
  aspect-ratio: 1;
  right: -12vw; top: -22vh;
  opacity: 0;
  scale: 0.9;
  transition: opacity 2.4s ease 0.15s, scale 3s cubic-bezier(.16, 1, .3, 1) 0.15s;
}
.is-loaded .bloom--hero { opacity: 0.55; scale: 1; }
.hero__watermark {
  position: absolute;
  z-index: 0;
  right: -4vw; top: 50%;
  transform: translateY(-50%);
  width: min(58vh, 41vw);
  height: auto;
  fill: var(--sage);
  --wm-o: 0.55;
  opacity: 0;
  scale: 0.86;
  pointer-events: none;
  transform-origin: 50% 50%;
}
.is-loaded .hero__watermark {
  animation: drift 96s ease-in-out infinite, inhale 2.6s cubic-bezier(.16, 1, .3, 1) both;
}
@keyframes inhale {
  from { opacity: 0;           scale: 0.86; }
  to   { opacity: var(--wm-o); scale: 1; }
}
@keyframes drift {
  0%, 100% { rotate: -1.6deg; }
  50%      { rotate: 1.6deg; }
}

.hero__inner { position: relative; z-index: 1; }
.hero .eyebrow { grid-column: 1 / 13; display: block; margin-bottom: var(--s3); }
.hero__title {
  grid-column: 1 / 13;
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--t-display);
  line-height: 1.08;
  letter-spacing: -0.018em;
  max-width: 15ch;
}
.hero__title em { font-style: normal; color: var(--rust); }
.line { display: block; overflow: hidden; padding-bottom: 0.14em; margin-bottom: -0.12em; }
.line > span { display: block; }

/* a rule, then a measured row of lede and actions beneath it */
.hero__lede {
  grid-column: 1 / 7;
  margin-top: var(--s5);
  padding-top: var(--s3);
  border-top: 1px solid var(--line);
  font-size: var(--t-lede);
  color: var(--muted);
}
.hero__actions {
  grid-column: 7 / 13;
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: var(--s1);
  margin-top: var(--s5);
  padding-top: var(--s3);
  border-top: 1px solid var(--line);
}
.hero .chips { grid-column: 1 / 13; margin-top: var(--s4); }
@media (max-width: 900px) {
  .hero__lede, .hero__actions { grid-column: auto; margin-top: var(--s4); }
  .hero__actions { border-top: 0; padding-top: 0; margin-top: var(--s3); }
  .hero .chips { grid-column: auto; margin-top: var(--s3); }
  .hero__watermark { right: -26vw; width: min(66vh, 94vw); --wm-o: 0.3; }
  .is-loaded .bloom--hero { opacity: 0.42; }
  .bloom--hero { right: -32vw; top: -8vh; }
}

/* ---------- entrance ---------- */
[data-anim] { opacity: 0; }
[data-anim="line"] { transform: translateY(105%); }
[data-anim="fade"] { transform: translateY(14px); }
.is-loaded [data-anim] {
  opacity: 1;
  transform: none;
  transition: opacity 1.3s ease var(--d, 0s), transform 1.5s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0s);
}

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1.1s ease var(--rd, 0s), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) var(--rd, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   BREATHE — the one deep, quiet moment
   ============================================================ */
.breathe { text-align: center; }
.breathe__inner { display: flex; flex-direction: column; align-items: center; gap: var(--s4); }
.breathe__stage {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(200px, 25vw, 300px);
  aspect-ratio: 1;
}
.breathe__ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.breathe__ring circle { fill: none; }
.breathe__track { stroke: var(--mint); stroke-opacity: 0.1; stroke-width: 1; }
.breathe__fill {
  stroke: var(--mint);
  stroke-opacity: 0.8;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 578.05;
  stroke-dashoffset: 578.05;
}
.breathe__orb {
  position: relative;
  width: 47%;
  height: auto;
  fill: var(--mint);
  opacity: 0.9;
  animation: breathe 11s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(0.9);  opacity: 0.5; }
  50%      { transform: scale(1.04); opacity: 0.95; }
}
.breathe__stage.is-guiding .breathe__orb {
  animation: none;
  opacity: 0.95;
  transform: scale(var(--orb, 0.92));
}
.breathe__cue {
  font-family: var(--serif);
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5em;
  font-size: clamp(1.65rem, 3.6vw, 2.7rem);
  font-weight: 300;
  letter-spacing: -0.012em;
  line-height: 1.3;
  min-height: 1.35em;
  margin-bottom: var(--s2);
}
.cue--out { color: var(--orange); }
.cue--phase { color: var(--mint); }
.breathe__note { color: var(--muted); font-size: var(--t-lede); max-width: 42ch; margin-inline: auto; }
.breathe__btn {
  margin-top: var(--s3);
  background: transparent;
  color: var(--mint);
  border: 1px solid rgb(220 237 205 / 0.28);
  border-radius: 999px;
  padding: 0.95em 1.9em;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background 0.6s ease, border-color 0.6s ease, opacity 0.6s ease;
}
.breathe__btn:hover { background: rgb(220 237 205 / 0.09); border-color: rgb(220 237 205 / 0.46); }
.breathe__btn[disabled] { opacity: 0.45; cursor: default; }

/* ============================================================
   SHARED CARD
   ============================================================ */
.card {
  background: var(--soft);
  border-radius: var(--round);
  padding: clamp(1.6rem, 2.6vw, 2.3rem);
  box-shadow: var(--shadow);
  transition: transform 0.5s cubic-bezier(.16,1,.3,1), box-shadow 0.5s ease, opacity 0.5s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
/* hovering one card lets its siblings step back */
.deck:hover > .card:not(:hover) { opacity: 0.66; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); align-items: stretch; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); align-items: stretch; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .grid-2 { grid-template-columns: 1fr; } }

/* a single voice, centered, until there are enough to go back to a grid */
.voices__grid--single { display: flex; justify-content: center; }
.voices__grid--single .quote { max-width: 56ch; }

/* ============================================================
   CARE
   ============================================================ */
.care__body {
  grid-column: 4 / 13;
  margin-top: var(--s4);
  font-size: var(--t-lede);
  color: var(--muted);
  max-width: 56ch;
}
.care__body p + p { margin-top: var(--s3); }
.pillar { display: flex; flex-direction: column; }
.pillar__no {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--moss);
  opacity: 0.4;
  margin-bottom: var(--s3);
}
.pillar h3 { margin-bottom: var(--s1); }
.pillar p { color: var(--muted); }
@media (max-width: 900px) { .care__body { grid-column: auto; margin-top: var(--s3); } }

/* ============================================================
   SERVICES
   ============================================================ */
.tier { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: var(--s2); }
.tier__badge {
  position: absolute;
  top: clamp(1.2rem, 2vw, 1.6rem);
  right: clamp(1.2rem, 2vw, 1.6rem);
  background: var(--g1);
  color: var(--moss);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.5em 1em;
  border-radius: 999px;
  line-height: 1;
}
.tier__num {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--accent);
}
.tier__name { margin-bottom: 0.3rem; }
.tier__for { font-size: 0.95rem; color: var(--muted); }
.tier__desc { color: var(--muted); }
.tier__list { display: grid; gap: 0.5rem; width: 100%; }
.tier__list li { position: relative; padding-left: 1.5rem; font-size: 0.95rem; line-height: 1.6; }
.tier__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: var(--sage);
}
.tier__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--moss);
  border-bottom: 1.5px solid rgb(68 109 72 / 0.35);
  padding-bottom: 2px;
  transition: border-color 0.4s ease;
}
.tier__link:hover { border-bottom-color: var(--moss); }
.tier__link span { transition: transform 0.4s ease; }
.tier__link:hover span { transform: translateX(4px); }

.tier--featured {
  background: var(--moss);
  color: var(--linen);
  --muted: rgb(253 252 239 / 0.8);
  --accent: var(--sage);
}
.tier--featured .tier__badge { background: rgb(253 252 239 / 0.16); color: var(--linen); }
.tier--featured .tier__link { color: var(--linen); border-bottom-color: rgb(253 252 239 / 0.4); }
.tier--featured .tier__link:hover { border-bottom-color: var(--linen); }

.services__note { grid-column: 4 / 13; margin-top: var(--s3); color: var(--muted); }
.services__note a {
  color: var(--moss);
  font-weight: 600;
  border-bottom: 1.5px solid rgb(68 109 72 / 0.35);
  padding-bottom: 1px;
}
@media (max-width: 900px) { .services__note { grid-column: auto; } }

/* ============================================================
   PROCESS — a set index, not a meander
   ============================================================ */
.steps { display: grid; }
.step {
  display: grid;
  grid-template-columns: minmax(0, 3rem) minmax(0, 4fr) minmax(0, 7fr);
  gap: var(--gap);
  align-items: baseline;
  padding-block: var(--s3);
  border-top: 1px solid var(--line);
  transition: opacity 0.6s ease;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.steps:hover .step:not(:hover) { opacity: 0.55; }
.step__no {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  font-weight: 200;
  line-height: 1;
  color: var(--moss);
  opacity: 0.4;
  transition: opacity 0.6s ease;
}
.step:hover .step__no { opacity: 0.9; }
.step__body { display: contents; }
.step__body p { color: var(--muted); max-width: 56ch; }
.step__body .step__foot { grid-column: 3; }
@media (max-width: 760px) {
  .step { grid-template-columns: minmax(0, 2.5rem) minmax(0, 1fr); row-gap: var(--s1); }
  .step__body { display: contents; }
  .step__body h3 { grid-column: 2; }
  .step__body p { grid-column: 2; }
  .step__body .step__foot { grid-column: 2; }
}

/* ============================================================
   VALUES
   ============================================================ */
.vcard {
  background: rgb(253 252 239 / 0.55);
  border-radius: var(--round);
  padding: clamp(1.5rem, 2.4vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.5s ease, transform 0.5s ease, opacity 0.5s ease;
}
.vcard:hover { background: var(--linen); transform: translateY(-3px); }
.vcard p { color: var(--muted); font-size: 0.96rem; }

/* ============================================================
   VOICES
   ============================================================ */
.quote { display: flex; flex-direction: column; gap: var(--s2); color: var(--ink); }
.quote blockquote { font-size: 1.04rem; line-height: 1.7; }
.quote blockquote::before { content: "\201C"; }
.quote blockquote::after { content: "\201D"; }
.quote figcaption { margin-top: auto; font-size: 0.82rem; font-weight: 500; color: rgb(41 59 45 / 0.62); }

/* ============================================================
   FAQ
   ============================================================ */
.faq__list { display: grid; gap: 0.65rem; }
.qa { background: var(--soft); border-radius: var(--round-sm); box-shadow: var(--shadow); overflow: hidden; }
.qa summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: clamp(1.15rem, 1.9vw, 1.45rem) clamp(1.35rem, 2.4vw, 1.85rem);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  font-weight: 600;
  transition: color 0.35s ease;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--moss); }
.qa summary::after {
  content: "";
  flex: none;
  width: 1.8rem; height: 1.8rem;
  border-radius: 50%;
  background:
    linear-gradient(var(--moss), var(--moss)) center/0.66rem 1.5px no-repeat,
    linear-gradient(var(--moss), var(--moss)) center/1.5px 0.66rem no-repeat,
    var(--g1);
  transition: transform 0.5s ease;
}
.qa[open] summary::after { transform: rotate(135deg); }
.qa__a { padding: 0 clamp(1.35rem, 2.4vw, 1.85rem) clamp(1.15rem, 1.9vw, 1.45rem); max-width: 64ch; }
.qa__a p { color: var(--muted); }

/* ============================================================
   START / CTA — centred on purpose, as a resting point
   ============================================================ */
.start { padding-bottom: clamp(4.5rem, 9vw, 8rem); }
.start__watermark {
  position: absolute;
  z-index: 0;
  left: 50%; top: clamp(2rem, 6vw, 5rem);
  translate: -50% 0;
  width: min(40vh, 30vw);
  height: auto;
  fill: var(--sage);
  opacity: 0.5;
  pointer-events: none;
  transform-origin: 50% 50%;
  animation: drift 120s ease-in-out infinite reverse;
}
.start__inner { text-align: center; position: relative; z-index: 1; }
.start__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  line-height: 1.18;
  margin-bottom: var(--s2);
  max-width: 22ch;
  margin-inline: auto;
}
.start__lede { font-size: var(--t-lede); color: var(--muted); max-width: 50ch; margin: 0 auto var(--s5); }
.start__form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s2);
  max-width: 700px;
  margin-inline: auto;
  text-align: left;
  background: var(--soft);
  border-radius: var(--round);
  padding: clamp(1.6rem, 3.2vw, 2.6rem);
  box-shadow: var(--shadow);
}
.formfield--full { grid-column: 1 / -1; }
.start__form label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; }
.start__form input, .start__form textarea {
  width: 100%;
  background: var(--g1);
  border: 1.5px solid transparent;
  border-radius: var(--round-sm);
  padding: 0.9rem 1.1rem;
  transition: border-color 0.4s ease, background 0.4s ease;
  resize: vertical;
}
.start__form input::placeholder, .start__form textarea::placeholder { color: rgb(41 59 45 / 0.42); }
.start__form input:focus, .start__form textarea:focus { outline: none; border-color: var(--sage); background: var(--white); }
.start__reassure { margin-top: 1rem; font-size: 0.9rem; color: var(--muted); text-align: center; }
.start__reassure.is-success { color: var(--moss); font-weight: 600; }
@media (max-width: 640px) { .start__form { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--pine);
  color: var(--mint);
  --line: rgb(220 237 205 / 0.14);
  --muted: rgb(220 237 205 / 0.64);
  border-radius: var(--arch) var(--arch) 0 0;
  margin-top: calc(var(--arch) * -1);
  padding-top: calc(clamp(2.5rem, 5vw, 4rem) + var(--arch) * 0.4);
  position: relative;
  overflow: hidden;
}
.footer__wordmark-wrap { margin-bottom: var(--s4); }
.footer__wordmark { width: 100%; height: auto; fill: var(--mint); opacity: 0.6; }
.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: var(--s4);
  align-items: start;
  padding-bottom: var(--s4);
  border-bottom: 1px solid var(--line);
}
.footer__links { display: flex; flex-direction: column; gap: 0.9rem; }
.footer__nav, .footer__social { display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; }
.footer__nav a, .footer__social a, .footer__handle {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--muted);
  transition: color 0.35s ease;
}
.footer__nav a:hover, .footer__social a:hover { color: var(--mint); }
.footer__handle { color: var(--orange); opacity: 0.9; }
.footer__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 2rem;
  padding-block: var(--s3);
  font-size: 0.84rem;
  color: var(--muted);
}
.footer__base a { color: var(--muted); transition: color 0.35s ease; }
.footer__base a:hover { color: var(--mint); }
@media (max-width: 780px) {
  .footer__inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer__links { align-items: center; }
  .footer__nav, .footer__social { justify-content: center; }
}

/* ============================================================
   MOTION PREFERENCES
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-anim], .reveal { opacity: 1 !important; transform: none !important; }
  .hero__watermark { opacity: var(--wm-o) !important; scale: 1 !important; }
  .bloom--hero { opacity: 0.55 !important; scale: 1 !important; }
  .warmth, .halo { display: none; }
  .breathe__orb { transform: none; opacity: 1; }
}

/* price sits with the tier name, before the qualifying detail */
.tier__price {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: inherit;
}
.tier__price span {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--muted);
}
.tier__note {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--muted);
  padding-top: var(--s2);
  border-top: 1px solid var(--line);
  width: 100%;
}

/* ============================================================
   PHOTOGRAPHS

   Three, chosen for what each one proves. Two fill the margin column
   beside their section's prose; one runs full bleed as a section of
   its own, arched like every other ground.
   ============================================================ */
/* The margin column is only about 265px wide, so a photo there has to be a
   tall column portrait to carry any weight. Cropped to the subject. */
.care__photo,
.values__photo {
  grid-column: 1 / 4;
  margin-top: var(--s4);
  border-radius: var(--round);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.care__photo img,
.values__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 9;
  object-fit: cover;
}
.care__photo img { object-position: 38% 22%; }
.values__photo img { object-position: 50% 62%; }

.sec.band {
  padding-block: 0;
  /* the next section arches up over this one, so hold that much space at the
     bottom or the arch crops straight through the subject */
  padding-bottom: var(--arch);
  background: var(--pine);
}
.band__img {
  width: 100%;
  /* a ratio rather than a fixed height, so the frame keeps its proportions
     on a wide monitor instead of cropping tighter */
  aspect-ratio: 5 / 2;
  object-fit: cover;
  object-position: center 40%;
}

@media (max-width: 900px) {
  .care__photo, .values__photo {
    grid-column: auto;
    margin-top: var(--s3) !important;
    max-width: 28rem;
  }
  .care__photo img, .values__photo img { aspect-ratio: 4 / 3; }
  .band__img { aspect-ratio: 4 / 3; }
}
