/* ============================================================
   Next To Nature With Harry
   Tokens → Base → Shared → Sections (HTML order) → Reveal → Responsive
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --paper: #fff;
  --ink: oklch(0.26 0.02 90);
  --ink-muted: oklch(0.48 0.02 90);
  --forest: oklch(0.34 0.06 150);
  --forest-deep: oklch(0.27 0.05 150);
  --leaf: oklch(0.75 0.09 140);
  --line: oklch(0.26 0.02 90 / 0.14);

  /* Scrim base — one hue, alpha only, so gradients never band */
  --scrim: 0.16 0.03 120;
  --s0: oklch(var(--scrim) / 0);
  --s1: oklch(var(--scrim) / 0.2);
  --s2: oklch(var(--scrim) / 0.42);
  --s3: oklch(var(--scrim) / 0.58);
  --s4: oklch(var(--scrim) / 0.85);

  /* Rhythm — one knob for page air. The floor is what phones and tablets get;
     it was 72px, which read as cramped once sections stack on a narrow screen.
     96px keeps wide desktop byte-identical (8vw only falls below 96 above
     1200px) while giving small screens real air between sections. */
  --section-y: clamp(96px, 8vw, 120px);

  --radius-photo: 24px;
  --radius-panel: 28px;
  --radius-field: 14px;
  --hit: 44px;

  --nav-h: 72px;
  --buybar-h: 60px;
  --anchor-offset: calc(var(--nav-h) + 12px);

  --shadow-photo: 0 1px 2px oklch(0.25 0.03 90 / 0.06), 0 16px 40px oklch(0.25 0.03 90 / 0.1);
  --shadow-nav: 0 1px 0 oklch(0.26 0.02 90 / 0.06), 0 8px 24px oklch(0.25 0.03 90 / 0.08);
  --shadow-panel: 0 1px 2px oklch(0.1 0.02 150 / 0.24), 0 24px 64px oklch(0.1 0.02 150 / 0.28);
  --shadow-lift: 0 1px 2px oklch(0.25 0.03 90 / 0.08), 0 12px 32px oklch(0.25 0.03 90 / 0.14);

  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", sans-serif;

  --ease-out: cubic-bezier(0.2, 0, 0, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
em { font-style: italic; }

/* Sticky-nav clearance so anchor jumps never hide a heading */
[id] { scroll-margin-top: var(--anchor-offset); }

::selection { background: var(--forest); color: #fff; }

/* ---------- Focus (visible only for keyboard) ---------- */
:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
  border-radius: 6px;
}
.hero :focus-visible,
.demira :focus-visible,
.talks__card :focus-visible,
.contact-band :focus-visible,
.footer :focus-visible,
.announce:focus-visible { outline-color: #fff; }
.announce:focus-visible { outline-offset: -4px; }

/* ---------- Shared bits ---------- */
.label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.label--light { color: oklch(1 0 0 / 0.8); }

.caption {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--hit);
  padding: 0 24px;
  border-radius: 999px;
  border: none;
  font: 500 14.5px/1 var(--font-body);
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms var(--ease-out), background-color 150ms var(--ease-out), box-shadow 150ms var(--ease-out), color 150ms var(--ease-out);
}
.btn:active { transform: scale(0.96); }
.btn--light { background: #fff; color: var(--ink); box-shadow: var(--shadow-photo); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  min-height: var(--hit);
  transition: color 150ms var(--ease-out);
}
.arrow-link span { display: inline-block; transition: transform 200ms var(--ease-out); }
.arrow-link--light { color: #fff; }

@media (hover: hover) {
  .btn--light:hover { background: oklch(0.95 0.01 90); }
  .arrow-link:hover { color: var(--forest); }
  .arrow-link:hover span { transform: translate(3px, -1px); }
  .arrow-link--light:hover { color: oklch(1 0 0 / 0.8); }
}

/* ---------- 01 · Announcement bar ---------- */
.announce {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: var(--hit);
  padding: 8px 16px;
  background: var(--forest-deep);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-align: center;
}
.announce span { display: inline-block; transition: transform 200ms var(--ease-out); }
@media (hover: hover) { .announce:hover span { transform: translateX(3px); } }

/* ---------- 02 · Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  height: var(--nav-h);
  padding: 0 32px;
  gap: 32px;
  background: oklch(1 0 0 / 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 250ms var(--ease-out);
}
/* Shadow appears only once the page moves — the top of the page stays flat */
.nav.is-stuck { box-shadow: var(--shadow-nav); }

.nav__brand {
  display: inline-flex;
  align-items: center;
  min-height: var(--hit);
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav__links { display: flex; gap: 4px; }
.nav__links a {
  display: inline-flex;
  align-items: center;
  min-height: var(--hit);
  padding: 0 14px;
  border-radius: 999px;
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 150ms var(--ease-out), background-color 150ms var(--ease-out);
}
@media (hover: hover) {
  .nav__links a:hover { color: var(--ink); background: oklch(0.26 0.02 90 / 0.05); }
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: var(--hit);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.nav__cta span { display: inline-block; transition: transform 200ms var(--ease-out); }
@media (hover: hover) { .nav__cta:hover span { transform: translate(2px, -2px); } }

/* Menu button — hidden on desktop */
.nav__toggle {
  display: none;
  position: relative;
  margin-left: auto;
  width: var(--hit);
  height: var(--hit);
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: none;
  cursor: pointer;
}
.nav__toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 220ms var(--ease-out);
}
.nav__toggle span:first-child { top: 19px; }
.nav__toggle span:last-child { top: 26px; }
.nav.is-open .nav__toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav.is-open .nav__toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* ---------- 03 · Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(88dvh, 820px);
  isolation: isolate;
  overflow: hidden;
}
.hero__bg,
.hero__img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    var(--s4) 0%,
    var(--s3) 40%,
    var(--s1) 70%,
    var(--s0) 100%
  );
}
.hero__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  padding: 64px;
  color: #fff;
}
.hero__title {
  font-size: clamp(42px, 6.5vw, 92px);
  letter-spacing: -0.03em;
  margin-top: 20px;
  text-shadow: 0 1px 16px oklch(var(--scrim) / 0.4);
}
.hero__right {
  max-width: 330px;
  display: grid;
  gap: 20px;
  justify-items: start;
}
.hero__right p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.92;
  text-wrap: pretty;
}
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero__offer {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13.5px;
  opacity: 0.85;
}
.hero__price {
  font-family: var(--font-display);
  font-size: 22px;
  opacity: 1;
  font-variant-numeric: tabular-nums;
}

