/* Lis Bluford — brand palette per owner copy
   Rose #E4728B · Blue #98C4F0 · Cream #F8F8F1 · Quattrocento */

:root {
  --navy: #25243b;
  --rose: #e4728b;
  --rose-dark: #cf5b74;
  --blue: #98c4f0;
  --blue-dark: #6fa9e4;
  --cream: #f8f8f1;
  --periwinkle: #98c4f0;
  --hover: #cf5b74;
  --heading: #252525;
  --body: #333333;
  --white: #ffffff;
  --footer: #1f2024;
  --soft-line: rgba(37, 36, 59, 0.1);
  --font-display: "Quattrocento", serif;
  --font-body: "Quattrocento", serif;
  --nav-h: 4.75rem;
  --header-offset: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
  --max: 1140px;
  --pill: 30px;
  --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-offset) + 0.75rem);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Martha's Vineyard connected-silhouette network */
.mv-network {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

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

a {
  color: var(--hover);
  text-decoration: none;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--heading);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

/* Soft translucent sections over MV network */
.bg-wash {
  position: relative;
  background: rgba(255, 255, 255, 0.72);
}

.bg-wash > * {
  position: relative;
  z-index: 1;
}

.eyebrow-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.2vw, 1.5rem);
  font-weight: 600;
  color: var(--white);
  background: var(--periwinkle);
  border-left: 5px solid var(--navy);
  padding: 10px 15px;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.label-upper {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--navy);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
}

.section {
  padding: 4.5rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}

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

.section-head h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 700;
}

.section-head p {
  color: var(--body);
  font-size: 1rem;
  line-height: 1.6;
}

/* ——— Buttons (EAEL Wayra pills) ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 52px;
  padding: 17px 22px;
  border-radius: var(--pill);
  border: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--rose-dark);
  color: var(--white);
}

.btn-secondary {
  background: var(--blue);
  color: var(--navy);
}

.btn-secondary:hover {
  background: var(--blue-dark);
  color: var(--navy);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.btn-ghost:hover {
  background: var(--blue);
  color: var(--navy);
  border-color: var(--blue);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.btn .arrow {
  transition: transform 0.25s ease;
}

.btn:hover .arrow {
  transform: translateX(3px);
}

/* ——— Progress + nav ——— */
.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 100;
  transform-origin: left;
  transform: scaleX(0);
  background: var(--navy);
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  min-height: var(--header-offset);
  height: auto;
  padding-top: env(safe-area-inset-top, 0px);
  display: flex;
  align-items: center;
  overflow: visible;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--soft-line);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  overflow: visible;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--heading);
  text-decoration: none;
}

.logo span {
  color: var(--navy);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  color: #64686d;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-cta {
  display: none;
  flex-shrink: 0;
  white-space: nowrap;
  min-height: 48px;
  padding: 12px 18px;
}

.nav-links a[aria-current="page"] {
  color: var(--navy);
  font-weight: 600;
}

.mobile-panel a[aria-current="page"] {
  color: var(--navy);
  font-weight: 600;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--soft-line);
  border-radius: 4px;
  background: var(--white);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #434343;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: var(--header-offset) 0 0 0;
  background: var(--white);
  padding: 1.5rem 1.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.4rem);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 85;
  border-top: 1px solid var(--soft-line);
}

.mobile-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.mobile-panel a {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading);
  text-decoration: none;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--soft-line);
}

@media (min-width: 900px) {
  .nav-links,
  .nav-cta {
    display: flex;
  }

  .nav-toggle,
  .mobile-panel {
    display: none;
  }
}

/* ——— Interior page header (Substack Support, etc.) ——— */
.page-header {
  padding: calc(var(--header-offset) + 2.75rem) 0 2.5rem;
}

.page-header-inner {
  max-width: 40rem;
}

/* First screen copy should never animate in under the fixed header */
.page-header .reveal {
  opacity: 1;
  transform: none;
}

.page-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(51, 51, 51, 0.7);
}

.page-crumb a {
  color: var(--hover);
}

.page-crumb a:hover {
  color: var(--navy);
}

.page-header h1 {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0.35rem 0 0.85rem;
  max-width: 18ch;
}

.page-lead {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 42ch;
  color: var(--body);
}

.page-header .offering-list {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: disc;
  padding-left: 1.25rem;
}

