:root {
  --bg-deep: #14241f;
  --bg-mid: #1c322c;
  --bg-teal: #243f38;
  --sage: #c9d6cf;
  --sage-soft: #e4ebe6;
  --cream: #f3eee4;
  --ink: #15231f;
  --muted: rgba(243, 238, 228, 0.72);
  --muted-dark: rgba(21, 35, 31, 0.68);
  --glass: rgba(255, 255, 255, 0.1);
  --glass-strong: rgba(255, 255, 255, 0.16);
  --glass-light: rgba(255, 255, 255, 0.55);
  --line: rgba(255, 255, 255, 0.18);
  --line-dark: rgba(21, 35, 31, 0.12);
  --accent: #8fafa3;
  --radius: 1.35rem;
  --radius-lg: 1.85rem;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Manrope", system-ui, sans-serif;
  --shadow-soft: 0 18px 50px rgba(8, 18, 14, 0.28);
  --max: 52rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--cream);
  background: var(--bg-deep);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  opacity: 0.88;
}

/* —— Ad banner —— */
.ad-banner {
  width: min(100% - 2rem, var(--max));
  margin: 0.65rem auto 0;
  font-size: 0.8rem;
  color: rgba(243, 238, 228, 0.82);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.ad-banner-inner {
  padding: 0.75rem 1rem;
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.ad-banner p {
  margin: 0;
  line-height: 1.45;
}

.ad-banner strong {
  color: var(--cream);
  font-weight: 650;
}

.ad-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(243, 238, 228, 0.16), rgba(143, 175, 163, 0.18));
  border: 1px solid rgba(243, 238, 228, 0.28);
  color: var(--cream);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

/* —— Layout —— */
.page-root {
  min-height: 100vh;
  background: var(--bg-deep);
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0.85rem 1rem 0;
}

/* Keep header chrome height consistent on legal pages (no hero under it). */
body:has(.legal-shell) .site-header {
  min-height: 4.35rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(20, 36, 31, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 0.7rem 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(20, 36, 31, 0.55);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
}

.brand-mark {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 0.5rem;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
  background: #1a2f2a;
}

.footer-brand .brand-mark {
  width: 1.7rem;
  height: 1.7rem;
}

.brand-text {
  font-family: var(--font-sans);
}

.nav-pill {
  display: none;
  justify-content: center;
  gap: 1.35rem;
}

.nav-pill a,
.nav-ghost {
  text-decoration: none;
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 500;
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 0.85rem;
}

.nav-cta {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #f5f1e8, #e4ddd0);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.nav-toggle {
  justify-self: end;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--glass);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.28rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1rem;
  height: 1.5px;
  background: var(--cream);
}

.mobile-nav {
  width: min(100% - 2rem, var(--max));
  margin: 0.65rem auto 0;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(20, 36, 31, 0.92);
  border: 1px solid var(--line);
  display: grid;
  gap: 0.75rem;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--cream);
  font-weight: 500;
}

@media (min-width: 920px) {
  .nav-pill,
  .nav-actions {
    display: flex;
  }
  .nav-toggle,
  .mobile-nav {
    display: none !important;
  }
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(92vh, 58rem);
  margin-top: 0.75rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.85) contrast(1.05);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(14, 26, 22, 0.35) 0%, rgba(14, 26, 22, 0.15) 35%, rgba(14, 26, 22, 0.72) 78%, var(--sage) 100%),
    radial-gradient(ellipse at 70% 20%, rgba(143, 175, 163, 0.18), transparent 50%);
}

.hero-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  min-height: min(92vh, 58rem);
  display: grid;
  align-content: space-between;
  padding: 4.5rem 0 5.5rem;
}

.hero-top {
  max-width: 44rem;
  padding-top: 0.5rem;
}

.hero-title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--cream);
  text-shadow:
    0 2px 24px rgba(0, 0, 0, 0.45),
    0 1px 4px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
  margin: 1.5rem 0 0;
  max-width: 34rem;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  line-height: 1.35;
  font-weight: 600;
  color: #fff8ef;
  border-radius: 1rem;
  background: rgba(10, 18, 15, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-shadow:
    0 2px 16px rgba(0, 0, 0, 0.55),
    0 1px 2px rgba(0, 0, 0, 0.45);
}

.hero-title .split {
  display: block;
}

.hero-title .split:first-child {
  margin-left: 0;
  margin-right: auto;
  transform: translateX(clamp(-3.5rem, -9vw, -1.75rem));
}

.hero-title .split-right {
  text-align: right;
  margin-top: 0.15em;
}

.hero-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.hero-lead {
  margin: 0;
  max-width: 32rem;
  font-size: 0.98rem;
  color: var(--muted);
}

.hero-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  width: 100%;
}

.hero-tags span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.65rem 0.75rem;
  border-radius: 0.85rem;
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 600;
}

