/* Editorial Riviera — Sora Ledger Counsel */
:root {
  --teal: #5b9a8b;
  --teal-deep: #3d6f64;
  --sand: #e8d5c4;
  --sand-deep: #c4a882;
  --coral: #c47b6a;
  --navy: #1b2a4a;
  --navy-soft: #2a3d63;
  --chalk: #f7f4ef;
  --ivory: #f3efe6;
  --ink: #1a1f2e;
  --muted: #5c6578;
  --rule: rgba(27, 42, 74, 0.18);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --space: clamp(1rem, 2vw, 1.5rem);
  --wide: 72rem;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 10% 0%, rgba(91, 154, 139, 0.12), transparent 45%),
    radial-gradient(ellipse at 90% 10%, rgba(196, 123, 106, 0.08), transparent 40%),
    linear-gradient(180deg, var(--chalk) 0%, #efe8dc 48%, var(--chalk) 100%);
  min-height: 100vh;
}

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

a {
  color: var(--teal-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--coral);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: 0.01em;
}

p {
  margin: 0 0 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 244, 239, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: padding 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.site-header.is-condensed {
  background: rgba(247, 244, 239, 0.92);
  border-bottom-color: var(--rule);
}

.site-header.is-condensed .site-header__inner {
  padding-block: 0.55rem;
}

.site-header__inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: padding 0.35s var(--ease);
}

.site-header__brand {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-header__toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--navy);
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.site-header__toggle span:not(.visually-hidden) {
  display: block;
  width: 1rem;
  height: 1px;
  background: var(--navy);
}

.site-header__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1.35rem);
}

.site-header__list a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.site-header__list a:hover {
  color: var(--teal-deep);
}

.site-header__cta {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--chalk) !important;
  font-size: 0.85rem !important;
}

.site-header__cta:hover {
  background: transparent;
  color: var(--navy) !important;
}

@media (max-width: 960px) {
  .site-header__toggle {
    display: inline-flex;
  }

  .site-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--rule);
    padding: 1rem;
    display: none;
  }

  .site-header__nav.is-open {
    display: block;
  }

  .site-header__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn--ink {
  background: var(--navy);
  color: var(--chalk);
  border-color: var(--navy);
}

.btn--ink:hover {
  background: transparent;
  color: var(--navy);
}

.btn--sand {
  background: transparent;
  color: var(--navy);
  border-color: var(--sand-deep);
}

.btn--sand:hover,
.btn--outline:hover {
  background: var(--navy);
  color: var(--chalk);
  border-color: var(--navy);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Layout helpers */
.wrap {
  max-width: var(--wide);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2rem);
}

.wrap--narrow {
  max-width: 46rem;
}

.section-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 38rem;
}

/* Cards — tactile printed panels */
.panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent 40%),
    var(--ivory);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--navy);
  border-radius: 0 0 12px 0;
  padding: 1.5rem;
  box-shadow: 0 1px 0 rgba(27, 42, 74, 0.04);
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  border-radius: inherit;
}

.panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(27, 42, 74, 0.08);
}

.panel__meta {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 0.5rem;
}

.panel h3 {
  margin: 0 0 0.65rem;
  font-size: 1.55rem;
}

.panel p:last-child {
  margin-bottom: 0;
}

.panel__img {
  margin: -1.5rem -1.5rem 1.15rem;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}

.panel__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.panel:hover .panel__img img {
  transform: scale(1.04);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 860px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Hero variants */
.hero-editorial {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: min(88vh, 52rem);
  gap: 0;
}

.hero-editorial__media {
  position: relative;
  overflow: hidden;
  min-height: 22rem;
}

.hero-editorial__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  will-change: transform;
}

.hero-editorial__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4.5rem);
  background:
    linear-gradient(160deg, rgba(91, 154, 139, 0.1), transparent 50%),
    linear-gradient(to bottom, var(--chalk), var(--sand));
  border-left: 1px solid var(--rule);
}

.hero-editorial__body h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  margin: 0 0 1rem;
  max-width: 12ch;
}

.hero-editorial__body .lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 0;
}

.hero-editorial__rule {
  width: 3.5rem;
  height: 2px;
  background: var(--coral);
  margin: 1.25rem 0;
  border: 0;
}

