:root {
  --ivory: #fbf7f2;
  --paper: #ffffff;
  --beige: #e7dfd3;
  --sage: #6b7843;
  --sage-dark: #5d693b;
  --ink: #0d182a;
  --rose: #f6d6dc;
  --berry: #c2184b;
  --berry-bright: #e21e5a;
  --berry-dark: #a91542;
  --pistachio: #a7c48a;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(13, 24, 42, 0.08);
  --shadow-small: 0 7px 22px rgba(13, 24, 42, 0.055);
  --radius-lg: 4px;
  --radius-md: 3px;
  --radius-sm: 2px;
  --content: 1220px;
  --font-display: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  --font-ui: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --font-body: Charter, "Iowan Old Style", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--berry);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  padding: 7px 20px;
  color: var(--ivory);
  background: var(--sage-dark);
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.announcement a {
  display: block;
  text-decoration: none;
}

.announcement a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(13, 24, 42, 0.12);
  background: rgba(251, 247, 242, 0.94);
  backdrop-filter: blur(14px);
}

.nav-wrap,
.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.nav-wrap {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: grid;
  justify-items: center;
  text-decoration: none;
}

.brand-name {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2vw, 2.12rem);
  letter-spacing: 0.04em;
  line-height: 0.96;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-name span {
  color: var(--berry-bright);
  font-size: 1.2em;
  font-style: italic;
}

.brand-tagline {
  margin-top: 6px;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:not(.button-link):hover {
  color: var(--berry);
}

.nav-links a[aria-current="page"]:not(.button-link) {
  color: var(--berry-dark);
  text-decoration: underline;
  text-decoration-color: var(--rose);
  text-decoration-thickness: 4px;
  text-underline-offset: 0.42em;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(31, 42, 51, 0.18);
  color: var(--ink);
  background: transparent;
  border-radius: var(--radius-sm);
  font: inherit;
  cursor: pointer;
}

.button,
.button-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  color: var(--white);
  background: var(--berry);
  border-radius: var(--radius-sm);
  box-shadow: none;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover,
.button-link:hover {
  background: var(--berry-dark);
  transform: translateY(-2px);
}

.button.secondary {
  border-color: rgba(31, 42, 51, 0.24);
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.button.secondary:hover {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 24px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.36);
  border-block: 1px solid rgba(13, 24, 42, 0.11);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 68px) clamp(34px, 5vw, 66px) clamp(42px, 5vw, 68px) 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  color: var(--berry);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 3.55rem);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 0 0 26px;
  color: #3c4656;
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
}

