:root {
  --stone: #e6e2da;
  --olive: #4e5844;
  --gold: #8f7428;
  --button-gold: #856b25;
  --gold-hover: #7c6422;
  --ink: #1c1f1a;
  --paper: #f3efe7;
  --dawn: color-mix(in srgb, var(--stone) 88%, var(--gold));
  --display: "Unbounded", "Arial Narrow", system-ui, sans-serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --gutter: clamp(1.25rem, 4.5vw, 4.5rem);
}

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

html {
  width: 100%;
  scroll-behavior: auto;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  width: 100%;
  margin: 0;
  background: var(--stone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.55;
  padding-bottom: 0;
  hyphens: none;
}

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

a { color: inherit; }

.skip {
  position: absolute;
  left: -999px;
}

.skip:focus-visible {
  left: var(--gutter);
  top: 1rem;
  z-index: 40;
  background: var(--paper);
  padding: 0.4rem 0.6rem;
}

/* —— mast —— */

.mast {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  align-items: center;
  gap: 0.75rem 1.5rem;
  padding: 2rem var(--gutter);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: transparent;
}

.name {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  color: var(--ink);
}

.mast-meta,
.mast-link {
  margin: 0;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: color-mix(in srgb, var(--ink) 70%, transparent);
  white-space: nowrap;
  flex-shrink: 0;
}

.mast-link:hover { color: var(--ink); }

.mast-meta {
  display: block;
  justify-self: center;
  max-width: min(44vw, 38rem);
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
}

.mast-cta {
  display: inline-flex;
  justify-self: end;
  padding: 0.62rem 0.95rem;
  background: var(--button-gold);
  border: 1px solid var(--button-gold);
  color: #F7F1E6;
  text-decoration: none;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mast-cta:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: #F7F1E6;
}

@media (max-width: 719px) {
  :root {
    --gutter: clamp(1rem, 5.5vw, 1.35rem);
  }

  .mast {
    display: flex;
    padding: 1.5rem var(--gutter) 0.5rem;
  }
  .mast-meta,
  .mast-link { display: none; }
  .mast-cta { display: none; }

}

@media (min-width: 960px) {
  .mast-meta {
    display: block;
  }
  .mast-cta { display: inline-flex; }
}

/* —— hero —— */

.hero {
  position: relative;
  min-height: min(92svh, 60rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  margin-bottom: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 5rem var(--gutter) clamp(2.4rem, 5vh, 4rem);
  max-width: min(56rem, 92vw);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: 22%;
  bottom: 20%;
  left: max(0.75rem, calc(var(--gutter) - 1.35rem));
  width: 1px;
  background: var(--gold);
}

h1 {
  margin: 0 0 1.1rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.9rem, 3.75vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  overflow-wrap: normal;
}

.hero h1 span {
  display: inline-block;
  white-space: nowrap;
}

.standfirst {
  margin: 0 0 1rem;
  max-width: 31rem;
  font-size: 1.32rem;
  font-weight: 500;
  line-height: 1.35;
}

.standfirst small {
  display: block;
  margin-top: 0.65rem;
  font: inherit;
  font-size: 0.78em;
  line-height: 1.3;
}

.hero-meta {
  display: grid;
  gap: 0.28rem;
  width: fit-content;
  max-width: 28rem;
  margin: 0 0 1rem;
  padding-left: 0.9rem;
  border-left: 1px solid var(--gold);
  color: color-mix(in srgb, var(--ink) 76%, transparent);
}

.hero-meta span {
  color: var(--olive);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-meta strong,
.hero-meta b {
  font-size: 0.98rem;
  line-height: 1.3;
}

.hero-meta strong {
  font-weight: 700;
}

.hero-meta b {
  font-weight: 600;
}

.hero-note {
  margin: 0 0 1rem;
  max-width: 39rem;
  font-size: 0.98rem;
  line-height: 1.58;
  color: color-mix(in srgb, var(--ink) 84%, transparent);
}

.format-kicker {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--olive);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.payment-note,
.ig-line,
.offer-instagram {
  margin: 0.85rem 0 0;
  max-width: 35rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--ink) 62%, transparent);
}

.hero .payment-note {
  max-width: 32rem;
  padding: 0.5rem 0.65rem;
  background: color-mix(in srgb, var(--paper) 58%, transparent);
  color: color-mix(in srgb, var(--ink) 72%, transparent);
}

.ig-line a,
.payment-note a,
.offer-instagram a {
  color: var(--olive);
  text-underline-offset: 0.18em;
}

.standfirst-2 { margin-bottom: 1.6rem; }

.hero-fig {
  margin: 0;
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--stone);
}

.hero-fig::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      270deg,
      color-mix(in srgb, var(--stone) 74%, transparent) 0%,
      color-mix(in srgb, var(--stone) 46%, transparent) 34%,
      transparent 66%
    ),
    linear-gradient(
      0deg,
      color-mix(in srgb, var(--ink) 10%, transparent) 0%,
      transparent 42%
    );
}

.hero-fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
}

@media (min-width: 960px) {
  .hero-copy {
    justify-self: start;
    max-width: min(70rem, 76vw);
    padding-left: clamp(2.5rem, 5vw, 5rem);
    padding-right: 1rem;
  }
}

@media (max-width: 959px) {
  .hero-fig img { object-position: 24% 54%; }
  .hero-fig::after {
    background: linear-gradient(
      180deg,
      color-mix(in srgb, var(--stone) 16%, transparent) 0%,
      color-mix(in srgb, var(--stone) 34%, transparent) 46%,
      color-mix(in srgb, var(--stone) 68%, transparent) 100%
    );
  }
}

