/* myweddingdashboard.com lander: Sage & Stone tokens live on :root (this file is lander-only) */

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    url("https://cdn.jsdelivr.net/npm/@fontsource/dm-sans@5.2.5/files/dm-sans-latin-400-normal.woff2") format("woff2"),
    url("https://cdn.jsdelivr.net/npm/@fontsource/dm-sans@5.2.5/files/dm-sans-latin-400-normal.woff") format("woff");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src:
    url("https://cdn.jsdelivr.net/npm/@fontsource/dm-sans@5.2.5/files/dm-sans-latin-600-normal.woff2") format("woff2"),
    url("https://cdn.jsdelivr.net/npm/@fontsource/dm-sans@5.2.5/files/dm-sans-latin-600-normal.woff") format("woff");
}

:root {
  /* Sage & Stone (authoritative defaults; this sheet is lander-only) */
  --stone: #f5f1ea;
  --sand: #e8e2d8;
  --sage-muted: #6b8578;
  --sage-light: #a3b5aa;
  --forest: #2a4539;
  --forest-deep: #1e3329;
  --forest-hover: #355a48;
  --charcoal: #1c1917;
  --body-readable: #5c564e;
  --paper: var(--stone);
  --paper-ink: var(--charcoal);
  --paper-muted: var(--body-readable);
  --white: #faf8f5;
  /* --palette-wine name kept for existing selectors; value is forest CTA green */
  --palette-wine: var(--forest);
  --palette-stone: #d4ccc0;
  --palette-clay: #8f8378;
  --palette-bark: #5c5349;
  --palette-ink: var(--charcoal);
  --palette-fog: #cad0d2;
  --red: var(--sage-muted);
  --red-hot: #5d7a6c;
  --red-deep: var(--forest);
  /* Outer html gutter (body margin frame) */
  --marquee-wine: #3d5348;
  --page-frame: clamp(0.75rem, 2.25vw + 0.35rem, 2.35rem);
  /* Primary column: matches index hero overlay (75rem); gutters match hero horizontal padding. */
  --site-content-max: min(75rem, 100%);
  --site-gutter-x: clamp(1.25rem, 4vw, 2.5rem);
  --nav-ink: var(--charcoal);
  --font-serif: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-sans: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-script: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

@media (min-width: 1024px) {
  :root {
    /* ~10× prior desktop cap (2.35rem); <1024px keeps base --page-frame */
    --page-frame: clamp(0.75rem, 18vw, 23.5rem);
  }
}

html:has(body.site-lander):not(.lander-home) {
  background-color: #3d5348;
}

html:has(body.site-lander--home) {
  background-color: #f5f1ea;
}

body.site-lander .skip {
  background: var(--forest);
  color: var(--white);
}

body.site-lander .home-story--task-wf-dark.home-story {
  --wf-void: #1a2822;
  --wf-cream: #f5f1ea;
  --wf-cream-soft: #dce5df;
  --wf-gold: #a3b5aa;
  --wf-gold-soft: #c5d4cc;
  --wf-gold-hover: #d4e0d8;
  --wf-muted: #8fa396;
  --wf-dim: #7a8f84;
  --wf-faint: #6b8578;
  --wf-line: #2a3d35;
  --wf-line-soft: #3d5348;
  --wf-row: #24302a;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--marquee-wine);
}

body {
  margin: var(--page-frame);
  min-height: calc(100vh - 2 * var(--page-frame));
  font-family: var(--font-sans);
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--paper-muted);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

/* Landers: top frame and side margins (colors come from :root Sage & Stone) */
body.site-lander {
  --page-frame-top: clamp(0.75rem, 2.25vw + 0.35rem, 2.35rem);
  margin-top: var(--page-frame-top);
  margin-right: var(--page-frame);
  margin-bottom: var(--page-frame);
  margin-left: var(--page-frame);
  min-height: calc(100vh - var(--page-frame-top) - var(--page-frame));
}

/* Home lander (index): full-viewport hero; gutters match stone field (:root --white does not inherit onto html from body tokens) */
html.lander-home {
  background-color: #f5f1ea;
}

body.site-lander.site-lander--home {
  --page-frame-top: 0;
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--white);
  --home-hero-overlay-x: clamp(0px, 2vw, 1rem);
  --home-copy-pad-x: clamp(1.25rem, 4vw, 2rem);
  --home-copy-block-w: min(44vw, 24rem);
  --home-copy-inset-left: calc(
    var(--home-hero-overlay-x)
    + max(0px, (50vw - var(--home-copy-block-w)) / 2)
    + var(--home-copy-pad-x)
  );
}

@media (max-width: 1024px) and (min-width: 721px) {
  body.site-lander.site-lander--home {
    --home-copy-inset-left: calc(var(--home-hero-overlay-x) + var(--home-copy-pad-x));
  }
}

@media (max-width: 720px) {
  body.site-lander.site-lander--home {
    --home-copy-inset-left: var(--site-gutter-x);
  }
}

body.site-lander.site-lander--home .site-nav {
  position: absolute;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Hero: at least full viewport; may grow taller so copy is never clipped on short windows */
body.site-lander.site-lander--home .hero-carousel {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  height: auto;
  background: #f5f1ea;
}

body.site-lander.site-lander--home .hero-carousel__overlay {
  min-height: 100vh;
  min-height: 100dvh;
}

/* Home split hero: copy on left, rotating photos on right */
body.site-lander.site-lander--home .hero-carousel--split .hero-carousel__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

body.site-lander.site-lander--home .hero-carousel--split .hero-ss,
body.site-lander.site-lander--home .hero-carousel--split .hero-ss__split,
body.site-lander.site-lander--home .hero-carousel--split .hero-ss__col,
body.site-lander.site-lander--home .hero-carousel--split .hero-ss__solid,
body.site-lander.site-lander--home .hero-carousel--split .hero-ss__slide {
  background: #f5f1ea;
}

body.site-lander.site-lander--home .hero-carousel--split .hero-ss {
  min-height: 100%;
  max-height: none;
  height: 100%;
}

body.site-lander.site-lander--home .hero-carousel--split .hero-ss__split {
  min-height: 100%;
  height: 100%;
  max-height: none;
}

body.site-lander.site-lander--home .hero-carousel--split .hero-carousel__overlay--copy {
  position: relative;
  z-index: 3;
  flex: 1 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  align-content: start;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: clamp(5.5rem, 3.5vw + 4.5rem, 7rem) clamp(0px, 2vw, 1rem)
    clamp(3.5rem, 7vw, 5rem);
  box-sizing: border-box;
  pointer-events: none;
}

@media (min-height: 44rem) {
  body.site-lander.site-lander--home .hero-carousel--split .hero-carousel__overlay--copy {
    align-items: center;
    align-content: center;
  }
}

body.site-lander.site-lander--home .hero-carousel--split .hero-carousel__overlay--copy .hero-split {
  grid-column: 1;
  justify-self: center;
  pointer-events: auto;
  width: min(88%, 24rem);
  max-width: 24rem;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  box-sizing: border-box;
}

body.site-lander.site-lander--home .hero-carousel--split .hero-ss__col--right .hero-ss__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

body.site-lander.site-lander--home .hero-carousel--split .hero-ss__media-frame {
  position: relative;
  width: min(78%, 26rem);
  max-width: 26rem;
  height: auto;
  aspect-ratio: 3 / 2;
  border-radius: 14px;
  overflow: hidden;
  background: #f5f1ea;
  border: 1px solid rgba(42, 69, 57, 0.1);
  box-shadow:
    0 4px 6px rgba(28, 25, 23, 0.04),
    0 18px 42px rgba(28, 25, 23, 0.08);
  flex-shrink: 0;
}

body.site-lander.site-lander--home .hero-carousel--split .hero-ss__media-frame .hero-ss__video,
body.site-lander.site-lander--home .hero-carousel--split .hero-ss__media-frame .hero-ss__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body.site-lander.site-lander--home .hero-carousel--split .hero-ss__media-frame .hero-ss__poster {
  z-index: 1;
  display: block;
}

body.site-lander.site-lander--home .hero-carousel--split .hero-ss__media-frame .hero-ss__poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #f5f1ea;
}

