@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@500;700&family=Poppins:wght@400;700;800&family=Rokkitt:wght@400;700&display=swap");

:root {
  --ink: #2e2a25;
  --muted: #6f665d;
  --paper: #fbf7ef;
  --soft: #efe7d8;
  --sage: #8b9676;
  --sage-dark: #4e5a3f;
  --rose: #a86f55;
  --gold: #c7a66a;
  --line: #ded3c2;
  --shadow: 0 18px 50px rgba(46, 42, 37, 0.12);
  --radius: 8px;
  --max: 1120px;
  --readable: 760px;
  --narrow: 640px;
  --page-gutter: 32px;
  --page-gutter-tight: 24px;
  --page-gutter-mobile: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.protected-page {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

body.protected-page img,
body.protected-page a {
  -webkit-user-drag: none;
}

body.protected-page input,
body.protected-page textarea,
body.protected-page select,
body.protected-page button {
  -webkit-user-select: auto;
  user-select: auto;
}

main {
  flex: 1 0 auto;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.25;
}

p {
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--rose);
  box-shadow: 0 10px 24px rgba(183, 110, 99, 0.25);
}

.btn-primary:hover {
  background: #a45f55;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  content: "✓";
  color: var(--sage);
  font-weight: 900;
}

.profile-page {
  background: var(--paper);
}

.profile-hero {
  padding-block: 64px 72px;
}

.profile-hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.profile-photo-wrap {
  position: relative;
}

.profile-photo-wrap::before {
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  content: "";
  border-radius: 16px;
  background: var(--soft);
}

.profile-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.profile-intro h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(2.45rem, 5.2vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.profile-updated {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 5px 10px;
  border: 1px solid rgba(222, 211, 194, 0.8);
  border-radius: var(--radius);
  color: var(--sage-dark);
  background: rgba(255, 255, 255, 0.54);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.3;
}

.profile-lead,
.profile-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 24px;
}

.profile-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  font-style: italic;
  line-height: 1.4;
}

.profile-tags span::before {
  content: "•";
  color: var(--rose);
  font-style: normal;
  line-height: 1;
}

.profile-section {
  padding-block: 66px;
}

.animation-ready .scroll-fade {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
  transition-delay: var(--scroll-delay, 0ms);
  will-change: opacity, transform;
}

.animation-ready .scroll-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.profile-section-soft {
  background: var(--paper);
}

.profile-copy {
  max-width: 720px;
}

.profile-section-soft .profile-copy,
.profile-section-soft .container > .profile-section-heading,
.profile-section-soft .container > .wellness-grid {
  position: relative;
}

.profile-section-soft .profile-copy {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 36px rgba(28, 34, 31, 0.04);
}

.profile-section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.wellness-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 8px;
  border: 1px solid rgba(222, 211, 194, 0.7);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.38);
}

.wellness-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 36px rgba(28, 34, 31, 0.06);
}

.wellness-card span {
  display: block;
  margin-bottom: 36px;
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 900;
}

.wellness-card p {
  color: var(--muted);
}

.profile-story {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.profile-quote {
  padding: 30px;
  border-left: 4px solid var(--gold);
  background: #fff;
  box-shadow: 0 12px 36px rgba(28, 34, 31, 0.06);
}

.profile-quote p {
  margin: 0;
  color: #7b745f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.32;
}

.routine-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.routine-list div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.routine-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--sage-dark);
}

.routine-list p {
  margin: 0;
}

.profile-beliefs {
  max-width: var(--narrow);
  margin-top: 20px;
}

.profile-beliefs + p {
  margin-top: 18px;
}

.profile-social-section {
  padding-block: 70px;
  background: var(--paper);
}

.profile-social-panel {
  max-width: 680px;
  padding: 38px 34px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  text-align: center;
  box-shadow: 0 12px 36px rgba(28, 34, 31, 0.06);
}

