:root {
  --green-950: #10251f;
  --green-900: #19342d;
  --green-800: #23463c;
  --green-700: #2e594c;
  --ivory: #f6f3ed;
  --ivory-deep: #ece6dc;
  --beige: #d8cbb9;
  --bronze: #b18a5a;
  --bronze-light: #d0b185;
  --ink: #14231f;
  --muted: #66716d;
  --white: #fff;
  --line: rgba(25, 52, 45, 0.16);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --shadow: 0 24px 70px rgba(16, 37, 31, 0.12);
  --radius: 2px;
  --container: 1180px;
}

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

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}

h3 {
  line-height: 1.25;
}

::selection {
  background: var(--bronze);
  color: var(--white);
}

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

.section-pad {
  padding-block: clamp(92px, 11vw, 158px);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--green-900);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow,
.section-index {
  margin-bottom: 22px;
  color: var(--bronze);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 84px;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(16px);
  transition: box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.scrolled {
  border-color: rgba(25, 52, 45, 0.1);
  box-shadow: 0 6px 24px rgba(16, 37, 31, 0.06);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

.brand-viewport {
  position: relative;
  display: block;
  width: 270px;
  height: 78px;
  overflow: hidden;
  background: var(--white);
}

.brand-viewport img {
  position: absolute;
  top: -54px;
  left: -31px;
  width: 330px;
  max-width: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  color: var(--green-900);
  font-size: 0.82rem;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 10px;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--bronze);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 13px 20px;
  background: var(--green-900);
  color: var(--white);
  transition: background 180ms ease, transform 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--green-700);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: var(--green-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  display: grid;
  min-height: min(860px, 100vh);
  padding-top: 84px;
  grid-template-columns: minmax(0, 54%) minmax(0, 46%);
  background: var(--ivory);
}

.hero-copy {
  display: flex;
  min-width: 0;
  align-items: center;
  padding: clamp(60px, 7vw, 110px) clamp(28px, 6vw, 110px);
}

.hero-copy-inner {
  width: min(100%, 700px);
  min-width: 0;
  margin-left: auto;
}

.hero > *,
.statement-grid > *,
.section-heading > *,
.consultation-grid > *,
.about-grid > *,
.course-grid > *,
.faq-grid > * {
  min-width: 0;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 30px;
  color: var(--green-900);
  font-size: clamp(3.35rem, 5.8vw, 6.7rem);
  hyphens: none;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.hero h1 em {
  color: var(--green-700);
  font-weight: inherit;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 36px;
  color: #4f5f5a;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 54px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 24px;
  border: 1px solid transparent;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button svg {
  width: 19px;
  fill: currentColor;
}

.button-primary {
  background: var(--green-900);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-700);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--green-900);
  color: var(--green-900);
  font-size: 0.86rem;
  font-weight: 700;
}

.text-link span {
  color: var(--bronze);
}

.hero-facts {
  display: flex;
  max-width: 630px;
  margin: 0;
  padding: 25px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-facts li {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-right: 20px;
}

.hero-facts li + li {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.hero-facts strong {
  color: var(--green-900);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.hero-facts span {
  color: var(--muted);
  font-size: 0.72rem;
}

.hero-visual {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  background: #292827;
}

.hero-visual::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(11, 25, 21, 0.72));
  content: "";
}

.hero-visual::after {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 5px;
  height: 28%;
  background: var(--bronze);
  content: "";
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.hero-signature {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 4vw, 62px);
  bottom: 34px;
  left: clamp(24px, 4vw, 62px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-signature strong {
  color: var(--bronze-light);
  white-space: nowrap;
}

.statement {
  background: var(--white);
}

.statement-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 3fr;
}

.statement-copy {
  max-width: 900px;
}

.large-quote {
  margin-bottom: 34px;
  color: var(--green-900);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 5.2rem);
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.statement-copy > p:last-child {
  max-width: 620px;
  margin-left: auto;
  color: var(--muted);
}

.pillars {
  background: var(--ivory);
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 70px;
  margin-bottom: 70px;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.65fr);
}

.section-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--green-900);
}

.section-heading > p {
  margin-bottom: 8px;
  color: var(--muted);
}