.hero h1 {
  max-width: 520px;
  font-size: clamp(3rem, 5vw, 4.55rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.microcopy {
  margin: 14px 0 0;
  color: #596170;
  font-family: var(--font-ui);
  font-size: 0.82rem;
}

.hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.hero-visual::before {
  content: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  max-height: none;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.hero-note {
  position: absolute;
  right: -18px;
  bottom: 30px;
  display: flex;
  width: auto;
  height: auto;
  flex-direction: column;
  padding: 15px 20px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(13, 24, 42, 0.15);
  border-left: 5px solid var(--berry-bright);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-small);
  font-family: var(--font-ui);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-align: left;
  text-transform: uppercase;
}

.hero-note strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.shop-paths {
  padding: 30px 0 34px;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(13, 24, 42, 0.1);
}

.shop-path-grid {
  display: grid;
  grid-template-columns: repeat(4, 132px);
  justify-content: center;
  gap: clamp(30px, 5vw, 72px);
}

.shop-path {
  display: grid;
  gap: 12px;
  justify-items: center;
  font-family: var(--font-ui);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.shop-path-image {
  display: block;
  width: 132px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--beige);
  border: 1px solid rgba(13, 24, 42, 0.12);
  border-radius: 50%;
}

.shop-path-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.shop-path-mark {
  display: grid;
  place-items: center;
  background: var(--rose);
}

.shop-path-mark img {
  width: 58%;
  height: 58%;
  object-fit: contain;
}

.shop-path:hover {
  color: var(--berry-dark);
}

.shop-path:hover img {
  transform: scale(1.035);
}

.trust-strip {
  border-block: 1px solid rgba(31, 42, 51, 0.1);
  background: rgba(255, 255, 255, 0.74);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 22px 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 18px;
  border-right: 1px solid rgba(31, 42, 51, 0.11);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 720;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.trust-list li:last-child {
  border-right: 0;
}

.trust-list span {
  color: var(--berry);
  font-family: var(--font-display);
  font-size: 1rem;
}

.section {
  padding: 76px 0;
}

.section.compact {
  padding-block: 54px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading p {
  margin: 0;
  color: #59636b;
  font-size: 1.05rem;
}

.featured {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(13, 24, 42, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-small);
}

.featured-image {
  width: 100%;
  min-height: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  align-self: center;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.featured-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(34px, 4.5vw, 54px);
}

.pill {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 11px;
  color: var(--sage-dark);
  background: rgba(109, 115, 91, 0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 26px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
}

.feature-list li::before {
  position: absolute;
  top: 0.08em;
  left: 0;
  color: var(--berry);
  content: "✓";
  font-weight: 900;
}

.guide-grid,
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.guide-card,
.step-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(31, 42, 51, 0.09);
  border-radius: var(--radius-md);
  box-shadow: 0 6px 24px rgba(31, 42, 51, 0.05);
}

.guide-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.guide-card:hover {
  box-shadow: var(--shadow-small);
  transform: translateY(-5px);
}

.guide-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.guide-card-content {
  padding: 28px;
}

.guide-card .kicker {
  margin: 0 0 10px;
  color: var(--berry);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide-card p {
  margin: 0 0 18px;
  color: #5e676e;
  font-size: 0.93rem;
}

.text-link {
  color: var(--berry-dark);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: " →";
}

.tinted {
  background: var(--beige);
}

.step-card {
  position: relative;
  padding: 34px;
  box-shadow: none;
}

.step-number {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--white);
  background: var(--berry);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.step-card p {
  margin: 0;
  color: #5d666d;
  font-size: 0.94rem;
}

.faq-list {
  max-width: 860px;
  margin-inline: auto;
}

details {
  border-top: 1px solid rgba(31, 42, 51, 0.16);
}

details:last-child {
  border-bottom: 1px solid rgba(31, 42, 51, 0.16);
}

summary {
  position: relative;
  padding: 24px 48px 24px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

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

summary::after {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 26px;
  height: 26px;
  content: "+";
  color: var(--berry);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "–";
}

details p {
  max-width: 720px;
  margin: -4px 0 24px;
  color: #59636b;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  padding: clamp(38px, 6vw, 72px);
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  max-width: 750px;
  margin-bottom: 14px;
}

.cta-panel p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.cta-panel .button {
  color: var(--ink);
  background: var(--ivory);
  box-shadow: none;
  white-space: nowrap;
}

.cta-panel .button:hover {
  color: var(--white);
  background: var(--berry);
}

.site-footer {
  padding: 54px 0 34px;
  color: #5a646b;
  background: var(--paper);
  border-top: 1px solid rgba(31, 42, 51, 0.09);
  font-size: 0.84rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(2, 0.7fr);
  gap: 36px;
}

.footer-brand img {
  width: 210px;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 440px;
  margin: 0;
}

.footer-column h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a:hover {
  color: var(--berry);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(31, 42, 51, 0.09);
}

.footer-bottom p {
  margin: 0;
}

/* Guides */
.article-hero {
  padding: 82px 0 54px;
}

.article-hero .container {
  max-width: 960px;
}

.article-hero h1 {
  max-width: 940px;
  font-size: clamp(2.9rem, 6vw, 5.6rem);
}

.article-deck {
  max-width: 760px;
  margin: 0;
  color: #59636b;
  font-size: 1.18rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 24px;
  color: #596170;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-image-wrap {
  width: min(calc(100% - 40px), 760px);
  height: clamp(260px, 60vw, 460px);
  margin: 0 auto 70px;
}

.article-image-wrap img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.article-image-wrap.preserve-art {
  background: var(--beige);
  border: 1px solid rgba(13, 24, 42, 0.1);
  box-shadow: var(--shadow-small);
}

.article-image-wrap.preserve-art img {
  object-fit: contain;
  box-shadow: none;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
  gap: 70px;
  max-width: 980px;
  padding-bottom: 100px;
}

.article-body {
  min-width: 0;
}

.article-body h2 {
  margin-top: 58px;
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  margin-top: 36px;
  font-size: 1.5rem;
}

.article-body p,
.article-body li {
  color: #3f4a52;
}

.article-body ul,
.article-body ol {
  padding-left: 1.35em;
}

.article-body li + li {
  margin-top: 9px;
}

.callout {
  margin: 34px 0;
  padding: 28px 30px;
  background: rgba(246, 214, 220, 0.65);
  border-left: 4px solid var(--berry);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.callout strong {
  color: var(--berry-dark);
}

.comparison {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  background: var(--paper);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-small);
  overflow: hidden;
}

.comparison th,
.comparison td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(31, 42, 51, 0.1);
  text-align: left;
  vertical-align: top;
}

.comparison thead th {
  color: var(--white);
  background: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comparison tbody th {
  color: var(--ink);
  background: transparent;
  font-size: inherit;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.comparison tr:last-child > * {
  border-bottom: 0;
}

.article-aside {
  position: sticky;
  top: 118px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid rgba(31, 42, 51, 0.09);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-small);
}

.article-aside img {
  margin-bottom: 20px;
  border-radius: 12px;
}

.article-aside h2 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.article-aside p {
  margin: 0 0 20px;
  color: #5d666d;
  font-size: 0.9rem;
}

.article-aside .button {
  width: 100%;
}

.article-aside img + .image-caption {
  margin: -20px 0 20px;
  font-size: 0.62rem;
}

.legal-page {
  max-width: 820px;
  padding-block: 88px 110px;
}

.legal-page h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.legal-page h2 {
  margin-top: 42px;
  font-size: 2rem;
}

.legal-page p,
.legal-page li {
  color: #465159;
}

@media (max-width: 960px) {
  .hero-grid,
  .featured,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 0;
  }

  .hero-copy {
    max-width: 760px;
    padding: 48px 36px;
  }

  .hero-visual {
    width: 100%;
    margin-inline: 0;
  }

  .hero-visual img {
    height: clamp(260px, 52vw, 420px);
    max-height: none;
  }

  .featured-image {
    min-height: 0;
  }

  .article-aside {
    position: static;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
  }

  .article-aside img {
    margin: 0;
  }

  .article-aside .button {
    width: fit-content;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    min-height: 68px;
  }

  .brand img {
    width: 190px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    padding: 20px;
    background: var(--paper);
    border: 1px solid rgba(31, 42, 51, 0.1);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links .button-link {
    margin-top: 4px;
  }

  .article-hero {
    padding-top: 58px;
  }

  .hero {
    padding-top: 16px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-note {
    right: -4px;
    bottom: 18px;
    width: 108px;
    height: 108px;
    font-size: 0.9rem;
  }

  .trust-list,
  .guide-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .trust-list {
    padding-block: 14px;
  }

  .trust-list li {
    justify-content: flex-start;
    padding: 8px 0;
    border-right: 0;
  }

  .section {
    padding-block: 58px;
  }

  .featured-image {
    min-height: 0;
  }

  .featured-image img {
    aspect-ratio: 4 / 3;
  }

  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel .button {
    width: fit-content;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-image-wrap {
    margin-bottom: 48px;
  }

  .article-layout {
    gap: 48px;
  }

  .article-aside {
    grid-template-columns: 1fr;
  }

  .article-aside img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
  }

  .comparison {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 480px) {
  .nav-wrap,
  .container,
  .article-image-wrap {
    width: min(calc(100% - 28px), var(--content));
  }

  .announcement {
    font-size: 0.67rem;
  }

  .brand img {
    width: 166px;
  }

  h1 {
    font-size: 2.78rem;
  }

  .actions .button {
    width: 100%;
  }

  .hero-visual img {
    height: clamp(240px, 70vw, 320px);
    max-height: none;
  }

  .featured-copy,
  .guide-card-content,
  .step-card {
    padding: 26px;
  }

  .cta-panel {
    padding: 32px 26px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Direction 04 editorial system */
.section-heading.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  align-items: end;
  gap: clamp(32px, 7vw, 94px);
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  padding-bottom: 8px;
}

.featured-image {
  position: relative;
  display: block;
  text-decoration: none;
}

.image-caption {
  display: block;
  margin: 0;
  padding: 11px 14px;
  color: #414b5a;
  background: rgba(251, 247, 242, 0.96);
  border-top: 1px solid rgba(13, 24, 42, 0.1);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.45;
  text-transform: uppercase;
}

.featured-image .image-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  border: 1px solid rgba(13, 24, 42, 0.12);
  border-left: 4px solid var(--berry);
}

.featured-copy > p,
.story-copy p {
  color: #3f4958;
}

.featured-copy .actions {
  align-items: center;
  gap: 18px;
}

.featured-copy .microcopy {
  margin-top: 22px;
}

.story-band {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--sage-dark);
}

.story-band::after {
  position: absolute;
  right: -90px;
  bottom: -145px;
  width: 350px;
  height: 350px;
  content: "&";
  color: rgba(255, 255, 255, 0.075);
  font-family: var(--font-display);
  font-size: 25rem;
  font-style: italic;
  line-height: 1;
}

.story-band > .container {
  position: relative;
  z-index: 1;
}

.story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(42px, 8vw, 110px);
}

.story-band .eyebrow,
.cta-panel .eyebrow {
  color: var(--ivory);
}

.story-band h2 {
  max-width: 640px;
  margin-bottom: 0;
}

.story-copy {
  align-self: center;
  padding-top: 10px;
}

.story-copy p {
  color: var(--ivory);
}

.story-copy .text-link {
  color: var(--paper);
}

.story-band .text-link {
  color: var(--paper);
}

.story-band a:focus-visible,
.cta-panel a:focus-visible {
  outline-color: var(--ivory);
}

.section-link {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.tinted {
  background-color: var(--beige);
  background-image:
    linear-gradient(45deg, rgba(107, 120, 67, 0.06) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(107, 120, 67, 0.06) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(107, 120, 67, 0.06) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(107, 120, 67, 0.06) 75%);
  background-position: 0 0, 0 12px, 12px -12px, -12px 0;
  background-size: 24px 24px;
}

.guide-card,
.step-card {
  border-color: rgba(13, 24, 42, 0.12);
}

.guide-card h3 {
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
}

.guide-card a:first-child {
  display: block;
  overflow: hidden;
}

.guide-card img {
  transition: transform 300ms ease;
}

.guide-card:hover img {
  transform: scale(1.018);
}

.step-number {
  background: var(--sage-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--ink);
  border-radius: var(--radius-lg);
}

.cta-panel::after {
  position: absolute;
  right: -60px;
  bottom: -115px;
  width: 260px;
  height: 260px;
  content: "";
  border: 1px solid rgba(246, 214, 220, 0.23);
  border-radius: 50%;
  box-shadow: 0 0 0 26px rgba(246, 214, 220, 0.05), 0 0 0 52px rgba(246, 214, 220, 0.04);
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel .eyebrow {
  margin-bottom: 14px;
}

.cta-panel .button.secondary.on-dark {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--paper);
  background: transparent;
}

.cta-panel .button.secondary.on-dark:hover {
  border-color: var(--paper);
  color: var(--ink);
  background: var(--paper);
}

.site-footer {
  color: #596170;
  background: var(--paper);
  border-top-color: rgba(13, 24, 42, 0.12);
}

.footer-brand .brand {
  width: fit-content;
  justify-items: start;
  margin-bottom: 24px;
}

.footer-brand .brand-name {
  font-size: 1.85rem;
}

.footer-brand .brand-tagline {
  font-size: 0.43rem;
}

.footer-brand p {
  max-width: 420px;
}

/* Page and product layouts */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 26px;
  padding: 0;
  color: #626b78;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.breadcrumb li + li::before {
  margin-right: 8px;
  color: var(--berry);
  content: "/";
}

.page-hero {
  padding: clamp(56px, 7vw, 88px) 0 56px;
  text-align: center;
}

.page-hero .eyebrow {
  justify-content: center;
}

.page-hero h1 {
  max-width: 920px;
  margin-inline: auto;
}

.page-deck {
  max-width: 720px;
  margin: 0 auto;
  color: #46505f;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.product-hero {
  padding: clamp(48px, 6vw, 76px) 0;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
  align-items: center;
  gap: clamp(42px, 7vw, 94px);
}

.product-hero-media {
  position: relative;
  padding: 18px;
  background: var(--paper);
  border: 1px solid rgba(13, 24, 42, 0.12);
  box-shadow: var(--shadow);
}

.product-hero-media::after {
  position: absolute;
  right: -16px;
  bottom: -16px;
  z-index: -1;
  width: 54%;
  height: 54%;
  content: "";
  background: var(--rose);
  border: 1px solid rgba(13, 24, 42, 0.1);
}

.product-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-hero-copy h1 {
  font-size: clamp(3.2rem, 5.8vw, 5.7rem);
}

.product-hero-copy .page-deck {
  margin: 0 0 30px;
}

.product-hero-copy .microcopy {
  margin-top: 18px;
}

.product-included {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(42px, 8vw, 110px);
}

.product-included-copy {
  align-self: center;
}

.included-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.included-list li {
  position: relative;
  padding: 18px 18px 18px 46px;
  background: var(--paper);
  border: 1px solid rgba(13, 24, 42, 0.12);
}

.included-list li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--berry);
  content: "✓";
  font-family: var(--font-ui);
  font-weight: 800;
}

.product-secondary-image {
  margin: 0;
  padding: 14px;
  background: var(--paper);
  border: 1px solid rgba(13, 24, 42, 0.12);
}

.product-secondary-image img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-secondary-image .image-caption {
  margin-top: 0;
}

.product-explainer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 8vw, 110px);
}

.product-explainer img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow-small);
}

