/** Shopify CDN: Minification failed

Line 331:2 Unexpected "}"

**/
/* ============================================================
     Tokens. Single-theme by intent: this is a storefront wearing a
     brand identity, so it commits to one visual world and paints
     every colour explicitly rather than following the host theme.
     Ground + accent are measured from colorinaset.com; the swatch
     ladder is sampled from the brand's own balayage photography.
     ============================================================ */
  .cl-land {
    --ink: #14110f;
    --ink-2: #1e1a17;
    --ink-3: #2a2521;
    --porcelain: #f2efea;
    --porcelain-2: #e7e2da;
    --paper: #ffffff;
    --sand: #d8c7ac;
    --sand-deep: #c0ab8c;
    --walnut: #7a4f33;

    --on-ink: #f6f3ee;
    --on-ink-dim: #a29889;
    --on-ink-faint: #6d655b;
    --on-paper: #1a1613;
    --on-paper-dim: #6a6158;
    --rule-ink: #322c26;
    --rule-paper: #d8d2c8;

    /* swatch ladder: root -> highlight, sampled from the real photos */
    --sw-1: #432c19;
    --sw-2: #5a412b;
    --sw-3: #7b5f44;
    --sw-4: #9c7d5f;
    --sw-5: #bc9677;
    --sw-6: #d3b091;
    --sw-7: #f2d3ad;

    --frame: 1200px;
    --band-pad: clamp(4.5rem, 9vw, 8rem);
    --gutter: clamp(1.25rem, 4vw, 2.5rem);

    --f-eyebrow: 0.75rem;
    --f-body: 1.0625rem;
    --f-lead: clamp(1.0625rem, 1.6vw, 1.3125rem);
    --f-h3: clamp(1.3rem, 2vw, 1.6rem);
    --f-h2: clamp(1.9rem, 4.4vw, 3.1rem);
    --f-h1: clamp(2.4rem, 6.4vw, 4.75rem);
    --f-num: clamp(2.75rem, 8vw, 6rem);

    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .cl-land * {
    box-sizing: border-box;
  }

  .cl-land {
    margin: 0;
    background: var(--paper);
    color: var(--on-paper);
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-size: var(--f-body);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }

  .cl-land h1,
  .cl-land h2,
  .cl-land h3 {
    margin: 0;
    text-wrap: balance;
    letter-spacing: -0.03em;
    line-height: 1.04;
    font-weight: 600;
  }
  .cl-land h1 {
    font-size: var(--f-h1);
    font-weight: 700;
    letter-spacing: -0.038em;
    line-height: 0.98;
  }
  .cl-land h2 {
    font-size: var(--f-h2);
  }
  .cl-land h3 {
    font-size: var(--f-h3);
    letter-spacing: -0.02em;
  }
  .cl-land p {
    margin: 0;
  }
  .cl-land img {
    display: block;
    max-width: 100%;
  }
  .cl-land a {
    color: inherit;
  }

  /* currentColor tracks the band it sits on, so the ring contrasts on both the
     dark hero and the bright body without per-band overrides */
  .cl-land :focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
    border-radius: 2px;
  }

  /* ---------- structure ---------- */
  .cl-land .band {
    padding-block: var(--band-pad);
    position: relative;
  }
  .cl-land .band--ink {
    background: var(--ink);
    color: var(--on-ink);
  }
  .cl-land .band--ink2 {
    background: var(--ink-2);
    color: var(--on-ink);
  }
  .cl-land .band--porcelain {
    background: var(--porcelain);
    color: var(--on-paper);
  }
  .cl-land .band--paper {
    background: var(--paper);
    color: var(--on-paper);
  }
  .cl-land .band--flush {
    padding-block: 0;
  }

  .cl-land .frame {
    max-width: var(--frame);
    margin-inline: auto;
    padding-inline: var(--gutter);
  }
  /* ch resolves against the element's own font size, so a heading column set in
     ch collapses to body-text width. Headline columns get an rem width; running
     text is held near 65ch on the element that actually carries it. */
  .cl-land .col {
    max-width: min(44rem, 100%);
  }

  .cl-land .stack {
    display: grid;
    gap: 1.25rem;
  }
  .cl-land .stack--tight {
    gap: 0.75rem;
  }
  .cl-land .stack--loose {
    display: grid;
    gap: clamp(2.5rem, 5vw, 4rem);
  }

  .cl-land .eyebrow {
    font-size: var(--f-eyebrow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.17em;
    margin: 0;
    color: var(--sand);
  }
  .cl-land .band--porcelain .eyebrow,
  .cl-land .band--paper .eyebrow {
    color: var(--walnut);
  }

  .cl-land .lead {
    font-size: var(--f-lead);
    line-height: 1.6;
    color: var(--on-ink-dim);
  }
  .cl-land .band--porcelain .lead,
  .cl-land .band--paper .lead {
    color: var(--on-paper-dim);
  }

  .cl-land .muted {
    color: var(--on-ink-dim);
  }
  .cl-land .band--porcelain .muted,
  .cl-land .band--paper .muted {
    color: var(--on-paper-dim);
  }

  .cl-land .fine {
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--on-ink-faint);
  }
  .cl-land .band--porcelain .fine,
  .cl-land .band--paper .fine {
    color: var(--on-paper-dim);
    opacity: 0.85;
  }

  /* ---------- the swatch ladder: the page's structural device ---------- */
  .cl-land .ladder {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    height: 6px;
  }
  .cl-land .ladder > i {
    display: block;
    transform: scaleY(0.34);
    transform-origin: bottom;
    transition: transform 0.7s var(--ease);
  }
  .cl-land .ladder.is-in > i {
    transform: scaleY(1);
  }
  .cl-land .ladder > i:nth-child(1) {
    background: var(--sw-1);
    transition-delay: 0.02s;
  }
  .cl-land .ladder > i:nth-child(2) {
    background: var(--sw-2);
    transition-delay: 0.06s;
  }
  .cl-land .ladder > i:nth-child(3) {
    background: var(--sw-3);
    transition-delay: 0.1s;
  }
  .cl-land .ladder > i:nth-child(4) {
    background: var(--sw-4);
    transition-delay: 0.14s;
  }
  .cl-land .ladder > i:nth-child(5) {
    background: var(--sw-5);
    transition-delay: 0.18s;
  }
  .cl-land .ladder > i:nth-child(6) {
    background: var(--sw-6);
    transition-delay: 0.22s;
  }
  .cl-land .ladder > i:nth-child(7) {
    background: var(--sw-7);
    transition-delay: 0.26s;
  }
  .cl-land .ladder--tall {
    height: 10px;
  }

  /* ---------- buttons ---------- */
  .cl-land .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font: inherit;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    padding: 0.95rem 1.6rem;
    border: 1px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition:
      background-color 0.22s var(--ease),
      color 0.22s var(--ease),
      border-color 0.22s var(--ease),
      transform 0.22s var(--ease);
  }
  .cl-land .btn:active {
    transform: translateY(1px);
  }
  .cl-land .btn--primary {
    background: var(--sand);
    color: #17130f;
  }
  .cl-land .btn--primary:hover {
    background: var(--paper);
  }
  .cl-land .btn--ghost {
    background: transparent;
    color: var(--on-ink);
    border-color: var(--rule-ink);
  }
  .cl-land .btn--ghost:hover {
    border-color: var(--sand);
    color: var(--sand);
  }
  .cl-land .btn--dark {
    background: var(--ink);
    color: var(--on-ink);
  }
  .cl-land .btn--dark:hover {
    background: var(--walnut);
  }
  .cl-land .btn--outline {
    background: transparent;
    color: var(--on-paper);
    border-color: var(--rule-paper);
  }
  .cl-land .btn--outline:hover {
    border-color: var(--on-paper);
  }
  .cl-land .btn--wide {
    width: 100%;
  }
  .cl-land .btn.is-added {
    background: var(--ink-3);
    color: var(--sand);
  }
  .cl-land .band--porcelain .btn.is-added,
  .cl-land .band--paper .btn.is-added {
    background: var(--ink);
    color: var(--sand);
  }

  .cl-land .price {
    font-variant-numeric: tabular-nums;
    font-weight: 600;
  }

  /* ---------- header ---------- */
  /* while transparent the header sits on photography that is bright on one side,
     so it carries its own scrim; the scrim fades out once the white chrome takes over */

  /* transparent over the hero photograph, white chrome over the bright page */
  @media (max-width: 860px) {
    .cl-land .nav,
  }

  /* ---------- hero ---------- */
  /* the hero is the one dark surface in a bright page, so it states its own
     ground and ink instead of inheriting the body's — otherwise every heading
     in here silently flips to dark text over the photograph */
  .cl-land .hero {
    position: relative;
    min-height: min(94svh, 860px);
    display: grid;
    align-items: end;
    overflow: hidden;
    background: var(--ink);
    color: var(--on-ink);
  }
  .cl-land .hero-bg {
    position: absolute;
    inset: 0;
  }
  .cl-land .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% 50%;
  }
  .cl-land .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      75deg,
      rgba(14, 12, 10, 0.95) 0%,
      rgba(14, 12, 10, 0.9) 40%,
      rgba(14, 12, 10, 0.72) 62%,
      rgba(14, 12, 10, 0.42) 78%,
      rgba(14, 12, 10, 0.48) 100%
    );
  }
  .cl-land .hero-inner {
    position: relative;
    padding-block: 9rem 3rem;
  }
  .cl-land .hero-copy {
    display: grid;
    gap: 1.6rem;
    max-width: min(46rem, 100%);
  }
  .cl-land .hero .lead {
    max-width: 46ch;
    color: #d6cfc4;
  }
  .cl-land .hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .cl-land .hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1.5rem;
    align-items: center;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--on-ink-dim);
    padding-block-start: 0.5rem;
  }
  .cl-land .hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  .cl-land .hero-trust span::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--sand);
    border-radius: 999px;
  }
  .cl-land .hero-ladder {
    position: absolute;
    inset-block-end: 0;
    inset-inline: 0;
  }
  /* over photography the default ghost border disappears; lift it against the image */
  .cl-land .hero .btn--ghost {
    border-color: rgba(246, 243, 238, 0.38);
  }

  /* the 75deg scrim clears the right half on desktop; on a narrow screen that
     same angle swallows the whole frame, so the scrim turns vertical and the
     product keeps the top of the hero */
  @media (max-width: 760px) {
    .cl-land .hero-bg img {
      object-position: 64% 40%;
    }
    .cl-land .hero-bg::after {
      background: linear-gradient(
        to bottom,
        rgba(14, 12, 10, 0.44) 0%,
        rgba(14, 12, 10, 0.5) 26%,
        rgba(14, 12, 10, 0.88) 58%,
        rgba(14, 12, 10, 0.96) 100%
      );
    }
    .cl-land .hero-inner {
      padding-block-start: 6rem;
    }
  }

  /* reveal-on-load */
  .cl-land .rise {
    opacity: 0;
    transform: translateY(18px);
    animation: rise 0.85s var(--ease) forwards;
  }
  .cl-land .rise:nth-child(1) {
    animation-delay: 0.1s;
  }
  .cl-land .rise:nth-child(2) {
    animation-delay: 0.2s;
  }
  .cl-land .rise:nth-child(3) {
    animation-delay: 0.3s;
  }
  .cl-land .rise:nth-child(4) {
    animation-delay: 0.4s;
  }
  .cl-land .rise:nth-child(5) {
    animation-delay: 0.5s;
  }
  @keyframes rise {
    to {
      opacity: 1;
      transform: none;
    }
  }

  /* ---------- the time maths ---------- */
  .cl-land .maths {
    display: grid;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    grid-template-columns: 1fr;
  }
  @media (min-width: 900px) {
    .cl-land .maths {
      grid-template-columns: 0.85fr 1.15fr;
      align-items: start;
    }
  }

  .cl-land .bars {
    display: grid;
    gap: 2rem;
  }
  .cl-land .bar-row {
    display: grid;
    gap: 0.6rem;
  }
  .cl-land .bar-label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    font-size: 0.9375rem;
  }
  .cl-land .bar-label b {
    font-weight: 600;
  }
  .cl-land .bar-label .t {
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    font-size: 1.0625rem;
  }
  .cl-land .bar-track {
    height: 44px;
    background: var(--ink-3);
    border-radius: 2px;
    overflow: hidden;
  }
  .cl-land .bar-fill {
    height: 100%;
    width: 0;
    transition: width 1.1s var(--ease);
  }
  .cl-land .bar-row--old .bar-fill {
    background: var(--walnut);
    transition-delay: 0.05s;
  }
  .cl-land .bar-row--new .bar-fill {
    background: linear-gradient(90deg, var(--sw-4), var(--sand));
    transition-delay: 0.35s;
  }
  .cl-land .bars.is-in .bar-row--old .bar-fill {
    width: 100%;
  }
  .cl-land .bars.is-in .bar-row--new .bar-fill {
    width: 50%;
  }
  .cl-land .bar-row--new .bar-label .t {
    color: var(--sand);
  }

  .cl-land .stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    border-block-start: 1px solid var(--rule-ink);
    padding-block-start: 2rem;
    margin-block-start: 0.5rem;
  }
  .cl-land .stat .n {
    display: block;
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    color: var(--sand);
  }
  .cl-land .stat .k {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--on-ink-dim);
    margin-block-start: 0.6rem;
  }
  /* sand carries the accent on ink, but fails as text on a bright ground —
     on light bands the walnut from the tool handle takes over */
  .cl-land .band--porcelain .stats,
  .cl-land .band--paper .stats {
    border-block-start-color: var(--rule-paper);
  }
  .cl-land .band--porcelain .stat .n,
  .cl-land .band--paper .stat .n {
    color: var(--walnut);
  }
  .cl-land .band--porcelain .stat .k,
  .cl-land .band--paper .stat .k {
    color: var(--on-paper-dim);
  }
  .cl-land .band--porcelain .bar-track,
  .cl-land .band--paper .bar-track {
    background: var(--porcelain-2);
  }
  .cl-land .band--porcelain .bar-row--new .bar-label .t,
  .cl-land .band--paper .bar-row--new .bar-label .t {
    color: var(--walnut);
  }
  .cl-land .band--porcelain .bar-row--new .bar-fill,
  .cl-land .band--paper .bar-row--new .bar-fill {
    background: linear-gradient(90deg, var(--sw-5), var(--sw-3));
  }
  .cl-land .band--porcelain .quote-mark,
  .cl-land .band--paper .quote-mark {
    color: var(--walnut);
  }
  .cl-land .band--porcelain .attrib,
  .cl-land .band--paper .attrib {
    color: var(--on-paper-dim);
  }
  .cl-land .band--porcelain .hero-trust,
  .cl-land .band--paper .hero-trust {
    color: var(--on-paper-dim);
  }

  /* ---------- steps: a real sequence, so it earns its numbers ---------- */
  .cl-land .steps {
    display: grid;
    gap: clamp(2rem, 4vw, 3rem);
    grid-template-columns: 1fr;
    counter-reset: step;
  }
  @media (min-width: 800px) {
    .cl-land .steps {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  .cl-land .step {
    display: grid;
    gap: 0.7rem;
    align-content: start;
    border-block-start: 1px solid var(--rule-paper);
    padding-block-start: 1.25rem;
  }
  .cl-land .step .sn {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--walnut);
    font-variant-numeric: tabular-nums;
  }

  .cl-land .split {
    display: grid;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    grid-template-columns: 1fr;
  }
  @media (min-width: 900px) {
    .cl-land .split {
      grid-template-columns: 1fr 1fr;
    }
    .cl-land .split--wide-media {
      grid-template-columns: 1.15fr 0.85fr;
    }
  }
  .cl-land .split figure {
    margin: 0;
  }
  /* the product shots are photographed on white; multiply drops that white into
     the band it sits on instead of stamping a pale rectangle over it. Scoped to
     packshots — on a portrait it would just muddy the skin tones. */
  .cl-land .packshot {
    mix-blend-mode: multiply;
  }

  /* ---------- benefits ---------- */
  .cl-land .benefits {
    display: grid;
    gap: 1px;
    background: var(--rule-paper);
    grid-template-columns: 1fr;
  }
  @media (min-width: 720px) {
    .cl-land .benefits {
      grid-template-columns: 1fr 1fr;
    }
  }
  .cl-land .benefit {
    background: var(--porcelain);
    padding: clamp(1.5rem, 3vw, 2.25rem);
    display: grid;
    gap: 0.6rem;
    align-content: start;
  }
  .cl-land .benefit .bt {
    font-weight: 600;
    font-size: 1.0625rem;
    letter-spacing: -0.01em;
  }
  .cl-land .benefit .bd {
    color: var(--on-paper-dim);
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  /* ---------- results ---------- */
  .cl-land .results {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
  }
  @media (max-width: 720px) {
    .cl-land .results {
      grid-template-columns: 1fr;
    }
  }
  .cl-land .results img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 4;
    filter: saturate(0.94);
  }

  /* ---------- quote ---------- */
  .cl-land .quote-mark {
    font-size: 3rem;
    line-height: 0.6;
    color: var(--sand);
    font-weight: 700;
  }
  .cl-land blockquote {
    margin: 0;
    font-size: var(--f-lead);
    line-height: 1.6;
  }
  .cl-land .attrib {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--on-ink-dim);
  }

  /* ---------- reviews ---------- */
  .cl-land .reviews {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
  .cl-land .review {
    background: var(--paper);
    border: 1px solid var(--rule-paper);
    padding: clamp(1.35rem, 2.5vw, 1.85rem);
    display: grid;
    gap: 0.9rem;
    align-content: start;
  }
  .cl-land .stars {
    color: var(--sand-deep);
    letter-spacing: 0.16em;
    font-size: 0.8125rem;
  }
  .cl-land .review p {
    font-size: 0.9375rem;
    line-height: 1.62;
    color: var(--on-paper);
  }
  .cl-land .review .who {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--on-paper-dim);
  }

  /* ---------- the offer ---------- */
  .cl-land .offer {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  @media (min-width: 940px) {
    .cl-land .offer {
      grid-template-columns: 1.25fr 0.875fr 0.875fr;
    }
  }
  .cl-land .card {
    background: var(--paper);
    border: 1px solid var(--rule-paper);
    display: grid;
    grid-template-rows: auto 1fr;
  }
  .cl-land .card--hero {
    border-color: var(--ink);
    box-shadow: 0 1px 0 var(--ink);
  }
  .cl-land .card-media {
    position: relative;
    background: var(--porcelain-2);
    aspect-ratio: 4 / 3;
    overflow: hidden;
  }
  .cl-land .card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    mix-blend-mode: multiply;
  }
  .cl-land .card--hero .card-media {
    aspect-ratio: 4 / 3.1;
  }
  .cl-land .card-tag {
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    background: var(--ink);
    color: var(--sand);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    padding: 0.45rem 0.8rem;
  }
  .cl-land .card-body {
    padding: clamp(1.25rem, 2.4vw, 1.75rem);
    display: grid;
    gap: 0.85rem;
    align-content: start;
  }
  .cl-land .card-body .pn {
    font-weight: 600;
    font-size: 1.0625rem;
    letter-spacing: -0.01em;
  }
  .cl-land .card-body .pd {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--on-paper-dim);
  }
  .cl-land .card-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.5rem;
    font-size: 0.9375rem;
  }
  .cl-land .card-body ul li {
    display: grid;
    grid-template-columns: 1rem 1fr;
    gap: 0.6rem;
    color: var(--on-paper-dim);
  }
  .cl-land .card-body ul li::before {
    content: '—';
    color: var(--sand-deep);
  }
  .cl-land .card-foot {
    display: grid;
    gap: 0.75rem;
    margin-block-start: auto;
    padding-block-start: 0.35rem;
  }
  .cl-land .card-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
  }
  .cl-land .card-price .p {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
  }
  .cl-land .card-price .u {
    font-size: 0.8125rem;
    color: var(--on-paper-dim);
  }

  .cl-land .seminar {
    display: grid;
    gap: 1.25rem;
    align-items: center;
    grid-template-columns: 1fr;
    background: var(--ink);
    color: var(--on-ink);
    padding: clamp(1.5rem, 3vw, 2.25rem);
    margin-block-start: 1.5rem;
  }
  @media (min-width: 800px) {
    .cl-land .seminar {
      grid-template-columns: 1fr auto;
      gap: 2.5rem;
    }
  }
  .cl-land .seminar .sd {
    color: var(--on-ink-dim);
    font-size: 0.9375rem;
    max-width: 60ch;
  }

  /* ---------- faq ---------- */
  .cl-land .faq {
    display: grid;
    max-width: 78ch;
    border-block-start: 1px solid var(--rule-paper);
  }
  .cl-land .faq details {
    border-block-end: 1px solid var(--rule-paper);
  }
  .cl-land .faq summary {
    cursor: pointer;
    list-style: none;
    padding-block: 1.15rem;
    padding-inline-end: 2rem;
    font-weight: 600;
    font-size: 1.0625rem;
    letter-spacing: -0.01em;
    position: relative;
  }
  .cl-land .faq summary::-webkit-details-marker {
    display: none;
  }
  .cl-land .faq summary::after {
    content: '';
    position: absolute;
    inset-inline-end: 0.35rem;
    inset-block-start: 1.55rem;
    width: 11px;
    height: 11px;
    border-inline-end: 1.5px solid var(--walnut);
    border-block-end: 1.5px solid var(--walnut);
    transform: rotate(45deg);
    transition: transform 0.25s var(--ease);
  }
  .cl-land .faq details[open] summary::after {
    transform: rotate(-135deg);
  }
  .cl-land .faq .fa {
    padding-block-end: 1.35rem;
    color: var(--on-paper-dim);
    font-size: 0.9375rem;
    line-height: 1.65;
    max-width: 66ch;
  }

  /* ---------- contact ---------- */
  .cl-land .contact {
    display: grid;
    gap: clamp(2rem, 5vw, 4rem);
    grid-template-columns: 1fr;
    align-items: center;
  }
  @media (min-width: 900px) {
    .cl-land .contact {
      grid-template-columns: 1fr 1fr;
    }
  }
  .cl-land .contact-lines {
    display: grid;
    gap: 0.35rem;
    font-size: 0.9375rem;
  }
  .cl-land .contact-lines a {
    color: var(--sand);
    text-decoration: none;
  }
  .cl-land .contact-lines a:hover {
    text-decoration: underline;
  }

  /* ---------- footer ---------- */

  /* ---------- sticky buy bar: the single repeated action ---------- */
  .cl-land.buybar {
    position: fixed;
    inset-block-end: 0;
    inset-inline: 0;
    z-index: 70;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    color: var(--on-paper);
    border-block-start: 1px solid var(--rule-paper);
    box-shadow: 0 -10px 30px rgba(26, 22, 19, 0.07);
    transform: translateY(101%);
    transition: transform 0.4s var(--ease);
  }
  .cl-land.buybar.is-in {
    transform: none;
  }
  .cl-land.buybar .buybar-inner {
    max-width: var(--frame);
    margin-inline: auto;
    padding: 0.75rem var(--gutter);
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .cl-land.buybar .buybar-what {
    display: grid;
    gap: 0.1rem;
    margin-inline-end: auto;
    min-width: 0;
  }
  .cl-land.buybar .buybar-what .bn {
    font-size: 0.9375rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .cl-land.buybar .buybar-what .bp {
    font-size: 0.8125rem;
    color: var(--on-paper-dim);
    font-variant-numeric: tabular-nums;
  }
  .cl-land.buybar .btn {
    padding-block: 0.8rem;
  }
  @media (max-width: 600px) {
    .cl-land.buybar .buybar-what .bn {
      font-size: 0.875rem;
    }
    .cl-land.buybar .btn {
      flex: 0 0 auto;
    }
  }
  /* the buy bar has one job on a phone: name the thing and its price */
  .cl-land .wide-only {
    display: none;
  }
  @media (min-width: 700px) {
    .cl-land .wide-only {
      display: inline;
    }
  }

  /* ---------- toast: every action reaches a stated outcome ---------- */

  /* ---------- scroll reveal ---------- */
  .cl-land .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
      opacity 0.7s var(--ease),
      transform 0.7s var(--ease);
  }
  .cl-land .reveal.is-in {
    opacity: 1;
    transform: none;
  }

  @media (prefers-reduced-motion: reduce) {
    .cl-land .rise,
    .cl-land .reveal,
    .cl-land .ladder > i,
    .cl-land .bar-fill,
    .cl-land.buybar,
    .cl-land .rise,
    .cl-land .reveal {
      opacity: 1;
      transform: none;
    }
    .cl-land .ladder > i {
      transform: scaleY(1);
    }
    .cl-land .bars .bar-row--old .bar-fill {
      width: 100%;
    }
    .cl-land .bars .bar-row--new .bar-fill {
      width: 50%;
    }
    .cl-land.buybar.is-in {
      transform: none;
    }
  }

/* ---------- header (ported .site-head; --static variant for pages without a hero) ---------- */
.cl-land .site-head {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: 0.9rem var(--gutter);
  background: transparent;
  color: var(--on-ink);
  transition:
    background-color 0.3s var(--ease),
    border-color 0.3s var(--ease);
  border-block-end: 1px solid transparent;
}
.cl-land .site-head::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(14, 12, 10, 0.62), rgba(14, 12, 10, 0));
  transition: opacity 0.3s var(--ease);
}
.cl-land .site-head.is-stuck::before {
  opacity: 0;
}
.cl-land .site-head.is-stuck {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  color: var(--on-paper);
  border-block-end-color: var(--rule-paper);
}
.cl-land .site-head--static {
  position: static;
}
.cl-land .site-head.is-stuck .brand img {
  filter: none;
}
.cl-land .site-head.is-stuck .nav a {
  color: var(--on-paper-dim);
}
.cl-land .site-head.is-stuck .nav a:hover {
  color: var(--walnut);
}
.cl-land .site-head.is-stuck .head-meta {
  color: var(--on-paper-dim);
}
.cl-land .site-head.is-stuck .cart-chip {
  color: var(--on-paper);
}
.cl-land .site-head.is-stuck .cart-count {
  background: var(--ink);
  color: var(--sand);
}
.cl-land .brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  margin-inline-end: auto;
  font-weight: 600;
}
.cl-land .brand img {
  width: 132px;
  filter: invert(1);
}
.cl-land .nav {
  display: flex;
  gap: 1.6rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.cl-land .nav a {
  text-decoration: none;
  color: var(--on-ink-dim);
  transition: color 0.2s var(--ease);
}
.cl-land .nav a:hover {
  color: var(--sand);
}
.cl-land .head-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--on-ink-dim);
}
.cl-land .cart-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
  color: var(--on-ink);
  text-decoration: none;
}
.cl-land .cart-count {
  display: grid;
  place-items: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding-inline: 0.35rem;
  background: var(--sand);
  color: #17130f;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 860px) {
  .cl-land .site-head > .nav {
    display: none;
  }
}