@media (min-width: 720px) {
  .hero-tags {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* —— Sections —— */
.section {
  position: relative;
  padding: 4.5rem 0;
}

.section-sage {
  background: var(--sage);
  color: var(--ink);
}

.section-teal {
  background:
    radial-gradient(circle at 85% 20%, rgba(180, 210, 198, 0.12), transparent 35%),
    linear-gradient(180deg, #1f3831 0%, #1a2f2a 55%, #152621 100%);
  color: var(--cream);
}

.curve-up {
  border-radius: 0;
  margin-top: 0;
  padding-top: 4.25rem;
}

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.section-head h2,
.legal-page h1,
.cta-final h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  max-width: 38rem;
  color: inherit;
  opacity: 0.78;
}

@media (min-width: 860px) {
  .section-head.split {
    grid-template-columns: 1fr 1.1fr;
    align-items: end;
  }
}

/* —— Buttons —— */
.btn-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  padding: 0.35rem 0.4rem 0.35rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(12, 22, 18, 0.92), rgba(40, 64, 56, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--cream);
  font-weight: 650;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.btn-toggle i {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: #f4f0e7;
  position: relative;
  flex: 0 0 auto;
}

.btn-toggle i::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid #1a2f2a;
  border-top: 2px solid #1a2f2a;
  transform: rotate(45deg);
  translate: -1px 0;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-weight: 700;
}

/* —— Story / media —— */
.story-block {
  display: grid;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.story-block p {
  margin: 0 0 1rem;
  color: var(--muted-dark);
}

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

.media-frame {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px 40px rgba(20, 40, 32, 0.12);
}

.media-frame img {
  width: 100%;
}

.media-frame figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: var(--muted-dark);
  background: rgba(255, 255, 255, 0.35);
}

.section-teal .media-frame {
  border-color: var(--line);
}

.section-teal .media-frame figcaption {
  color: var(--muted);
  background: rgba(0, 0, 0, 0.2);
}

.week-list {
  display: grid;
  gap: 2.5rem;
}

#experience .wrap {
  width: min(100% - 2rem, 62rem);
}

.week-item {
  display: grid;
  gap: 1.35rem;
  padding: 1.65rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 16px 40px rgba(8, 18, 14, 0.16);
}

@media (min-width: 820px) {
  .week-item {
    grid-template-columns: 1fr 1.15fr;
    align-items: center;
    gap: 1.75rem;
    padding: 1.85rem;
  }
  .week-item.reverse {
    grid-template-columns: 1.15fr 1fr;
  }
  .week-item.reverse .week-copy {
    order: 2;
  }
}

.week-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.week-item h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.2;
  color: var(--ink);
}

.week-item p {
  margin: 0;
  color: rgba(21, 35, 31, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.65;
}

.week-item p + p {
  margin-top: 0.75rem;
}

.week-item .media-frame {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.12);
}

.week-item .media-frame img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  display: block;
}

@media (min-width: 820px) {
  .week-item .media-frame,
  .week-item .media-frame img {
    min-height: 0;
  }
}

.week-item .media-frame figcaption {
  font-size: 0.88rem;
  padding: 0.85rem 1.1rem;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--muted-dark);
}

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

.story-h {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 1rem;
  line-height: 1.1;
}

.mid-cta {
  margin-top: 2rem;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.55);
  text-align: center;
}

.mid-cta h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
}

.mid-cta p {
  margin: 0 0 1rem;
  color: var(--muted-dark);
  font-size: 0.92rem;
}

.stack-copy-light p,
.section-teal .stack-copy p {
  color: rgba(243, 238, 228, 0.9) !important;
}

.fine-print-light {
  color: rgba(243, 238, 228, 0.72) !important;
  opacity: 1;
}

.quotes-light .quote-light {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--ink);
}

.quotes-light .quote-light p {
  color: var(--ink);
}

.quotes-light .quote-light cite {
  color: rgba(21, 35, 31, 0.6);
}

.reviews-note-dark,
.compare-note-dark {
  color: rgba(21, 35, 31, 0.78) !important;
}

.compare-table-light {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(21, 35, 31, 0.14);
}

.compare-table-ink th,
.compare-table-ink td {
  border-bottom-color: rgba(21, 35, 31, 0.12);
  color: var(--ink) !important;
}

.compare-table-ink thead th {
  background: rgba(21, 35, 31, 0.07);
  color: var(--ink) !important;
}

.compare-table-ink td:nth-child(2) {
  color: #1a3d34 !important;
  font-weight: 600;
}

.compare-table-ink td:nth-child(3) {
  color: rgba(21, 35, 31, 0.72) !important;
}

.faq-list-dark .faq-item-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
  color: var(--cream);
}

.faq-list-dark .faq-item-dark p {
  color: var(--muted);
}

.faq-list-dark .faq-item-dark a {
  color: #d5e8df;
}

.stack-block {
  display: grid;
  gap: 1.25rem;
  margin: 2.5rem 0 0;
}

.stack-copy h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.stack-copy p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.95rem;
}