.page-header .offering-list li {
  margin: 0.35rem 0;
  line-height: 1.45;
}

.page-header .btn-row {
  margin-top: 1.5rem;
}

/* ——— Hero (Elementor two-column) ——— */
.hero {
  min-height: 750px;
  display: grid;
  align-items: center;
  margin-top: var(--header-offset);
  padding: 3rem 0 2.5rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11) inset;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.hero-content {
  max-width: 34rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.125rem);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.1;
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--heading);
  margin-bottom: 0.5rem;
}

.hero-lead {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--body);
  max-width: 36ch;
}

.hero-photo {
  display: flex;
  justify-content: center;
}

.hero-photo img {
  width: min(100%, 420px);
  height: auto;
}

@media (max-width: 899px) {
  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    order: -1;
  }

  .hero-content {
    text-align: center;
    margin-inline: auto;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero .btn-row {
    justify-content: center;
  }
}

.hero-scroll {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

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

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

/* ——— Proof ——— */
.proof {
  background: var(--navy);
  color: var(--white);
  padding: 1.25rem 0;
  overflow: hidden;
}

.proof-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.proof-item {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  white-space: nowrap;
  font-family: var(--font-display);
}

.proof-item strong {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--periwinkle);
}

.proof-item span {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.92;
}

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

/* ——— Intro / Support ——— */
.intro .intro-grid {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .intro .intro-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 0;
    min-height: 420px;
  }
}

.intro-visual {
  min-height: 260px;
  background: url("../images/desktop.jpg") center / cover no-repeat;
  border-radius: 0;
}

.intro-visual--mv {
  background-image: url("../images/mvacayView.jpg");
}

@media (min-width: 900px) {
  .intro-grid--flip {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .intro-grid--flip .intro-visual {
    order: 2;
  }

  .intro-grid--flip .intro-copy {
    order: 1;
  }
}

/* ——— Bridge to Substack Support ——— */
.bridge {
  padding: 2.5rem 0 3.5rem;
}

.bridge-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  align-items: flex-end;
  justify-content: space-between;
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
}

.bridge-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  max-width: 22ch;
  margin: 0.35rem 0 0.65rem;
}

.bridge-inner p {
  max-width: 48ch;
  margin: 0;
  line-height: 1.55;
}

.intro-copy {
  padding: clamp(1.75rem, 4vw, 3.125rem);
}

.intro-copy h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 700;
  max-width: 16ch;
}

.intro-copy .lede {
  max-width: 42ch;
  line-height: 1.6;
}

.intro-panel {
  margin-top: 1.5rem;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  color: inherit;
  transform: none;
}

.intro-panel h3 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.intro-panel p {
  margin: 0 0 0.75rem;
  line-height: 1.6;
  color: var(--body);
  max-width: 48ch;
}

.intro-panel ul {
  display: grid;
  gap: 0.55rem;
}

.intro-panel li {
  display: flex;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--body);
}

.intro-panel li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--navy);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.offering-list {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.35rem;
  max-width: 40rem;
}

.offering-list li {
  display: flex;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--body);
}

.offering-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.blob {
  display: none;
}

/* ——— Events / full-bleed creatives ——— */
.events {
  padding-top: 3rem;
  padding-bottom: 1rem;
  overflow: visible;
}

.events .section-head {
  margin-bottom: 2rem;
}

.spotlight {
  margin: 0 0 2.75rem;
}

.spotlight:last-child {
  margin-bottom: 0;
}

/* Full-width banner strip — entire creative visible, never cropped */
.spotlight-banner {
  margin: 0;
  width: 100%;
  background: var(--periwinkle);
  line-height: 0;
}

.spotlight-banner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.spotlight-body {
  max-width: 46rem;
  margin: 0 auto;
  padding: 1.75rem 0 0.5rem;
}

.spotlight-body h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
}

.spotlight-body p {
  color: var(--body);
  line-height: 1.55;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #64686d;
}

.event-meta .pill {
  background: var(--periwinkle);
  color: var(--navy);
  padding: 0.3rem 0.7rem;
  border-radius: var(--pill);
}

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0.85rem 0 0.35rem;
  font-family: var(--font-display);
}

.price-tag strong {
  font-size: 1.85rem;
  color: var(--navy);
}

.price-tag span {
  color: #64686d;
  font-weight: 600;
}