/* ---------- footer (ported .site-foot; bottom padding clears the buy bar) ---------- */
.cl-land .site-foot {
  background: var(--ink);
  color: var(--on-ink-faint);
  padding-block: 3rem 8rem;
  font-size: 0.8125rem;
}
.cl-land .foot-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem 1.5rem;
  align-items: center;
}
@media (max-width: 760px) {
  .cl-land .foot-row {
    grid-template-columns: 1fr;
  }
}
.cl-land .foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: flex-end;
}
@media (max-width: 760px) {
  .cl-land .foot-links {
    justify-content: flex-start;
  }
}
.cl-land .foot-links a {
  text-decoration: none;
}
.cl-land .foot-links a:hover {
  color: var(--sand);
}

/* ---------- localization selects, worn as the design's "EUR / DE" readout ---------- */
.cl-land .locale-form {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.cl-land .locale-sep {
  opacity: 0.45;
}
.cl-land .locale-select {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s var(--ease);
}
.cl-land .locale-select::after {
  content: '';
  width: 5px;
  height: 5px;
  border-inline-end: 1.5px solid currentColor;
  border-block-end: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  pointer-events: none;
  opacity: 0.7;
  transition: transform 0.2s var(--ease);
}
.cl-land .locale-select:hover {
  color: var(--sand);
}
.cl-land .site-head.is-stuck .locale-select:hover {
  color: var(--walnut);
}
.cl-land .locale-select:hover::after {
  transform: rotate(45deg) translateY(1px);
}
.cl-land .locale-form select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  padding: 0.3rem 0.45rem;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: inherit;
  cursor: pointer;
}
.cl-land .locale-form select:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
.cl-land .locale-form select option {
  color: var(--on-paper);
  background: var(--paper);
  text-transform: none;
}

