:root {
  --cream: #f3efe6;
  --sage: #5e624c;
  --sage-d: #4f5443;
  --ink: #2f3128;
  --muted: rgba(255, 255, 255, 0.72);
  --muted2: rgba(47, 49, 40, 0.68);
  --line: rgba(255, 255, 255, 0.35);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--ink);
  background: var(--cream);
}

/* ---------- HERO (Fern Cottage vibe) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 22px 24px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0f120a;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.42)),
    url("/src/web/public/hero-3.png") center/cover no-repeat;
  filter: blur(1px) saturate(0.95) contrast(0.95);
  transform: scale(1.03);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    90% 65% at 50% 30%,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0.65) 100%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  width: min(1120px, 100%);
}
/* ---------- RESPONSIVE NAV (hamburger) ---------- */
.nav {
  color: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 10px;
  user-select: none;
}

/* keep your link style */
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none; /* desktop hidden */
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

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

/* Mobile layout */
@media (max-width: 720px) {
  .mark {
    display: none;
  }

  .nav {
    justify-content: flex-end;
    padding: 0 6px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .nav-menu {
    position: absolute;
    top: 56px;
    right: 6px;
    left: 6px;
    display: none; /* hidden by default */
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
  }

  .nav-menu a {
    display: block;
    padding: 12px 10px;
    letter-spacing: 0.18em;
    border-radius: 12px;
  }

  .nav-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  /* when opened */
  .nav.is-open .nav-menu {
    display: flex;
  }
}

/* Force hamburger dropdown to work on <= 520px (override scroll-nav rules) */
@media (max-width: 520px) {
  .nav {
    overflow: visible;
    flex-wrap: nowrap;
    justify-content: flex-end;
    padding: 0 6px;
  }

  .nav-menu {
    position: absolute;
    top: 56px;
    left: 6px;
    right: 6px;
    display: none; /* still hidden until opened */
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.22);
  }

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

  .nav-toggle {
    display: inline-flex; /* ensure hamburger is visible */
  }

  .nav-menu a {
    white-space: normal; /* undo nowrap from old rules */
  }
}

/* --- STICKY TOP BAR --- */
.hero-top {
  position: fixed; /* stays on top during scroll */
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;

  /* matches your hero look */
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

/* Push hero content down so it doesn't sit under the fixed bar */
.hero-center {
  margin-top: 130px; /* adjust if you want tighter/looser */
}

/* Nav container stays centered */
.nav {
  width: min(1120px, 100%);
  display: flex;
  justify-content: center;
}

/* MENU TEXTS WHITE (desktop + mobile) */
.nav-menu,
.nav a {
  color: rgba(255, 255, 255, 0.92);
}

/* Keep your uppercase + tracking (if not already applied) */
.nav-menu {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 999;
}

/* Mobile dropdown background and white text */
@media (max-width: 720px) {
  .nav-menu {
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.22);
  }

  .nav-menu a {
    color: rgba(255, 255, 255, 0.95);
  }

  .nav-toggle {
    display: inline-flex;
  }

  /* dropdown aligns under the toggle, still within top bar */
  .nav-menu {
    position: absolute;
    top: 56px;
    right: 0;
    left: auto;
    width: min(320px, calc(100vw - 24px));

    display: none;
    flex-direction: column;
    padding: 10px;
    border-radius: 18px;

    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
  }

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

  .nav-menu a {
    color: rgba(255, 255, 255, 0.95);
    padding: 12px 10px;
    border-radius: 12px;
  }
}

/* --- CIRCLE LOGO: hide on small devices --- */
@media (max-width: 720px) {
  .mark {
    display: none;
  }
}

/* If you want the top bar slightly smaller on phones */
@media (max-width: 720px) {
  .hero-top {
    padding: 10px 12px;
  }
  .hero-center {
    margin-top: 110px;
  }
}

.mark {
  font-family: "Playfair Display", serif;
  position: absolute;
  left: 50%;
  top: -80px;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(6px);
}
.mark svg {
  width: 18px;
  height: 18px;
  opacity: 0.9;
}