/* ---------- 04 · Proof strip ---------- */
.proof { border-bottom: 1px solid var(--line); }
.proof__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof__grid > div {
  padding: 32px 28px;
  border-left: 1px solid var(--line);
}
.proof__grid > div:first-child { border-left: none; padding-left: 0; }
.proof__grid p:not(.label) {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--ink-muted);
  text-wrap: pretty;
}

/* ---------- 05 · A note from Harry ---------- */
.harry-note { padding: var(--section-y) 0; }
.harry-note__grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.harry-note__media { margin: 0; }
.harry-note__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-photo);
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
  box-shadow: var(--shadow-photo);
}
.harry-note__copy { display: grid; gap: 24px; justify-items: start; }
.harry-note__title { font-size: clamp(34px, 4.5vw, 60px); }
.harry-note__text {
  color: var(--ink-muted);
  font-size: 16.5px;
  text-wrap: pretty;
  display: grid;
  gap: 14px;
}
.harry-note__text p:last-child { color: var(--ink); font-weight: 500; }
.harry-note__sig { font-size: 14px; color: var(--ink-muted); line-height: 1.5; }
.harry-note__sig strong { color: var(--ink); font-size: 15px; }

/* ---------- 06 · Brand belief + photo rail ---------- */
.statement {
  padding: calc(var(--section-y) + 16px) 32px var(--section-y);
  text-align: center;
}
.statement__text {
  font-size: clamp(30px, 4.5vw, 56px);
  max-width: 20ch;
  margin: 0 auto;
}
.strip {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  margin-top: clamp(48px, 6vw, 80px);
}
.strip__item {
  border-radius: var(--radius-photo);
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
  object-fit: cover;
  box-shadow: var(--shadow-photo);
}
.strip__item--a { width: 16%; aspect-ratio: 4 / 3; margin-top: 56px; }
.strip__item--b { width: 17%; aspect-ratio: 5 / 7; margin-top: 0; }
.strip__item--c { width: 20%; aspect-ratio: 1 / 1; margin-top: 32px; }
.strip__item--d { width: 17%; aspect-ratio: 5 / 7; margin-top: 8px; }
.strip__item--e { width: 16%; aspect-ratio: 4 / 3; margin-top: 64px; }

