:root {
  --ink: #081827;
  --ink-soft: #294154;
  --muted: #5a6d7c;
  --paper: #ffffff;
  --sky: #eef8f6;
  --mist: #f6fbfa;
  --line: #d8e6e4;
  --teal: #0f4c55;
  --teal-deep: #07303b;
  --blue: #256c96;
  --amber: #f4b63f;
  --amber-deep: #cc8614;
  --forest: #2f644f;
  --shadow: 0 18px 48px rgba(8, 24, 39, 0.14);
  --shadow-soft: 0 12px 32px rgba(8, 24, 39, 0.08);
  --radius: 8px;
  --radius-sm: 6px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

svg {
  width: 1.15em;
  height: 1.15em;
}

svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  z-index: 20;
  transform: translateY(-150%);
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--paper);
  padding: 0.65rem 0.85rem;
  text-decoration: none;
}

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

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0.65rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 230, 228, 0.75);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.75rem);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.site-nav a:not(.nav-cta) {
  position: relative;
  padding: 0.45rem 0;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 0.2rem;
  left: 0;
  height: 2px;
  background: var(--amber);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius-sm);
  background: var(--teal-deep);
  color: var(--paper);
  padding: 0.75rem 1rem;
  box-shadow: 0 12px 28px rgba(7, 48, 59, 0.2);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--teal);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(720px, calc(100svh - 126px));
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.83) 35%, rgba(255, 255, 255, 0.15) 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.02) 45%, rgba(8, 24, 39, 0.06) 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(920px, 100%);
  padding: clamp(3.5rem, 9vw, 7rem) clamp(1.25rem, 8vw, 7.5rem);
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.2rem, 6.2vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.page-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero p,
.page-hero p {
  margin: 1.15rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.22rem, 2.2vw, 1.62rem);
  line-height: 1.35;
}

.hero-actions,
.toolkit-actions,
.checkout-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.65rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--amber);
  color: #201304;
  box-shadow: 0 14px 26px rgba(204, 134, 20, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffc655;
}

.button-secondary {
  border-color: rgba(8, 24, 39, 0.26);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--teal);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.button-light {
  background: var(--paper);
  color: var(--teal-deep);
  box-shadow: 0 16px 34px rgba(3, 28, 35, 0.18);
}

.button-disabled,
.button-disabled:hover {
  cursor: not-allowed;
  transform: none;
  background: #d4dcdf;
  color: #667780;
  box-shadow: none;
}

.section {
  width: min(var(--max), calc(100% - clamp(2rem, 7vw, 6rem)));
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.section-tight {
  padding-top: clamp(2.8rem, 5vw, 4rem);
  padding-bottom: clamp(3.5rem, 6vw, 5rem);
}

.start-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding-top: clamp(2.8rem, 5vw, 4rem);
  padding-bottom: clamp(2.8rem, 5vw, 4rem);
}

.start-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.15rem, 4.6vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.start-copy p,
.buyer-router > p,
.router-result p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.6;
}

.start-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.45rem;
}

.buyer-router {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  padding: clamp(1rem, 3vw, 1.4rem);
  box-shadow: var(--shadow-soft);
}

.buyer-router h3,
.router-result h4 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.1;
}

.router-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.router-option {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink-soft);
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.router-option:hover,
.router-option:focus-visible {
  border-color: var(--teal);
  transform: translateY(-1px);
}

.router-option.is-selected {
  border-color: var(--teal-deep);
  background: var(--teal-deep);
  color: var(--paper);
}

.router-result {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
  border-left: 3px solid var(--amber);
  padding: 0.1rem 0 0.1rem 1rem;
}

.router-result a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.45rem;
  color: var(--teal-deep);
  font-weight: 900;
  text-decoration: none;
}

.router-result a:hover,
.router-result a:focus-visible {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 0.24rem;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto clamp(1.65rem, 4vw, 2.5rem);
  text-align: center;
}

.section-heading.align-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.toolkit-copy h2,
.scenic-band h2,
.folder-row h2,
.offer-summary h2,
.included-list h2,
.checkout-hold h2,
.cta-strip h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4.2vw, 3.55rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p,
.toolkit-copy p,
.scenic-band p,
.offer-summary p,
.checkout-hold p,
.cta-strip p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.resource-preview {
  position: relative;
}

.resource-preview::before {
  position: absolute;
  top: clamp(14.5rem, 17vw, 16.5rem);
  right: 1rem;
  left: 64%;
  height: 42px;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='560' height='52' viewBox='0 0 560 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 23c68 38 127-26 196 7 81 39 143-36 217-1 63 30 102 13 139-20' fill='none' stroke='%2397aab1' stroke-width='2' stroke-dasharray='8 9' stroke-linecap='round'/%3E%3Cpath d='m543 5 13 4-9 10' fill='none' stroke='%2397aab1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  opacity: 0.58;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.resource-card {
  display: flex;
  min-height: 218px;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 1.15rem;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.resource-card:hover,
.resource-card:focus-visible {
  border-color: rgba(15, 76, 85, 0.55);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.icon-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--teal);
}

.resource-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
}

.resource-card span:last-child {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  border-top: 1px solid var(--line);
}

.benefit-list {
  display: grid;
  gap: 1rem;
}

.benefit-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1rem;
  border-bottom: 1px solid var(--line);
  padding: 0 0 1rem;
}

.benefit-list span {
  grid-row: span 2;
  color: var(--amber-deep);
  font-size: 0.86rem;
  font-weight: 900;
}