body.site-lander.site-lander--home .hero-carousel--split .hero-ss__media-frame .hero-ss__video {
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #f5f1ea;
}

body.site-lander.site-lander--home .hero-carousel--split .hero-ss__media-frame:has(.hero-ss__video--playing) .hero-ss__poster {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.site-lander.site-lander--home .site-nav--hero-lander .site-nav__logo-img {
  height: 3.65rem;
  max-width: min(15.5rem, 72vw);
}

body.site-lander.site-lander--home .site-nav--hero-lander .site-nav__inner--split-hero {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem 1rem;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.25rem, 4vw, 2rem);
  box-sizing: border-box;
}

body.site-lander.site-lander--home .site-nav--hero-lander .site-nav__cluster--inline {
  display: none;
  flex: 0 1 auto;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.5rem 0.85rem;
  margin: 0;
}

body.site-lander.site-lander--home .site-nav--hero-lander .site-nav__cluster--inline .site-nav__explore {
  letter-spacing: 0.12em;
  white-space: nowrap;
}

body.site-lander.site-lander--home .site-nav--hero-lander .site-nav__drawer {
  display: block;
  flex-shrink: 0;
  margin-left: auto;
}

body.site-lander.site-lander--home .site-nav--hero-lander .site-nav__burger span {
  background: #2a4539;
}

body.site-lander.site-lander--home .site-nav--hero-lander .site-nav__drawer-panel {
  right: 0;
  left: auto;
  min-width: 13.5rem;
  padding: 0.5rem 0 0.65rem;
  background: #faf8f5;
  border-color: rgba(42, 69, 57, 0.14);
  border-top-color: #2a4539;
  box-shadow: 0 10px 28px rgba(28, 25, 23, 0.12);
  z-index: 120;
}

body.site-lander.site-lander--home .site-nav--hero-lander .site-nav__drawer-panel a {
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  padding: 0.65rem 1.15rem;
}

body.site-lander.site-lander--home .site-nav--hero-lander .site-nav__drawer-panel .site-nav__drawer-cta {
  display: block;
  margin: 0.45rem 0.85rem 0;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: none;
  text-align: center;
  color: #fff;
  background: #1a2f22;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

body.site-lander.site-lander--home .site-nav--hero-lander .site-nav__drawer-panel .site-nav__drawer-cta:hover,
body.site-lander.site-lander--home .site-nav--hero-lander .site-nav__drawer-panel .site-nav__drawer-cta:focus-visible {
  color: #fff;
  background: #243529;
}

@media (min-width: 1024px) {
  body.site-lander.site-lander--home .site-nav--hero-lander .site-nav__cluster--inline {
    display: flex;
  }

  body.site-lander.site-lander--home .site-nav--hero-lander .site-nav__drawer {
    display: none;
  }
}

@media (max-width: 1023px) {
  body.site-lander.site-lander--home .site-nav--hero-lander .site-nav__inner--split-hero {
    width: 100%;
    max-width: 100%;
    background: rgba(245, 241, 234, 0.94);
  }

  body.site-lander.site-lander--home .site-nav--hero-lander .site-nav__logo-img {
    height: 2.85rem;
    max-width: min(12rem, 58vw);
  }
}

@media (max-width: 479px) {
  body.site-lander.site-lander--home .site-nav--hero-lander .site-nav__drawer-panel {
    position: fixed;
    top: calc(3.35rem + env(safe-area-inset-top, 0px));
    right: var(--site-gutter-x, 1rem);
    left: var(--site-gutter-x, 1rem);
    min-width: 0;
    width: auto;
  }
}

body.site-lander.site-lander--home .hero-carousel--split .hero-split__veil {
  left: 50%;
  width: 50%;
  opacity: 0;
  pointer-events: none;
}

body.site-lander.site-lander--home .hero-carousel--split .hero-scroll-hint {
  z-index: 4;
  left: 25%;
}

@media (max-width: 720px) {
  body.site-lander.site-lander--home .hero-carousel--split .hero-ss__col--left {
    display: none;
  }

  body.site-lander.site-lander--home .hero-carousel--split .hero-ss__split {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }

  body.site-lander.site-lander--home .hero-carousel--split .hero-carousel__overlay--copy {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: clamp(5.5rem, 3.5vw + 4.5rem, 7rem) clamp(1.25rem, 4vw, 2.5rem)
      clamp(4rem, 12vw, 5.5rem);
    background: linear-gradient(to top, rgba(245, 241, 234, 0.94) 0%, rgba(245, 241, 234, 0.55) 45%, transparent 72%);
  }

  @media (max-height: 44rem) {
    body.site-lander.site-lander--home .hero-carousel--split .hero-carousel__overlay--copy {
      align-items: flex-start;
      justify-content: flex-start;
      padding-top: clamp(5rem, 3vw + 4rem, 6.5rem);
      background: linear-gradient(
        to bottom,
        rgba(245, 241, 234, 0.96) 0%,
        rgba(245, 241, 234, 0.88) 55%,
        rgba(245, 241, 234, 0.45) 85%,
        transparent 100%
      );
    }
  }

  body.site-lander.site-lander--home .hero-carousel--split .hero-carousel__overlay--copy .hero-split {
    grid-column: auto;
    justify-self: auto;
    width: 100%;
    max-width: none;
    padding: 0;
  }

  body.site-lander.site-lander--home .hero-carousel--split .hero-split__veil {
    left: 0;
    width: 100%;
  }

  body.site-lander.site-lander--home .hero-carousel--split .hero-scroll-hint {
    left: 50%;
  }
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0.35rem;
  padding: 0.5rem 1rem;
  background: var(--red);
  color: var(--white);
  z-index: 200;
  font-weight: 600;
}

.skip:focus {
  left: 0.35rem;
}

/* Nav: white bar, centered brand */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid rgba(26, 24, 22, 0.08);
}

.site-nav__inner {
  max-width: var(--site-content-max);
  margin: 0 auto;
  padding: 0.85rem var(--site-gutter-x);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.site-nav__inner--minimal {
  display: flex;
  justify-content: flex-end;
}

.site-nav__inner--split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.site-nav__explore,
.site-nav__home {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--nav-ink);
}

.site-nav__explore:hover,
.site-nav__explore:focus-visible,
.site-nav__home:hover,
.site-nav__home:focus-visible {
  color: var(--red-hot);
}

.site-nav__explore:focus-visible,
.site-nav__home:focus-visible {
  outline: 2px solid var(--red-hot);
  outline-offset: 3px;
}

.site-nav__here {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(74, 69, 64, 0.55);
}

.site-nav__cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.35rem;
}

/* Primary checkout CTA in top nav (pill; stacks with .site-nav__explore); lander uses Sage & Stone override below */
.site-nav__cluster a.site-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.52rem 0.95rem;
  margin: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--palette-wine);
  border: 2px solid #3d0c0c;
  border-radius: 10px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.12);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  line-height: 1.25;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
}

@media (min-width: 480px) {
  .site-nav__cluster a.site-nav__cta {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    padding: 0.55rem 1.05rem;
  }
}

.site-nav__cluster a.site-nav__cta:hover,
.site-nav__cluster a.site-nav__cta:focus-visible {
  color: var(--white);
  background: #6f1515;
  border-color: #2a0808;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.14);
}

.site-nav__cluster a.site-nav__cta:focus-visible {
  outline: 3px solid var(--red-hot);
  outline-offset: 3px;
}

.site-nav__cluster a.site-nav__cta[aria-current="page"] {
  cursor: default;
  box-shadow: none;
  opacity: 0.92;
}

.site-nav__cluster a.site-nav__cta[aria-current="page"]:hover,
.site-nav__cluster a.site-nav__cta[aria-current="page"]:focus-visible {
  background: var(--palette-wine);
  border-color: #3d0c0c;
  color: var(--white);
}

body.site-lander .site-nav__cluster a.site-nav__cta {
  border-color: var(--forest-deep);
}

body.site-lander .site-nav__cluster a.site-nav__cta:hover,
body.site-lander .site-nav__cluster a.site-nav__cta:focus-visible {
  background: var(--forest-hover);
  border-color: var(--forest-deep);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.12);
}