/* ---------- 07 · Three ways to get closer ---------- */
.do { padding: 0 0 var(--section-y); }
.do__title {
  font-size: clamp(32px, 4.5vw, 56px);
  margin-bottom: 56px;
}
.do__scroller {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 max(32px, calc((100vw - 1280px) / 2 + 32px)) 24px;
  scrollbar-width: none;
}
.do__scroller::-webkit-scrollbar { display: none; }
.dcard {
  flex: 0 0 min(560px, 78vw);
  scroll-snap-align: start;
  display: grid;
  gap: 14px;
  align-content: start;
}
.dcard__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.dcard img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-photo);
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
  box-shadow: var(--shadow-photo);
  transition: transform 400ms var(--ease-out);
}
.dcard h3 { font-size: 26px; }
.dcard p:not(.dcard__label) { color: var(--ink-muted); font-size: 14.5px; text-wrap: pretty; }
.dcard .arrow-link { margin-top: -6px; }
@media (hover: hover) { .dcard:hover img { transform: scale(0.985); } }

/* ---------- 08 · Demira feature ---------- */
.demira {
  background: var(--forest-deep);
  color: #fff;
  padding: var(--section-y) 0;
  isolation: isolate;
}
.demira__grid {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.demira__title {
  font-size: clamp(38px, 5vw, 72px);
  margin: 24px 0;
}
.demira__title em { color: var(--leaf); }
.demira__body {
  color: oklch(1 0 0 / 0.8);
  max-width: 46ch;
  text-wrap: pretty;
}
.demira__points {
  list-style: none;
  padding: 0;
  margin-top: 24px;
  display: grid;
  gap: 10px;
}
.demira__points li {
  font-size: 14.5px;
  color: oklch(1 0 0 / 0.85);
  padding-left: 20px;
  position: relative;
}
.demira__points li::before {
  content: "·";
  position: absolute;
  left: 4px;
  color: var(--leaf);
  font-weight: 700;
}
.demira__offer {
  margin-top: 28px;
  padding: 16px 20px;
  border-radius: var(--radius-field);
  background: oklch(1 0 0 / 0.08);
  border: 1px solid oklch(1 0 0 / 0.18);
  display: grid;
  gap: 4px;
  justify-self: start;
}
.demira__offer-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--leaf);
}
.demira__offer-note { font-size: 14px; color: oklch(1 0 0 / 0.8); }
.demira__row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}
.demira__price {
  font-family: var(--font-display);
  font-size: 28px;
  font-variant-numeric: tabular-nums;
}
.demira__cover { margin: 0; }
.demira__cover img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-photo);
  outline: 1px solid rgba(255, 255, 255, 0.15);
  outline-offset: -1px;
  box-shadow: var(--shadow-panel);
}
.demira__why {
  margin-top: clamp(64px, 7vw, 88px);
  padding-top: 40px;
  border-top: 1px solid oklch(1 0 0 / 0.2);
  display: grid;
  gap: 20px;
  max-width: 720px;
}
.demira__why-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-style: italic;
  line-height: 1.4;
  color: oklch(1 0 0 / 0.9);
  text-wrap: pretty;
}