.play-steps,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.play-steps,
.step-grid {
  margin-block: 0;
  padding: 0;
  list-style: none;
}

.play-step,
.value-card {
  padding: clamp(28px, 4vw, 42px);
  background: var(--paper);
  border: 1px solid rgba(13, 24, 42, 0.12);
}

.play-step span {
  display: block;
  margin-bottom: 22px;
  color: var(--berry);
  font-family: var(--font-display);
  font-size: 2.1rem;
}

.play-step h3,
.value-card h3 {
  font-size: 1.55rem;
}

.play-step p,
.value-card p {
  margin-bottom: 0;
  color: #4d5664;
}

.guide-index {
  padding-bottom: 104px;
}

.guide-index .guide-grid {
  align-items: stretch;
}

.guide-index .guide-card {
  display: flex;
  flex-direction: column;
}

.guide-index .guide-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.guide-index .guide-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.25vw, 2rem);
  line-height: 1.12;
}

.guide-index .guide-card-content .text-link {
  margin-top: auto;
}

.journal-note {
  max-width: 760px;
  margin: 44px auto 0;
  padding: 30px;
  color: #45505f;
  background: var(--rose);
  border-left: 4px solid var(--berry);
  text-align: center;
}

.about-opening {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: clamp(42px, 8vw, 110px);
}