body.site-lander .site-nav__cluster a.site-nav__cta[aria-current="page"]:hover,
body.site-lander .site-nav__cluster a.site-nav__cta[aria-current="page"]:focus-visible {
  background: var(--palette-wine);
  border-color: var(--forest-deep);
}

.site-nav__cluster--start {
  justify-self: start;
}

.site-nav__cluster--end {
  justify-self: end;
  justify-content: flex-end;
}

.site-nav__cluster--inline {
  display: none;
}

@media (min-width: 900px) {
  .site-nav__cluster--inline {
    display: flex;
  }

  .site-nav__drawer {
    display: none;
  }
}

.site-nav__brand {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(0.95rem, 1.1vw + 0.65rem, 1.2rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--nav-ink);
  text-align: center;
  white-space: nowrap;
}

.site-nav__brand:hover,
.site-nav__brand:focus-visible {
  color: var(--red-hot);
}

.site-nav__cluster a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--nav-ink);
}

.site-nav__cluster a:hover,
.site-nav__cluster a:focus-visible {
  color: var(--red-hot);
}

.site-nav__brand:focus-visible,
.site-nav__cluster a:focus-visible {
  outline: 2px solid var(--red-hot);
  outline-offset: 3px;
}

/* Mobile drawer, no card, full-bleed panel */
.site-nav__drawer {
  position: relative;
}

.site-nav__burger {
  list-style: none;
  cursor: pointer;
  width: 2.25rem;
  height: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
}

.site-nav__burger::-webkit-details-marker {
  display: none;
}

.site-nav__burger span {
  display: block;
  height: 2px;
  background: var(--nav-ink);
  border-radius: 1px;
}

.site-nav__burger:focus {
  outline: none;
}

.site-nav__burger:focus-visible {
  outline: 2px solid var(--red-hot);
  outline-offset: 4px;
  border-radius: 4px;
}

.site-nav__drawer-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  min-width: 12rem;
  padding: 0.75rem 0;
  background: var(--white);
  border: 1px solid rgba(26, 24, 22, 0.1);
}

.site-nav__drawer-panel a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--nav-ink);
}

.site-nav__drawer-panel a:hover,
.site-nav__drawer-panel a:focus-visible {
  background: rgba(154, 31, 31, 0.06);
  color: var(--red-hot);
}

/* Simple auto-advance hero carousel with glass copy panel */
.hero-carousel {
  position: relative;
  min-height: min(86vh, 50rem);
  isolation: isolate;
  overflow: hidden;
}

.hero-carousel__media {
  position: absolute;
  inset: 0;
}

/* Home hero: fallback when poster and video are removed (plain hex, no color-mix) */
.hero-carousel.hero-carousel--no-media .hero-carousel__media {
  background: linear-gradient(165deg, #f0f4f1 0%, #e8e2d8 45%, #dce5df 100%);
}

body.site-lander.site-lander--home .hero-carousel--split .hero-carousel__veil {
  opacity: 0;
  pointer-events: none;
}

.hero-carousel__poster,
.hero-carousel__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-carousel__video {
  transition: opacity 0.35s ease;
}

.hero-carousel.is-video-frozen .hero-carousel__video {
  opacity: 0;
}

.hero-carousel__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.48));
}

.hero-carousel__overlay {
  position: relative;
  z-index: 2;
  min-height: min(86vh, 50rem);
  display: grid;
  place-items: center;
  padding: clamp(1.2rem, 3vw, 2.5rem);
}

/* Scrolling testimonial ribbon below hero (desktop only; see testimonial-marquee.js) */
.testimonial-marquee-wrap {
  display: none;
}

@media (min-width: 1024px) {
  .testimonial-marquee-wrap {
    display: block;
    position: relative;
    z-index: 5;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    /* Plain hex gradient for broad browser support (avoid color-mix stripping the whole background). */
    background: linear-gradient(90deg, #2a4539 0%, #3d5348 45%, #355248 100%);
  }

  .testimonial-marquee {
    padding: 0.65rem 0;
  }

  .testimonial-marquee__viewport {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 2%, #000 98%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 2%, #000 98%, transparent);
  }

  .testimonial-marquee__row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: max-content;
    animation: testimonial-marquee-scroll 95s linear infinite;
  }

  .testimonial-marquee__group {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    flex-shrink: 0;
    align-items: stretch;
    gap: 1.15rem;
    padding: 0 0.6rem;
  }

  .testimonial-marquee__item {
    flex: 0 0 auto;
    width: min(22rem, 28vw);
    max-width: 22rem;
    padding: 0.55rem 0.75rem 0.65rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(12, 24, 18, 0.42);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
  }

  .testimonial-marquee__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    margin-bottom: 0.35rem;
  }

  .testimonial-marquee__stars {
    flex-shrink: 0;
    letter-spacing: 0.06em;
    font-size: 0.72rem;
    line-height: 1;
    color: #f0d78c;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
  }

  .testimonial-marquee__cite {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    white-space: nowrap;
  }

  .testimonial-marquee__quote {
    margin: 0;
    font-size: 0.68rem;
    line-height: 1.42;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.94);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
  }

  .testimonial-marquee__quote mark {
    background: transparent !important;
    color: #d4e0d8;
    font-weight: 700;
  }
}

@keyframes testimonial-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (min-width: 1024px) and (prefers-reduced-motion: reduce) {
  .testimonial-marquee__row {
    animation: none;
    flex-wrap: nowrap;
    width: max-content;
    transform: none;
  }

  .testimonial-marquee__group:last-child {
    display: none;
  }

  .testimonial-marquee__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    mask-image: none;
    -webkit-mask-image: none;
  }
}

.hero-carousel__glass {
  position: relative;
  z-index: 1;
  width: min(48rem, 100%);
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: 1rem;
  padding: clamp(1rem, 2.5vw, 2rem);
  background: linear-gradient(140deg, rgba(10, 8, 8, 0.58), rgba(10, 8, 8, 0.36));
  backdrop-filter: blur(9px) saturate(130%);
  -webkit-backdrop-filter: blur(9px) saturate(130%);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.hero-carousel__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.hero-carousel__title {
  margin: 0;
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.12;
  font-size: clamp(1.75rem, 3.2vw + 1rem, 3rem);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.hero-carousel__deck {
  margin: 0.85rem auto 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  max-width: 42ch;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.42);
}

.hero-carousel__cta-wrap {
  margin: 1.2rem 0 0;
}

.hero-carousel__cta-wrap .hero-split__cta {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  border-bottom-color: rgba(255, 255, 255, 0.75);
}

.hero-carousel__cta-wrap .hero-split__cta:hover,
.hero-carousel__cta-wrap .hero-split__cta:focus-visible {
  color: #fff;
  border-bottom-color: #fff;
}

/* Hero slideshow: split columns, synced vertical tracks; photos alternate left / right per slide */
.hero-ss {
  position: relative;
  isolation: isolate;
  min-height: min(88vh, 52rem);
  max-height: 56rem;
}

.hero-ss__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: min(88vh, 52rem);
  max-height: 56rem;
}

.hero-ss__col {
  position: relative;
  height: 100%;
  overflow: hidden;
  min-height: 0;
  background: var(--palette-bark);
}

.hero-ss__track {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  /* Slides snap while a paper dissolve runs over the split (see .hero-ss__dissolve). */
  transition: none;
}

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

/* Subtle cross-dissolve over imagery only (copy sits above .hero-ss__veil). */
.hero-ss__dissolve {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: var(--paper);
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--paper) 88%, var(--palette-stone)) 0%,
    color-mix(in srgb, var(--paper) 92%, var(--palette-clay)) 100%
  );
  opacity: 0;
  /* Ease-out: reach the veil quickly, ease gently into the hold (no sluggish open). */
  transition: opacity 0.42s cubic-bezier(0.28, 0, 0.2, 1);
}

.hero-ss--dissolve-in .hero-ss__dissolve {
  opacity: 0.11;
}

@media (prefers-reduced-motion: reduce) {
  .hero-ss__dissolve {
    display: none;
  }
}