@media (max-width: 900px) {
  .hero-editorial {
    grid-template-columns: 1fr;
  }

  .hero-editorial__body {
    border-left: 0;
    border-top: 1px solid var(--rule);
  }

  .hero-editorial__media {
    min-height: 16rem;
  }
}

.page-hero {
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1rem, 4vw, 2rem) 2rem;
  max-width: var(--wide);
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 0 0 1rem;
  max-width: 16ch;
}

.page-hero--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
}

@media (max-width: 800px) {
  .page-hero--split {
    grid-template-columns: 1fr;
  }
}

.bleed-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-soft) 55%, var(--teal-deep) 100%);
  color: var(--chalk);
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 2rem);
}

.bleed-band h2,
.bleed-band p {
  color: var(--chalk);
}

.bleed-band__inner {
  max-width: var(--wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 800px) {
  .bleed-band__inner {
    grid-template-columns: 1fr;
  }
}

.offset-block {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: 2rem;
  max-width: var(--wide);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem);
}

.offset-block__aside {
  padding-top: 0.5rem;
}

@media (max-width: 800px) {
  .offset-block {
    grid-template-columns: 1fr;
  }
}

.figure-led {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  max-width: var(--wide);
  margin: 0 auto clamp(2rem, 5vw, 3.5rem);
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.figure-led__img {
  min-height: 20rem;
  overflow: hidden;
}

.figure-led__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.figure-led__text {
  background: var(--ivory);
  border: 1px solid var(--rule);
  border-left: 0;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 800px) {
  .figure-led {
    grid-template-columns: 1fr;
  }

  .figure-led__text {
    border-left: 1px solid var(--rule);
    border-top: 0;
  }
}

/* Reveal motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 0.05s; }
[data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 0.15s; }
[data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 0.25s; }
[data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 0.35s; }
[data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: 0.45s; }
[data-reveal-stagger].is-visible > * {
  opacity: 1;
  transform: none;
}

/* Reviews */
.quote-card {
  background: var(--ivory);
  border-left: 3px solid var(--teal);
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
}

.quote-card blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--navy);
}

.quote-card cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Forms */
.form {
  display: grid;
  gap: 1.1rem;
}

.form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--rule);
  background: #fffefb;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
}

.form textarea {
  min-height: 9rem;
  resize: vertical;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
}

.field-error {
  color: var(--coral);
  font-size: 0.85rem;
  margin-top: 0.3rem;
  display: none;
}

.field-error.is-visible {
  display: block;
}

.form-status {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.form-status.is-success {
  background: rgba(91, 154, 139, 0.15);
  color: var(--teal-deep);
  border: 1px solid var(--teal);
}

.form-status.is-error {
  background: rgba(196, 123, 106, 0.15);
  color: #8a3f32;
  border: 1px solid var(--coral);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 2.5rem;
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem) clamp(3rem, 6vw, 5rem);
}

@media (max-width: 860px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-aside {
  background: var(--navy);
  color: var(--chalk);
  padding: 2rem;
  border-radius: 0 12px 0 0;
}

.contact-aside h2,
.contact-aside p,
.contact-aside a {
  color: var(--chalk);
}

.contact-aside address {
  font-style: normal;
  line-height: 1.7;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: var(--sand);
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2rem) 2rem;
  margin-top: 3rem;
}

.site-footer a {
  color: var(--sand);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--chalk);
}