.cl-land .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- mobile menu: hamburger + ink dropdown (our addition; the design left phones navless) ---------- */
.cl-land .menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: inherit;
}
.cl-land .menu-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s var(--ease);
}
.cl-land .menu-toggle[aria-expanded='true'] .menu-toggle__bar:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}
.cl-land .menu-toggle[aria-expanded='true'] .menu-toggle__bar:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}
.cl-land .mobile-nav[hidden] {
  display: none;
}
.cl-land .mobile-nav {
  position: absolute;
  inset-block-start: 100%;
  inset-inline: 0;
  display: grid;
  gap: 0.25rem;
  padding: 1rem var(--gutter) 1.5rem;
  background: var(--ink);
  border-block-start: 1px solid var(--rule-ink);
}
.cl-land .mobile-nav a {
  padding-block: 0.65rem;
  font-size: 1.0625rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--on-ink);
  border-block-end: 1px solid var(--rule-ink);
}
.cl-land .mobile-nav a:hover {
  color: var(--sand);
}
.cl-land .site-head--static {
  position: relative;
}
@media (max-width: 860px) {
  .cl-land .menu-toggle {
    display: flex;
  }
}
@media (max-width: 520px) {
  .cl-land .cart-label {
    display: none;
  }
  .cl-land .brand img {
    width: 104px;
  }
}