/* ---------- 09 · Talks ---------- */
.talks { padding: 0 0 var(--section-y); }
.talks__card {
  position: relative;
  border-radius: var(--radius-photo);
  overflow: hidden;
  min-height: min(68dvh, 640px);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.talks__img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.talks__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    var(--s4) 0%,
    var(--s3) 42%,
    var(--s1) 72%,
    var(--s0) 100%
  );
}
.talks__content {
  padding: 56px;
  color: #fff;
  display: grid;
  gap: 18px;
  justify-items: start;
  max-width: 560px;
}
.talks__content h2 { font-size: clamp(34px, 4.5vw, 60px); }
.talks__content p:not(.label) { color: oklch(1 0 0 / 0.85); font-size: 15px; text-wrap: pretty; }
.talks__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.talks__proof > div { border-top: 1px solid var(--line); padding-top: 18px; }
.talks__proof .label { color: var(--ink); margin-bottom: 8px; }
.talks__proof p:not(.label) { color: var(--ink-muted); font-size: 13.5px; text-wrap: pretty; }
.talks__aud {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}

/* ---------- 10 · What people say ---------- */
.quotes { padding: 0 0 var(--section-y); }
.quotes .label { display: block; margin-bottom: 40px; }
.quotes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.quotes blockquote {
  border-top: 1px solid var(--ink);
  padding-top: 22px;
  display: grid;
  gap: 18px;
}
.quotes blockquote p {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.35;
  text-wrap: pretty;
}
.quotes cite {
  font-style: normal;
  font-size: 13px;
  color: var(--ink-muted);
}

/* ---------- 11 · From the wild ---------- */
.notes { padding: 0 0 var(--section-y); }
.notes__head {
  display: grid;
  gap: 16px;
  margin-bottom: 48px;
}
.notes__head h2 { font-size: clamp(32px, 4.5vw, 56px); }
.notes__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 24px;
}
.notes__big img, .notes__entry img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-photo);
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}
.notes__big { margin: 0; grid-row: span 2; position: relative; }
.notes__big-caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 24px;
  border-radius: 0 0 var(--radius-photo) var(--radius-photo);
  background: linear-gradient(to top, var(--s-hard), var(--s0));
  color: #fff;
  display: grid;
  gap: 8px;
}
.notes__big-title {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.2;
}
.notes__entry { display: grid; gap: 10px; align-content: start; }
.notes__entry img { aspect-ratio: 3 / 2; height: auto; }
.notes__entry:nth-of-type(2) img { aspect-ratio: 4 / 5; }
.notes__entry h3 { font-size: 24px; }
.notes__entry .label { color: var(--forest); }
.notes__entry .arrow-link { margin-top: -8px; }
.notes__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 28px;
  margin-top: 48px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.notes__links .label { margin-right: 4px; }

/* ---------- 12 · FAQ ---------- */
.faq { padding: 0 0 var(--section-y); }
.faq__grid {
  display: grid;
  grid-template-columns: 3fr 8fr;
  gap: 48px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.faq__list details { border-bottom: 1px solid var(--line); }
.faq__list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 48px 22px 0;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  transition: color 150ms var(--ease-out);
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink-muted);
  transition: transform 220ms var(--ease-out), color 150ms var(--ease-out);
}
.faq__list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
@media (hover: hover) {
  .faq__list summary:hover { color: var(--forest); }
  .faq__list summary:hover::after { color: var(--forest); }
}
.faq__list details p {
  padding: 0 48px 24px 0;
  color: var(--ink-muted);
  font-size: 14.5px;
  text-wrap: pretty;
  animation: faq-in 260ms var(--ease-out);
}
.faq__cta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
}
.faq__cta p { font-size: 15px; }
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}