.site-footer__ornament {
  text-align: center;
  color: var(--coral);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.site-footer__grid {
  max-width: var(--wide);
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 860px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

.site-footer__wordmark {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--chalk);
  margin: 0 0 0.75rem;
}

.site-footer__tagline {
  color: rgba(232, 213, 196, 0.8);
  font-size: 0.95rem;
}

.site-footer__address {
  font-style: normal;
  margin-top: 1.25rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.site-footer__heading {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 1rem;
  font-weight: 600;
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links li {
  margin-bottom: 0.5rem;
}

.site-footer__newsletter {
  max-width: var(--wide);
  margin: 0 auto 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(232, 213, 196, 0.2);
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
  max-width: 28rem;
}

.newsletter-form input {
  flex: 1 1 12rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(232, 213, 196, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: var(--chalk);
  font-family: var(--font-body);
}

.newsletter-form input::placeholder {
  color: rgba(232, 213, 196, 0.55);
}

.site-footer__copy {
  max-width: var(--wide);
  margin: 0 auto;
  font-size: 0.8rem;
  color: rgba(232, 213, 196, 0.55);
  border-top: 1px solid rgba(232, 213, 196, 0.15);
  padding-top: 1.25rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--ivory);
  border-top: 2px solid var(--navy);
  box-shadow: 0 -8px 32px rgba(27, 42, 74, 0.12);
  padding: 1.25rem clamp(1rem, 4vw, 2rem);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner__inner {
  max-width: var(--wide);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__title {
  font-size: 1.25rem;
  margin: 0 0 0.35rem;
}

.cookie-banner__copy {
  flex: 1 1 18rem;
  max-width: 40rem;
}

.cookie-banner__copy p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.65rem;
}

/* Tables */
.cookies-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin: 1.5rem 0;
}

.cookies-table th,
.cookies-table td {
  border: 1px solid var(--rule);
  padding: 0.75rem;
  text-align: left;
  vertical-align: top;
}

.cookies-table th {
  background: var(--ivory);
  color: var(--navy);
  font-weight: 600;
}

/* Pricing */
.fee-row {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--rule);
}

.fee-row:first-of-type {
  border-top: 1px solid var(--rule);
}

.fee-row strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.fee-amount {
  text-align: right;
  font-weight: 600;
  color: var(--teal-deep);
}

@media (max-width: 600px) {
  .fee-row {
    grid-template-columns: 1fr;
  }

  .fee-amount {
    text-align: left;
  }
}

/* Process steps */
.process-list {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-list li {
  counter-increment: step;
  position: relative;
  padding: 0 0 2rem 3.5rem;
  border-left: 1px solid var(--rule);
  margin-left: 0.75rem;
}

.process-list li:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.process-list li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: -1.1rem;
  top: 0;
  width: 2.2rem;
  height: 2.2rem;
  background: var(--navy);
  color: var(--chalk);
  font-family: var(--font-display);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-list h3 {
  margin: 0.15rem 0 0.5rem;
  font-size: 1.45rem;
}

/* Prose */
.prose {
  max-width: 42rem;
}

.prose h2 {
  margin: 2.25rem 0 0.85rem;
  font-size: 1.85rem;
}

.prose h3 {
  margin: 1.75rem 0 0.65rem;
  font-size: 1.35rem;
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 0.4rem;
}

.article-meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.article-cover {
  margin: 0 0 2rem;
  aspect-ratio: 21 / 9;
  overflow: hidden;
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: var(--wide);
  margin: 0 auto 2rem;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.service-detail-hero__img {
  min-height: 18rem;
  overflow: hidden;
}

.service-detail-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-hero__body {
  background: linear-gradient(160deg, var(--sand), var(--ivory));
  padding: clamp(1.5rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--rule);
  border-left: 0;
}

@media (max-width: 800px) {
  .service-detail-hero {
    grid-template-columns: 1fr;
  }

  .service-detail-hero__body {
    border-left: 1px solid var(--rule);
  }
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

@media (max-width: 640px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
}

.detail-item {
  padding: 1.15rem;
  background: var(--ivory);
  border-top: 2px solid var(--teal);
}

.detail-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
}

.detail-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.story-block {
  background: var(--ivory);
  border: 1px solid var(--rule);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
}

.story-block h3 {
  margin-top: 0;
}

.cta-strip {
  text-align: center;
  padding: clamp(2.5rem, 5vw, 3.5rem) 1rem;
  background:
    linear-gradient(180deg, rgba(91, 154, 139, 0.12), transparent),
    var(--sand);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.cta-strip h2 {
  margin: 0 0 0.65rem;
}

.error-page {
  text-align: center;
  padding: clamp(5rem, 15vw, 9rem) 1.5rem;
}

.error-page h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  margin-bottom: 0.5rem;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
  font-size: 0.9rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  [data-reveal],
  [data-reveal-stagger] > * {
    opacity: 1;
    transform: none;
  }
}