.hero-center {
  margin: 92px auto 0;
  text-align: center;
  color: #fff;
  padding: 16px 10px 0;
}
.kicker {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 400;
  opacity: 0.8;
  margin: 0 0 14px;
}
.title {
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 0 0 20px;
  line-height: 1.02;
}
.waitlist {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(8px);
}
.waitlist input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding: 12px 14px 12px 18px;
  font-size: 14px;
}
.waitlist input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.waitlist button {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 0.08s ease,
    background 0.2s ease;
}
.waitlist button:hover {
  background: rgba(255, 255, 255, 0.2);
}
.waitlist button:active {
  transform: translateY(1px);
}

/* ---------- ABOUT STRIP ---------- */
.about {
  background: var(--sage);
  padding: 64px 24px 64px;
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
}
.about-inner {
  width: min(980px, 100%);
  margin: 0 auto;
}
.portrait {
  width: min(520px, 92vw);
  aspect-ratio: 16/10;
  border-radius: 34px;
  margin: 0px auto 18px;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.28)),
    url("/src/web/public/lab.png") center/cover no-repeat;
}
.about h2 {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 6px 0 10px;
  opacity: 0.75;
  font-weight: 500;
}
.about p {
  margin: 0 auto;
  max-width: 640px;
  line-height: 1.7;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.divider {
  width: 180px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  margin: 22px auto 0;
}

/* ---------- OFFERINGS (match reference) ---------- */
.offerings {
  background: var(--cream);
  padding: 92px 24px 70px;
  text-align: center;
}
.offerings-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.offerings-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 4.6vw, 70px);
  font-weight: 500;
  line-height: 1.02;
  margin: 0 0 56px;
  color: rgba(47, 49, 40, 0.78);
  letter-spacing: 0.01em;
}
.offerings-title .amp {
  font-style: normal;
}
.offerings-title .script {
  display: block;
  font-style: italic;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  align-items: stretch;
}

.offer-card {
  background: transparent;
  border: none;
  padding: 0;
}

/* image sits wider than the outlined frame (like reference) */
.offer-media {
  width: 100%;
  aspect-ratio: 3 / 1;
  border-radius: 44px;
  overflow: hidden;
  position: relative;
  background: #ddd;
  margin: 0 auto 0;
  z-index: 2;
}

.offer-frame {
  width: calc(100% - 46px);
  margin: -24px auto 0; /* tuck under image */
  border: 1px solid rgba(79, 84, 67, 0.55);
  border-top: 0;
  border-radius: 0 0 44px 44px;
  padding-top: 34px; /* space because image overlaps */
  background: transparent;
  position: relative;
  z-index: 1;
}

.offer-media {
  position: relative;
  width: calc(100% + 28px); /* wider than outline */
  aspect-ratio: 3 / 4;
  border-radius: 80px;
  overflow: hidden;
  margin: -14px -14px 0; /* pull image outside the border */
  background: #ddd;
}
.offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(0.95);
}

.offer-body {
  padding: 28px 26px 28px;
}

.offer-h {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.02;
  margin: 4px 0 14px;
  color: rgba(47, 49, 40, 0.74);
}

.offer-h .break {
  display: block;
}

.offer-p {
  margin: 0 auto 22px;
  max-width: 320px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(47, 49, 40, 0.62);
}

.offer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid rgba(79, 84, 67, 0.55);
  color: rgba(47, 49, 40, 0.7);
  text-decoration: none;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.08);
  min-width: 190px;
}
.offer-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}

.offerings-divider {
  width: 220px;
  height: 1px;
  background: rgba(79, 84, 67, 0.35);
  margin: 54px auto 0;
}

@media (max-width: 980px) {
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .offer-h {
    font-size: 34px;
  }
  .offer-card {
    border-radius: 0 0 34px 34px;
  }
  .offer-media {
    width: calc(100% + 20px);
    margin: -10px -10px 0;
    border-radius: 34px;

    .offerings-inner {
      padding: 40px;
    }
  }

  @media (max-width: 420px) {
    .offerings-inner {
      padding: 40px;
    }
    .offer-media {
      width: 100%;
      margin: 0;
      border-radius: 80px;
    }

    .offer-frame {
      width: 100%;
      margin-top: -18px;
      border-radius: 0 0 28px 28px;
    }
  }
}