@media (max-width: 719px) {
  .hero {
    min-height: 100svh;
  }

  .hero-copy {
    max-width: 100%;
    min-width: 0;
  }

  .hero-copy {
    padding-bottom: clamp(5.1rem, 12vh, 6.4rem);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.75rem, 8.2vw, 2.18rem);
    line-height: 1;
    letter-spacing: -0.055em;
    white-space: nowrap;
  }

  h1 span {
    display: inline-block;
    white-space: nowrap;
  }

  h2 {
    font-size: clamp(1.95rem, 9vw, 2.45rem);
    line-height: 1.08;
  }

  .standfirst {
    font-size: 1.2rem;
    max-width: 20rem;
  }
  .hero-note { order: 4; }
  .hero-meta { order: 5; }
  .hero .cta { order: 7; }
  .payment-note { order: 8; }
  .ig-line { order: 9; }
  .cta {
    width: 100%;
    justify-content: center;
    max-width: 100%;
    padding-inline: 1rem;
    letter-spacing: 0.1em;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }
}

/* —— cta —— */

.cta {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  padding: 1.35rem 2.7rem;
  background: var(--button-gold);
  border: 1px solid var(--button-gold);
  color: #F7F1E6;
  text-decoration: none;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 0;
}

.cta:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: #F7F1E6;
}

.cta:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

/* —— practice (carry) —— */

.practice {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(4rem, 9vh, 7rem) var(--gutter);
  position: relative;
  display: grid;
  gap: 2rem clamp(2rem, 6vw, 6rem);
}

.practice::before {
  content: "";
  position: absolute;
  top: 18%;
  bottom: 18%;
  left: max(0.75rem, calc(var(--gutter) - 1.35rem));
  width: 1px;
  background: color-mix(in srgb, var(--gold) 70%, transparent);
}

.practice-kicker,
.who-kicker {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
}

.practice-name {
  margin: 0 0 1.4rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: var(--ink);
  max-width: 10ch;
}

.practice h2,
.who h2 {
  max-width: 16ch;
}

.practice-copy {
  max-width: 43rem;
}

.practice-copy p {
  margin: 0 0 1.35rem;
  font-size: 1.125rem;
  line-height: 1.68;
  color: color-mix(in srgb, var(--ink) 88%, transparent);
}

.practice-copy p:last-child { margin-bottom: 0; }

.practice-lines {
  display: grid;
  gap: 0;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
}

.process-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.process-points li {
  padding: 1.2rem 0;
  border-top: 1px solid rgba(143, 116, 40, 0.3);
}

.process-points strong {
  display: block;
  margin-bottom: 0.55rem;
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.process-points span {
  display: block;
  font-size: 0.92rem;
  line-height: 1.48;
  color: #51564c;
}

@media (max-width: 719px) {
  .process-points {
    grid-template-columns: 1fr;
  }
}

.practice-lines li {
  display: grid;
  gap: 0.35rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
}

.practice-lines span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
}

.practice-lines strong {
  font-family: var(--display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -0.035em;
}

@media (min-width: 960px) {
  .practice {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }

  .practice-heading {
    grid-column: 1;
  }

  .practice-copy {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    padding-top: 0;
  }
}

/* —— mid offer —— */

.mid-offer {
  display: grid;
  gap: clamp(2.5rem, 8vw, 7rem);
  min-height: min(88svh, 56rem);
  padding: clamp(4.75rem, 13vh, 8.5rem) var(--gutter);
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid color-mix(in srgb, var(--gold) 35%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 35%, transparent);
}

.mid-offer-copy {
  max-width: 42rem;
}

.mid-offer-kicker {
  margin: 0 0 0.7rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mid-offer-copy h2 {
  margin-bottom: 1rem;
}

.mid-offer-copy > p:not(.mid-offer-kicker) {
  margin: 0;
  max-width: 32rem;
  font-size: 1.08rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--paper) 82%, transparent);
}

.mid-offer-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: clamp(2rem, 5vw, 3.5rem) 0 0;
  padding: 0;
  border-top: 1px solid color-mix(in srgb, var(--gold) 38%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 38%, transparent);
}

.mid-offer-facts div {
  padding: 1rem 1.1rem 1.05rem 0;
}

.mid-offer-facts div + div {
  border-left: 1px solid color-mix(in srgb, var(--gold) 22%, transparent);
  padding-left: 1.1rem;
}

.mid-offer-facts dt {
  margin: 0 0 0.35rem;
  color: color-mix(in srgb, var(--paper) 52%, transparent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mid-offer-facts dd {
  margin: 0;
  color: var(--paper);
  font-size: 0.98rem;
  line-height: 1.35;
}

.mid-offer-action {
  align-self: end;
}

.mid-offer-price {
  margin: 0 0 clamp(1.1rem, 3vw, 1.8rem);
  font-family: var(--display);
  font-size: clamp(4.6rem, 13vw, 11rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
  color: var(--paper);
}

.mid-offer .offer-payment-note {
  color: color-mix(in srgb, var(--paper) 58%, transparent);
}

@media (min-width: 760px) {
  .mid-offer {
    grid-template-columns: minmax(22rem, 0.88fr) minmax(24rem, 1.12fr);
    align-items: center;
  }

  .mid-offer-action {
    justify-self: end;
    min-width: min(32rem, 100%);
  }
}

@media (max-width: 719px) {
  .mid-offer {
    min-height: 78svh;
  }

  .mid-offer-facts {
    grid-template-columns: 1fr;
  }

  .mid-offer-facts div + div {
    border-left: 0;
    border-top: 1px solid color-mix(in srgb, var(--gold) 22%, transparent);
    padding-left: 0;
  }

  .mid-offer-price {
    font-size: clamp(3.4rem, 18vw, 5.6rem);
  }
}

/* —— hour —— */

.hour {
  display: grid;
  align-items: center;
  padding: 0;
  background: var(--paper);
  position: relative;
  min-height: min(94svh, 56rem);
  overflow: hidden;
}

.hour-fig {
  margin: 0;
  position: absolute;
  inset: 0;
  min-height: 100%;
  overflow: hidden;
  background: var(--stone);
}

.hour-fig::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      color-mix(in srgb, var(--paper) 90%, transparent) 0%,
      color-mix(in srgb, var(--paper) 76%, transparent) 34%,
      color-mix(in srgb, var(--paper) 26%, transparent) 56%,
      color-mix(in srgb, var(--paper) 10%, transparent) 100%
    ),
    linear-gradient(
      0deg,
      color-mix(in srgb, var(--paper) 62%, transparent) 0%,
      transparent 42%
    );
}

.hour-fig img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 50% 54%;
}