/* ---------- language dropdown with flags ---------- */
.cl-land .cl-flag {
  display: inline-block;
  width: 18px;
  height: 13px;
  object-fit: cover;
  border-radius: 1px;
  box-shadow: 0 0 0 1px rgb(0 0 0 / 0.12);
  flex-shrink: 0;
}
.cl-land .lang-dd {
  position: relative;
}
.cl-land .lang-dd summary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  cursor: pointer;
  padding: 0.2rem 0;
}
.cl-land .lang-dd summary::-webkit-details-marker {
  display: none;
}
.cl-land .lang-dd summary::after {
  content: '';
  width: 5px;
  height: 5px;
  border-inline-end: 1.5px solid currentColor;
  border-block-end: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.7;
  transition: transform 0.2s var(--ease);
}
.cl-land .lang-dd[open] summary::after {
  transform: rotate(-135deg) translateY(-1px);
}
.cl-land .lang-dd__menu {
  position: absolute;
  inset-inline-end: 0;
  inset-block-start: calc(100% + 0.6rem);
  z-index: 80;
  display: grid;
  min-width: 10.5rem;
  background: var(--paper);
  color: var(--on-paper);
  border: 1px solid var(--rule-paper);
  box-shadow: 0 12px 34px rgb(0 0 0 / 0.16);
  padding: 0.35rem;
}
.cl-land .lang-dd__menu button {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.55rem 0.7rem;
  background: transparent;
  border: none;
  font: inherit;
  font-size: 0.875rem;
  color: inherit;
  cursor: pointer;
  text-align: start;
}
.cl-land .lang-dd__menu button:hover {
  background: var(--porcelain);
}
.cl-land .lang-dd__menu button[aria-current='true'] {
  font-weight: 600;
}