.profile-social-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(49, 75, 60, 0.08);
}

.profile-social-icon img {
  width: 34px;
  height: 34px;
}

.profile-social-panel h2 {
  max-width: 520px;
  margin-inline: auto;
  font-size: clamp(2rem, 4vw, 3rem);
}

.profile-social-panel p {
  max-width: 560px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1.04rem;
}

.profile-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 6px;
  padding: 0 18px;
  border: 1px solid var(--sage-dark);
  border-radius: var(--radius);
  color: #fff;
  background: var(--sage-dark);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.profile-social-link:hover {
  background: var(--ink);
  transform: translateY(-1px);
}

.profile-closing {
  padding-bottom: 82px;
}

body[data-page="home"] {
  color: #000;
  background: #efefef;
}

body[data-page="home"] .profile-page,
body[data-page="home"] .profile-section-soft,
body[data-page="home"] .profile-social-section {
  background: #efefef;
}

body[data-page="home"] .eyebrow,
body[data-page="home"] .profile-updated,
body[data-page="home"] .profile-lead,
body[data-page="home"] .profile-copy p,
body[data-page="home"] .profile-tags span,
body[data-page="home"] .wellness-card span,
body[data-page="home"] .wellness-card p,
body[data-page="home"] .profile-quote p,
body[data-page="home"] .routine-list strong,
body[data-page="home"] .profile-social-panel p,
body[data-page="home"] .story-intro {
  color: #000;
}

body[data-page="home"] .profile-photo-wrap::before {
  background: #d9d9d9;
}

body[data-page="home"] .profile-updated,
body[data-page="home"] .profile-section-soft .profile-copy,
body[data-page="home"] .wellness-grid,
body[data-page="home"] .wellness-card,
body[data-page="home"] .profile-quote,
body[data-page="home"] .routine-list div,
body[data-page="home"] .profile-social-panel {
  border-color: #d9d9d9;
  background: #fff;
  box-shadow: 1px 1px 2px 1px rgba(219, 219, 219, 0.95);
}

body[data-page="home"] .profile-quote {
  border-left-color: #000;
}

body[data-page="home"] .profile-tags span::before,
body[data-page="home"] .check-list li::before {
  color: #000;
}

body[data-page="home"] .profile-social-icon {
  background: #efefef;
}

body[data-page="home"] .profile-social-link,
body[data-page="home"] .btn-primary,
.contact-submit {
  border-color: #000;
  color: #fff;
  background: #000;
  box-shadow: none;
}

body[data-page="home"] .profile-social-link:hover,
body[data-page="home"] .btn-primary:hover,
.contact-submit:hover {
  background: #1f1f1f;
}

.story-page {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 260px),
    var(--paper);
}

body[data-page="femipro"] {
  background: linear-gradient(180deg, #f3ecdf 0%, #f7f1e6 42%, #fbf7ef 100%);
}

.story-article {
  overflow: hidden;
}

.story-container {
  max-width: var(--narrow);
}

body[data-page="femipro"] .story-container {
  max-width: min(100% - var(--page-gutter-tight), 700px);
}

.story-hero {
  padding-block: 34px 28px;
}

body[data-page="femipro"] .story-hero {
  position: relative;
  padding-block: 24px 12px;
}

body[data-page="femipro"] .story-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 245, 0.98));
  pointer-events: none;
}

body[data-page="femipro"] .story-hero-shell {
  position: relative;
  z-index: 1;
  display: block;
  padding: 8px 0 0;
  text-align: center;
}

body[data-page="femipro"] .story-hero-copy {
  max-width: 620px;
  margin-inline: auto;
}

body[data-page="femipro"] .story-hero-media {
  margin-top: 18px;
}

body[data-page="femipro"] .story-hero-media::before {
  content: none;
}

.story-intro {
  margin: 0 0 14px;
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.4;
}

.story-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 7.2vw, 3.75rem);
  line-height: 1.06;
  letter-spacing: 0;
}