.hero-ss--snap .hero-ss__track {
  transition: none !important;
}

.hero-ss__solid {
  flex-shrink: 0;
  width: 100%;
  height: var(--hero-ss-slide-h, min(88vh, 52rem));
}

.hero-ss__slide,
.hero-ss__photo {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: var(--hero-ss-slide-h, min(88vh, 52rem));
}

.hero-ss__media-frame {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
}

.hero-ss__video,
.hero-ss__poster,
.hero-ss__slide picture,
.hero-ss__photo picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-ss__poster {
  z-index: 1;
}

.hero-ss__video {
  z-index: 2;
}

.hero-ss__video,
.hero-ss__poster img,
.hero-ss__slide picture img,
.hero-ss__photo picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Desktop: show MP4 over poster; mobile: poster only */
@media (min-width: 721px) {
  .hero-ss--video-mode .hero-ss__video {
    display: block;
  }
}

@media (max-width: 720px) {
  .hero-ss__video {
    display: none !important;
  }

  body.site-lander.site-lander--home .hero-carousel--split .hero-ss__col--right .hero-ss__slide {
    padding: 0 clamp(1rem, 4vw, 1.5rem);
    box-sizing: border-box;
  }

  body.site-lander.site-lander--home .hero-carousel--split .hero-ss__media-frame {
    width: min(92%, 20rem);
    max-width: 20rem;
    height: auto;
  }
}

/* Slideshow motion only (videos still play when muted) */
@media (prefers-reduced-motion: reduce) {
  .hero-ss__dissolve {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero-ss__split {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    height: min(88vh, 52rem);
    max-height: none;
  }

  .hero-ss__col--left {
    order: 1;
  }

  .hero-ss__col--right {
    order: 2;
  }

  .hero-ss__solid,
  .hero-ss__slide,
  .hero-ss__photo {
    height: var(--hero-ss-slide-h, min(44vh, 26rem));
  }
}

.hero-ss__veil.hero-split__veil,
.hero-split__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.18), transparent 30%, rgba(0, 0, 0, 0.42));
  z-index: 2;
}

.hero-split__overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.25rem;
  pointer-events: none;
}

.hero-split__overlay .hero-split__cta-wrap {
  pointer-events: auto;
}

.hero-split__kicker {
  margin: 0 0 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(253, 252, 250, 0.95);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.85);
}

.hero-split__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.1rem, 5.5vw + 1rem, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  color: var(--white);
  text-shadow: 0 4px 48px rgba(0, 0, 0, 0.75);
}

/* Index home split hero (stone background): wins over rule above (main.css loads after first inline block) */
body.site-lander--home .hero-split .hero-split__title {
  color: var(--charcoal);
  text-shadow: none;
}

.hero-split__title-line {
  display: block;
}

.hero-split__amp {
  color: #ffb4b4;
  font-weight: 400;
  margin: 0 0.08em;
}

.hero-split__title-line:last-child {
  margin-top: 0.12em;
}

.hero-split__title--brand {
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: clamp(1.85rem, 4.5vw + 0.85rem, 3.65rem);
  line-height: 1.05;
  max-width: 20ch;
}

@media (min-width: 640px) {
  .hero-split__title--brand {
    max-width: none;
  }
}

.hero-split__title--brand .hero-split__italic {
  font-style: italic;
  font-weight: 350;
  color: #f0e4e6;
}

.hero-split__cta-wrap {
  margin: 1.75rem 0 0;
}

.hero-split__cta {
  display: inline-block;
  padding: 0.55rem 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  border-bottom: 2px solid var(--red-hot);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.hero-split__cta:hover,
.hero-split__cta:focus-visible {
  color: #ffd6d6;
  border-color: #ff8a8a;
}

.hero-split__cta:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 6px;
}

/* Home index: venue decision story between hero and feature list */
.home-story {
  background: color-mix(in srgb, var(--palette-wine) 5%, var(--white));
  border-top: 1px solid rgba(26, 24, 22, 0.08);
  border-bottom: 1px solid rgba(26, 24, 22, 0.08);
}

/* Extra vertical space only on index (body.site-lander--home); budget lander keeps tighter band */
body.site-lander--home .home-story {
  margin-block: clamp(1rem, 3vw, 2.25rem);
}

.home-story__inner {
  max-width: var(--site-content-max);
  margin: 0 auto;
  padding-block: clamp(2rem, 5vw, 3.25rem);
  padding-inline: clamp(1.75rem, 5vw, 3.75rem);
}

body.site-lander--home .home-story .home-story__inner {
  padding-block: clamp(3rem, 7vw, 5.25rem);
  padding-inline: var(--site-gutter-x, clamp(1.25rem, 4vw, 2.5rem));
}

.home-story__title {
  margin: 0 0 1.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}

/* Second home band: eyebrow + narrative on the right, pull quote rail on the left */
.home-story__eyebrow {
  margin: 0 0 1.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1.35;
}

/* Two columns: narrative + full-height pull quote rail */
.home-story__pull-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(11.5rem, 18rem);
  gap: clamp(1.75rem, 4.5vw, 3rem);
  align-items: stretch;
}

.home-story__pull-wrap--mirror {
  grid-template-columns: minmax(11.5rem, 18rem) minmax(0, 1fr);
}

.home-story__pull-wrap--mirror .home-story__pull-aside {
  margin-inline: clamp(0.25rem, 1vw, 0.5rem) clamp(0.35rem, 1.2vw, 0.65rem);
}

.home-story__narrative {
  min-width: 0;
}

.home-story__pull-aside {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  min-height: 100%;
  margin-inline: clamp(0.25rem, 1vw, 0.5rem);
}

/* Shrink-wrapped quote so mag-pull top/bottom rules sit tight to the type; aside centers this block in the tall rail */
.mag .home-story .home-story__pull.mag-pull {
  float: none;
  width: 100%;
  max-width: none;
  margin: 0;
  flex: 0 0 auto;
  align-self: stretch;
  text-align: center;
  box-sizing: border-box;
  padding: clamp(0.4rem, 1.1vw, 0.55rem) clamp(1rem, 3vw, 1.65rem);
}

.home-story__p {
  margin: 0 0 1.1rem;
  max-width: none;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--paper-ink);
}

.home-story__narrative .home-story__p:last-child {
  margin-bottom: 0;
}

/* Home index: long-form product sections (also on checkout page previously) */
.home-story--feature-copy > .home-story__inner > h2 {
  margin: 0 0 1.15rem;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 700;
  line-height: 1.28;
  color: var(--paper-ink);
  text-transform: none;
  letter-spacing: -0.015em;
}

@media (max-width: 720px) {
  .home-story__pull-wrap {
    grid-template-columns: 1fr;
    gap: clamp(1.25rem, 3.5vw, 2rem);
  }

  .home-story__pull-wrap--mirror .home-story__narrative {
    order: -1;
  }

  .home-story__pull-wrap--mirror .home-story__pull-aside {
    margin-inline: 0;
  }

  .home-story__pull-aside {
    min-height: 0;
    justify-content: flex-start;
    margin-inline: 0;
  }

  .mag .home-story .home-story__pull.mag-pull {
    padding: clamp(0.4rem, 1.1vw, 0.55rem) clamp(1rem, 3vw, 1.65rem);
  }
}

/* Home index: task list dark editorial (from style1-dark-editorial.html) */
.home-story--task-wf-dark.home-story {
  --wf-void: #0e0d0b;
  --wf-cream: #faf7f0;
  --wf-cream-soft: #e8e2d6;
  --wf-gold: #d4c896;
  --wf-gold-soft: #e8ddaa;
  --wf-gold-hover: #efe4bc;
  --wf-muted: #cfc6b8;
  --wf-dim: #c4bbb0;
  --wf-faint: #a8a092;
  --wf-line: #2a2722;
  --wf-line-soft: #3a3630;
  --wf-row: #242220;

  background: var(--wf-void);
  border-top-color: var(--wf-line);
  border-bottom-color: var(--wf-line);
  color: var(--wf-cream);
}

.home-story--task-wf-dark .home-task-wf__dark-band {
  width: 100%;
}