.benefit-list h3 {
  margin: 0;
  font-size: 1.18rem;
}

.benefit-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.toolkit-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  width: min(1320px, calc(100% - clamp(2rem, 5vw, 4rem)));
  border-radius: var(--radius);
  background: linear-gradient(135deg, #e9f5f3 0%, #f7fbfb 62%, #fff5df 100%);
  padding: clamp(1rem, 3vw, 1.5rem);
}

.toolkit-media img,
.paid-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.toolkit-copy {
  padding: clamp(1rem, 3vw, 2rem);
}

.price-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.3rem 0 0;
}

.price-stack div {
  border-left: 3px solid var(--amber);
  padding-left: 0.9rem;
}

.price-stack dt {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-stack dd {
  margin: 0.22rem 0 0;
  color: var(--teal-deep);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.toolkit-actions p,
.checkout-actions p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.scenic-band,
.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(1320px, calc(100% - clamp(2rem, 5vw, 4rem)));
  border-radius: var(--radius);
  background: var(--teal-deep);
  color: var(--paper);
  padding: clamp(2rem, 5vw, 4rem);
}

.scenic-band {
  background:
    linear-gradient(90deg, rgba(7, 48, 59, 0.94), rgba(7, 48, 59, 0.78)),
    url("assets/hero-trailer-campsite.jpg") center / cover;
}

.scenic-band h2,
.scenic-band p,
.cta-strip h2,
.cta-strip p {
  color: var(--paper);
}

.scenic-band p,
.cta-strip p {
  max-width: 670px;
  opacity: 0.86;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(220px, 0.8fr) minmax(260px, 1fr);
  gap: 2rem;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 6vw, 4rem);
  background: #061f2a;
  color: rgba(255, 255, 255, 0.82);
}

.footer-logo {
  color: var(--paper);
}

.footer-brand p,
.footer-note {
  max-width: 380px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.site-footer nav {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.footer-note {
  margin: 0;
  font-size: 0.94rem;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  width: min(var(--max), calc(100% - clamp(2rem, 7vw, 6rem)));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(2.4rem, 5vw, 4rem);
}

.compact-hero {
  min-height: 42svh;
}

.paid-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  align-items: center;
  min-height: min(700px, calc(100svh - 116px));
}

.paid-hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 6.4vw, 5.5rem);
}

.paid-hero-copy {
  max-width: 720px;
}

.status-note {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.4;
}

.folder-list {
  display: grid;
  gap: 0;
  padding-top: 0;
}

.folder-note {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  margin-bottom: 1.25rem;
  padding: 1rem 1.1rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.folder-note strong {
  flex: 0 0 auto;
  color: var(--teal-deep);
}

.folder-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 1.55rem 0;
}

.folder-row:last-child {
  border-bottom: 1px solid var(--line);
}

.folder-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--teal);
  font-weight: 900;
}

.folder-row h2 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.folder-row p {
  max-width: 760px;
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.folder-row a,
.folder-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  color: var(--teal-deep);
  font-weight: 800;
  text-decoration: none;
}

.folder-status {
  background: var(--sky);
  color: var(--teal);
}

.folder-row a:hover,
.folder-row a:focus-visible {
  border-color: var(--teal);
  background: var(--sky);
}

.cta-strip {
  background: linear-gradient(135deg, var(--forest), var(--teal-deep));
}

.offer-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  border-top: 1px solid var(--line);
}

.large-price dd {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.included-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.included-list h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
}

.included-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.included-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.included-list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

.checkout-hold {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  border-radius: var(--radius);
  background: var(--sky);
  padding: clamp(1.6rem, 4vw, 3rem);
}

.checkout-hold h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
}

:focus-visible {
  outline: 3px solid rgba(244, 182, 63, 0.9);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    padding: 0.7rem;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem;
  }

  .nav-cta {
    margin-top: 0.4rem;
  }

  .hero {
    min-height: min(690px, calc(100svh - 112px));
  }

  .hero-image {
    object-position: 65% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.8) 54%, rgba(255, 255, 255, 0.18) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.02) 48%, rgba(8, 24, 39, 0.08) 100%);
  }

  .resource-preview::before {
    display: none;
  }

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

  .split-section,
  .toolkit-band,
  .start-panel,
  .page-hero,
  .paid-hero,
  .offer-section,
  .checkout-hold {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .paid-hero {
    align-items: start;
  }

  .paid-hero {
    min-height: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding-inline: 0.9rem;
  }

  .brand span {
    max-width: 165px;
    line-height: 1.05;
  }

  .hero {
    min-height: calc(100svh - 108px);
  }

  .hero-content {
    justify-content: flex-start;
    padding: clamp(2.5rem, 9vw, 4rem) 1.05rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.65rem, 15vw, 4rem);
  }

  .hero p,
  .page-hero p {
    font-size: 1.13rem;
  }

  .hero-actions,
  .start-actions,
  .toolkit-actions,
  .checkout-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section,
  .toolkit-band,
  .scenic-band,
  .cta-strip,
  .page-hero {
    width: min(100% - 1.5rem, var(--max));
  }

  .resource-grid,
  .included-list ul,
  .price-stack {
    grid-template-columns: 1fr;
  }

  .folder-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    align-items: start;
  }

  .folder-row a,
  .folder-status {
    width: 100%;
  }

  .folder-note {
    flex-direction: column;
    gap: 0.2rem;
  }

  .scenic-band,
  .cta-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .toolkit-band,
  .checkout-hold,
  .included-list {
    padding: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