.hour-copy {
  position: relative;
  z-index: 1;
  padding: clamp(5.5rem, 12vh, 8rem) var(--gutter);
  max-width: calc(34rem + 2 * var(--gutter));
  margin-left: 0;
  margin-right: 0;
}

h2 {
  margin: 0 0 1.25rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hour-copy p { margin: 0 0 1.35rem; }

.hour-kicker {
  margin: 0 0 0.7rem;
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hour-text {
  max-width: 34.5rem;
}

.hour-after {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--ink) 72%, transparent);
}

.hour-details {
  position: absolute;
  z-index: 1;
  right: var(--gutter);
  bottom: clamp(2rem, 7vh, 4.5rem);
  max-width: min(34rem, 45vw);
  padding-left: 1.2rem;
  border-left: 1px solid var(--gold);
}

.hour-details p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--ink) 64%, transparent);
}

.hour-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
}

.hour-copy li {
  padding: 0.95rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  padding-left: 1.2rem;
  position: relative;
}

.hour-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.4rem;
  width: 0.4rem;
  height: 0.4rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

@media (min-width: 960px) {
  .hour-copy p,
  .hour-copy h2 {
    max-width: 34.5rem;
  }

  .hour h2 {
    font-size: clamp(1.95rem, 3.25vw, 2.85rem);
  }
}

@media (max-width: 959px) {
  .hour {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding-top: 0;
  }

  .hour-fig {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    min-height: 0;
  }

  .hour-fig::after {
    background:
      linear-gradient(
        180deg,
        color-mix(in srgb, var(--paper) 12%, transparent) 0%,
        transparent 46%,
        color-mix(in srgb, var(--paper) 24%, transparent) 100%
      );
  }

  .hour-fig img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: 50% 54%;
  }

  .hour-copy {
    order: 1;
    max-width: none;
    margin: 0;
    padding-top: clamp(4.25rem, 10vh, 6rem);
    padding-bottom: clamp(2.25rem, 6vh, 3.5rem);
    background: var(--paper);
  }

  .hour-details {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -1.4rem var(--gutter) 3.8rem;
    padding-left: 1rem;
    background: var(--paper);
  }
}

@media (max-width: 719px) {
  body { padding-bottom: 0; }

  main > section:last-of-type {
    padding-bottom: 3.5rem;
  }

  .colophon {
    padding-bottom: 3.5rem;
  }
}

/* —— who —— */

.who {
  display: grid;
  gap: 0;
  align-items: stretch;
  background: var(--stone);
  color: var(--ink);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.who-intro {
  background: var(--stone);
  border-top: 1px solid color-mix(in srgb, var(--gold) 28%, transparent);
}

.who::after {
  content: "";
  position: absolute;
  width: min(36vw, 15rem);
  height: min(36vw, 15rem);
  border: 1px solid color-mix(in srgb, var(--gold) 35%, transparent);
  border-radius: 50%;
  left: -10%;
  top: -16%;
  pointer-events: none;
}

.who-copy {
  padding: clamp(3rem, 8vh, 5.5rem) var(--gutter);
  max-width: 38rem;
  position: relative;
}

.who-fig {
  position: relative;
  margin: 0;
  min-height: clamp(20rem, 52svh, 26rem);
  overflow: hidden;
}

.who-fig img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 52% 8%;
}

.who-roles {
  margin: 0 0 1.4rem;
  max-width: 36rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.55;
  color: color-mix(in srgb, var(--ink) 82%, var(--olive));
}

.who-note {
  margin: 0 0 1.2rem;
  max-width: 32rem;
  font-size: 1.0625rem;
  line-height: 1.62;
  color: color-mix(in srgb, var(--ink) 78%, transparent);
}

.who-track {
  margin: 0;
  max-width: 32rem;
  font-size: 1.0625rem;
  line-height: 1.62;
  color: color-mix(in srgb, var(--ink) 78%, transparent);
}

@media (min-width: 960px) {
  .who {
    grid-template-columns: minmax(20rem, 0.88fr) minmax(24rem, 1.12fr);
    min-height: min(100svh, 56rem);
  }
  .who-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(3.5rem, 10vh, 7rem) var(--gutter);
    max-width: none;
  }
  .who-fig {
    min-height: 100svh;
  }
  .who-fig img {
    object-position: 50% 12%;
  }
}

/* —— video voices —— */

.voices {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  padding: clamp(4.5rem, 12vh, 8rem) var(--gutter);
  background: var(--paper);
}

.voices-copy {
  max-width: 35rem;
}

.voices-kicker {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
}

.voices-copy h2 {
  max-width: none;
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  line-height: 1.12;
  overflow-wrap: normal;
}

.voices-copy > p:not(.voices-kicker):not(.voices-note) {
  margin: 0;
  max-width: 32rem;
  font-size: 1.08rem;
  line-height: 1.65;
}

.voices-note {
  margin: 1.35rem 0 0;
  font-size: 0.82rem;
  color: color-mix(in srgb, var(--ink) 52%, transparent);
}

.voices-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 1.7vw, 1.6rem);
  align-items: end;
  max-width: 36rem;
}

.video-card {
  display: block;
  color: var(--ink);
  text-decoration: none;
}

.video-thumb {
  display: block;
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: color-mix(in srgb, var(--stone) 82%, white);
  border: 1px solid color-mix(in srgb, var(--gold) 20%, transparent);
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, white 4%, transparent) 0%,
    transparent 52%,
    color-mix(in srgb, var(--ink) 46%, transparent) 100%
  );
  transition: background 180ms ease;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(0.96);
  transition: transform 300ms ease;
}

.video-card:hover .video-thumb img {
  filter: saturate(0.94) contrast(0.98);
  transform: scale(1.018);
}