.about-figure {
  margin: 0;
  padding: 12px;
  background: var(--paper);
  border: 1px solid rgba(13, 24, 42, 0.12);
  box-shadow: var(--shadow-small);
}

.about-opening img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-copy p {
  color: #424c5b;
  font-size: 1.08rem;
}

.about-copy h2:not(:first-child) {
  margin-top: 46px;
}

.brand-seal {
  display: grid;
  max-width: 880px;
  margin: 0 auto;
  place-items: center;
  padding: clamp(52px, 8vw, 86px);
  background: var(--paper);
  border: 1px solid rgba(13, 24, 42, 0.14);
  text-align: center;
}

.brand-seal .brand-name {
  font-size: clamp(2.7rem, 6vw, 5.2rem);
}

.brand-seal .brand-tagline {
  margin-top: 20px;
  font-size: 0.62rem;
}

.legacy-page {
  display: grid;
  min-height: 70vh;
  align-content: center;
}

.legacy-page p {
  max-width: 650px;
}

@media (max-width: 960px) {
  .section-heading.split-heading,
  .story-grid,
  .product-hero-grid,
  .product-included,
  .product-explainer,
  .about-opening {
    grid-template-columns: 1fr;
  }

  .product-hero-copy {
    max-width: 760px;
  }

  .product-hero-media {
    width: min(100%, 700px);
    margin-inline: auto;
  }

  .product-secondary-image img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    max-height: calc(100vh - 92px);
    max-height: calc(100dvh - 92px);
    gap: 18px;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 20px;
    background: var(--paper);
    border: 1px solid rgba(13, 24, 42, 0.12);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links .button-link {
    margin-top: 4px;
  }
}