.pillar-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.pillar-card {
  position: relative;
  min-height: 410px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: background 260ms ease, color 260ms ease, transform 260ms ease;
}

.pillar-card::after {
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(177, 138, 90, 0.34);
  border-radius: 50%;
  content: "";
  transition: transform 360ms ease;
}

.pillar-card:hover {
  z-index: 1;
  background: var(--green-900);
  color: var(--white);
  transform: translateY(-6px);
}

.pillar-card:hover::after {
  transform: scale(2.6);
}

.card-number {
  color: var(--bronze);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.card-icon {
  width: 52px;
  height: 52px;
  margin: 58px 0 42px;
  fill: none;
  stroke: var(--green-700);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
  transition: stroke 260ms ease;
}

.pillar-card:hover .card-icon {
  stroke: var(--bronze-light);
}

.pillar-card h3 {
  margin-bottom: 15px;
  color: var(--green-900);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  transition: color 260ms ease;
}

.pillar-card:hover h3 {
  color: var(--white);
}

.pillar-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
  transition: color 260ms ease;
}

.pillar-card:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.consultation {
  background: var(--white);
}

.consultation-grid {
  display: grid;
  align-items: center;
  gap: clamp(55px, 8vw, 112px);
  grid-template-columns: minmax(340px, 0.87fr) minmax(0, 1.13fr);
}

.consultation-image {
  position: relative;
  height: min(760px, 75vw);
  min-height: 620px;
}

.consultation-image::before {
  position: absolute;
  z-index: 0;
  inset: -22px 22px 22px -22px;
  border: 1px solid var(--beige);
  content: "";
}