.video-card:hover .video-thumb::after {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--gold) 8%, transparent) 0%,
    color-mix(in srgb, var(--ink) 48%, transparent) 100%
  );
}

.video-card:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 5px;
}

.video-play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: clamp(2.8rem, 4vw, 3.45rem);
  height: clamp(2.8rem, 4vw, 3.45rem);
  transform: translate(-50%, -50%);
  border: 1px solid color-mix(in srgb, white 80%, transparent);
  background: color-mix(in srgb, var(--ink) 48%, transparent);
}

.video-play::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  transform: translate(-35%, -50%);
  border-top: 0.52rem solid transparent;
  border-bottom: 0.52rem solid transparent;
  border-left: 0.82rem solid white;
}

.video-duration {
  position: absolute;
  z-index: 2;
  right: 0.8rem;
  bottom: 0.7rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: white;
}

.video-meta {
  display: grid;
  gap: 0.25rem;
  padding: 0.75rem 0 0;
  border-top: 1px solid color-mix(in srgb, var(--gold) 62%, transparent);
}

.video-meta span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--olive);
}

.video-meta strong {
  font-family: var(--display);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  letter-spacing: -0.035em;
}

.video-dialog {
  width: min(68rem, calc(100vw - 2rem));
  max-width: none;
  max-height: calc(100dvh - 2rem);
  padding: 0;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  overflow: auto;
}

.video-dialog::backdrop {
  background: color-mix(in srgb, var(--ink) 78%, transparent);
  backdrop-filter: blur(5px);
}

.video-dialog-inner {
  display: grid;
  grid-template-columns: minmax(16rem, 29rem) minmax(16rem, 1fr);
  min-height: min(46rem, calc(100dvh - 2rem));
}

.video-frame {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: calc(100dvh - 2rem);
  background: #111;
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-dialog-copy {
  align-self: center;
  padding: clamp(2rem, 5vw, 4.5rem);
  max-width: 29rem;
}

.video-dialog-copy p:not(.voices-kicker) {
  color: color-mix(in srgb, var(--ink) 65%, transparent);
}

.video-dialog-copy a {
  display: inline-block;
  margin-top: 1.2rem;
  color: var(--olive);
  text-underline-offset: 0.2em;
}

.video-close {
  position: fixed;
  z-index: 3;
  top: max(1.5rem, env(safe-area-inset-top));
  right: max(1.5rem, env(safe-area-inset-right));
  border: 1px solid color-mix(in srgb, white 62%, transparent);
  border-radius: 0;
  padding: 0.7rem 0.9rem;
  background: color-mix(in srgb, var(--ink) 76%, transparent);
  color: white;
  font: 600 0.72rem/1 var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
}

.video-close:focus-visible {
  outline: 2px solid white;
  outline-offset: 3px;
}

@media (min-width: 960px) {
  .voices {
    grid-template-columns: minmax(18rem, 0.72fr) minmax(32rem, 1.28fr);
    align-items: center;
    min-height: 88svh;
  }
}

@media (max-width: 719px) {
  .voices-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .video-play {
    width: 2.6rem;
    height: 2.6rem;
  }

  .video-dialog {
    width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
  }

  .video-dialog-inner {
    display: block;
    min-height: 100dvh;
  }

  .video-frame {
    width: min(100vw, 29rem);
    max-height: 78dvh;
    margin-inline: auto;
  }

  .video-dialog-copy {
    padding: 1.5rem var(--gutter) 2.5rem;
  }
}

/* —— offer ticket —— */

.offer {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
}

.offer-ticket {
  display: grid;
  gap: clamp(2.2rem, 5vw, 4.5rem);
  align-items: center;
  max-width: none;
  margin-inline: 0;
  min-height: auto;
  padding: clamp(4.5rem, 10vh, 8rem) var(--gutter);
  background: var(--paper);
  border: 0;
  border-top: 1px solid color-mix(in srgb, var(--gold) 44%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 44%, transparent);
  position: relative;
  overflow: hidden;
}

.offer-ticket::before {
  content: none;
  position: absolute;
  width: min(56vw, 28rem);
  height: min(56vw, 28rem);
  right: -8vw;
  top: -12vw;
  border: 1px solid color-mix(in srgb, var(--gold) 28%, transparent);
  border-radius: 50%;
}

.offer-price,
.offer-copy,
.offer-margin,
.offer-limits {
  position: relative;
  z-index: 1;
}

.offer-kicker {
  margin: 0 0 1rem;
  color: var(--olive);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.offer-heading {
  position: relative;
  z-index: 1;
  max-width: 48rem;
}

.format-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
}

.format-card {
  padding: clamp(1.45rem, 3vw, 2.4rem);
  border: 1px solid color-mix(in srgb, var(--gold-hover) 32%, transparent);
  background: rgba(255, 252, 245, 0.55);
}

.format-card-main {
  padding: clamp(1.45rem, 3vw, 2.4rem);
  border-color: color-mix(in srgb, var(--gold) 44%, transparent);
  background: rgba(255, 252, 245, 0.55);
  box-shadow: none;
}

.format-card-secondary {
  align-self: center;
  background: color-mix(in srgb, var(--paper) 72%, transparent);
  border-color: color-mix(in srgb, var(--ink) 14%, transparent);
}

.format-card h3 {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: clamp(1.34rem, 2.35vw, 1.85rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.format-price {
  margin: 0 0 0.25rem;
  font-family: var(--display);
  font-size: clamp(1.72rem, 3.2vw, 2.55rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.format-price span {
  font-size: 0.42em;
  font-weight: 600;
  color: color-mix(in srgb, var(--ink) 54%, transparent);
}

.format-fx {
  margin: 0 0 0.95rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--ink) 54%, transparent);
}

.format-date {
  margin: 0 0 1.2rem;
  color: var(--olive);
}

.format-card p:not(.format-kicker):not(.format-price):not(.format-fx):not(.format-date):not(.offer-payment-note) {
  margin: 0 0 1rem;
  max-width: 35rem;
  color: color-mix(in srgb, var(--ink) 72%, transparent);
}

.cta-secondary {
  background: transparent;
  border: 1px solid var(--gold);
  color: #171914;
}

.cta-secondary:hover {
  background: rgba(143, 116, 40, 0.08);
  border-color: var(--gold-hover);
  color: #171914;
}

.offer-instagram {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin-top: -1.5rem;
  padding-left: 1.2rem;
  border-left: 1px solid var(--gold);
}

.sum {
  display: inline-block;
  margin: 0 0 0.7rem;
  padding: 0;
  border: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(4.3rem, 14vw, 10rem);
  line-height: 0.86;
  letter-spacing: 0;
  color: var(--ink);
}

.fx {
  margin: 0;
  color: color-mix(in srgb, var(--ink) 52%, transparent);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.fx em {
  font-style: normal;
  display: block;
  margin-top: 0.2rem;
  font-size: 0.92em;
}

.offer-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
  max-width: 40rem;
}

.offer-lead {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.8vw, 2.05rem);
  line-height: 1.25;
  letter-spacing: 0;
}

.offer-when {
  margin: 0;
  color: color-mix(in srgb, var(--ink) 58%, transparent);
}

.offer-margin {
  padding: 0.1rem 0 0.1rem 1.35rem;
  border-left: 1px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 34rem;
}

.offer-aside,
.offer-ladder {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--ink) 54%, transparent);
}