/* ---------- 13 · Closing offer ---------- */
.close-cta { padding: 0 0 var(--section-y); }
.close-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.close-cta h2 { font-size: clamp(30px, 3.6vw, 48px); margin-top: 16px; }
.close-cta p:not(.label) { margin-top: 12px; color: var(--ink-muted); font-size: 15px; text-wrap: pretty; }
.close-cta__row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* ---------- 14 · Contact ---------- */
.contact-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.contact-band__img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-band__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to right, var(--s4), var(--s3) 55%, var(--s2));
}
.contact {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 64px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--section-y) 32px;
}
.contact__intro { color: #fff; display: grid; gap: 18px; justify-items: start; }
.contact__intro h2 { font-size: clamp(32px, 4vw, 52px); }
.contact__intro p:not(.label) { opacity: 0.85; text-wrap: pretty; font-size: 15px; }

.form {
  display: grid;
  gap: 18px;
  background: oklch(1 0 0 / 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid oklch(1 0 0 / 0.25);
  padding: 32px;
  /* Concentric: outer radius = field radius + panel padding */
  border-radius: calc(var(--radius-field) + 32px);
}
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 12.5px; font-weight: 500; color: #fff; letter-spacing: 0.02em; }
.field input, .field textarea, .field select {
  font: 400 15px/1.5 var(--font-body);
  color: #fff;
  padding: 13px 14px;
  border: none;
  border-radius: var(--radius-field);
  background: oklch(1 0 0 / 0.12);
  box-shadow: inset 0 0 0 1px oklch(1 0 0 / 0.2);
  transition: box-shadow 150ms var(--ease-out), background-color 150ms var(--ease-out);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='white' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
.field select:invalid { color: oklch(1 0 0 / 0.5); }
.field select option { color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: oklch(1 0 0 / 0.5); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  background-color: oklch(1 0 0 / 0.18);
  box-shadow: inset 0 0 0 1.5px oklch(1 0 0 / 0.6);
}
.field input:focus-visible, .field textarea:focus-visible, .field select:focus-visible { outline: none; }
.field textarea { resize: vertical; min-height: 120px; }
.form .btn { justify-self: start; margin-top: 6px; }

/* ---------- 14 · Photo footer ---------- */
.footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: min(70dvh, 620px);
}
.footer__bg,
.footer__img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.footer__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, var(--s3), var(--s1) 45%, var(--s3) 100%);
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 64px;
}
.footer__name { font-family: var(--font-display); font-size: 26px; text-wrap: balance; }
.footer__tag { margin-top: 10px; font-size: 14px; color: oklch(1 0 0 / 0.8); }
.footer__links { display: grid; gap: 0; }
.footer__links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: oklch(1 0 0 / 0.85);
  text-decoration: none;
  font-size: 14px;
  transition: color 150ms var(--ease-out);
}
.footer__wild {
  font-family: var(--font-display);
  font-size: 24px;
  align-self: flex-end;
}
.footer__fine {
  padding: 0 64px calc(40px + var(--buybar-h));
  font-size: 12.5px;
  color: oklch(1 0 0 / 0.72);
}

/* ---------- 16 · Sticky offer bar ---------- */
.buybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  background: var(--forest-deep);
  color: #fff;
  box-shadow: 0 -8px 24px oklch(0.1 0.02 150 / 0.25);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  visibility: hidden;
  transform: translateY(110%);
  transition: transform 280ms var(--ease-out), visibility 0s linear 280ms;
  }
  .buybar.is-shown {
  visibility: visible;
  transform: none;
  transition-delay: 0s;
  }