body[data-page="femipro"] .story-hero h1 {
  max-width: 15ch;
  margin-inline: auto;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3.55rem);
  line-height: 1.08;
  text-wrap: balance;
}

.story-subheadline {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(1.12rem, 4vw, 1.38rem);
  line-height: 1.55;
}

body[data-page="femipro"] .story-subheadline {
  max-width: 34rem;
  margin: 0 auto;
  color: var(--sage-dark);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.5;
}

.story-section {
  padding-block: 30px;
}

body[data-page="femipro"] .story-section,
body[data-page="femipro"] .story-emphasis-section,
body[data-page="femipro"] .story-cta-section,
body[data-page="femipro"] .story-final-cta-section {
  position: relative;
  background: transparent;
}

.story-copy {
  color: var(--muted);
  font-size: clamp(1.09rem, 3.7vw, 1.22rem);
  line-height: 1.78;
}

body[data-page="femipro"] .story-copy {
  color: #2f2c28;
  font-size: clamp(1.08rem, 1.65vw, 1.26rem);
  line-height: 1.55;
}

body[data-page="femipro"] .story-copy-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body[data-page="femipro"] .story-copy-card-closing {
  background: transparent;
}

.story-copy p {
  margin-bottom: 24px;
}

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

.story-emphasis-section {
  padding-block: 38px 28px;
}

body[data-page="femipro"] .story-emphasis-section {
  padding-block: 16px;
}

.story-bold-line {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 7vw, 2.65rem);
  font-weight: 700;
  line-height: 1.18;
}

body[data-page="femipro"] .story-bold-line {
  max-width: none;
  padding: 14px 18px;
  border-left: 0;
  border-radius: 0;
  color: #fff;
  background: linear-gradient(180deg, var(--sage-dark), #60704d);
  text-align: center;
  text-wrap: balance;
}

.story-image-section {
  padding-block: 24px 34px;
}

.story-image {
  margin: 0;
}

.story-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

body[data-page="femipro"] .story-image img {
  width: min(100%, 540px);
  margin-inline: auto;
  border-radius: 0;
  box-shadow: none;
}

.story-image-main img {
  aspect-ratio: 1 / 1;
}

body[data-page="femipro"] .story-image-main img {
  aspect-ratio: auto;
}

.story-image-placeholder {
  display: grid;
  min-height: 260px;
  place-items: center;
  border: 1px solid rgba(222, 211, 194, 0.95);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(139, 150, 118, 0.14), rgba(168, 111, 85, 0.1)),
    rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
  color: var(--sage-dark);
  text-align: center;
}

.story-image-main .story-image-placeholder {
  min-height: 340px;
}

.story-image-placeholder span {
  padding: 14px 18px;
  border: 1px solid rgba(222, 211, 194, 0.85);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-weight: 900;
}

.story-cta-section {
  padding-block: 30px 36px;
}

body[data-page="femipro"] .story-cta-section {
  padding-block: 16px 20px;
}

.story-cta-section-soft {
  padding-top: 22px;
}

.story-cta-card,
.story-final-cta {
  padding: 26px;
  border: 1px solid rgba(222, 211, 194, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 38px rgba(46, 42, 37, 0.08);
  text-align: center;
}

body[data-page="femipro"] .story-cta-card,
body[data-page="femipro"] .story-final-cta {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="femipro"] .story-cta-card-spotlight {
  padding: 0;
}

.story-cta-card-button-only {
  padding-block: 22px;
}

.story-cta-card p,
.story-final-cta p {
  max-width: 31rem;
  margin: 0 auto 18px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 5vw, 1.85rem);
  font-weight: 700;
  line-height: 1.3;
}

.story-cta-button,
.story-final-button {
  min-width: min(100%, 270px);
  white-space: normal;
}