.offer-ladder {
  color: color-mix(in srgb, var(--ink) 48%, transparent);
}

.offer .cta { margin-top: 0.55rem; }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
}

.contact-actions .cta {
  margin-top: 0;
}

.offer-payment-note {
  margin: 0.7rem 0 0;
  max-width: 24rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: color-mix(in srgb, var(--ink) 58%, transparent);
}

.offer-limits {
  max-width: 42rem;
}

.offer-limits .fold {
  border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  padding-top: 0.85rem;
}

@media (max-width: 719px) {
  .offer-ticket {
    gap: 1.45rem;
    margin-inline: 0;
    max-width: none;
    min-height: auto;
    border-left: 0;
    border-right: 0;
  }

  .sum {
    font-size: clamp(4.1rem, 20vw, 6rem);
  }
}

@media (min-width: 960px) {
  .offer-ticket {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    align-items: center;
  }
  .format-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(18rem, 0.82fr);
    align-items: stretch;
  }
}

/* —— thank you page —— */

.thanks-page {
  max-width: 58rem;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) var(--gutter) clamp(4rem, 9vw, 7rem);
}

.thanks-hero {
  padding: clamp(2rem, 5vw, 3.4rem);
  background: var(--paper);
  border: 1px solid color-mix(in srgb, var(--gold) 42%, transparent);
}

.thanks-hero h1 {
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  line-height: 1.02;
}

.thanks-lead {
  margin: 0 0 1.5rem;
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--ink) 72%, transparent);
}

.thanks-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
}

.thanks-facts div {
  padding: 0.9rem 1rem 1rem 0;
}

.thanks-facts div + div {
  padding-left: 1rem;
  border-left: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
}

.thanks-facts dt {
  margin: 0 0 0.35rem;
  color: var(--olive);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.thanks-facts dd {
  margin: 0;
  font-weight: 700;
}

.thanks-section {
  padding: clamp(2rem, 5vw, 3.5rem) 0 0;
}

.thanks-section h2 {
  font-size: clamp(1.45rem, 3vw, 2.25rem);
}

.thanks-section p,
.thanks-list {
  max-width: 42rem;
}

.thanks-section p,
.thanks-list li {
  font-size: 1.05rem;
  line-height: 1.68;
  color: color-mix(in srgb, var(--ink) 78%, transparent);
}

.thanks-section a {
  color: var(--olive);
  text-underline-offset: 0.18em;
}

.thanks-list {
  margin: 0;
  padding-left: 1.2rem;
}

.thanks-list li + li {
  margin-top: 0.55rem;
}

@media (max-width: 719px) {
  .thanks-facts {
    grid-template-columns: 1fr;
  }
  .thanks-facts div + div {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  }
}

/* —— faq —— */

.q {
  padding: clamp(5.5rem, 14vh, 9rem) var(--gutter) clamp(5rem, 12vh, 8rem);
  background: var(--paper);
}

.q h2 { margin-bottom: 0.7rem; }

.q-hint {
  margin: 0 0 1.6rem;
  max-width: 36rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--ink) 52%, transparent);
}

.folds {
  margin: 0;
  max-width: 42rem;
}

.fold {
  margin: 0;
  border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
}

.folds .fold:last-child {
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
}