.consultation-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.image-note {
  position: absolute;
  z-index: 2;
  right: -38px;
  bottom: 44px;
  display: flex;
  width: 265px;
  min-height: 120px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 28px;
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.image-note strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.consultation-copy h2 {
  max-width: 670px;
  margin-bottom: 26px;
  color: var(--green-900);
}

.consultation-copy .intro {
  max-width: 650px;
  margin-bottom: 45px;
  color: var(--muted);
  font-size: 1.04rem;
}

.consultation-list {
  border-top: 1px solid var(--line);
}

.consultation-list article {
  display: grid;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 36px 1fr;
}

.consultation-list article > span {
  padding-top: 3px;
  color: var(--bronze);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.consultation-list h3 {
  margin-bottom: 5px;
  color: var(--green-900);
  font-size: 0.98rem;
}

.consultation-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.mode-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin-top: 30px;
  color: var(--green-800);
  font-size: 0.78rem;
  font-weight: 700;
}

.mode-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mode-row svg {
  width: 20px;
  fill: none;
  stroke: var(--bronze);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.journey {
  position: relative;
  overflow: hidden;
  background: var(--green-900);
  color: var(--white);
}

.journey::after {
  position: absolute;
  right: -16vw;
  bottom: -33vw;
  width: 60vw;
  height: 60vw;
  border: 1px solid rgba(208, 177, 133, 0.16);
  border-radius: 50%;
  content: "";
}

.section-heading.light {
  position: relative;
  z-index: 1;
}

.section-heading.light h2 {
  color: var(--white);
}

.section-heading.light > p {
  color: rgba(255, 255, 255, 0.62);
}

.journey-steps {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
}

.journey-steps li {
  min-height: 260px;
  padding: 34px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.journey-steps li:last-child {
  border-right: 0;
}

.journey-steps span {
  display: block;
  margin-bottom: 68px;
  color: var(--bronze-light);
  font-size: 0.68rem;
  font-weight: 700;
}

.journey-steps h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.journey-steps p {
  max-width: 190px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

.about {
  background: var(--ivory);
}

.about-grid {
  display: grid;
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
}

.about-copy h2 {
  max-width: 690px;
  margin-bottom: 34px;
  color: var(--green-900);
}

.about-copy > p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
}

.about-copy .about-intro {
  color: var(--green-800) !important;
  font-size: 1.12rem;
}

.credentials {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.credentials-monogram {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid var(--bronze);
  border-radius: 50%;
  color: var(--green-900);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.credentials div {
  display: flex;
  flex-direction: column;
}

.credentials strong {
  color: var(--green-900);
  font-size: 0.86rem;
}

.credentials div span {
  color: var(--muted);
  font-size: 0.76rem;
}

.about-image {
  position: relative;
  padding: 0 22px 22px 0;
}

.about-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center 25%;
  box-shadow: var(--shadow);
}

.about-frame {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 75%;
  height: 75%;
  border: 1px solid var(--bronze);
}

.courses {
  background: #eae2d7;
}

.courses-heading {
  max-width: 800px;
  margin-bottom: 60px;
}

.courses-heading h2 {
  margin-bottom: 24px;
  color: var(--green-900);
}

.courses-heading > p:last-child {
  max-width: 620px;
  color: var(--muted);
}

.course-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 1fr;
}

.course-card {
  display: flex;
  min-height: 530px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(25, 52, 45, 0.19);
  background: rgba(255, 255, 255, 0.48);
}

.course-card.featured {
  background: var(--green-900);
  color: var(--white);
}

.course-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.course-status {
  color: var(--bronze);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.featured .course-status {
  color: var(--bronze-light);
}

.course-duration {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1rem;
}

.course-kicker {
  margin-bottom: 9px;
  color: var(--bronze);
  font-size: 0.72rem;
}

.course-card h3 {
  max-width: 480px;
  margin-bottom: 18px;
  color: var(--green-900);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.04;
}

.course-card.featured h3 {
  color: var(--white);
}

.course-card p {
  max-width: 500px;
  color: var(--muted);
  font-size: 0.9rem;
}

.course-card.featured p:not(.course-kicker) {
  color: rgba(255, 255, 255, 0.68);
}

.course-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.course-card li {
  padding: 7px 11px;
  border: 1px solid rgba(25, 52, 45, 0.22);
  font-size: 0.7rem;
}

.course-card.featured li {
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.75);
}

.course-card a,
.coming-soon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
}

.course-card a span {
  color: var(--bronze-light);
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.course-card a:hover span {
  transform: translateX(5px);
}

.coming-soon {
  border-color: var(--line);
  color: var(--green-700);
}

.course-disclaimer {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

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

.faq-grid {
  display: grid;
  gap: clamp(50px, 9vw, 130px);
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
}

.faq-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-heading h2 {
  margin-bottom: 25px;
  color: var(--green-900);
}

.faq-heading > p:last-child {
  max-width: 320px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 85px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  color: var(--green-900);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.35rem;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 10px;
  left: 2px;
  width: 18px;
  height: 1px;
  background: var(--bronze);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 680px;
  margin: -4px 55px 30px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 640px;
  place-items: center;
  overflow: hidden;
  background: var(--green-950);
  color: var(--white);
}

.final-cta-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 37, 31, 0.97) 0%, rgba(16, 37, 31, 0.82) 55%, rgba(16, 37, 31, 0.36) 100%),
    url("assets/dr-diego-consulta.jpeg") center 30% / cover no-repeat;
  filter: saturate(0.7);
}

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

.final-cta-content h2 {
  max-width: 820px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3rem, 6vw, 6.4rem);
}

.final-cta-content > p:not(.eyebrow) {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.7);
}

.button-light {
  background: var(--ivory);
  color: var(--green-900);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--bronze-light);
  transform: translateY(-2px);
}

.site-footer {
  padding: 72px 0 28px;
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.68);
}

.footer-main {
  display: grid;
  gap: 50px;
  padding-bottom: 55px;
  grid-template-columns: 1.3fr 1fr 0.7fr;
}

.footer-brand,
.footer-contact,
.footer-social {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
}