.buybar__inner {
  max-width: 1280px;
  margin: 0 auto;
  min-height: var(--buybar-h);
  padding: 10px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.buybar__copy { font-size: 14px; color: oklch(1 0 0 / 0.85); display: block; }
.buybar__copy strong { color: #fff; font-weight: 600; }
.buybar__price { font-variant-numeric: tabular-nums; color: #fff; }
.buybar__cta { min-height: 40px; padding: 0 22px; }

@media (prefers-reduced-motion: reduce) {
  .buybar { transition: none; }
}

/* ---------- Reveal (only when JS is alive) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .btn, .dcard img, .arrow-link span, .announce span, .nav__cta span,
  .nav__toggle span, .faq__list summary::after { transition: none; }
  .faq__list details p { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  :root { --nav-h: 64px; }

  .nav { padding: 0 24px; gap: 0; }
  .nav__toggle { display: block; }
  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 4px 24px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lift);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out), visibility 0s linear 200ms;
  }
  .nav.is-open .nav__menu {
    visibility: visible;
    opacity: 1;
    transform: none;
    transition-delay: 0s;
  }
  .nav__links { flex-direction: column; gap: 0; }
  .nav__links a {
    min-height: 52px;
    padding: 0;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }
  .nav__cta {
    justify-content: center;
    min-height: 48px;
    margin-top: 20px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--forest);
    color: #fff;
  }

  .hero__inner { padding: 40px 24px; }
  .hero__right { max-width: none; }
  .harry-note__grid, .demira__grid, .contact, .notes__grid, .faq__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .proof__grid, .talks__proof, .quotes__grid { grid-template-columns: 1fr; }
  .proof__grid > div { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding: 22px 0; }
  .proof__grid > div:first-child { border-top: none; padding-top: 24px; }
  /* The quotes band has no top padding of its own — it lived off the proof
     strip's last row, so once the strip stacks on a narrow screen the
     testimonials crashed into it (21px, against a 72px rhythm everywhere
     else). It now owns its own space. */
  .quotes { padding-top: var(--section-y); }
  .talks__content { padding: 32px 24px; }
  .talks__card { min-height: 72dvh; }
  .quotes__grid { gap: 32px; }
  .notes__big { grid-row: auto; }
  .notes__big img { aspect-ratio: 4 / 3; height: auto; }
  .footer__inner { padding: 40px 24px; }
  .footer__fine { padding: 0 24px 32px; }
  .contact { padding: var(--section-y) 24px; }
  .form { padding: 24px; border-radius: calc(var(--radius-field) + 24px); }
  .buybar__inner { padding: 10px 20px; gap: 12px; }
  .buybar__copy { font-size: 13px; }
  .close-cta__inner { gap: 24px; }
  .close-cta__row { gap: 8px 16px; }
  .form__grid { grid-template-columns: 1fr; }
  .demira__why { margin-top: 64px; }

  /* Photo rail replaces the ragged wrap */
  .statement { padding-inline: 0; }
  .strip {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    gap: 12px;
    padding: 0 24px 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .strip::-webkit-scrollbar { display: none; }
  .strip__item {
    flex: 0 0 62%;
    width: auto !important;
    aspect-ratio: 4 / 5;
    margin-top: 0 !important;
    scroll-snap-align: center;
  }
}

@media (max-width: 640px) {
  /* Phone gutters. 20px put body text close to the screen edge; 24px is the
     same step the desktop wrap already uses, scaled to the screen. */
  .wrap { padding: 0 24px; }
  br.lg { display: none; }
  .hero__inner { padding: 44px 24px; }
  .hero__ctas { gap: 16px; }
  .proof__grid > div { padding: 24px 0; }
  .form { padding: 20px; border-radius: calc(var(--radius-field) + 20px); }
  /* A label sat 6px off its input, and the price label 4px off its note —
     close enough to read as one block instead of two. */
  .field { gap: 8px; }
  .demira__offer { gap: 8px; }
  .footer__inner { padding: 40px 24px; }
  .footer__fine { padding: 0 24px calc(32px + var(--buybar-h)); }
}

/* ============================================================
   Blog — listing + article
   ============================================================ */

/* ---------- Blog listing ---------- */
.blog { padding: calc(var(--section-y) + 16px) 0 var(--section-y); }
.blog__head { display: grid; gap: 16px; margin-bottom: clamp(40px, 5vw, 56px); }
.blog__title { font-size: clamp(36px, 5vw, 64px); }
.blog__lede { color: var(--ink-muted); font-size: 16.5px; max-width: 56ch; text-wrap: pretty; }

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pcard { display: flex; }
.pcard__link {
  display: grid;
  gap: 12px;
  align-content: start;
  width: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
}
.pcard__img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-photo);
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
  box-shadow: var(--shadow-photo);
  transition: transform 400ms var(--ease-out);
}
.pcard__title { font-size: 26px; }
.pcard__desc { color: var(--ink-muted); font-size: 14.5px; text-wrap: pretty; }
.pcard .arrow-link { margin-top: -4px; }
@media (hover: hover) {
  .pcard__link:hover .pcard__img { transform: scale(0.985); }
  .pcard__link:hover .arrow-link { color: var(--forest); }
  .pcard__link:hover .arrow-link span { transform: translate(3px, -1px); }
}
.pcard__link:focus-visible { outline: 2px solid var(--forest); outline-offset: 6px; }

.blog__empty { color: var(--ink-muted); padding: 48px 0; font-size: 16px; }
.blog__cta {
  margin-top: clamp(48px, 6vw, 64px);
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
}
.blog__cta p { font-size: 15px; color: var(--ink-muted); }

/* ---------- Article ---------- */
.post { padding: calc(var(--section-y) + 16px) 0 var(--section-y); }
.post__wrap { max-width: 760px; }
.post__back {
  display: inline-flex;
  align-items: center;
  min-height: var(--hit);
  font-size: 14px;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 150ms var(--ease-out);
}
@media (hover: hover) { .post__back:hover { color: var(--forest); } }

.post__head { display: grid; gap: 16px; margin: 16px 0 clamp(32px, 4vw, 44px); }
.post__title { font-size: clamp(34px, 5vw, 58px); }
.post__meta { color: var(--ink-muted); font-size: 14px; }
.post__media { margin: 0 0 clamp(36px, 4vw, 52px); }
.post__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-photo);
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
  box-shadow: var(--shadow-photo);
}