.fold summary {
  list-style: none;
  cursor: pointer;
  padding: 1.35rem 2rem 1.35rem 0;
  position: relative;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.1vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.fold summary::-webkit-details-marker { display: none; }

.fold summary:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.fold summary::after {
  content: "";
  position: absolute;
  right: 0.25rem;
  top: 1.65rem;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 1.5px solid var(--olive);
  border-bottom: 1.5px solid var(--olive);
  transform: rotate(45deg);
}

.fold[open] summary { color: var(--olive); }
.fold[open] summary::after { transform: rotate(225deg); }

.fold-body {
  max-width: 36rem;
  padding: 0 0 1.5rem;
}

.fold-body p {
  margin: 0 0 0.7rem;
  font-size: 1.0625rem;
  line-height: 1.62;
  color: color-mix(in srgb, var(--ink) 78%, transparent);
}

.fold-body p:last-child { margin-bottom: 0; }

.fold-body a {
  color: var(--olive);
  text-underline-offset: 0.18em;
}

@media (max-width: 719px) {
  .q {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
  }

  .fold summary { padding: 1.15rem 0; }
}

@media (max-width: 719px) {
  body {
    padding-bottom: 0;
  }

  .hero {
    min-height: 100svh;
    margin-bottom: 0;
  }

  .hero-copy {
    min-height: 100svh;
    padding-top: 5.1rem;
    padding-bottom: 2.4rem;
    justify-content: flex-end;
  }

  .hero-copy::before {
    top: 26%;
    bottom: 10%;
  }

  .hero-fig::after {
    background:
      linear-gradient(
        180deg,
        color-mix(in srgb, var(--stone) 14%, transparent) 0%,
        color-mix(in srgb, var(--stone) 32%, transparent) 42%,
        color-mix(in srgb, var(--stone) 76%, transparent) 100%
      ),
      linear-gradient(
        90deg,
        color-mix(in srgb, var(--stone) 54%, transparent) 0%,
        color-mix(in srgb, var(--stone) 30%, transparent) 58%,
        transparent 100%
      );
  }

  h1 {
    margin-bottom: 0.9rem;
    font-size: clamp(1.75rem, 8.2vw, 2.18rem);
    letter-spacing: -0.055em;
    white-space: nowrap;
  }

  h2 {
    font-size: clamp(1.8rem, 8.4vw, 2.24rem);
  }

  .standfirst {
    margin-bottom: 0.75rem;
    max-width: 19.5rem;
    font-size: 1.08rem;
    line-height: 1.28;
  }

  .standfirst small {
    margin-top: 0.7rem;
    max-width: 18.5rem;
    font-size: 0.82em;
    line-height: 1.34;
  }

  .hero-note {
    max-width: 19.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.93rem;
    line-height: 1.48;
  }

  .hero-meta {
    margin-bottom: 0.9rem;
  }

  .hero .cta {
    padding-block: 1.05rem;
  }

  .hero .payment-note {
    margin-top: 0.7rem;
    padding: 0.62rem 0.72rem;
    font-size: 0.78rem;
    line-height: 1.45;
    background: color-mix(in srgb, var(--paper) 74%, transparent);
  }

  .practice,
  .voices,
  .offer-ticket,
  .q {
    padding-top: 3.9rem;
    padding-bottom: 5.2rem;
  }

  .practice {
    gap: 1.35rem;
  }

  .practice-name,
  .practice h2 {
    max-width: 11ch;
  }

  .practice-copy p {
    margin-bottom: 1.05rem;
    font-size: 1rem;
    line-height: 1.62;
  }

  .process-points {
    margin-top: 1.45rem;
  }

  .process-points li {
    padding: 0.9rem 0.95rem;
  }

  .hour-copy {
    padding-top: 3.8rem;
    padding-bottom: 5.2rem;
  }

  .hour h2 {
    font-size: clamp(1.75rem, 8vw, 2.14rem);
  }

  .hour-text p {
    margin-bottom: 1.12rem;
    font-size: 1rem;
    line-height: 1.64;
  }

  .who-copy {
    padding-top: 3.8rem;
    padding-bottom: 5.2rem;
  }

  .who-copy h2 {
    font-size: clamp(1.58rem, 7.4vw, 2.02rem);
    line-height: 1.08;
  }

  .who-roles,
  .who-note {
    font-size: 1rem;
    line-height: 1.58;
  }

  .who-track {
    font-size: 1rem;
    line-height: 1.58;
  }

  .offer-ticket {
    gap: 1.25rem;
  }

  .offer-heading h2 {
    max-width: 11ch;
  }

  .format-grid {
    gap: 0.9rem;
  }

  .format-card {
    padding: 1.2rem 1.08rem;
  }

  .format-card h3 {
    margin-bottom: 0.65rem;
    font-size: 1.3rem;
  }

  .format-price {
    font-size: 2rem;
  }

  .format-fx,
  .format-date {
    margin-bottom: 0.8rem;
  }

  .format-card p:not(.format-kicker):not(.format-price):not(.format-fx):not(.format-date):not(.offer-payment-note) {
    margin-bottom: 0.82rem;
    font-size: 0.96rem;
    line-height: 1.52;
  }

  .format-card .cta {
    margin-top: 0.35rem;
    padding-block: 1rem;
    font-size: 0.76rem;
  }

  .offer-instagram {
    margin-top: -0.45rem;
  }

  .q {
    padding-bottom: 5.4rem;
  }

  .fold summary {
    padding: 1rem 0;
    font-size: clamp(1.05rem, 5.4vw, 1.28rem);
  }

  .fold-body {
    padding-bottom: 1.2rem;
  }

  .fold-body p {
    font-size: 0.98rem;
    line-height: 1.58;
  }
}

/* —— footer —— */

.colophon {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 2rem;
  padding: 1.6rem var(--gutter) 2.4rem;
  background: var(--paper);
  border-top: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
  font-size: 0.82rem;
  color: color-mix(in srgb, var(--ink) 55%, transparent);
}

.colophon p { margin: 0; }

.colophon-links a {
  color: var(--olive);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.colophon-links a:hover {
  color: var(--ink);
}

/* —— final editorial layout —— */

section[id] { scroll-margin-top: 1.5rem; }
.no-break { white-space: nowrap; }

.mast-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.2rem, 2.5vw, 2.5rem);
  font-size: 0.85rem;
}

.mast-nav a, .text-link {
  text-decoration: none;
  text-underline-offset: 0.3em;
}

.mast-nav a:hover, .text-link:hover { text-decoration: underline; }

a:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 5px;
}

.hero {
  min-height: min(92svh, 58rem);
  align-items: center;
}

.hero-copy {
  padding-top: 8rem;
  padding-bottom: 5rem;
  width: 100%;
  max-width: min(51rem, 66vw);
}

.hero h1 {
  font-size: clamp(2.8rem, 4.5vw, 4.6rem);
  white-space: nowrap;
}

.hero .standfirst {
  max-width: none;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  margin: 0 0 2rem;
}

.hero-lead {
  max-width: 27rem;
  margin: 0 0 1rem;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 500;
  line-height: 1.4;
  text-wrap: pretty;
}

.hero-note { max-width: 30rem; margin-bottom: 1.8rem; font-size: 1.05rem; }

.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.2rem 1.6rem; }
.text-link { font-size: 0.9rem; padding: 0.75rem 0; }
.text-link span { padding-left: 0.4rem; }