.footer-brand span {
  color: var(--bronze-light);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.footer-contact > span:first-child,
.footer-social > span:first-child {
  margin-bottom: 14px;
  color: var(--bronze-light);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-contact a,
.footer-social a {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 0.9rem;
}

.footer-contact span:last-child {
  font-size: 0.78rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.7rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.footer-bottom a:hover {
  color: var(--white);
}

.medical-note {
  padding-top: 22px;
  font-size: 0.66rem;
}

.medical-note p {
  max-width: 780px;
  margin-bottom: 0;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: #1f8f5f;
  box-shadow: 0 12px 35px rgba(16, 37, 31, 0.24);
  color: var(--white);
  transition: transform 180ms ease, background 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #17764d;
  transform: translateY(-4px);
}

.floating-whatsapp svg {
  width: 28px;
  fill: currentColor;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.21, 0.74, 0.24, 1);
}

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

@media (max-width: 1100px) {
  .site-header {
    height: 76px;
  }

  .brand-viewport {
    width: 225px;
    height: 68px;
  }

  .brand-viewport img {
    top: -45px;
    left: -25px;
    width: 275px;
  }

  .main-nav {
    gap: 17px;
    font-size: 0.75rem;
  }

  .nav-cta {
    padding: 11px 15px;
  }

  .hero {
    min-height: 760px;
    padding-top: 76px;
    grid-template-columns: 56% 44%;
  }

  .hero-copy {
    padding-inline: 40px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 6.5vw, 5.2rem);
  }

  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .consultation-grid {
    gap: 70px;
  }

  .image-note {
    right: -22px;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 74px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

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

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

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

  .main-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    padding: 110px 28px 34px;
    background: var(--ivory);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.nav-cta) {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 400;
  }

  .nav-cta {
    margin-top: 20px;
    padding: 17px 20px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    min-height: 720px;
    padding: 82px 28px 70px;
  }

  .hero-copy-inner {
    margin: 0;
  }

  .hero-visual {
    min-height: 720px;
  }

  .statement-grid,
  .section-heading,
  .consultation-grid,
  .about-grid,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .statement-grid,
  .section-heading {
    gap: 30px;
  }

  .statement-copy > p:last-child {
    margin-left: 0;
  }

  .consultation-image {
    width: min(88%, 540px);
    height: 680px;
    margin-inline: auto;
  }

  .journey-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-steps li:nth-child(2) {
    border-right: 0;
  }

  .journey-steps li:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .about-copy {
    order: 2;
  }

  .about-image {
    width: min(90%, 550px);
    margin-inline: auto;
    order: 1;
  }

  .faq-heading {
    position: static;
  }
}

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

  .section-pad {
    padding-block: 82px;
  }

  .brand-viewport {
    width: 210px;
    height: 64px;
  }

  .brand-viewport img {
    top: -43px;
    left: -25px;
    width: 260px;
  }

  .hero-copy {
    min-height: auto;
    padding: 72px 20px 60px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 11.2vw, 3.15rem);
    letter-spacing: -0.04em;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 44px;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-facts {
    display: grid;
    gap: 18px 0;
    grid-template-columns: 1fr 1fr;
  }

  .hero-facts li {
    padding: 0;
  }

  .hero-facts li + li {
    padding-left: 18px;
  }

  .hero-facts li:nth-child(3) {
    padding: 15px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
    grid-column: 1 / -1;
  }

  .hero-visual {
    min-height: 600px;
  }

  .hero-signature {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .statement-grid {
    gap: 15px;
  }

  .large-quote {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .section-heading h2,
  .consultation-copy h2,
  .about-copy h2,
  .faq-heading h2 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    min-height: 340px;
  }

  .card-icon {
    margin: 38px 0 30px;
  }

  .consultation-grid {
    gap: 68px;
  }

  .consultation-image {
    width: calc(100% - 22px);
    height: 580px;
    min-height: 0;
    margin-left: 22px;
  }

  .consultation-image::before {
    inset: -14px 14px 14px -14px;
  }

  .image-note {
    right: -4px;
    bottom: 24px;
    width: 230px;
  }

  .mode-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .journey-steps {
    grid-template-columns: 1fr;
  }

  .journey-steps li,
  .journey-steps li:nth-child(2) {
    min-height: auto;
    padding: 28px 6px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .journey-steps li:last-child {
    border-bottom: 0;
  }

  .journey-steps span {
    margin-bottom: 35px;
  }

  .about-image {
    width: calc(100% - 14px);
  }

  .about-image img {
    height: 570px;
  }

  .credentials {
    align-items: flex-start;
  }

  .course-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .course-card {
    min-height: 520px;
    padding: 28px 24px;
  }

  .course-card h3 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .faq-list summary {
    min-height: 78px;
    font-size: 1.15rem;
  }

  .final-cta {
    min-height: 680px;
  }

  .final-cta-content h2 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom div {
    width: 100%;
    justify-content: space-between;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: clamp(2.35rem, 10.4vw, 2.75rem);
  }
}

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

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

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