/* Three-class selector so this wins over `.mag .mag__stream` in mag.css (padding-top was stuck at 0). */
.mag .home-story--task-wf-dark .home-task-wf__dark-page {
  max-width: var(--site-content-max);
  margin: 0 auto;
  padding-top: clamp(5rem, 13vw, 8rem);
  padding-bottom: clamp(2.25rem, 5vw, 3.5rem);
  padding-left: var(--site-gutter-x, clamp(1.25rem, 4vw, 2.5rem));
  padding-right: var(--site-gutter-x, clamp(1.25rem, 4vw, 2.5rem));
  font-family: var(--font-sans);
}

.home-story--task-wf-dark .home-task-wf__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-story--task-wf-dark .home-task-wf__headline {
  font-family: var(--font-sans);
  font-size: clamp(1.55rem, 3.6vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--wf-cream);
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
  scroll-margin-top: clamp(0.75rem, 2.5vw, 1.5rem);
}

.home-story--task-wf-dark .home-task-wf__headline em {
  font-weight: 600;
  font-style: italic;
  color: var(--wf-gold-soft);
}

.home-story--task-wf-dark .home-task-wf__deck {
  font-family: inherit;
  font-size: 1.05rem;
  color: var(--wf-cream-soft);
  letter-spacing: 0;
  line-height: 1.65;
  margin: 0 0 clamp(2rem, 4.5vw, 3rem);
  max-width: 42rem;
}

.home-story--task-wf-dark .home-task-wf__section-gap {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.home-story--task-wf-dark .home-task-wf__section-gap:last-child {
  margin-bottom: 0;
}

.home-story--task-wf-dark .home-task-wf__event-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.home-story--task-wf-dark .home-task-wf__event-chip {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.65rem 1.15rem;
  border: 0.5px solid var(--wf-line-soft);
  border-radius: 0;
  color: var(--wf-cream-soft);
  background: transparent;
  cursor: pointer;
  letter-spacing: 0.02em;
  text-align: left;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.home-story--task-wf-dark .home-task-wf__event-chip:hover {
  border-color: var(--wf-gold);
  color: var(--wf-gold);
}

.home-story--task-wf-dark .home-task-wf__event-chip:focus-visible {
  outline: 2px solid var(--wf-gold);
  outline-offset: 3px;
}

.home-story--task-wf-dark .home-task-wf__event-chip.active {
  border-color: var(--wf-gold);
  background: var(--wf-gold);
  color: var(--wf-void);
  font-weight: 600;
}

.home-story--task-wf-dark .home-task-wf__chip-name {
  display: block;
}

.home-story--task-wf-dark .home-task-wf__chip-sub {
  display: none;
}

.home-story--task-wf-dark .home-task-wf__focus-stats {
  scroll-margin-top: clamp(3.5rem, 10vh, 5.5rem);
}

.home-story--task-wf-dark .home-task-wf__loading-bar {
  height: 1px;
  background: var(--wf-line);
  overflow: hidden;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.home-story--task-wf-dark .home-task-wf__loading-fill {
  height: 100%;
  background: var(--wf-gold);
  width: 0%;
  transition: width 0.35s ease;
}

.home-story--task-wf-dark .home-task-wf__stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--wf-line);
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.home-story--task-wf-dark .home-task-wf__stat-box {
  background: var(--wf-void);
  padding: 1.25rem 1rem;
}

.home-story--task-wf-dark .home-task-wf__stat-num {
  font-family: inherit;
  font-size: clamp(1.85rem, 5vw, 2.65rem);
  font-style: normal;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--wf-gold-soft);
  margin: 0;
  line-height: 1;
  letter-spacing: -0.03em;
}

.home-story--task-wf-dark .home-task-wf__stat-lbl {
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--wf-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0.5rem 0 0;
}

.home-story--task-wf-dark .home-task-wf__task-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-story--task-wf-dark .home-task-wf__task-group-label {
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--wf-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.25rem 0 0.45rem;
  border-top: 0.5px solid var(--wf-line);
  margin-top: 0.35rem;
}

.home-story--task-wf-dark .home-task-wf__task-group-label:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.home-story--task-wf-dark .home-task-wf__task-item {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  padding: 0.55rem 0;
  border-bottom: 0.5px solid var(--wf-row);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.home-story--task-wf-dark .home-task-wf__task-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.home-story--task-wf-dark .home-task-wf__task-n {
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--wf-faint);
  width: 1.75rem;
  flex-shrink: 0;
}

.home-story--task-wf-dark .home-task-wf__task-text {
  font-family: inherit;
  font-size: 1.05rem;
  color: var(--wf-cream-soft);
  flex: 1;
  min-width: 0;
  line-height: 1.65;
  letter-spacing: 0;
}

.home-story--task-wf-dark .home-task-wf__task-tag {
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--wf-muted);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.home-story--task-wf-dark .home-task-wf__cta-card {
  position: relative;
  border: 0.5px solid var(--wf-line-soft);
  padding: clamp(1.75rem, 4vw, 2.25rem);
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

.home-story--task-wf-dark .home-task-wf__cta-rule {
  position: absolute;
  top: -1px;
  left: clamp(1.75rem, 4vw, 2.25rem);
  right: clamp(1.75rem, 4vw, 2.25rem);
  height: 1px;
  background: var(--wf-gold);
}

.home-story--task-wf-dark .home-task-wf__cta-kicker {
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--wf-gold-soft);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
}

.home-story--task-wf-dark .home-task-wf__cta-headline {
  font-family: inherit;
  font-size: clamp(1.2rem, 2.8vw, 1.65rem);
  font-style: normal;
  font-weight: 700;
  color: var(--wf-cream);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0 0 1rem;
}

.home-story--task-wf-dark .home-task-wf__cta-headline em {
  color: var(--wf-gold-soft);
  font-style: italic;
  font-weight: 600;
}

.home-story--task-wf-dark .home-task-wf__cta-body {
  font-family: inherit;
  font-size: 1.05rem;
  color: var(--wf-cream-soft);
  line-height: 1.65;
  letter-spacing: 0;
  margin: 0 0 1.35rem;
}

.home-story--task-wf-dark .home-task-wf__cta-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 1.25rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 520px) {
  .home-story--task-wf-dark .home-task-wf__cta-features {
    grid-template-columns: 1fr;
  }
}

.home-story--task-wf-dark .home-task-wf__cta-feat {
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--wf-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  letter-spacing: 0;
  line-height: 1.5;
}

.home-story--task-wf-dark .home-task-wf__feat-dash {
  color: var(--wf-gold);
  flex-shrink: 0;
}

.home-story--task-wf-dark .home-task-wf__btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.home-story--task-wf-dark .home-task-wf__btn-primary,
.home-story--task-wf-dark .home-task-wf__btn-secondary {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.home-story--task-wf-dark .home-task-wf__btn-primary {
  border: none;
  background: var(--wf-gold);
  color: var(--wf-void);
}

.home-story--task-wf-dark .home-task-wf__btn-primary:hover {
  background: var(--wf-gold-hover);
}

.home-story--task-wf-dark .home-task-wf__btn-primary:focus-visible {
  outline: 2px solid var(--wf-cream);
  outline-offset: 3px;
}

.home-story--task-wf-dark .home-task-wf__btn-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-story--task-wf-dark .home-task-wf__btn-secondary {
  border: 0.5px solid var(--wf-line-soft);
  background: transparent;
  color: var(--wf-cream-soft);
}

.home-story--task-wf-dark .home-task-wf__btn-secondary:hover {
  color: var(--wf-cream);
  border-color: var(--wf-muted);
}

.home-story--task-wf-dark .home-task-wf__btn-secondary:focus-visible {
  outline: 2px solid var(--wf-gold);
  outline-offset: 3px;
}

.home-story--task-wf-dark .home-task-wf__cta-note {
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--wf-muted);
  letter-spacing: 0;
  margin: 1rem 0 0;
  line-height: 1.55;
}

/* Feature detail pages: narrative band spans full article column (cancels .feat-detail horizontal padding) */
.feat-detail > .home-story {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  margin-left: calc(-1 * var(--site-gutter-x));
  margin-right: calc(-1 * var(--site-gutter-x));
}