.hero-fig::after {
  background: linear-gradient(90deg, rgba(243,239,231,.94) 0%, rgba(243,239,231,.84) 30%, rgba(243,239,231,.26) 58%, transparent 82%);
}

.practice h2 { max-width: 17ch; font-size: clamp(2rem, 3.3vw, 3.1rem); line-height: 1.15; }
.practice-heading { align-self: start; }
.practice-copy { max-width: 40rem; }
.practice::before { content: none; }
.process-points strong { font-size: 0.94rem; }

.hour { min-height: 46rem; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.hour-copy { grid-column: 1; grid-row: 1; max-width: none; padding-block: 4.5rem; }
.hour-fig { grid-column: 2; grid-row: 1; position: relative; inset: auto; align-self: stretch; }
.hour-fig img { position: absolute; inset: 0; object-position: 39% 50%; }
.hour h2 { line-height: 1.16; }
.hour-fig::after {
  background: linear-gradient(90deg, rgba(243,239,231,.5), transparent 22%);
}
.hour-text { max-width: 34rem; }
.hour-text p { font-size: 1.05rem; line-height: 1.65; }
.hour-text strong { font-weight: 600; }
.hour-conditions { max-width: 34rem; padding-top: 1rem; border-top: 1px solid rgba(143,116,40,.3); font-size: 0.9rem; line-height: 1.6; color: #51564c; }

.who h2 { max-width: none; font-size: clamp(2rem, 3.2vw, 3.25rem); line-height: 1.16; }
.who-fig { min-height: 0; }
.who-note, .who-track { max-width: 34rem; }
.who::after { content: none; }

.voices { min-height: auto; }
.voices-grid { width: 100%; max-width: 36rem; }
.voices-copy h2 { line-height: 1.16; }
.voices-note, .offer-payment-note, .format-fx, .offer-instagram, .colophon { color: #565a51; }
.offer-heading > p:last-child { margin: 0; color: #51564c; }
.offer-heading h2 { line-height: 1.16; max-width: 20ch; }
.format-kicker { margin-top: 0; }
.format-card h3 { font-size: clamp(1.1rem, 1.6vw, 1.5rem); }
.format-card-secondary { align-self: stretch; }
.format-card { display: flex; flex-direction: column; align-items: flex-start; }
.format-card .cta { margin-top: auto; }
.format-card .contact-actions .cta { margin-top: 0; }
.format-card .offer-payment-note { min-height: 3em; }
.format-card .format-date { margin-bottom: 1.5rem; }
.format-card p { text-wrap: pretty; }
.format-fx { margin-bottom: 1.5rem; }
.offer .cta { letter-spacing: 0.1em; padding-inline: 1.7rem; }
.contact-actions .cta { min-width: min(100%, 14.5rem); justify-content: center; }

@media (min-width: 720px) {
  .standfirst,
  .hero-note,
  .intro-text,
  .practice-copy p,
  .process-points span,
  .mid-offer-copy > p:not(.mid-offer-kicker),
  .mid-offer-facts dd,
  .hour-text p,
  .hour-conditions,
  .who-roles,
  .who-note,
  .who-track,
  .voices-copy > p:not(.voices-kicker),
  .voices-note,
  .offer-heading > p,
  .format-card p:not(.format-kicker):not(.format-price):not(.format-fx):not(.format-date),
  .offer-payment-note,
  .offer-instagram,
  .fold-body p,
  .colophon p {
    text-align: justify;
    text-align-last: left;
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
  }

  .offer .format-grid {
    align-items: stretch;
  }

  .offer .format-card {
    height: 100%;
  }

  .offer .format-card p:not(.format-kicker):not(.format-price):not(.format-fx):not(.format-date):not(.offer-payment-note) {
    width: 100%;
    max-width: none;
    font-size: 0.96rem;
    line-height: 1.68;
    text-wrap: pretty;
  }

  .offer .format-card .offer-payment-note {
    width: 100%;
    max-width: none;
  }

  .offer .format-card .contact-actions {
    display: flex;
    flex-direction: column;
    width: min(100%, 24rem);
    align-items: stretch;
    gap: 0.75rem;
  }

  .offer .format-card .contact-actions .cta {
    display: flex;
    min-height: 4.85rem;
    width: 100%;
    min-width: 0;
    padding-inline: 0.9rem;
    white-space: nowrap;
  }
}

@media (min-width: 960px) {
  .offer .format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.8rem, 2.6vw, 2.6rem);
  }

  .offer .format-card,
  .offer .format-card-main,
  .offer .format-card-secondary {
    align-self: stretch;
    padding: clamp(2rem, 3vw, 2.4rem);
  }

  .offer .format-card .contact-actions {
    width: min(100%, 24rem);
  }
}

@media (min-width: 720px) {
  .intro-text,
  .practice-copy p,
  .hour-text p,
  .hour-conditions,
  .who-note,
  .who-track,
  .voices-copy > p:not(.voices-kicker),
  .offer-heading > p,
  .fold-body p {
    text-align: justify;
    text-align-last: left;
    hyphens: none;
  }

  .format-card p,
  .offer-payment-note {
    text-align-last: left;
  }
}

.q { display: grid; gap: 2rem 4rem; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); }
.q-heading h2 { max-width: 14ch; line-height: 1.16; font-size: clamp(1.9rem, 3vw, 3rem); }
.folds { width: 100%; }
.fold summary { font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.5; }
.colophon { gap: 1.4rem 3rem; }
.colophon > p { max-width: 27rem; }
.colophon-links { padding-top: 0.65rem; }

.video-dialog-inner { grid-template-columns: minmax(0,1fr) minmax(0,.85fr); min-height: 0; }
.video-dialog-copy { max-width: none; padding: 2.5rem; }
.video-dialog-copy h2 { font-size: clamp(1.25rem, 2.1vw, 1.85rem); line-height: 1.25; overflow-wrap: normal; }
.video-frame { width: min(100%, calc((100dvh - 2rem) * 9 / 16)); height: auto; max-height: none; justify-self: center; }
body:has(.video-dialog[open]) { overflow: hidden; }

@media (max-width: 1100px) {
  .mast-nav { display: none; }
  .mast { grid-template-columns: 1fr auto; }
  .hero-actions { gap: 0.7rem 1.3rem; }
  .hour { min-height: auto; }
  .hour-copy { max-width: none; padding-block: 4rem; }
}

@media (max-width: 959px) {
  .hero-copy { max-width: 88%; }
  .hero h1 { font-size: clamp(2.8rem, 6.4vw, 4.6rem); }
  .practice h2 { max-width: 20ch; }
  .hour-copy { max-width: none; padding-block: 3.5rem 2rem; }
  .hour-fig img { position: relative; inset: auto; aspect-ratio: auto; width: 100%; height: auto; }
  .hour-fig::after { content: none; }
  .who-fig img { position: relative; height: auto; width: 100%; max-width: 100%; }
  .who-fig { min-height: 0; max-width: 34rem; }
  .who { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .who-copy { padding: 2.5rem 1.75rem; }
  .who-copy h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
  .q { grid-template-columns: 1fr; }
}

@media (max-width: 719px) {
  body { padding-bottom: 0; }
  .mast { padding-top: 1.65rem; }
  .hero { display: flex; flex-direction: column; width: 100%; max-width: 100vw; min-height: 0; padding-top: 5rem; background: var(--paper); }
  .hero-fig { position: relative; inset: auto; order: 0; width: 100%; }
  .hero-fig img { height: auto; width: 100%; }
  .hero-fig::after { content: none; }
  .hero-copy { order: 1; width: 100%; min-width: 0; min-height: 0; max-width: 100%; padding: 2rem var(--gutter) 2.8rem; overflow: visible; }
  .hero-copy::before { content: none; }
  .hero h1 { max-width: 100%; font-size: clamp(1.45rem, 8.2vw, 2.25rem); margin-bottom: 0.85rem; white-space: normal; overflow-wrap: anywhere; }
  .hero h1 span { white-space: normal; }
  .hero .standfirst { max-width: 100%; font-size: 0.95rem; line-height: 1.5; margin-bottom: 1.35rem; }
  .hero-lead { max-width: 19rem; font-size: 1.08rem; line-height: 1.46; margin-bottom: 0.8rem; overflow-wrap: normal; hyphens: none; text-wrap: auto; }
  .hero-note { max-width: min(100%, 20rem); font-size: 0.95rem; line-height: 1.62; margin-bottom: 1.4rem; overflow-wrap: normal; order: initial; }
  .hero-actions { width: 100%; max-width: 100%; flex-direction: column; align-items: stretch; gap: 0.6rem; }
  .hero-actions .cta { order: initial; }
  .hero-actions .text-link { text-align: center; }
  .cta, .offer .cta { min-height: 3rem; padding: 1rem; letter-spacing: 0.07em; font-size: 0.76rem; line-height: 1.5; }
  .practice { border-top: 1px solid rgba(143,116,40,.25); }
  .practice h2, .offer-heading h2 { max-width: none; font-size: clamp(1.65rem, 7.2vw, 2.2rem); }
  .practice, .voices, .offer-ticket, .q { padding-block: 3.5rem; }
  .process-points { margin-top: 1.5rem; }
  .process-points li { padding: 1rem 0; }
  .process-points span { font-size: 0.96rem; line-height: 1.6; }
  .hour-copy { padding-top: 3.5rem; padding-bottom: 1.5rem; }
  .hour h2 { font-size: clamp(1.65rem, 7.2vw, 2.2rem); }
  .who { grid-template-columns: 1fr; }
  .who-fig { max-width: none; }
  .who-copy { padding: 2.5rem var(--gutter) 3.5rem; max-width: none; }
  .who-copy h2 {
    font-size: clamp(1.5rem, 6.3vw, 1.95rem);
    overflow-wrap: anywhere;
  }
  .who-note, .who-track { font-size: 1rem; line-height: 1.65; }
  .voices { gap: 1.75rem; }
  .voices-copy h2 {
    font-size: clamp(1.65rem, 6.8vw, 2rem);
    overflow-wrap: anywhere;
  }
  .voices-grid { gap: 0.65rem; }
  .video-meta strong { font-size: 0.95rem; }
  .voices-note { font-size: 0.88rem; }
  .format-card { padding: 1.5rem; }
  .contact-actions {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 0.55rem;
  }
  .format-price { font-size: 2rem; }
  .format-fx { margin-bottom: 1.2rem; }
  .offer-payment-note { font-size: 0.88rem; line-height: 1.6; }
  .offer-instagram { margin-top: 0.5rem; }
  .fold summary { padding: 1.1rem 1.6rem 1.1rem 0; font-size: 1rem; }
  .fold summary::after { top: 1.65rem; }
  main > section:last-of-type { padding-bottom: 3.5rem; }
  .video-dialog-inner { display: block; }
  .video-frame { width: min(100%, calc(76dvh * 9 / 16)); margin-inline: auto; }
  .colophon { padding-bottom: 3.5rem; }
}

@media (min-width: 720px) and (max-width: 959px) {
  .who-fig { max-width: none; }
  .who-fig img { position: absolute; height: 100%; object-fit: cover; object-position: 50% 12%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}

/* —— legal pages —— */

.legal {
  max-width: 40rem;
  margin: 0 auto;
  padding: 8rem var(--gutter) 5rem;
}

.legal-kicker {
  margin: 0 0 1.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 48%, transparent);
}

.legal h1 {
  white-space: normal;
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 2rem;
}

.legal h2 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 2.2rem 0 0.7rem;
}

.legal p {
  margin: 0 0 0.85rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--ink) 82%, transparent);
}

.legal a {
  color: var(--olive);
  text-underline-offset: 0.18em;
}

.legal-note {
  margin-top: 2rem;
  font-size: 0.88rem;
  color: color-mix(in srgb, var(--ink) 52%, transparent);
}
