:root {
      --pink: #E88FD8;
      --burnt: #B8501A;
      --turq: #2BC4C4;
      --cobalt: #2B3FC4;
      --red: #D94F2A;
      --yellow: #F0C419;
      --forest: #2F6B3C;
      --cream: #F5EDE0;
      --ink: #1A1A1A;
      --font-display: "Bowlby One SC", "Alfa Slab One", serif;
      --font-body: "Work Sans", system-ui, sans-serif;
      --nav-h: 6.7rem;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--font-body);
      font-size: 1.0625rem;
      line-height: 1.55;
      background: var(--ink);
      color: var(--cream);
    }
    img, svg { display: block; max-width: 100%; }
    a { color: inherit; }
    button, input, select, textarea { font: inherit; color: inherit; }
    h1, h2, h3, .display {
      font-family: var(--font-display);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-weight: 400;
      line-height: 0.92;
      margin: 0;
    }
    p { margin: 0 0 1em; }
    p:last-child { margin-bottom: 0; }

    .skip {
      position: absolute;
      left: -999px;
      top: 0;
      background: var(--ink);
      color: var(--cream);
      padding: 0.6rem 1rem;
      z-index: 100;
    }
    .skip:focus { left: 0.5rem; top: 0.5rem; }

    :focus-visible {
      outline: 3px solid var(--fg, var(--ink));
      outline-offset: 3px;
    }

    .pair-red { --bg: var(--red); --fg: var(--yellow); }
    .pair-yellow { --bg: var(--yellow); --fg: var(--red); }
    .pair-cream { --bg: var(--cream); --fg: var(--ink); }
    .pair-ink { --bg: var(--ink); --fg: var(--cream); }
    .pair-pink { --bg: var(--pink); --fg: var(--burnt); }
    .pair-burnt { --bg: var(--burnt); --fg: var(--pink); }
    .pair-turq { --bg: var(--turq); --fg: var(--cobalt); }
    .pair-cobalt { --bg: var(--cobalt); --fg: var(--turq); }
    .pair-forest { --bg: var(--forest); --fg: var(--pink); }

    .panel {
      background: var(--bg);
      color: var(--fg);
      min-height: calc(100svh - var(--nav-h));
      min-height: calc(100dvh - var(--nav-h));
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      padding: 1.15rem clamp(1.1rem, 3vw, 2.75rem) clamp(1.4rem, 3vh, 2.2rem);
    }
    main > .panel:first-child {
      padding-top: 1.05rem;
    }

    .motif { color: var(--fg); }
    .motif svg { width: 100%; height: auto; }

    /* LOGO COMPONENT */
    .logo-mark {
      display: block;
      width: 5.1rem;
      height: 5.1rem;
      flex-shrink: 0;
      text-decoration: none;
      border: 2px solid var(--ink);
      padding: 0;
    }
    .logo-mark img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      background: var(--bg);
      color: var(--fg);
    }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.7rem 1.1rem;
      border-bottom: 4px solid var(--fg);
    }
    .nav-toggle {
      display: none;
      width: 2.6rem;
      height: 2.6rem;
      border: 1px solid var(--fg);
      background: transparent;
      padding: 0.55rem;
      cursor: pointer;
    }
    .nav-toggle span {
      display: block;
      height: 2px;
      background: var(--fg);
      margin: 5px 0;
    }
    .nav-menu {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.35rem 1.15rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .nav-menu a {
      text-decoration: none;
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 600;
    }
    .nav-cta {
      border: 2px solid var(--fg);
      padding: 0.45rem 0.75rem;
    }

    .btn {
      display: inline-block;
      font-family: var(--font-display);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      text-decoration: none;
      border: 2px solid var(--fg);
      padding: 0.85rem 1.15rem;
      background: transparent;
      color: var(--fg);
      cursor: pointer;
    }
    .btn-solid {
      background: var(--fg);
      color: var(--bg);
    }
    .btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

    .ph {
      background: color-mix(in srgb, var(--fg) 15%, transparent);
      border: 2px solid var(--fg);
      display: grid;
      place-items: center;
      text-align: center;
      padding: 1rem;
      font-family: var(--font-display);
      font-size: clamp(0.62rem, 1.4vw, 0.8rem);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--fg);
    }
    .ph--hero { height: 500px; }
    .ph--inline { height: 380px; }
    .ph--portrait {
      display: block;
      position: relative;
      width: 100%;
      max-width: none;
      height: auto;
      aspect-ratio: 3 / 4;
      padding: 0;
      overflow: hidden;
      margin-left: auto;
    }
    .ph--portrait img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 20%;
      filter: contrast(1.1) saturate(0.8) sepia(0.16);
    }
    .ph--inline img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 12%;
      filter: contrast(1.1) saturate(0.8) sepia(0.16);
    }
    .ph--thumb { height: 220px; }

    .sleeve-art {
      position: relative;
      border: 4px solid currentColor;
      overflow: hidden;
      width: min(48vw, 420px);
      aspect-ratio: 1;
      flex-shrink: 0;
    }
    .sleeve-art img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 50%;
      filter: contrast(1.1) saturate(0.8) sepia(0.16);
    }
    .sleeve-hero {
      position: absolute;
      right: clamp(1rem, 5vw, 3.2rem);
      top: 1.05rem;
      bottom: auto;
      z-index: 1;
    }
    .sleeves .sleeve-body { align-items: start; }
    .sleeves .sleeve-art {
      width: 100%;
      max-width: none;
      margin: 0 0 1.15rem;
    }
    .tease-art {
      position: absolute;
      right: clamp(1rem, 4vw, 2.8rem);
      bottom: clamp(4.8rem, 11vh, 6.8rem);
    }

    .caption {
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 600;
    }
    .section-label {
      font-family: var(--font-display);
      font-size: clamp(0.85rem, 1.6vw, 1.05rem);
      letter-spacing: 0.16em;
    }

    .sleeve-body {
      flex: 1;
      display: grid;
      align-items: start;
      padding-top: 0.15rem;
      position: relative;
      z-index: 1;
    }
    .sleeve-foot {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 1rem;
      margin-top: auto;
      padding-top: 1.5rem;
      position: relative;
      z-index: 1;
    }

    .hero-title {
      font-size: clamp(2.6rem, 8vw, 8.5rem);
      max-width: 11ch;
    }
    .hero-sub {
      font-size: clamp(1.05rem, 1.6vw, 1.25rem);
      max-width: 28ch;
      margin: 1.25rem 0 1.6rem;
    }
    .hero-motif {
      position: absolute;
      right: -6vw;
      top: 8vh;
      width: min(52vw, 520px);
      pointer-events: none;
    }
    .spine {
      position: absolute;
      left: 0.4rem;
      top: 50%;
      transform: translateY(-50%);
      writing-mode: vertical-rl;
      font-family: var(--font-display);
      letter-spacing: 0.28em;
      font-size: 0.7rem;
      opacity: 0.9;
      z-index: 1;
    }

    .panel:has(> .jam-blob) {
      padding-bottom: 9rem;
    }
    .jam-blob {
      position: absolute;
      pointer-events: none;
      z-index: 0;
      color: var(--fg);
      bottom: 0;
      left: 0;
      width: 200%;
      height: 8rem;
      animation: jam-blob 12s linear infinite;
    }
    .jam-blob svg {
      display: block;
      width: 100%;
      height: 100%;
      max-width: none;
    }
    .cta-end,
    .section-label { position: relative; z-index: 1; }
    @keyframes jam-blob {
      from { transform: translate3d(0, 0, 0); }
      to { transform: translate3d(-50%, 0, 0); }
    }

    .instructor-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.7fr);
      gap: 3vw;
      align-items: end;
      flex: 1;
    }
    .pull-quote {
      font-family: var(--font-display);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-size: clamp(1.8rem, 4.4vw, 4.4rem);
      line-height: 0.95;
      margin: 0.6rem 0 1.4rem;
    }
    .tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1.2rem; }
    .tag {
      border: 1px solid var(--fg);
      padding: 0.35rem 0.55rem;
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 600;
    }

    .sleeves {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .sleeves .panel { min-height: calc(100svh - var(--nav-h)); min-height: calc(100dvh - var(--nav-h)); }
    .course-name { font-size: clamp(2rem, 4vw, 3.4rem); }
    .course-meta {
      font-family: var(--font-display);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: clamp(1rem, 1.8vw, 1.35rem);
      margin: 1rem 0;
    }
    .course-copy { font-size: 1.05rem; max-width: 28ch; }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.25rem;
      flex: 1;
      align-content: end;
    }
    .step-num {
      font-family: var(--font-display);
      font-size: clamp(4rem, 10vw, 8rem);
      letter-spacing: 0.04em;
      line-height: 0.8;
    }
    .step h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); margin: 0.4rem 0 0.6rem; }

    .tease-title { font-size: clamp(3rem, 8vw, 7.2rem); max-width: 10ch; }
    .tease-copy { max-width: 32ch; font-size: 1.15rem; margin: 1rem 0 1.4rem; }

    .quotes {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.5rem;
      flex: 1;
      align-content: center;
    }
    .quotes blockquote {
      margin: 0;
      font-size: 1.2rem;
    }
    .quotes cite {
      display: block;
      margin-top: 0.8rem;
      font-style: normal;
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 600;
    }
    .review-stars {
      margin-bottom: 0.75rem;
      color: var(--yellow);
    }
    .review-stars svg {
      width: 6.8rem;
      height: auto;
      display: block;
    }

    .cta-end {
      display: grid;
      grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
      gap: 3vw;
      flex: 1;
      align-items: center;
    }
    .cta-gif {
      border: 4px solid currentColor;
      overflow: hidden;
      max-width: 26rem;
    }
    .cta-gif img { width: 100%; height: auto; display: block; }
    .cta-end h2 { font-size: clamp(2.4rem, 7vw, 5.2rem); max-width: 9ch; }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3vw;
      flex: 1;
      align-items: start;
    }
    .contact-art {
      margin: 0 0 1.15rem;
      border: 4px solid currentColor;
      overflow: hidden;
    }
    .contact-art img {
      width: 100%;
      height: auto;
      display: block;
      aspect-ratio: 1;
      object-fit: cover;
    }
    .field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.9rem; }
    .field label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }
    .field input,
    .field select,
    .field textarea {
      background: transparent;
      border: 2px solid var(--fg);
      border-radius: 0;
      padding: 0.7rem 0.75rem;
      width: 100%;
    }
    .field textarea { min-height: 8rem; resize: vertical; }
    .form-success {
      border: 2px solid var(--fg);
      padding: 1.2rem;
    }

    .site-footer.panel {
      min-height: 0;
      justify-content: flex-start;
      padding: 2.2rem clamp(1.1rem, 3vw, 2.75rem) 5rem;
    }
    .site-footer .footer-grid {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 2rem;
      align-items: start;
      flex: none;
    }
    .footer-links { display: flex; flex-wrap: wrap; gap: 0.7rem 1.2rem; list-style: none; margin: 0; padding: 0; }
    .footer-links a { text-decoration: none; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.75rem; font-weight: 600; }

    .wa {
      position: fixed;
      right: 1rem;
      bottom: 1rem;
      z-index: 50;
      width: 3.4rem;
      height: 3.4rem;
      border: 2px solid var(--ink);
      background: var(--cream);
      color: var(--ink);
      display: grid;
      place-items: center;
      text-decoration: none;
    }
    .wa svg { width: 1.55rem; height: 1.55rem; }

    .reveal { opacity: 0; translate: 0 16px; }
    .reveal.is-in { opacity: 1; translate: 0; transition: opacity 0.55s ease, translate 0.55s ease; }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .reveal, .reveal.is-in { opacity: 1; translate: none; transition: none; }
      .jam-blob { animation: none; transform: none; }
      .ocean-call-art { animation: none; }
    }
    @media (max-width: 767px) {
      .jam-blob { animation: none; transform: none; }
    }

    @media (max-width: 900px) {
      .instructor-grid,
      .contact-grid,
      .cta-end,
      .site-footer .footer-grid,
      .quotes,
      .steps { grid-template-columns: 1fr; }
      .sleeves { grid-template-columns: 1fr; }
      .spine { display: none; }
      .ph--hero { height: 320px; }
      .ph--portrait { max-width: none; }
      .sleeve-hero, .tease-art {
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        width: min(100%, 28rem);
        margin: 0 0 1.2rem;
      }
    }
    @media (max-width: 767px) {
      .nav-toggle { display: block; }
      .nav { flex-wrap: wrap; }
      .nav-menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 0.4rem 0 0.6rem;
      }
      .nav-menu.is-open { display: flex; }
      .hero-title { font-size: clamp(2.4rem, 14vw, 4.4rem); }
    }

    .kicker {
      font-family: var(--font-display);
      font-size: clamp(0.85rem, 1.6vw, 1.05rem);
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin: 0 0 0.6rem;
    }
    .nav-menu a[aria-current="page"] {
      box-shadow: inset 0 -3px 0 currentColor;
    }
    .split {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 1.6rem;
      align-items: start;
    }
    .split .sleeve-art,
    .split .page-art {
      width: 100%;
      max-width: none;
    }
    .stats { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0.85rem 0 1.15rem; }
    .stat {
      border: 1px solid var(--fg);
      padding: 0.4rem 0.55rem;
      font-size: 0.7rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .stat b { display: block; font-weight: 600; font-size: 0.62rem; letter-spacing: 0.12em; }
    .plain { margin: 0 0 1em; padding-left: 1.1rem; }
    .plain li { margin: 0.25rem 0; }
    .data-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
    .data-table th, .data-table td {
      border-bottom: 1px solid var(--fg);
      text-align: left;
      padding: 0.75rem 0.45rem 0.75rem 0;
      vertical-align: top;
    }
    .data-table th {
      font-family: var(--font-display);
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 400;
    }
    .include-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem 1.4rem;
    }
    .thumbs {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.85rem;
    }
    .thumbs figcaption {
      margin-top: 0.4rem;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 600;
    }
    .day { padding: 0.9rem 0; border-top: 1px solid var(--fg); }
    .day:last-child { border-bottom: 1px solid var(--fg); }
    .day b {
      font-family: var(--font-display);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 0.85rem;
    }
    .faq-cat { margin: 0 0 1.8rem; }
    .faq-cat h2 { font-size: 1.35rem; margin-bottom: 0.4rem; }
    .faq details { border-bottom: 1px solid var(--fg); padding: 0.85rem 0; }
    .faq summary {
      cursor: pointer;
      font-weight: 600;
      list-style: none;
    }
    .faq summary::-webkit-details-marker { display: none; }
    .faq details p { margin-top: 0.6rem; }
    .season { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 1rem; }
    .season span {
      border: 1px solid var(--fg);
      padding: 0.28rem 0.5rem;
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .season .on { background: var(--fg); color: var(--bg); }
    h4 {
      font-family: var(--font-display);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 0.78rem;
      font-weight: 400;
      margin: 1.1rem 0 0.4rem;
    }
    .ph-slot {
      border: 4px solid currentColor;
      background: color-mix(in srgb, var(--fg) 12%, transparent);
      display: grid;
      place-items: center;
      text-align: center;
      padding: 1rem;
      font-family: var(--font-display);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-size: 0.7rem;
      min-height: 220px;
      position: relative;
      overflow: hidden;
    }
    .ph-slot--hero { min-height: 420px; }
    .ph-slot--inline { min-height: 380px; aspect-ratio: 1; }
    .ph-slot:has(img) { padding: 0; display: block; }
    .ph-slot img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .page-art {
      width: min(78vw, 560px);
      max-width: 100%;
      aspect-ratio: 1;
      margin: 0 0 1.2rem;
    }
    @media (max-width: 900px) {
      .split, .include-grid, .thumbs { grid-template-columns: 1fr; }
      .ph-slot--hero, .ph-slot--inline { min-height: 280px; }
      .data-table { font-size: 0.88rem; }
    }

    .dir-switch {
      position: fixed;
      left: 1rem;
      bottom: 1rem;
      z-index: 60;
      display: flex;
      border: 2px solid var(--ink, #1A1A1A);
      background: var(--cream, #F5EDE0);
      color: var(--ink, #1A1A1A);
    }
    .dir-switch a {
      text-decoration: none;
      color: inherit;
      font-size: 0.62rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 600;
      padding: 0.72rem 0.85rem;
    }
    .dir-switch a[aria-current="true"] {
      background: var(--ink, #1A1A1A);
      color: var(--cream, #F5EDE0);
    }
    .dir-switch a:hover {
      background: var(--ink, #1A1A1A);
      color: var(--cream, #F5EDE0);
    }

    .ocean-call {
      position: fixed;
      inset: 0;
      z-index: 80;
      display: grid;
      place-items: center;
      padding: 1.1rem;
      background: color-mix(in srgb, var(--red) 38%, transparent);
    }
    .ocean-call[hidden] { display: none; }
    .ocean-call-card {
      --bg: var(--cream);
      --fg: var(--red);
      position: relative;
      width: min(100%, 26.5rem);
      background: var(--bg);
      color: var(--fg);
      border: 4px solid var(--red);
      padding: 1.35rem 1.3rem 1.4rem;
    }
    .ocean-call-close {
      position: absolute;
      top: 0.7rem;
      right: 0.7rem;
      width: 2.35rem;
      height: 2.35rem;
      border: 2px solid var(--red);
      background: transparent;
      color: var(--red);
      font-family: var(--font-display);
      font-size: 1.35rem;
      line-height: 1;
      cursor: pointer;
      padding: 0;
    }
    .ocean-call-close:focus-visible { outline-color: var(--red); }
    .ocean-call-top {
      padding: 0 2.6rem 0.15rem 0;
    }
    .ocean-call-kicker {
      margin: 0;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 600;
    }
    .ocean-call-art {
      width: min(100%, 14rem);
      height: auto;
      margin: 0 auto 0.15rem;
      display: block;
      background: transparent;
      transform-origin: center;
      animation: ocean-ring 2.15s linear infinite;
    }
    .ocean-call-title {
      font-size: clamp(1.7rem, 6.4vw, 2.55rem);
      margin: 0.15rem 0 0.35rem;
      max-width: 12ch;
    }
    .ocean-call-pick {
      font-family: var(--font-display);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-size: 1.05rem;
      margin: 0 0 1.1rem;
    }
    .ocean-call-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
    }
    .ocean-call-actions .btn { text-align: center; }
    @keyframes ocean-ring {
      0%, 17%, 100% { transform: translate(0, 0) rotate(0deg); }
      2% { transform: translate(-7px, 2px) rotate(-1.1deg); }
      4% { transform: translate(7px, -2px) rotate(1.2deg); }
      6% { transform: translate(-6px, 1px) rotate(-0.9deg); }
      8% { transform: translate(6px, 2px) rotate(0.8deg); }
      10% { transform: translate(-4px, -1px) rotate(-0.6deg); }
      12% { transform: translate(4px, 1px) rotate(0.5deg); }
      14% { transform: translate(-2px, 0) rotate(-0.25deg); }
      16% { transform: translate(1px, 0) rotate(0.15deg); }
    }
    @media (max-width: 520px) {
      .ocean-call-actions { flex-direction: column; }
      .ocean-call-actions .btn { width: 100%; }
    }
    @media (prefers-reduced-motion: reduce) {
      .ocean-call-art { animation: none; }
    }

    /* Guides */
    .guide-grid {
      display: grid;
      gap: 2rem;
      max-width: 52rem;
    }
    .guide-card h2 {
      font-family: var(--font-display);
      font-size: clamp(1.35rem, 3vw, 1.75rem);
      margin: 0 0 0.5rem;
      line-height: 1.15;
    }
    .guide-card h2 a { color: inherit; text-decoration: none; }
    .guide-card h2 a:hover { text-decoration: underline; }
    .guide-body {
      max-width: 42rem;
      line-height: 1.65;
    }
    .guide-body h2 {
      font-family: var(--font-display);
      font-size: clamp(1.2rem, 2.5vw, 1.5rem);
      margin: 2rem 0 0.6rem;
    }
    .guide-body p { margin: 0 0 1rem; }
    .guide-figure {
      margin: 0 0 1.5rem;
      max-width: 36rem;
    }
    .guide-figure img {
      width: 100%;
      height: auto;
      display: block;
      border: 3px solid var(--ink);
    }
    .guide-teasers p { margin: 0.35rem 0; }
    .form-error {
      color: var(--red, #c0392b);
      margin-top: 0.75rem;
      font-size: 0.95rem;
    }