/* ---------- ABOUT ME (split layout) ---------- */
.aboutme {
  background: var(--sage);
  padding: 86px 24px;
  color: rgba(255, 255, 255, 0.86);
}
.aboutme-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 84px;
  align-items: center;
}

.aboutme-photo {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  border-radius: 48px;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.22)),
    url("/src/web/public/founder-3.png") center/cover no-repeat;
  aspect-ratio: 4 / 5;
}
.aboutme-photo::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 40px;
  border: 2px solid #d7cf94;
  pointer-events: none;
}

.aboutme-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(54px, 5.8vw, 92px);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  margin: 0 0 26px;
  color: #ede9ce;
  letter-spacing: 0.01em;
}

.aboutme-copy {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.65;
  color: #ede9ce;
}
.aboutme-copy b {
  color: #ede9ce;
  font-weight: 600;
}

.aboutme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 999px;
  border: 2px solid rgba(243, 239, 230, 0.55);
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  margin-top: 28px;
  min-width: 240px;
  background: rgba(0, 0, 0, 0.06);
}
.aboutme-btn:hover {
  background: rgba(0, 0, 0, 0.12);
}

@media (max-width: 980px) {
  .aboutme-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .aboutme-copy {
    margin: 0 auto;
  }
  .aboutme-photo {
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .aboutme {
    padding: 70px 20px;
  }
  .aboutme-photo {
    border-radius: 34px;
  }
  .aboutme-photo::after {
    inset: 14px;
    border-radius: 28px;
  }
  .aboutme-btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ---------- BOTTOM PHOTO ---------- */
.bottom-photo {
  height: 360px;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.22)),
    url("bottom-photo.jpg") center/cover no-repeat;
}

@media (max-width: 640px) {
  .nav {
    gap: 16px;
    font-size: 10px;
    justify-content: flex-end;
  }
  .mark {
    top: -80px;
    display: none;
  }
  .hero-center {
    margin-top: 86px;
  }
  .portrait {
    margin-top: 10px;
    border-radius: 26px;
  }
  .waitlist {
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
  }
  .waitlist button {
    width: 100%;
    border-radius: 14px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
}

/* ---------- NEWSLETTER (photo panel) ---------- */
.newsletter {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 96px 24px;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.35)),
    url("/src/web/public/hero-2.png") center/cover no-repeat;
}
.newsletter-card {
  width: min(560px, 92vw);
  border-radius: 34px;
  border: 2px solid rgba(243, 239, 230, 0.55);
  padding: 44px 34px 34px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
}
.newsletter-title {
  font-family: "Playfair Display", serif;
  margin: 0 0 14px;
  line-height: 1.02;
}
.newsletter-title .top {
  display: block;
  font-size: 34px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.9;
}
.newsletter-title .script {
  display: block;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(44px, 5vw, 66px);
  opacity: 0.95;
  margin-top: 6px;
}
.newsletter-text {
  margin: 0 auto 22px;
  max-width: 360px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}
