:root {
  --terracotta: #B85C2A;
  --copper: #C97040;
  --earth: #7A3B1E;
  --mist: #F5F0EB;
  --sand: #EDE4D8;
  --border: #D4CBC2;
  --charcoal: #3D3530;
  --muted: #6B655D;
  --moss: #78886D;
  --moss-deep: #66745C;
  --moss-soft: #A9B49E;
  --white: #fffaf6;
  --shadow: 0 18px 50px rgba(61, 53, 48, 0.12);
  --radius: 24px;
  --container: 1180px;
  --header-height: 76px;
  --font-sans: "Poppins", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-serif: "Sorts Mill Goudy", "Iowan Old Style", "Baskerville Old Face", Garamond, Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--mist);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  padding-top: var(--header-height);
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

h1,
h2 {
  margin: 0 0 1rem;
  color: var(--earth);
  font-family: var(--font-serif);
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 400;
}

h3 {
  margin: 0 0 0.65rem;
  color: var(--earth);
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.3;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.section {
  padding: 90px 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-head p:last-child {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
  line-height: 1.75;
}

.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--terracotta);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.2rem);
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn-primary {
  padding: 16px 34px;
  background: linear-gradient(135deg, #9F461E, #A84E23);
  box-shadow: 0 4px 20px rgba(184, 92, 42, 0.3);
  color: var(--mist);
}

.btn-primary:hover {
  box-shadow: 0 10px 28px rgba(184, 92, 42, 0.35);
  transform: translateY(-1px) scale(1.02);
}

.btn-secondary {
  padding: 14px 30px;
  border: 1.5px solid var(--terracotta);
  color: var(--terracotta);
  font-weight: 400;
  letter-spacing: 0;
}

.btn-secondary:hover {
  background: #9F461E;
  color: var(--mist);
}

:where(a, button, input, textarea, summary):focus-visible {
  outline: 3px solid rgba(122, 59, 30, 0.72);
  outline-offset: 4px;
}

.cta-microcopy {
  max-width: 560px;
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.cta-microcopy-light {
  max-width: 650px;
  margin: 1rem auto 0;
  color: rgba(245, 240, 235, 0.76);
}

.btn-large {
  width: min(100%, 460px);
  min-height: 60px;
  margin-top: 1rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--terracotta);
  font-weight: 500;
}

.text-link::after {
  content: " ->";
  margin-left: 0.25rem;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  width: 100%;
  min-height: var(--header-height);
  padding: 10px clamp(20px, 4vw, 56px);
  background: rgba(245, 240, 235, 0.98);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(61, 53, 48, 0.08);
}

.site-header.menu-active {
  box-shadow: 0 10px 30px rgba(61, 53, 48, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--earth);
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.1;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 220px;
  height: 56px;
  place-items: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.brand-header .brand-mark {
  width: 156px;
  height: 50px;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.92rem;
}

.desktop-nav a:hover {
  color: var(--terracotta);
}

.header-cta {
  padding: 11px 20px;
  border-radius: 999px;
  background: #9F461E;
  color: var(--mist);
  font-size: 0.9rem;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(184, 92, 42, 0.28);
  border-radius: 50%;
  background: rgba(245, 240, 235, 0.75);
  color: var(--earth);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.mobile-menu {
  position: fixed;
  z-index: 40;
  inset: 0 0 0 auto;
  width: min(86vw, 360px);
  padding: 100px 26px 30px;
  background: var(--mist);
  box-shadow: -22px 0 60px rgba(61, 53, 48, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateX(105%);
  visibility: hidden;
  transition: transform 220ms ease, opacity 220ms ease, visibility 220ms ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu nav {
  display: grid;
  gap: 18px;
}

.mobile-menu a {
  color: var(--earth);
  font-size: 1.1rem;
}

.menu-backdrop {
  position: fixed;
  z-index: 35;
  inset: 0;
  border: 0;
  background: rgba(61, 53, 48, 0.34);
  cursor: pointer;
  opacity: 0;
  transition: opacity 220ms ease;
}

.menu-backdrop.visible {
  opacity: 1;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: calc(100svh - var(--header-height));
  height: calc(100svh - var(--header-height));
  overflow: hidden;
  background: linear-gradient(135deg, var(--mist), var(--sand));
}

.hero::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(184, 92, 42, 0.16);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  min-height: 100%;
  background:
    linear-gradient(to bottom, rgba(184, 92, 42, 0.08), rgba(61, 53, 48, 0.48)),
    radial-gradient(circle at 32% 22%, rgba(120, 136, 109, 0.34), transparent 32%),
    linear-gradient(145deg, #d7c7b4, #a9b49e 46%, #7a3b1e);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--sand) 0%, rgba(237, 228, 216, 0.76) 6%, rgba(237, 228, 216, 0) 18%, rgba(237, 228, 216, 0) 76%, rgba(245, 240, 235, 0.74) 92%, var(--mist) 100%);
  pointer-events: none;
}

.photo-frame {
  position: absolute;
  inset: 0;
  border-radius: 0;
  border: 0;
  background: #efe6dc;
  box-shadow: none;
  overflow: hidden;
}

.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: contrast(0.95) brightness(1.02) saturate(0.9);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 720px;
  padding: clamp(42px, 7vh, 84px) clamp(28px, 6vw, 84px);
}

.hero-content h1 {
  font-size: clamp(3rem, 4.2vw, 4.35rem);
}

.hero-content .lead {
  max-width: 600px;
  margin-bottom: 0.65rem;
  font-size: clamp(1.12rem, 1.45vw, 1.38rem);
}

.hero-note {
  max-width: 580px;
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.hero-program-meta {
  max-width: 620px;
  margin: 0 0 1.25rem;
  color: var(--earth);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.intro {
  background: var(--mist);
}

.intro .narrow {
  text-align: center;
}

.intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.intro .question {
  margin: 1.5rem 0;
  color: var(--earth);
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-style: italic;
}

.intro-lines {
  display: grid;
  gap: 0.35rem;
  max-width: 520px;
  margin: 1.5rem auto;
}

.intro-lines p {
  margin: 0;
  color: var(--earth);
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  line-height: 1.35;
}

.intro blockquote {
  max-width: 520px;
  margin: 42px auto 0;
  padding: 28px;
  border-top: 1px solid rgba(184, 92, 42, 0.35);
  border-bottom: 1px solid rgba(184, 92, 42, 0.35);
}

.intro blockquote span {
  display: block;
  color: var(--earth);
  font-family: var(--font-serif);
  font-size: 2.1rem;
}

.intro cite {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  font-style: normal;
  font-size: 1rem;
  line-height: 1.55;
}

.intro-image,
.method-image,
.about-photo,
.transformation-image,
.contact-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 250, 246, 0.5);
}

.intro-image img,
.method-image img,
.about-photo img,
.transformation-image img,
.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-image {
  aspect-ratio: 16 / 8.4;
  margin-top: 44px;
}

.intro-image img {
  object-position: center 62%;
}

.method,
.testimonials {
  background: var(--sand);
}

.method .section-head {
  max-width: 900px;
  margin-right: 0;
  margin-bottom: 30px;
  text-align: left;
}

.method .section-head p:last-child {
  max-width: 780px;
}

.pillar-step,
.outcome,
.testimonial,
.credentials,
.faq-item {
  border: 1px solid rgba(212, 203, 194, 0.85);
  border-radius: var(--radius);
  background: rgba(255, 250, 246, 0.58);
  box-shadow: 0 10px 35px rgba(61, 53, 48, 0.05);
}

.pillar-timeline {
  --timeline-axis: 18px;
  --pillar-offset: 52px;
  --pillar-height: 96px;
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin-top: 10px;
}

.pillar-timeline::before {
  content: "";
  position: absolute;
  top: calc(var(--pillar-height) / 2);
  bottom: calc(var(--pillar-height) / 2);
  left: var(--timeline-axis);
  width: 2px;
  background: rgba(184, 92, 42, 0.34);
  transform: translateX(-50%);
}

.pillar-step {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: var(--pillar-height);
  margin-left: var(--pillar-offset);
  padding: 18px 28px;
  align-items: flex-start;
  justify-content: center;
}

.pillar-step::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(var(--timeline-axis) - var(--pillar-offset));
  width: 14px;
  height: 14px;
  border: 3px solid var(--sand);
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 1px rgba(184, 92, 42, 0.44);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.pillar-step h3 {
  margin: 0;
}

.pillar-step p {
  margin: 0.35rem 0 0;
}

.pillar-step p,
.outcome p,
.testimonial blockquote,
.credentials li,
.faq-item p {
  color: var(--muted);
}

.method-intro {
  max-width: 900px;
  margin: -8px 0 58px;
  padding: 4px 0 4px 28px;
  border-left: 1px solid rgba(184, 92, 42, 0.38);
  color: var(--muted);
  font-size: 1.05rem;
  text-align: left;
}

.method-intro p:nth-child(3) {
  color: var(--earth);
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.25;
}

.method-image {
  aspect-ratio: 16 / 5.4;
  margin: 0 0 70px;
}

.method-image img {
  object-position: center 58%;
}

.method-block {
  margin-top: 70px;
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.portal-card,
.method-for {
  border: 1px solid rgba(212, 203, 194, 0.85);
  border-radius: var(--radius);
  background: rgba(255, 250, 246, 0.58);
  box-shadow: 0 10px 35px rgba(61, 53, 48, 0.05);
}

.portal-card {
  padding: 30px;
  text-align: left;
}

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

.program-start .narrow {
  max-width: 920px;
}

.intro-bridge {
  max-width: 680px;
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  line-height: 1.65;
}

.program-symptoms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0;
  text-align: left;
}

.program-symptoms p {
  position: relative;
  min-height: 100%;
  margin: 0;
  padding: 18px 18px 18px 34px;
  border: 1px solid rgba(212, 203, 194, 0.85);
  border-radius: 18px;
  background: rgba(255, 250, 246, 0.62);
  box-shadow: 0 10px 35px rgba(61, 53, 48, 0.04);
}

.program-symptoms p::before {
  content: "";
  position: absolute;
  top: 1.85em;
  left: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
}

.reassurance {
  max-width: 760px;
  margin-top: 30px;
  padding-left: 24px;
  border-left: 2px solid rgba(184, 92, 42, 0.42);
}

.reassurance h3 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
}

.reassurance p {
  margin: 0;
  color: var(--muted);
}

.program-origin,
.program-quote,
.program-result {
  color: var(--earth) !important;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem) !important;
  line-height: 1.3;
}

.program-origin {
  margin-top: 34px;
}

.program-portals {
  background: var(--mist);
}

.program-portal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.program-portal {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
  border: 1px solid rgba(212, 203, 194, 0.85);
  border-radius: var(--radius);
  background: rgba(255, 250, 246, 0.72);
  box-shadow: 0 10px 35px rgba(61, 53, 48, 0.05);
}

.program-portal p {
  color: var(--muted);
}

.program-portal ul {
  display: grid;
  gap: 12px;
  margin: auto 0 0;
  padding: 22px 0 0;
  color: var(--muted);
  list-style: none;
}

.program-portal li {
  position: relative;
  padding-left: 22px;
}

.program-portal li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--moss);
}