/* Editorial body: no cards, typography + one floating image */
.editorial {
  position: relative;
  max-width: var(--site-content-max);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--site-gutter-x) clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: end;
}

@media (min-width: 960px) {
  .editorial {
    max-width: none;
    grid-template-columns: minmax(0, 52rem) minmax(18rem, 1fr);
    gap: 0;
    align-items: stretch;
    padding-right: 0;
    padding-left: calc((100vw - min(75rem, 100vw)) / 2 + var(--site-gutter-x));
  }

  .editorial__figure {
    grid-column: 2;
    grid-row: 1;
    align-self: stretch;
    margin: 0;
  }

  .editorial__layout {
    grid-column: 1;
    grid-row: 1;
  }

  /* Home index: no side image; keep one column and symmetric gutters */
  .editorial.editorial--no-figure {
    max-width: var(--site-content-max);
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    margin: 0 auto;
    padding: clamp(2.5rem, 6vw, 4.5rem) var(--site-gutter-x) clamp(3rem, 6vw, 5rem);
  }

  .editorial.editorial--no-figure .editorial__layout {
    grid-column: 1;
    grid-row: 1;
  }
}

.editorial__eyebrow {
  margin: 0 0 1.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  max-width: 36rem;
}

.editorial__headlines {
  margin-bottom: 1.75rem;
}

.editorial__huge {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw + 1rem, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper-ink);
}

.editorial__script {
  margin: 0.35rem 0 0;
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 4vw + 1.5rem, 4rem);
  line-height: 0.95;
  color: var(--red-deep);
  font-weight: 400;
}

.editorial__body {
  max-width: 40rem;
}

.editorial__body p {
  margin: 0 0 1.1rem;
}

.editorial__lede {
  font-size: 1.05rem;
  color: var(--paper-ink);
}

.editorial__tagline {
  font-size: 0.95rem;
}

.editorial__inline {
  color: var(--red);
  font-weight: 600;
  text-underline-offset: 3px;
}

.editorial__inline:hover,
.editorial__inline:focus-visible {
  color: var(--red-hot);
}

.editorial__inline:focus-visible {
  outline: 2px solid var(--red-hot);
  outline-offset: 2px;
}

/* Explore page: hero */
.explore-hero {
  position: relative;
  background: var(--paper);
  border-bottom: 1px solid rgba(26, 24, 22, 0.08);
}

.explore-hero__inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: clamp(2.25rem, 5vw, 3.75rem) var(--site-gutter-x) clamp(2.5rem, 5vw, 3.5rem);
}

.explore-hero__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
}

.explore-hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw + 1rem, 3rem);
  line-height: 1.08;
  color: var(--paper-ink);
}

.explore-hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--red-deep);
}

.explore-hero__deck {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: var(--paper-muted);
  max-width: 38rem;
}

.explore-hero__cta-wrap {
  margin: 0;
}

.explore-hero .hero-split__cta {
  color: var(--red-deep);
  text-shadow: none;
  border-bottom-color: var(--red-hot);
}

.explore-hero .hero-split__cta:hover,
.explore-hero .hero-split__cta:focus-visible {
  color: var(--red-hot);
  border-color: var(--red);
}

.explore-hero .hero-split__cta:focus-visible {
  outline-color: var(--red-hot);
}

/* Explore: feature rail (no cards) */
.feat-main {
  max-width: var(--site-content-max);
  margin: 0 auto;
  padding: 0 var(--site-gutter-x) clamp(3rem, 6vw, 5rem);
}

.feat-rail {
  padding: 0.5rem 0 2rem;
}

.feat-stripe {
  display: grid;
  grid-template-columns: minmax(3.25rem, 7vw) 1fr;
  gap: clamp(1rem, 3vw, 2.25rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
  border-top: 1px solid rgba(26, 24, 22, 0.1);
}

.feat-stripe:first-child {
  border-top: 0;
}

.feat-stripe:nth-child(even) {
  grid-template-columns: 1fr minmax(3.25rem, 7vw);
}

.feat-stripe:nth-child(even) .feat-stripe__index {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
}

.feat-stripe:nth-child(even) .feat-stripe__body {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
  padding-right: clamp(1rem, 3vw, 1.75rem);
  padding-left: 0;
}

.feat-stripe__index {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--red);
}

@supports not (-webkit-text-stroke: 1.5px red) {
  .feat-stripe__index {
    color: rgba(154, 31, 31, 0.25);
    -webkit-text-stroke: 0 transparent;
  }
}

.feat-stripe__body {
  padding-left: 0;
}

.feat-stripe__h {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.15rem, 1.5vw + 0.85rem, 1.45rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper-ink);
}

.feat-stripe__body p {
  margin: 0;
  max-width: 40rem;
}

.feat-stripe:nth-child(even) .feat-stripe__body p {
  margin-left: auto;
}

@media (max-width: 640px) {
  .feat-stripe:nth-child(even) {
    grid-template-columns: minmax(3.25rem, 18vw) 1fr;
  }

  .feat-stripe:nth-child(even) .feat-stripe__index {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .feat-stripe:nth-child(even) .feat-stripe__body {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    border-right: 0;
    padding-right: 0;
    padding-left: 0;
    padding-top: clamp(1rem, 3vw, 1.5rem);
  }

  .feat-stripe:nth-child(even) .feat-stripe__body p {
    margin-left: 0;
  }
}

.feat-river {
  margin: 2.5rem 0;
  padding: 1.75rem 0 1.75rem 0;
  max-width: 52rem;
}

.feat-river__label {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}

.feat-river__lede {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--paper-ink);
}

.feat-river__list {
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: var(--paper-muted);
}

.feat-river__list li {
  margin-bottom: 0.5rem;
}

.feat-dual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 2.5rem 0;
  border-top: 1px solid rgba(26, 24, 22, 0.1);
  border-bottom: 1px solid rgba(26, 24, 22, 0.1);
}

.feat-dual__rule {
  display: none;
}

@media (min-width: 800px) {
  .feat-dual {
    grid-template-columns: 1fr 1px 1fr;
    gap: 0 2.5rem;
  }

  .feat-dual__rule {
    display: block;
    background: rgba(26, 24, 22, 0.12);
  }
}

.feat-dual__col {
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
}

@media (min-width: 800px) {
  .feat-dual__col:first-child {
    padding-right: 0.5rem;
  }

  .feat-dual__col:last-child {
    padding-left: 0.5rem;
  }
}

.feat-dual__h {
  margin: 0 0 0.65rem;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper-ink);
}

.feat-dual__col p {
  margin: 0;
  color: var(--paper-muted);
}

.feat-pull {
  margin: 2.5rem auto 0;
  padding: 1.75rem 0;
  max-width: 38rem;
}

.feat-pull p {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.2rem, 1.5vw + 0.9rem, 1.5rem);
  line-height: 1.45;
  color: var(--paper-ink);
  text-align: center;
}

.feat-close {
  margin: 2.75rem 0 0;
  text-align: center;
}

.feat-close__link {
  display: inline-block;
  padding: 0.55rem 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--red);
  border-bottom: 2px solid var(--red-hot);
}

.feat-close__link:hover,
.feat-close__link:focus-visible {
  color: var(--red-hot);
}

.feat-close__link:focus-visible {
  outline: 2px solid var(--red-hot);
  outline-offset: 4px;
}

.feat-close__meta {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(74, 69, 64, 0.65);
}

.feat-hex-map {
  text-align: center;
  margin: 1.75rem 0 0;
}

/* Feature tour → detail pages */
.feat-learn {
  display: inline-block;
  padding: 0.45rem 0 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--red);
  border-bottom: 2px solid var(--red-hot);
}

.feat-learn:hover,
.feat-learn:focus-visible {
  color: var(--red-hot);
  border-color: var(--red);
}

.feat-learn:focus-visible {
  outline: 2px solid var(--red-hot);
  outline-offset: 3px;
}

.feat-stripe__body > p:not(.feat-stripe__learn) .feat-learn {
  display: inline;
  padding: 0 0 0.1em;
  font-size: inherit;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: inherit;
  vertical-align: baseline;
  border-bottom-width: 1px;
}