.newsletter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  border: 2px solid rgba(243, 239, 230, 0.55);
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  background: rgba(0, 0, 0, 0.06);
  min-width: 240px;
}
.newsletter-btn:hover {
  background: rgba(0, 0, 0, 0.12);
}
.newsletter-note {
  margin: 18px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 640px) {
  .newsletter {
    min-height: 64vh;
    padding: 72px 18px;
  }
  .newsletter-card {
    padding: 36px 20px 26px;
    border-radius: 28px;
  }
  .newsletter-btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ---------- FOLLOW ALONG ---------- */
.follow {
  background: var(--cream);
  padding: 96px 24px 72px;
  text-align: center;
}
.follow-title {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin-bottom: 40px;
  color: rgba(47, 49, 40, 0.75);
}
.follow-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto 40px;
}
.follow-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
}
.follow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 999px;
  border: 1px solid rgba(47, 49, 40, 0.55);
  color: rgba(47, 49, 40, 0.75);
  text-decoration: none;
  margin-bottom: 56px;
}
.follow-divider {
  max-width: 1100px;
  margin: 0 auto 48px;
  border: none;
  border-top: 1px solid rgba(47, 49, 40, 0.35);
}
.site-footer {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
  font-size: 14px;
  color: rgba(47, 49, 40, 0.7);
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
}
.footer-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(47, 49, 40, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-center {
  text-align: center;
}
.footer-right {
  text-align: right;
  font-size: 13px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .follow-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-left,
  .footer-right {
    justify-content: center;
    text-align: center;
  }
}

/* ---------- LEGAL FOOTER ---------- */
.legal-footer {
  width: 100%;
  margin-top: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.legal-top {
  background: var(--sage);
  text-align: center;
  padding: 22px 16px;
  font-family: "Playfair Display", serif;
}
.legal-bottom {
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  font-size: 12px;
}
.legal-left {
  display: flex;
  gap: 18px;
}
.legal-left a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.legal-left a:hover {
  text-decoration: underline;
}
.legal-right {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 640px) {
  .legal-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ---------- FULL IMAGE FEATURE ---------- */
.feature-image {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin-left: calc(50% - 50vw);
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.22)),
    url("/src/web/public/storage.png") center/cover no-repeat;
  display: grid;
  place-items: center;
}
.feature-mark {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
}
.feature-mark svg {
  width: 40px;
  height: 40px;
}

/* =========================================
       RESPONSIVE PATCH (drop-in)
       ========================================= */

/* Prevent 100vw sections from causing horizontal scroll on mobile */
html,
body {
  width: 100%;
  overflow-x: hidden;
}

/* Prefer full-bleed without 100vw scrollbar issues */
.newsletter,
.feature-image {
  width: 100%;
  margin-left: 0;
}

/* Make any images/media never overflow */
img,
video,
svg {
  max-width: 100%;
  height: auto;
}

/* ---------- NAV: wrap + optional horizontal scroll ---------- */
.nav {
  flex-wrap: wrap;
  row-gap: 10px;
  padding: 10px 8px 0;
  text-align: center;
}

/* ---------- HERO: tighter on phones ---------- */
@media (max-width: 640px) {
  .hero {
    padding: 18px 16px 48px;
    min-height: 92vh;
  }

  .mark {
    top: -64px;
    width: 40px;
    height: 40px;
  }

  .hero-center {
    margin: 72px auto 0;
    padding: 10px 6px 0;
  }

  .kicker {
    font-size: 16px;
  }

  /* Your title already uses clamp; just keep it comfortable */
  .title {
    line-height: 1.04;
  }
}

/* ---------- WAITLIST: already column on small; improve touch targets ---------- */
@media (max-width: 640px) {
  .waitlist input {
    width: 100%;
    padding: 14px 14px;
  }
  .waitlist button {
    padding: 14px 16px;
  }
}

/* ---------- OFFERINGS: improve card sizing on tablets/phones ---------- */
@media (max-width: 980px) {
  .offerings {
    padding: 72px 18px 56px;
  }

  .offer-frame {
    width: calc(100% - 28px);
    border-radius: 0 0 34px 34px;
  }

  .offer-body {
    padding: 22px 18px 24px;
  }

  .offer-p {
    max-width: 520px; /* allow nicer reading width when stacked */
  }
}

@media (max-width: 420px) {
  .offer-media {
    border-radius: 28px;
  }
  .offer-frame {
    border-radius: 0 0 28px 28px;
  }
  .offer-h {
    font-size: 30px;
  }
}

/* ---------- ABOUT/SECTIONS: consistent spacing on small ---------- */
@media (max-width: 640px) {
  .about {
    padding: 54px 18px;
  }
  .offerings-title {
    margin-bottom: 36px;
  }
}

/* ---------- FEATURE IMAGE: avoid full 100vh on tiny screens ---------- */
@media (max-width: 640px) {
  .feature-image {
    height: 70vh;
  }
  .feature-mark {
    width: 78px;
    height: 78px;
  }
  .feature-mark svg {
    width: 34px;
    height: 34px;
  }
}

/* ---------- FOLLOW GRID: 6 -> 3 (already) -> 2 -> 1 ---------- */
@media (max-width: 560px) {
  .follow-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 360px) {
  .follow-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- LEGAL FOOTER: wrap links nicely ---------- */
.legal-bottom {
  flex-wrap: wrap;
  row-gap: 10px;
}
.legal-left {
  flex-wrap: wrap;
  justify-content: center;
}