@media (max-width: 760px) {
  .brand-tagline {
    display: none;
  }

  .brand-seal .brand-tagline {
    display: block;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .shop-paths {
    padding: 24px 0 28px;
  }

  .shop-path-grid {
    grid-template-columns: repeat(4, minmax(72px, 96px));
    gap: clamp(10px, 3vw, 24px);
  }

  .shop-path-image {
    width: clamp(72px, 17vw, 96px);
  }

  .shop-path {
    gap: 9px;
    font-size: 0.6rem;
  }

  .nav-links {
    border-radius: var(--radius-md);
  }

  .hero-note {
    right: -4px;
    bottom: 18px;
    width: auto;
    height: auto;
    font-size: 0.58rem;
  }

  .play-steps,
  .value-grid {
    grid-template-columns: 1fr;
  }
}

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

@media (max-width: 560px) {
  .brand-name {
    font-size: 1.45rem;
    letter-spacing: 0.025em;
  }

  .brand-seal {
    padding: 42px 26px;
  }

  .brand-seal .brand-name {
    font-size: 1.55rem;
  }

  .brand-seal .brand-tagline {
    max-width: 220px;
    font-size: 0.5rem;
    line-height: 1.7;
  }

  .included-list {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .product-hero-media {
    padding: 9px;
  }

  .product-hero-media::after {
    right: -8px;
    bottom: -8px;
  }

  .page-hero {
    text-align: left;
  }

  .page-hero .eyebrow {
    justify-content: flex-start;
  }

  .page-hero h1,
  .page-deck {
    margin-inline: 0;
  }
}

@media (max-width: 380px) {
  .shop-path-grid {
    grid-template-columns: repeat(2, 104px);
    gap: 24px 34px;
  }

  .shop-path-image {
    width: 88px;
  }

  .shop-path {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }
}