.feat-stripe__learn {
  margin: 0.85rem 0 0;
}

.feat-stripe:nth-child(even) .feat-stripe__learn {
  text-align: right;
}

@media (max-width: 640px) {
  .feat-stripe:nth-child(even) .feat-stripe__learn {
    text-align: left;
  }
}

.feat-river__learn {
  margin: 1.1rem 0 0;
}

.feat-dual__learn {
  margin: 0.9rem 0 0;
}

.editorial__figure {
  margin: 0;
  padding: 0;
  line-height: 0;
}

.editorial__figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0.94;
}

@media (min-width: 960px) {
  .editorial__figure img {
    max-height: none;
    width: 100%;
    height: 100%;
    object-position: center 35%;
  }
}

.site-footer {
  max-width: var(--site-content-max);
  margin: 0 auto;
  padding: 1.25rem var(--site-gutter-x) 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(74, 69, 64, 0.75);
  border-top: 1px solid rgba(26, 24, 22, 0.08);
}

.site-footer a {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--red-hot);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer a:focus-visible {
  outline: 2px solid var(--red-hot);
  outline-offset: 3px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.25rem;
}

/* Home index: post-hero flow (problem, solution, social, steps, pricing, final CTA) */
body.site-lander--home .home-flow {
  margin: 0;
  border-top: 1px solid rgba(28, 25, 23, 0.08);
}

body.site-lander--home .home-flow__inner {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--site-gutter-x, clamp(1.25rem, 4vw, 2.5rem))
    clamp(2.5rem, 6vw, 4.5rem) var(--home-copy-inset-left);
  box-sizing: border-box;
}

body.site-lander--home .home-flow__inner--narrow {
  max-width: min(42rem, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
}

body.site-lander--home .home-flow__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-muted);
}

body.site-lander--home .home-flow__title {
  margin: 0 0 1rem;
  max-width: 40ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw + 0.5rem, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal);
}

body.site-lander--home .home-flow__title--compact {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

body.site-lander--home .home-flow__sub {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--paper-muted);
}

body.site-lander--home .home-flow__body {
  margin: 0;
  max-width: 52ch;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--paper-muted);
}

body.site-lander--home .home-flow__body + .home-flow__body {
  margin-top: 1.1rem;
}

body.site-lander--home .home-flow__body--pivot {
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest);
  border-left: 3px solid var(--forest);
  padding-left: 1rem;
  margin-top: 1.5rem;
}

body.site-lander--home .home-flow--demo {
  background: #f5f1ea;
  border-top: none;
}

body.site-lander--home .home-flow__inner--demo {
  max-width: min(56rem, 100%);
  text-align: center;
  padding-top: clamp(1.75rem, 4vw, 2.75rem);
  padding-bottom: clamp(2rem, 5vw, 3.25rem);
}

body.site-lander--home .home-flow--demo .home-flow__eyebrow {
  margin-bottom: clamp(1rem, 2.5vw, 1.35rem);
}

body.site-lander--home .home-demo-video {
  position: relative;
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
  aspect-ratio: 3 / 2;
  border-radius: 14px;
  overflow: hidden;
  background: #f5f1ea;
  border: 1px solid rgba(42, 69, 57, 0.1);
  box-shadow:
    0 4px 6px rgba(28, 25, 23, 0.04),
    0 20px 48px rgba(28, 25, 23, 0.1);
}

body.site-lander--home .home-demo-video__el {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #f5f1ea;
}

@media (prefers-reduced-motion: reduce) {
  body.site-lander--home .home-demo-video__el {
    display: block;
  }
}

body.site-lander--home .home-flow--problem {
  background: var(--white);
}

body.site-lander--home .home-flow--solution {
  background: var(--forest);
  border-top-color: rgba(255, 255, 255, 0.12);
}

body.site-lander--home .home-flow--solution .home-flow__eyebrow {
  color: rgba(232, 240, 235, 0.88);
}

body.site-lander--home .home-flow--solution .home-flow__title {
  color: #faf8f5;
}

body.site-lander--home .home-flow--social {
  padding-bottom: 0;
  background: var(--stone);
}

body.site-lander--home .home-flow--social .testimonial-marquee-wrap {
  margin-top: clamp(0.5rem, 2vw, 1rem);
}

/* Home: link to static testimonials (visible on all viewports; marquee is desktop-only) */
.testimonials-read-all-banner {
  margin: 0;
  text-align: center;
  padding: 0.6rem 1rem 0.45rem;
}

.testimonials-read-all-banner__link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  color: #2a4539;
}

.testimonials-read-all-banner__link:hover,
.testimonials-read-all-banner__link:focus-visible {
  color: #355a48;
}

.testimonials-read-all-banner__link:focus-visible {
  outline: 3px solid var(--red-hot);
  outline-offset: 3px;
  border-radius: 2px;
}

.testimonials-read-all-banner__hint {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(42, 69, 57, 0.55);
}

@media (min-width: 1024px) {
  body.site-lander--home .home-flow--social .testimonial-marquee-wrap {
    margin-top: 0;
  }

  .testimonials-read-all-banner {
    padding: 0.45rem 1rem 0.35rem;
  }
}

body.site-lander--home .home-flow--steps {
  background: var(--white);
}

body.site-lander--home .home-flow--pricing {
  background: var(--forest);
  border-top-color: rgba(255, 255, 255, 0.12);
}

body.site-lander--home .home-flow--pricing .home-flow__eyebrow {
  color: rgba(232, 240, 235, 0.88);
}

body.site-lander--home .home-flow--pricing .home-flow__title {
  max-width: none;
  color: #faf8f5;
}

body.site-lander--home .home-pricing-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(24rem, 100%);
  margin: clamp(1.5rem, 3vw, 2rem) auto 0;
  gap: 0.85rem;
}

body.site-lander--home .home-pricing-block .home-pricing-card {
  width: 100%;
}

body.site-lander--home .home-pricing-wl-cta {
  margin: 0;
  max-width: 28ch;
  font-size: 0.82rem;
  line-height: 1.5;
}

body.site-lander--home .home-pricing-wl-cta__link {
  color: rgba(232, 240, 235, 0.88);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  font-weight: 600;
}

body.site-lander--home .home-pricing-wl-cta__link:hover,
body.site-lander--home .home-pricing-wl-cta__link:focus-visible {
  color: #faf8f5;
}

body.site-lander--home .home-pricing-wl-cta__link:focus-visible {
  outline: 2px solid rgba(250, 248, 245, 0.65);
  outline-offset: 3px;
  border-radius: 2px;
}

body.site-lander--home .home-solution-grid {
  display: grid;
  max-width: 100%;
  margin: clamp(1.75rem, 4vw, 2.5rem) 0 0;
  padding: 0;
  list-style: none;
  gap: clamp(1rem, 2.5vw, 1.25rem);
  grid-template-columns: 1fr;
}

body.site-lander--home .home-solution-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: clamp(1rem, 2.5vw, 1.35rem);
  row-gap: 0.45rem;
  align-items: start;
  margin: 0;
  padding: clamp(1.25rem, 3vw, 1.5rem);
  border-radius: 12px;
  border: 1px solid rgba(42, 69, 57, 0.12);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(28, 25, 23, 0.06);
}

body.site-lander--home .home-solution-card__icon {
  grid-row: 1 / span 2;
  margin: 0;
  color: var(--forest);
}

body.site-lander--home .home-solution-card__h,
body.site-lander--home .home-solution-card__p {
  grid-column: 2;
}

body.site-lander--home .home-solution-card__h {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--charcoal);
}

body.site-lander--home .home-solution-card__p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--paper-muted);
}

body.site-lander--home .home-solution-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: clamp(2rem, 4vw, 2.75rem);
  text-align: left;
}