@media (min-width: 1200px) {
  /* Soft side framing so wide screens still showcase the full 2400×900 art */
  .spotlight-banner {
    background: linear-gradient(
      90deg,
      rgba(152, 196, 240, 0.55) 0%,
      #98c4f0 12%,
      #98c4f0 88%,
      rgba(152, 196, 240, 0.55) 100%
    );
  }

  .spotlight-banner img {
    width: min(100%, 1440px);
    margin-inline: auto;
  }
}

/* ——— Curriculum ——— */
.curriculum .week-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .curriculum .week-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.week {
  padding: 1.4rem 1.4rem 1.4rem 1.5rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--soft-line);
  border-left: 5px solid var(--navy);
  transition: box-shadow 0.3s ease;
}

.week:hover,
.week.is-in {
  box-shadow: 0 8px 22px rgba(37, 36, 59, 0.08);
}

.week-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.week h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.week p {
  color: var(--body);
  line-height: 1.55;
}

/* ——— Fit ——— */
.fit-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .fit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.fit-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1.25rem 1.3rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--soft-line);
}

.fit-icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: var(--periwinkle);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
}

.fit-item p {
  margin: 0;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--heading);
  line-height: 1.45;
}

/* ——— About (Get to Know style) ——— */
.about {
  padding: 3rem 0 5rem;
}

.about-grid {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.about-photo {
  max-width: 480px;
  margin-inline: auto;
  background: transparent;
  overflow: visible;
  aspect-ratio: auto;
  box-shadow: none;
}

.about-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}

.about-photo::after {
  display: none;
}

.about .eyebrow {
  display: none;
}

.about h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 700;
}

.about p {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
  max-width: 48ch;
}

.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.about-links a {
  text-decoration: none;
  color: var(--white);
  background: var(--navy);
  border: none;
  padding: 0.85rem 1.2rem;
  border-radius: var(--pill);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
}

.about-links a:hover {
  background: var(--hover);
  color: var(--white);
}

/* ——— Ways ——— */
.ways-grid {
  display: grid;
  gap: 1.15rem;
}

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

.way {
  padding: 1.6rem 1.45rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--soft-line);
  height: 100%;
  transition: transform 0.3s var(--ease);
}

.way:hover {
  transform: translateY(-3px);
}

.way h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.way p {
  color: var(--body);
  line-height: 1.55;
}

.way .linkish {
  display: inline-flex;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
}

.way .linkish:hover {
  color: var(--hover);
}

/* ——— FAQ ——— */
.faq-list {
  display: grid;
  gap: 0.65rem;
  max-width: 720px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--soft-line);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--heading);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.35rem;
  color: var(--navy);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item .answer {
  padding: 0 1.25rem 1.15rem;
  color: var(--body);
  line-height: 1.55;
}

/* ——— CTA / Work With Lis band ——— */
.cta {
  position: relative;
  padding: 5rem 0;
  background: url("../images/mvacayView.jpg") center / cover no-repeat;
  text-align: left;
  color: var(--white);
  overflow: hidden;
}

@media (min-width: 1025px) {
  .cta {
    background-attachment: fixed;
  }
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navy);
  opacity: 0.71;
  z-index: 0;
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta-panel {
  max-width: none;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.cta-panel::before {
  display: none;
}

.cta .eyebrow {
  display: none;
}

.cta h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  max-width: 18ch;
}

.cta p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 46ch;
  margin: 0 0 0;
  line-height: 1.55;
}

.cta .btn-row {
  justify-content: flex-start;
  margin-top: 1.5rem;
}

.cta-note {
  margin-top: 1.1rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.cta-note a {
  color: var(--periwinkle);
  font-weight: 700;
}

.cta-note strong {
  color: var(--white);
}

@media (max-width: 767px) {
  .cta {
    text-align: center;
  }

  .cta h2,
  .cta p {
    margin-inline: auto;
  }

  .cta .btn-row {
    justify-content: center;
  }
}

/* ——— Footer ——— */
.site-footer {
  background: var(--footer);
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.site-footer h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}

.site-footer .logo {
  color: var(--white);
  display: inline-block;
  margin-bottom: 0.65rem;
}

.site-footer .logo span {
  color: var(--periwinkle);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

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

.footer-links {
  display: grid;
  gap: 0.5rem;
}

.footer-bottom {
  margin-top: 2.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.9rem;
}

.scallop {
  display: none !important;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .proof-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
  }
}