.program-result {
  margin: 24px 0 0 !important;
  padding-top: 22px;
  border-top: 1px solid rgba(184, 92, 42, 0.22);
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.program-final-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(184, 92, 42, 0.22);
}

.method-for {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: 34px;
  margin-top: 70px;
  padding: 34px;
  text-align: left;
}

.method-for h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.method-for ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.method-for li {
  position: relative;
  padding-left: 22px;
}

.method-for li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}

.method-question {
  grid-column: 1 / -1;
  max-width: 860px;
  margin: 18px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(184, 92, 42, 0.22);
  color: var(--earth);
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.28;
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.about-compact {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(34px, 7vw, 80px);
  align-items: start;
}

.about-copy p:not(.eyebrow) {
  color: var(--muted);
}

.credentials {
  padding: 34px;
}

.about-photo {
  aspect-ratio: 4 / 3;
  margin-bottom: 26px;
}

.about-photo img {
  object-position: center 82%;
}

.credentials ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.credentials li {
  padding-left: 20px;
  border-left: 1px solid rgba(184, 92, 42, 0.4);
}

.certificate-drive-link {
  width: fit-content;
  margin-top: 24px;
}

.transformation {
  background: var(--mist);
}

.transformation-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  grid-template-areas:
    "image statement"
    "image list";
  gap: 24px;
  align-items: stretch;
}