body[data-page="femipro"] .story-cta-button,
body[data-page="femipro"] .story-final-button {
  min-height: 62px;
  width: 100%;
  padding: 16px 22px;
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0;
  background: linear-gradient(180deg, var(--rose) 0%, #915744 100%);
  box-shadow: 0 12px 26px rgba(168, 111, 85, 0.24);
}

body[data-page="femipro"] .story-cta-button:hover,
body[data-page="femipro"] .story-final-button:hover {
  background: linear-gradient(180deg, #b86f58 0%, #865041 100%);
}

.story-final-cta-section {
  padding-block: 42px 78px;
}

body[data-page="femipro"] .story-final-cta-section {
  padding-block: 10px 28px;
}

.story-arrow {
  display: grid;
  min-height: 74px;
  place-items: center;
  margin-bottom: 12px;
  color: var(--rose);
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
  animation: storyArrowFloat 1.4s ease-in-out infinite;
}

.story-arrow::after {
  display: block;
  margin-top: -58px;
  content: "↓";
  font-size: 1.8rem;
  line-height: 1;
}

.route-directory-page {
  background:
    radial-gradient(circle at top left, rgba(168, 111, 85, 0.12), transparent 34%),
    linear-gradient(180deg, #f9f4eb 0%, #fbf7ef 100%);
}

.route-directory-shell {
  max-width: 900px;
  padding-block: 52px 80px;
}

.route-directory-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(46, 42, 37, 0.08);
}

.route-directory-card h1 {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
}

.route-directory-lead,
.route-directory-note,
.route-directory-item p {
  color: var(--muted);
}

.route-directory-note {
  margin-bottom: 0;
}

.route-directory-list {
  display: grid;
  gap: 16px;
  margin: 30px 0;
}

.route-directory-item {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.route-directory-item strong,
.route-directory-item a {
  font-weight: 800;
}

.route-directory-item strong {
  display: inline-block;
  margin-bottom: 8px;
}

.route-directory-item p {
  margin: 6px 0 0;
}

.story-lottie-arrow {
  width: 78px;
  height: 78px;
}

.story-lottie-arrow:empty {
  display: none;
}

.story-final-cta {
  padding-block: 34px;
  background:
    linear-gradient(180deg, rgba(239, 231, 216, 0.72), rgba(255, 255, 255, 0.78)),
    #fff;
}

body[data-page="femipro"] .story-final-cta {
  padding: 0;
}

.story-final-button {
  min-height: 54px;
  max-width: 100%;
}

body[data-page="femipro"] .story-section-intro,
body[data-page="femipro"] .story-section-soft-panel,
body[data-page="femipro"] .story-section-media {
  z-index: 1;
}

body[data-page="femipro"] main {
  display: flex;
  justify-content: center;
}

body[data-page="femipro"] .story-article {
  width: min(100%, 760px);
  background: transparent;
}

body[data-page="femipro"] .story-section,
body[data-page="femipro"] .story-image-section {
  padding-block: 10px;
}

body[data-page="femipro"] .story-copy p {
  margin-bottom: 18px;
}

body[data-page="femipro"] .story-arrow {
  min-height: 98px;
  margin: 6px 0 14px;
  color: transparent;
  animation: none;
}

body[data-page="femipro"] .story-arrow::before,
body[data-page="femipro"] .story-arrow::after {
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border-right: 10px solid;
  border-bottom: 10px solid;
  content: "";
  transform: rotate(45deg);
}

body[data-page="femipro"] .story-arrow::before {
  margin-bottom: -10px;
  color: rgba(199, 166, 106, 0.8);
}

body[data-page="femipro"] .story-arrow::after {
  margin-top: 0;
  color: rgba(139, 150, 118, 0.82);
  font-size: 0;
}

body[data-page="femipro"] .story-lottie-arrow {
  display: none;
}

@keyframes storyArrowFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(7px);
  }
}

.legal-page {
  color: #000;
  background: #efefef;
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.page-kicker .eyebrow {
  margin: 0;
  color: #000;
}

.back-link {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease;
}

.back-link:hover {
  border-color: #000;
  transform: translateX(-1px);
}

.legal-document {
  padding-block: 0;
}

.legal-document .container {
  max-width: 1060px;
  padding: 32px;
  border: 1px solid #e4e4e4;
  background: #fff;
  box-shadow: 1px 1px 2px 1px rgba(219, 219, 219, 0.95);
}

.legal-document h1 {
  margin: 0 0 16px;
  color: #000;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.legal-document h2 {
  margin: 30px 0 10px;
  color: #000;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.25;
  letter-spacing: 0;
}

.legal-document p {
  max-width: 72ch;
  margin-bottom: 13px;
  color: #000;
  font-size: 0.98rem;
  line-height: 1.72;
}

.legal-document a {
  color: #000;
  font-weight: 800;
}

.legal-highlight-link {
  text-decoration: none;
}

.legal-list {
  max-width: 72ch;
  margin: -2px 0 18px;
  padding-left: 22px;
  color: #000;
  font-size: 0.98rem;
  line-height: 1.72;
}

.legal-list li {
  margin-bottom: 5px;
}

.legal-updated {
  margin-bottom: 26px;
  color: #000;
}

.contact-page {
  padding-block: 0;
}

.contact-shell {
  max-width: 1060px;
  padding: 32px;
  border: 1px solid #e4e4e4;
  background: #fff;
  box-shadow: 1px 1px 2px 1px rgba(219, 219, 219, 0.95);
}

.contact-shell h1 {
  margin: 0 0 14px;
  color: #000;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.contact-shell > p {
  margin-bottom: 28px;
  color: #000;
  font-size: 1rem;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid #e4e4e4;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: none;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: var(--radius);
  background: #efefef;
  color: #000;
  font-size: 1rem;
  line-height: 1.5;
}

.form-field input {
  min-height: 46px;
  padding: 10px 12px;
}

.form-field textarea {
  resize: vertical;
  min-height: 150px;
  padding: 12px;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(0, 0, 0, 0.14);
  border-color: #000;
}

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: var(--rose);
}

.form-error {
  min-height: 18px;
  color: var(--rose);
  font-size: 0.84rem;
}

.contact-submit {
  justify-self: start;
  min-width: 104px;
  box-shadow: none;
}

.form-note {
  margin: -4px 0 0;
  color: #000;
  font-size: 0.9rem;
}

.legal-footer {
  padding-block: 34px 38px;
  border-top: 1px solid #d9d9d9;
  background: #efefef;
  color: #000;
  text-align: center;
}

.legal-footer__inner {
  display: grid;
  justify-items: center;
}

.legal-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.legal-footer a {
  color: #000;
  font-weight: 800;
  text-decoration: none;
}

.legal-footer a:hover {
  text-decoration: underline;
}

.legal-footer p {
  max-width: 620px;
  margin: 0;
  color: #000;
  font-size: 0.8125rem;
  line-height: 1.55;
}

.legal-footer .legal-footer__copyright {
  margin-top: 0;
  font-weight: 700;
}

.legal-footer .legal-footer__facebook {
  margin-top: 22px;
}

.legal-footer .legal-footer__medical {
  margin-top: 12px;
}

body[data-page="vanilla-coffee-latte"] {
  background: #efefef;
}

body[data-page="vanilla-coffee-latte"] main {
  padding: 0 calc(var(--page-gutter-tight) / 2);
}

body[data-page="latte-hack"] {
  background: #efefef;
}

body[data-page="latte-hack"] main {
  padding: 0 calc(var(--page-gutter-tight) / 2);
}

.vanilla-latte-shell {
  width: min(100%, 1080px);
  margin: 0 auto;
}

.vanilla-latte-sheet {
  width: min(100%, 1060px);
  margin: 0 auto;
  padding: 0 0 36px;
  border: 2px solid #e4e4e4;
  background: #ffffff;
  box-shadow:
    1px 1px 2px 1px rgba(219, 219, 219, 0.95);
}

.vanilla-latte-header {
  padding: 20px 20px 0;
  text-align: center;
}

.vanilla-latte-header h1 {
  max-width: 920px;
  margin: 0 auto;
  color: #2d2d2d;
  font-family: "Rokkitt", Georgia, "Times New Roman", serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.vanilla-latte-header h1 strong {
  color: #c00000;
}

.vanilla-latte-subheadline {
  max-width: 960px;
  margin: 20px auto 0;
  color: #2d2d2d;
  font-family: "Rokkitt", Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
}

.vanilla-latte-divider {
  height: 1px;
  margin: 20px auto 24px;
  border: 0;
  background: #cccccc;
  width: 95%;
}

.vanilla-latte-image-frame {
  width: 100%;
  margin: 0;
  padding: 4px;
  border: 7px double #d9d9d9;
  background: #ffffff;
  box-sizing: border-box;
}

.vanilla-latte-portrait-card {
  display: grid;
  justify-items: center;
  width: min(100%, 292px);
  margin: 0 auto 16px;
  padding: 0;
}

.vanilla-latte-portrait {
  width: 100%;
  display: block;
  aspect-ratio: 1336 / 2020;
  object-fit: cover;
}

.vanilla-latte-portrait-caption {
  display: grid;
  gap: 6px;
  padding-top: 10px;
  text-align: center;
}

.vanilla-latte-portrait-title {
  color: #3d3b38;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.25;
}

.vanilla-latte-portrait-weight {
  color: #23211f;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 800;
  line-height: 1.2;
}

.vanilla-latte-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.vanilla-latte-image-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
}

.vanilla-latte-copy {
  color: #2f2d2a;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.62;
  margin: 0 50px 0 60px;
}

.vanilla-latte-copy p {
  margin-bottom: 18px;
}

.vanilla-latte-copy strong {
  font-weight: 800;
}

.vanilla-latte-steps {
  margin: 12px 0 18px;
  padding: 0;
  list-style: none;
}

.vanilla-latte-steps li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 28px;
}