.fine-print {
  font-size: 0.82rem !important;
  opacity: 0.82;
  line-height: 1.45;
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 34rem;
}

.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  vertical-align: top;
}

.compare-table thead th {
  background: rgba(255, 255, 255, 0.1);
  font-weight: 700;
  font-size: 0.82rem;
}

.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.compare-table td:nth-child(2) {
  color: #d7ebe2;
  font-weight: 600;
}

.compare-table td:nth-child(3) {
  color: var(--muted);
}

.compare-table-light.compare-table-wrap .compare-table td:nth-child(2),
.compare-table-ink td:nth-child(2) {
  color: #1a3d34;
}

.compare-table-light.compare-table-wrap .compare-table td:nth-child(3),
.compare-table-ink td:nth-child(3) {
  color: rgba(21, 35, 31, 0.72);
}

.compare-table-light.compare-table-wrap .compare-table th,
.compare-table-light.compare-table-wrap .compare-table td {
  color: var(--ink);
}

.quotes {
  display: grid;
  gap: 1rem;
}

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

.quote {
  margin: 0;
  padding: 1.35rem;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.quote p {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
}

.quote cite {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
}

.reviews-note {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.compare-note {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  opacity: 0.75;
}

/* —— FAQ —— */
.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.55);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  color: var(--muted-dark);
  font-size: 0.92rem;
}

/* —— Final CTA —— */
/* Soft dark-green blend into the final block (same palette as section-teal / footer). */
.section-pre-cta {
  position: relative;
  z-index: 1;
  padding-bottom: 4rem;
}

.section-pre-cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7rem;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(26, 47, 42, 0) 0%,
    rgba(21, 38, 33, 0.55) 45%,
    #152621 100%
  );
}

.section-pre-cta > .wrap {
  position: relative;
  z-index: 1;
}

.tone-bridge {
  height: 5rem;
  margin-top: -1px;
  background: linear-gradient(
    180deg,
    #152621 0%,
    #12201c 40%,
    #0f1b17 100%
  );
  pointer-events: none;
}

.cta-final {
  position: relative;
  padding: 5rem 0 4.5rem;
  text-align: center;
  background:
    linear-gradient(
      180deg,
      #0f1b17 0%,
      rgba(15, 27, 23, 0.55) 22%,
      rgba(15, 27, 23, 0.78) 55%,
      rgba(15, 27, 23, 0.88) 100%
    ),
    url("../img/hero.webp") center/cover no-repeat;
  border-radius: 0;
  margin-top: 0;
}

.cta-final .wrap {
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.cta-final p {
  margin: 0;
  max-width: 30rem;
  color: var(--muted);
}

/* —— Footer —— */
.site-footer {
  background: #0f1b17;
  color: rgba(243, 238, 228, 0.78);
  padding: 0 0 2rem;
}

.footer-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding-top: 2.5rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
}

.footer-nav a {
  text-decoration: none;
  font-size: 0.86rem;
  color: var(--muted);
}

.footer-disclosures {
  display: grid;
  gap: 1.15rem;
  padding: 1.75rem 0;
}

@media (min-width: 900px) {
  .footer-disclosures {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .footer-disclosures {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-disc {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 100%;
}

.footer-disc h3 {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
}

.footer-disc p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
}

.footer-disc a {
  color: #c9ddd4;
}

.footer-id {
  margin-top: 0.75rem !important;
  opacity: 0.85;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: space-between;
  padding-top: 0.5rem;
  font-size: 0.78rem;
  color: rgba(243, 238, 228, 0.55);
}

.footer-copy,
.footer-note {
  margin: 0;
}

/* —— Legal pages —— */
.legal-shell {
  padding: 2.5rem 0 4rem;
  background: var(--sage);
  color: var(--ink);
  min-height: 60vh;
}

.legal-page {
  width: min(100% - 2rem, 48rem);
  margin: 0 auto;
}

.legal-card {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}

.legal-card h2 {
  margin: 1.75rem 0 0.65rem;
  font-size: 1.15rem;
  color: var(--ink);
}

.legal-card h3 {
  margin: 1.25rem 0 0.45rem;
  font-size: 1rem;
  color: var(--ink);
}

.legal-card p,
.legal-card li {
  font-size: 0.92rem;
  color: var(--muted-dark);
}

.legal-card a {
  color: #1a3d34;
}

.legal-card ul {
  padding-left: 1.15rem;
}

.kicker {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.65;
}

/* —— Cookie bar —— */
.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1.1rem;
  border-radius: 1rem;
  background: rgba(15, 27, 23, 0.94);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

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

.cookie-bar p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 42rem;
}

.cookie-bar a {
  color: #d5e8df;
}

.cookie-bar button {
  border: 0;
  border-radius: 999px;
  padding: 0.6rem 1rem;
  background: var(--cream);
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

/* —— Motion —— */
.reveal {
  opacity: 0;
  transform: translateY(1.1rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