.transformation-statement,
.transformation-list,
.testimonial {
  padding: 30px;
}

.transformation-statement,
.transformation-list {
  border: 1px solid rgba(212, 203, 194, 0.85);
  border-radius: var(--radius);
  background: rgba(255, 250, 246, 0.72);
  box-shadow: 0 10px 35px rgba(61, 53, 48, 0.05);
}

.transformation-statement {
  grid-area: statement;
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 42px 34px;
  background:
    linear-gradient(rgba(184, 92, 42, 0.08), rgba(120, 136, 109, 0.16)),
    rgba(255, 250, 246, 0.72);
}

.transformation-statement span {
  color: var(--earth);
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.08;
  text-align: center;
}

.transformation-image {
  grid-area: image;
  height: 100%;
  border: 1px solid rgba(212, 203, 194, 0.85);
  border-radius: var(--radius);
  box-shadow: 0 10px 35px rgba(61, 53, 48, 0.05);
}

.transformation-image img {
  object-position: center 38%;
}

.transformation-list {
  grid-area: list;
}

.transformation-list p {
  margin: 0 0 1rem;
  color: var(--terracotta);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.transformation-list ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.transformation-list li {
  position: relative;
  padding-left: 22px;
}

.transformation-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--moss);
}

.testimonial-carousel {
  display: grid;
  gap: 18px;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-grid {
  display: flex;
  gap: 18px;
  align-items: stretch;
  transition: transform 500ms ease;
  will-change: transform;
}

.testimonial {
  flex: 0 0 calc((100% - 36px) / 3);
  margin: 0;
  padding: 28px;
}

.testimonial blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.32rem);
  line-height: 1.42;
}