.post__body { font-size: 17px; line-height: 1.7; }
.post__body > * + * { margin-top: 22px; }
.post__body h2 { font-size: clamp(26px, 3vw, 34px); margin-top: 48px; }
.post__body h3 { font-size: clamp(20px, 2.2vw, 24px); margin-top: 36px; }
.post__body p { text-wrap: pretty; }
.post__body ul, .post__body ol { padding-left: 22px; }
.post__body li { margin-bottom: 8px; }
.post__body li::marker { color: var(--forest); }
.post__body a { color: var(--forest); text-underline-offset: 3px; }
.post__body strong { font-weight: 600; }
.post__body blockquote {
  border-left: 3px solid var(--forest);
  padding: 4px 0 4px 20px;
  color: var(--ink-muted);
  font-size: 15.5px;
}
.post__body blockquote p { color: inherit; }
.post__body img {
  width: 100%;
  border-radius: var(--radius-photo);
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}
.post__body hr { border: 0; border-top: 1px solid var(--line); }

.post__foot {
  margin-top: clamp(56px, 7vw, 76px);
  padding-top: 36px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  justify-items: start;
}
.post__foot-text { color: var(--ink-muted); font-size: 15px; }
.post__foot-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
  margin-top: 10px;
}

@media (max-width: 960px) {
  .blog__grid { grid-template-columns: 1fr; gap: 40px; }
  .post__wrap { max-width: none; }
}

@media (max-width: 640px) {
  .post__body { font-size: 16.5px; }
  .post__body h2 { margin-top: 40px; }
}