.vanilla-latte-steps li::before {
  position: absolute;
  left: 0;
  top: 0.08em;
  content: "✓";
  color: #71a54a;
  font-weight: 900;
}

.vanilla-latte-cta {
  margin-top: 45px;
  margin-right: 50px;
  margin-left: 60px;
}

.vanilla-latte-cta-link {
  display: flex;
  flex-direction: column;
  gap: 45px;
  width: 100%;
  text-decoration: none;
}

.vanilla-latte-cta-button {
  display: block;
  width: 100%;
  padding: 12px 22px;
  border-radius: 4px;
  background: #ffeb00;
  color: #242424;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
  animation: vanilla-latte-shake 1.2s ease-in-out infinite;
  box-sizing: border-box;
  transform-origin: center;
}

.vanilla-latte-cta-coffee {
  display: block;
  width: 100%;
  margin: 0 auto;
  border: 0;
}

@keyframes vanilla-latte-shake {
  0%, 100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-8px);
  }

  40% {
    transform: translateX(8px);
  }

  60% {
    transform: translateX(-6px);
  }

  80% {
    transform: translateX(6px);
  }
}

body[data-page="vanilla-coffee-latte"] .legal-footer {
  margin-top: 0;
  border-top-color: #e4e4e4;
  background: #efefef;
}