.testimonial figcaption {
  color: var(--earth);
  font-size: 0.92rem;
  font-weight: 500;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testimonial-control {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(184, 92, 42, 0.34);
  border-radius: 50%;
  background: rgba(255, 250, 246, 0.72);
  color: var(--earth);
  font: inherit;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.testimonial-control:hover {
  background: var(--earth);
  color: var(--mist);
  transform: translateY(-1px);
}

.testimonial-status {
  min-width: 62px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.cohort {
  background:
    linear-gradient(rgba(61, 53, 48, 0.78), rgba(61, 53, 48, 0.78)),
    url("images/JoanaAlves-96.webp") center / cover no-repeat,
    linear-gradient(135deg, var(--earth), var(--terracotta));
  color: var(--mist);
  text-align: center;
}

.cohort h2,
.cohort .eyebrow,
.cohort .lead {
  color: var(--mist);
}

.cohort p {
  color: rgba(245, 240, 235, 0.84);
}

.cohort-meta {
  margin-top: 1.5rem;
  color: var(--sand);
  font-weight: 500;
}

.cohort small {
  display: block;
  margin-top: 0.9rem;
  color: rgba(245, 240, 235, 0.7);
}

.cohort-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 1rem;
}

.cohort .btn-secondary {
  border-color: rgba(245, 240, 235, 0.72);
  color: var(--mist);
}

.cohort .btn-secondary:hover {
  background: var(--mist);
  color: var(--earth);
}

.cohort .btn-primary {
  background: var(--mist);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  color: var(--earth);
}

.faq {
  background: var(--mist);
}

.faq-grid {
  column-count: 2;
  column-gap: 16px;
}

.faq-item {
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  padding: 0;
  break-inside: avoid;
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  min-height: 68px;
  padding: 22px 58px 22px 24px;
  color: var(--earth);
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary:focus-visible {
  outline: 0;
  box-shadow: inset 0 0 0 3px rgba(122, 59, 30, 0.5);
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--terracotta);
  font-size: 1.5rem;
  transform: translateY(-50%);
}

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

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
}

.contact {
  background: var(--sand);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(520px, 1fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  max-width: 620px;
}

.contact-image {
  aspect-ratio: 16 / 10.5;
  max-width: 620px;
  margin-top: 30px;
}

.contact-image img {
  object-position: center center;
}

.contact-card {
  display: grid;
  gap: 22px;
  padding: 30px;
  border: 1px solid rgba(212, 203, 194, 0.85);
  border-radius: var(--radius);
  background: rgba(255, 250, 246, 0.66);
  box-shadow: 0 10px 35px rgba(61, 53, 48, 0.05);
}

.contact-methods {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(184, 92, 42, 0.22);
}

.contact-link {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.contact-link span {
  color: var(--terracotta);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-link strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--earth);
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  font-weight: 500;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-social strong {
  align-items: flex-start;
  font-size: clamp(0.98rem, 1.24vw, 1.12rem);
  line-height: 1.18;
  overflow-wrap: normal;
  word-break: normal;
}

.contact-link svg {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.contact-link-dot {
  fill: currentColor;
  stroke: none;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding-top: 0;
  border-top: 0;
}

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

.contact-form label,
.form-consent {
  color: var(--terracotta);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(184, 92, 42, 0.28);
  border-radius: 18px;
  background: rgba(245, 240, 235, 0.65);
  color: var(--charcoal);
  font: inherit;
  padding: 13px 16px;
}

.contact-form input {
  min-height: 48px;
}

.contact-form textarea {
  min-height: 104px;
  resize: vertical;
}

.form-field-full,
.form-consent,
.form-privacy-note,
.contact-form .btn {
  grid-column: 1 / -1;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--terracotta);
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
.form-consent input:focus-visible {
  outline: 3px solid rgba(122, 59, 30, 0.58);
  outline-offset: 3px;
}

.form-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.form-consent input {
  width: 16px;
  min-height: 16px;
  margin-top: 2px;
  accent-color: var(--terracotta);
}

.form-privacy-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.form-privacy-note .inline-link-button {
  color: var(--terracotta);
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.86rem;
}

.form-status[hidden] {
  display: none;
}

.form-status-success {
  border: 1px solid rgba(75, 121, 84, 0.28);
  background: rgba(75, 121, 84, 0.1);
  color: #355d3d;
}

.contact-form .btn:disabled {
  cursor: wait;
  opacity: 0.68;
}

.contact-form .btn {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.site-footer {
  padding: 56px 0;
  background: var(--charcoal);
  color: var(--mist);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 30px;
  align-items: start;
}

.footer-brand {
  color: var(--mist);
}

.footer-brand .brand-mark {
  width: 280px;
  height: 78px;
}

.site-footer p,
.site-footer a {
  color: rgba(245, 240, 235, 0.76);
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

.site-footer a:hover,
.footer-link-button:hover {
  color: var(--mist);
}

.footer-link-button,
.inline-link-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.footer-link-button {
  color: rgba(245, 240, 235, 0.76);
}

.footer-meta {
  display: grid;
  gap: 10px;
  font-size: 0.92rem;
}

.footer-credit {
  width: min(calc(100% - 40px), var(--container));
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(245, 240, 235, 0.12);
  color: rgba(245, 240, 235, 0.5);
  font-size: 0.76rem;
  line-height: 1.4;
  text-align: center;
}

.footer-credit a {
  color: rgba(245, 240, 235, 0.62);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: rgba(245, 240, 235, 0.9);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-link-dot {
  fill: currentColor;
  stroke: none;
}

.cookie-banner {
  position: fixed;
  z-index: 70;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  max-width: 1050px;
  margin: 0 auto;
  padding: 18px;
  border-radius: 14px;
  background: var(--charcoal);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  color: var(--mist);
}

.cookie-banner.visible {
  display: grid;
}

.cookie-banner p {
  margin: 0;
  color: rgba(245, 240, 235, 0.86);
  font-size: 0.92rem;
}

.cookie-banner a,
.inline-link-button {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.cookie-banner div {
  display: flex;
  gap: 10px;
}

.btn-cookie-primary,
.btn-cookie-secondary {
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid var(--terracotta);
  cursor: pointer;
}

.btn-cookie-primary {
  background: var(--terracotta);
  color: var(--mist);
}

.btn-cookie-secondary {
  background: transparent;
  color: var(--mist);
}

.privacy-modal {
  width: min(calc(100% - 32px), 760px);
  max-height: min(84svh, 780px);
  border: 0;
  border-radius: 18px;
  padding: 0;
  background: transparent;
  color: var(--charcoal);
}

.privacy-modal::backdrop {
  background: rgba(61, 53, 48, 0.54);
}

.privacy-modal-panel {
  position: relative;
  max-height: min(84svh, 780px);
  padding: 34px;
  border: 1px solid rgba(212, 203, 194, 0.85);
  border-radius: 18px;
  background: var(--mist);
  box-shadow: 0 22px 70px rgba(61, 53, 48, 0.26);
  overflow: auto;
}

.privacy-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(184, 92, 42, 0.26);
  border-radius: 50%;
  background: rgba(255, 250, 246, 0.74);
  color: var(--earth);
  font: inherit;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.privacy-modal h2 {
  max-width: calc(100% - 54px);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
}

.privacy-updated {
  color: var(--muted);
  font-size: 0.88rem;
}

.privacy-content {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.privacy-content h3 {
  margin-top: 12px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
}

.privacy-content p {
  color: var(--muted);
}

.privacy-content a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.sticky-cta {
  position: fixed;
  z-index: 45;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: none;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--terracotta), var(--copper));
  box-shadow: 0 8px 28px rgba(184, 92, 42, 0.32);
  color: var(--mist);
  font-weight: 500;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

@media (max-width: 1023px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: calc(100svh - var(--header-height));
    height: auto;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
  }

  .hero-visual::after {
    background:
      linear-gradient(to bottom, rgba(61, 53, 48, 0.08) 0%, rgba(61, 53, 48, 0.28) 34%, rgba(61, 53, 48, 0.84) 100%),
      linear-gradient(to right, rgba(61, 53, 48, 0.42), rgba(61, 53, 48, 0.1) 58%);
  }

  .photo-frame {
    inset: 0;
    border-radius: 0;
  }

  .hero-photo {
    object-fit: cover;
    object-position: center center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-self: stretch;
    max-width: none;
    min-height: calc(100svh - var(--header-height));
    padding: 24svh 24px max(28px, env(safe-area-inset-bottom)) 24px;
    color: var(--mist);
  }

  .hero-content h1 {
    max-width: 680px;
    font-size: clamp(2.18rem, 9vw, 4.6rem);
  }

  .hero-content .lead {
    max-width: 560px;
    margin-bottom: 1.1rem;
    font-size: clamp(1.16rem, 4.8vw, 1.55rem);
  }

  .hero-content .eyebrow {
    margin-bottom: 0.55rem;
  }

  .hero-content h1,
  .hero-content .eyebrow,
  .hero-content .lead,
  .hero-content .hero-note,
  .hero-content .hero-program-meta {
    color: var(--mist);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
  }

  .hero-content .hero-note {
    max-width: 430px;
    margin-bottom: 1rem;
    color: rgba(245, 240, 235, 0.86);
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .hero-content .hero-program-meta {
    max-width: 430px;
    margin-bottom: 1rem;
    color: rgba(245, 240, 235, 0.9);
    font-size: 0.82rem;
  }

  .hero-content .cta-microcopy {
    max-width: 430px;
    color: rgba(245, 240, 235, 0.78);
    font-size: 0.78rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 430px;
  }

  .hero .btn-secondary {
    border-color: rgba(245, 240, 235, 0.82);
    color: var(--mist);
  }

  .hero .btn-primary {
    background: linear-gradient(135deg, #9F461E, #B85C2A);
  }

  .outcomes,
  .portal-grid,
  .program-portal-grid,
  .footer-inner,
  .contact-layout,
  .split,
  .method-for {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    column-count: 1;
  }

  .about-compact {
    grid-template-columns: 1fr;
  }

  .testimonial {
    flex-basis: calc((100% - 18px) / 2);
  }

  .program-symptoms {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .transformation-layout {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .contact-card {
    max-width: 720px;
    width: 100%;
  }

  .intro-image,
  .method-image,
  .contact-image {
    aspect-ratio: 16 / 9;
  }

  .transformation-image {
    order: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    background: #efe6dc;
  }

  .transformation-image img {
    object-fit: contain;
    object-position: center top;
  }

  .transformation-statement {
    order: 2;
    min-height: auto;
    padding: 28px 24px;
  }

  .transformation-list {
    order: 3;
  }

  .sticky-cta.visible {
    display: flex;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .brand-mark {
    width: 180px;
    height: 46px;
  }

  .brand-header .brand-mark {
    width: 148px;
    height: 46px;
  }

  .hero-content {
    padding-top: 22svh;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero .btn {
    min-height: 46px;
  }

  .method-intro {
    margin-bottom: 46px;
    padding-left: 20px;
  }

  .method-block,
  .method-for {
    margin-top: 52px;
  }

  .method-for {
    padding: 26px;
  }

  .transformation-statement,
  .transformation-list {
    padding: 24px;
  }

  .intro-image,
  .method-image,
  .about-photo,
  .transformation-image,
  .contact-image {
    border-radius: 18px;
  }

  .intro-image {
    margin-top: 34px;
  }

  .method-image {
    margin-bottom: 0;
  }

  .about-photo {
    aspect-ratio: 1 / 1;
  }

  .contact-image {
    margin-top: 24px;
  }

  .contact-methods,
  .program-final-actions,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .program-symptoms {
    grid-template-columns: 1fr;
  }

  .testimonial {
    flex-basis: 100%;
  }

  .contact-card {
    padding: 24px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    bottom: 18px;
  }

  .cookie-banner div {
    display: grid;
    grid-template-columns: 1fr;
  }

  .privacy-modal-panel {
    padding: 28px 22px;
  }

  .privacy-modal h2 {
    max-width: calc(100% - 46px);
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.45rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    text-align: center;
  }

  .hero-content {
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (min-width: 1024px) and (max-height: 820px) {
  .hero {
    height: calc(100svh - var(--header-height));
  }

  .photo-frame {
    inset: 0;
  }

  .hero-content {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .hero-content h1 {
    margin-bottom: 0.7rem;
    font-size: clamp(2.75rem, 5vw, 4.2rem);
  }

  .hero-content .lead {
    margin-bottom: 1rem;
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  }

  .hero-actions {
    gap: 10px;
  }

  .hero .btn {
    min-height: 44px;
    padding-top: 11px;
    padding-bottom: 11px;
  }
}

@media (min-width: 1024px) and (max-height: 600px) {
  .hero-content {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .hero-content h1 {
    font-size: clamp(2.35rem, 4.4vw, 3.35rem);
  }

  .hero-content .lead {
    font-size: 1.05rem;
    line-height: 1.25;
  }
}

@media (max-height: 720px) and (max-width: 1023px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand-mark {
    width: 168px;
    height: 40px;
    flex-basis: auto;
  }

  .brand-header .brand-mark {
    width: 132px;
    height: 40px;
  }

  .hero-content {
    padding-top: 112px;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }

  .hero-content h1 {
    margin-bottom: 0.65rem;
    font-size: clamp(2rem, 8vw, 3.35rem);
  }

  .hero-content .lead {
    margin-bottom: 0.8rem;
    font-size: clamp(1.05rem, 4vw, 1.25rem);
    line-height: 1.28;
  }

  .hero-content .hero-note {
    font-size: 0.86rem;
    line-height: 1.36;
  }

  .hero-content .hero-program-meta {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .hero-content .cta-microcopy {
    display: none;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero .btn {
    min-height: 42px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media (max-height: 580px) and (max-width: 1023px) {
  .hero-content {
    padding-top: 84px;
  }

  .hero-content h1 {
    font-size: clamp(1.78rem, 7vw, 2.7rem);
  }

  .hero-content .lead {
    font-size: 1rem;
  }

  .hero-content .hero-note {
    font-size: 0.82rem;
  }

  .hero-content .hero-program-meta {
    display: none;
  }

  .hero-content .eyebrow {
    font-size: 0.68rem;
  }
}