body.site-lander--home .home-solution-cta__btn {
  background: var(--stone, #f5f1ea);
  color: var(--forest, #2a4539);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

body.site-lander--home .home-solution-cta__btn:hover,
body.site-lander--home .home-solution-cta__btn:focus-visible {
  background: #fff;
  color: var(--forest, #2a4539);
}

body.site-lander--home .home-solution-cta__note {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

body.site-lander--home .home-steps-cta__note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--paper-muted);
  opacity: 0.7;
}

body.site-lander--home .home-steps {
  display: grid;
  margin: clamp(1.75rem, 4vw, 2.5rem) 0 0;
  padding: 0;
  list-style: none;
  gap: clamp(1.5rem, 4vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
}

body.site-lander--home .home-steps__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin: 0;
}

body.site-lander--home .home-steps__num {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

body.site-lander--home .home-steps__h {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
}

body.site-lander--home .home-steps__p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--paper-muted);
}

body.site-lander--home .home-pricing-card {
  position: relative;
  display: flex;
  max-width: none;
  margin: 0;
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: 14px;
  border: 1px solid rgba(42, 69, 57, 0.15);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(28, 25, 23, 0.08);
  text-align: center;
  flex-direction: column;
  align-items: center;
}

body.site-lander--home .home-pricing-card--featured {
  border: 2px solid var(--forest);
  box-shadow: 0 16px 42px rgba(42, 69, 57, 0.14);
}

body.site-lander--home .home-pricing-card__name {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--charcoal);
}

body.site-lander--home .home-pricing-card__badge {
  margin: 0 0 0.5rem;
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.site-lander--home .home-pricing-card__badge--promo {
  margin-bottom: 0.35rem;
}

body.site-lander--home .home-pricing-card__was {
  margin: 0 0 0.15rem;
  font-size: 0.92rem;
  color: var(--paper-muted);
}

body.site-lander--home .home-pricing-card__was-price {
  text-decoration: line-through;
  color: var(--sage-muted);
}

body.site-lander--home .home-pricing-card__price {
  margin: 0 0 0.35rem;
  min-height: clamp(3.1rem, 7.5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
  color: var(--charcoal);
}

/* Single baseline-aligned row: keeps $, figures, /mo, and suffix on one optical line */
body.site-lander--home .home-pricing-card__amount {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: baseline;
  justify-content: center;
  column-gap: 0.06em;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1;
  color: var(--charcoal);
}

body.site-lander--home .home-pricing-card__figure {
  flex-shrink: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1em;
  font-weight: 600;
  line-height: 1;
}

body.site-lander--home .home-pricing-card__currency {
  flex-shrink: 0;
  font-size: 0.55em;
  line-height: 1;
  margin-right: 0.02em;
}

body.site-lander--home .home-pricing-card__cents {
  font-size: 0.55em;
}

body.site-lander--home .home-pricing-card__period {
  flex-shrink: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.38em;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--sage-muted);
  line-height: 1;
}

body.site-lander--home .home-pricing-card__currency-code {
  flex-shrink: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.38em;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--sage-muted);
  line-height: 1;
  white-space: nowrap;
}

body.site-lander--home .home-pricing-card__term {
  margin: 0;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-muted);
}

body.site-lander--home .home-pricing-card__note {
  flex: 1 1 auto;
  margin: 1rem 0 1.25rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--paper-muted);
}

body.site-lander--home .home-pricing-card__features {
  list-style: none;
  margin: 1rem 0 1.25rem;
  padding: 0;
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

body.site-lander--home .home-pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--paper-muted);
}

body.site-lander--home .home-pricing-card__features li::before {
  content: "✓";
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--forest);
  margin-top: 0.1em;
}

body.site-lander--home .home-pricing-card__micro {
  margin: 0.65rem 0 0;
  font-size: 0.76rem;
  color: var(--paper-muted);
  opacity: 0.65;
}

body.site-lander--home .home-pricing-card__btn--quiet {
  border-color: var(--forest);
  background: transparent;
  color: var(--forest);
  box-shadow: none;
}

body.site-lander--home .home-pricing-card__btn--quiet:hover,
body.site-lander--home .home-pricing-card__btn--quiet:focus-visible {
  background: rgba(42, 69, 57, 0.08);
}

body.site-lander--home .home-pricing-card__btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 10px;
  border: 2px solid var(--forest-deep);
  background: var(--forest);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  transition: background 0.2s ease;
}

body.site-lander--home .home-pricing-card__btn:hover,
body.site-lander--home .home-pricing-card__btn:focus-visible {
  background: var(--forest-hover);
}

body.site-lander--home .home-pricing-card__btn:disabled {
  cursor: not-allowed;
  background: var(--sage-muted);
  border-color: rgba(42, 69, 57, 0.28);
  box-shadow: none;
  color: var(--white);
}

body.site-lander--home .home-pricing-card__btn:disabled:hover,
body.site-lander--home .home-pricing-card__btn:disabled:focus-visible {
  background: var(--sage-muted);
}

body.site-lander--home .home-pricing-card__btn--waitlist {
  white-space: normal;
  line-height: 1.35;
  text-align: center;
  font-size: clamp(0.58rem, 0.9vw + 0.45rem, 0.68rem);
  letter-spacing: 0.1em;
  padding: 0.7rem 1rem;
  min-height: 0;
}

body.site-lander--home .home-flow--final-cta {
  border-top: none;
  background: var(--forest);
  color: var(--white);
}

body.site-lander--home .home-flow--final-cta .home-flow__title {
  max-width: none;
  color: var(--white);
}

body.site-lander--home .home-flow__inner--cta {
  max-width: min(40rem, 100%);
  text-align: center;
}

body.site-lander--home .home-flow__body--cta {
  max-width: none;
  color: rgba(250, 248, 245, 0.92);
}

body.site-lander--home .home-flow__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

body.site-lander--home .home-flow__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

body.site-lander--home .home-flow__btn--primary {
  border-color: rgba(250, 248, 245, 0.5);
  background: var(--white);
  color: var(--forest);
}

body.site-lander--home .home-flow__btn--primary:hover,
body.site-lander--home .home-flow__btn--primary:focus-visible {
  background: var(--sand);
}

body.site-lander--home .home-flow__btn--ghost {
  border-color: rgba(250, 248, 245, 0.45);
  background: transparent;
  color: var(--white);
}

body.site-lander--home .home-flow__btn--ghost:hover,
body.site-lander--home .home-flow__btn--ghost:focus-visible {
  background: rgba(250, 248, 245, 0.12);
}

@media (max-width: 719px) {
  body.site-lander--home .home-flow__title {
    max-width: none;
  }
}

/* Home index: FAQ (semantic article/section for search and assistive tech) */
body.site-lander--home .home-faq {
  margin: 0;
  border-top: 1px solid rgba(28, 25, 23, 0.08);
  background: #f4f6f4;
}

body.site-lander--home .home-faq__inner {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: clamp(2.5rem, 6vw, 4rem) var(--site-gutter-x, clamp(1.25rem, 4vw, 2.5rem))
    clamp(2.5rem, 6vw, 4rem) var(--home-copy-inset-left);
  box-sizing: border-box;
}

body.site-lander--home .home-faq__inner--list {
  max-width: min(48rem, calc(100% - var(--home-copy-inset-left) - var(--site-gutter-x, clamp(1.25rem, 4vw, 2.5rem))));
  padding-top: 0;
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

body.site-lander--home .home-faq__title {
  margin: 0 0 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 3.2vw + 0.5rem, 2.35rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}

body.site-lander--home .home-faq__deck {
  margin: 0;
  max-width: 40ch;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--paper-muted);
}

body.site-lander--home .home-faq__list {
  margin: 0;
  padding: 0;
}

body.site-lander--home .home-faq__card {
  margin: 0 0 clamp(1.5rem, 3vw, 2rem);
  padding: 0 0 clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(42, 69, 57, 0.12);
}

body.site-lander--home .home-faq__card:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

body.site-lander--home .home-faq__q {
  margin: 0 0 0.65rem;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--charcoal);
}

body.site-lander--home .home-faq__a {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--paper-muted);
}

body.site-lander--home .home-faq__a .feat-learn,
body.site-lander--home .home-flow__body .feat-learn,
body.site-lander--home .home-solution-card__p .feat-learn,
body.site-lander--home .home-steps__p .feat-learn {
  display: inline;
  padding: 0 0 0.1em;
  font-size: inherit;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: inherit;
  vertical-align: baseline;
  border-bottom-width: 1px;
}