body[data-page="latte-hack"] .legal-footer {
  margin-top: 0;
  border-top-color: #e4e4e4;
  background: #efefef;
}

.latte-hack-subheadline {
  max-width: 860px;
}

.latte-hack-copy {
  margin-bottom: 10px;
}

.latte-hack-lead {
  margin-top: 26px;
}

.latte-hack-highlight {
  margin: 28px 50px 28px 60px;
}

.latte-hack-highlight p {
  margin: 0;
  padding: 14px 18px;
  background: #6e8b3d;
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.latte-hack-cta-group {
  display: grid;
  gap: 14px;
  margin: 30px 50px 32px 60px;
}

.latte-hack-button {
  display: block;
  padding: 14px 18px;
  border-radius: 4px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
  color: #222222;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  font-weight: 800;
  line-height: 1.24;
  text-align: center;
  text-decoration: none;
}

.latte-hack-button-yellow {
  background: #ffeb00;
}

.latte-hack-button-green {
  background: #6e8b3d;
  color: #ffffff;
}

.latte-hack-arrow-stack {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin: 26px 0 10px;
}

.latte-hack-arrow-stack span {
  width: 48px;
  height: 48px;
  border-right: 8px solid #7fd0bf;
  border-bottom: 8px solid #7fd0bf;
  transform: rotate(45deg);
}

.latte-hack-arrow-stack span:nth-child(2) {
  border-right-color: #60bfaf;
  border-bottom-color: #60bfaf;
}

.latte-hack-arrow-stack span:nth-child(3) {
  border-right-color: #9be07d;
  border-bottom-color: #9be07d;
}

.latte-hack-final-cta {
  margin-top: 18px;
}

@media (max-width: 820px) {
  .profile-hero-grid,
  .profile-story,
  .wellness-grid {
    grid-template-columns: 1fr;
  }

  .profile-hero {
    padding-block: 42px 34px;
  }

  .profile-section {
    padding-block: 54px;
  }

  .profile-intro h1 {
    font-size: 2.3rem;
  }

  .story-hero h1 {
    font-size: clamp(1.95rem, 6.8vw, 3.2rem);
  }

  .wellness-card {
    min-height: auto;
  }

  .wellness-card span {
    margin-bottom: 18px;
  }

  .story-hero {
    padding-top: 28px;
  }

  body[data-page="femipro"] .story-hero-shell {
    padding: 4px 0 0;
  }

  body[data-page="femipro"] .story-hero-copy {
    max-width: none;
  }

  body[data-page="femipro"] .story-hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.9rem);
    line-height: 1.08;
  }

  body[data-page="femipro"] .story-bold-line {
    max-width: none;
  }

  body[data-page="vanilla-coffee-latte"] main {
    padding: 0 calc(var(--page-gutter-mobile) / 6);
  }

  body[data-page="latte-hack"] main {
    padding: 0 calc(var(--page-gutter-mobile) / 6);
  }

  .vanilla-latte-sheet {
    padding: 0 0 30px;
  }

  .vanilla-latte-header h1 {
    max-width: 92%;
    font-size: 38px;
    line-height: 1.16;
  }

  .vanilla-latte-subheadline {
    max-width: 90%;
    font-size: 24px;
  }

  .vanilla-latte-copy {
    margin: 0 20px;
    font-size: 22px;
    line-height: 1.58;
  }

  .vanilla-latte-cta {
    margin-right: 20px;
    margin-left: 20px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - var(--page-gutter-mobile), var(--max));
  }

  .legal-document .container,
  .contact-shell {
    padding: 22px 18px;
  }

  .contact-form {
    padding: 18px;
  }

  .btn {
    width: 100%;
  }

  .story-section {
    padding-block: 26px;
  }

  .profile-intro h1 {
    font-size: 2rem;
  }

  .story-hero h1 {
    font-size: 1.9rem;
    line-height: 1.08;
  }

  .story-cta-card,
  .story-final-cta {
    padding-inline: 18px;
  }

  .story-image-placeholder {
    min-height: 230px;
  }

  .story-image-main .story-image-placeholder {
    min-height: 300px;
  }

  body[data-page="femipro"] .story-container {
    max-width: min(100% - var(--page-gutter-mobile), 700px);
  }

  body[data-page="femipro"] .story-hero {
    padding-block: 18px 8px;
  }

  body[data-page="femipro"] .story-hero::before {
    inset: 0;
  }

  body[data-page="femipro"] .story-hero-shell {
    padding: 0;
  }

  body[data-page="femipro"] .story-hero h1 {
    font-size: 1.88rem;
  }

  body[data-page="femipro"] .story-subheadline {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  body[data-page="femipro"] .story-copy-card,
  body[data-page="femipro"] .story-cta-card,
  body[data-page="femipro"] .story-final-cta {
    padding: 0;
    border-radius: 0;
  }

  body[data-page="femipro"] .story-copy {
    font-size: 1.02rem;
    line-height: 1.5;
  }

  body[data-page="femipro"] .story-copy p {
    margin-bottom: 18px;
  }

  body[data-page="femipro"] .story-image img {
    width: 100%;
  }

  body[data-page="femipro"] .story-cta-button,
  body[data-page="femipro"] .story-final-button {
    min-height: 58px;
    padding-inline: 18px;
    font-size: 0.96rem;
  }

  body[data-page="femipro"] .story-arrow::after {
    margin-top: 0;
  }

  body[data-page="vanilla-coffee-latte"] main {
    padding: 0;
  }

  body[data-page="latte-hack"] main {
    padding: 0;
  }

  .vanilla-latte-shell {
    width: 100%;
  }

  .vanilla-latte-sheet {
    width: 100%;
    padding: 0 0 22px;
    border-width: 2px;
    box-shadow: 1px 1px 2px 1px rgba(219, 219, 219, 0.95);
  }

  .vanilla-latte-header {
    padding: 18px 24px 0;
  }

  .vanilla-latte-header h1 {
    max-width: none;
    font-size: 38px;
    line-height: 1.12;
  }

  .vanilla-latte-subheadline {
    max-width: 100%;
    margin-top: 18px;
    font-size: 22px;
    line-height: 1.2;
  }

  .vanilla-latte-divider {
    width: calc(100% - 48px);
    margin: 18px auto 20px;
  }

  .vanilla-latte-image-frame {
    border-width: 5px;
    padding: 3px;
  }

  .vanilla-latte-portrait-card {
    width: min(100%, 240px);
    margin-bottom: 14px;
    padding: 0;
  }

  .vanilla-latte-portrait-caption {
    padding-top: 8px;
  }

  .vanilla-latte-portrait-title {
    font-size: 0.96rem;
  }

  .vanilla-latte-portrait-weight {
    font-size: 1.1rem;
  }

  .vanilla-latte-copy {
    margin: 0 24px;
    font-size: 18px;
    line-height: 1.6;
  }

  .vanilla-latte-copy p {
    margin-bottom: 16px;
  }

  .vanilla-latte-cta {
    margin-top: 22px;
    margin-right: 24px;
    margin-left: 24px;
  }

  .latte-hack-highlight {
    margin: 22px 24px;
  }

  .latte-hack-cta-group {
    margin: 24px 24px 28px;
  }

  .latte-hack-button {
    padding: 12px 14px;
    font-size: clamp(0.96rem, 5vw, 1.25rem);
  }

  .latte-hack-arrow-stack {
    margin-top: 20px;
  }

  .latte-hack-arrow-stack span {
    width: 36px;
    height: 36px;
    border-right-width: 6px;
    border-bottom-width: 6px;
  }

  .vanilla-latte-cta-link {
    gap: 16px;
  }

  .vanilla-latte-cta-button {
    padding: 10px 14px;
    font-size: clamp(1rem, 5.8vw, 1.6rem);
  }

  .vanilla-latte-cta-coffee {
    width: 100%;
  }
}

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

  .animation-ready .scroll-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .vanilla-latte-cta-button {
    animation: none;
  }

  .story-arrow {
    animation: none;
  }
}