/* ---------- link hover on dark bands ----------
   Horizon's base sets `p > a:hover` to foreground/70% — near-black, invisible on ink.
   Sand links brighten to the band's text white instead; footer links warm to sand. */
.cl-land .contact-lines p > a:hover,
.cl-land .band--ink .contact-lines a:hover {
  color: var(--on-ink);
  text-decoration: underline;
}
.cl-land :is(.band--ink, .band--ink2, .seminar) p > a:not(.btn):hover {
  color: var(--on-ink);
}
.cl-land :is(.band--ink, .band--ink2, .seminar) .btn--primary:hover {
  color: #17130f;
}
.cl-land .site-foot .foot-links a:hover {
  color: var(--sand);
}
.cl-land .site-foot .foot-row p > a:hover {
  color: var(--sand);
}

/* ---------- footer CTA: a button that sits in the legal-links row without breaking it ---------- */
.cl-land .foot-links {
  align-items: center;
}
.cl-land .foot-cta {
  padding: 0.5rem 0.95rem;
  font-size: 0.8125rem;
}
.cl-land .site-foot .foot-links a.foot-cta:hover {
  color: #17130f;
}

/* ---------- set cards: image and title link to the product page ---------- */
.cl-land .card-media > a {
  display: block;
  width: 100%;
  height: 100%;
}
.cl-land .card-body .pn a {
  color: inherit;
  text-decoration: none;
}
.cl-land .card-body .pn a:hover {
  color: var(--walnut);
}

/* ---------- currency dropdown: symbol chip, same disclosure as the language flags ---------- */
.cl-land .cl-sym {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding-inline: 3px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.12);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
}
.cl-land .site-head.is-stuck .curr-dd .cl-sym {
  background: rgb(0 0 0 / 0.08);
}
.cl-land .lang-dd__menu .cl-sym {
  background: var(--porcelain);
  color: var(--on-paper);
}

/* ---------- set cards: details link under the buy button ---------- */
.cl-land .card-details {
  justify-self: center;
  text-align: center;
  font-size: 0.875rem;
  color: var(--on-paper-dim);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-color: var(--rule-paper);
  transition: color 0.2s var(--ease), text-decoration-color 0.2s var(--ease);
}
.cl-land .card-details:hover {
  color: var(--walnut);
  text-decoration-color: currentColor;
}
