@font-face {
  font-family: "Manrope";
  src: url("./fonts/manrope.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("./fonts/cormorant-garamond-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("./fonts/cormorant-garamond-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Caveat";
  src: url("./fonts/caveat-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --ink: #263126;
  --ink-soft: #536052;
  --forest: #4c5b3f;
  --forest-dark: #354330;
  --forest-panel: #5c6d50;
  --moss: #78866a;
  --leaf: #99a782;
  --clay: #bf684f;
  --clay-dark: #a9503d;
  --cream: #f4f0e8;
  --cream-dark: #e9e2d6;
  --sand: #dfd5c7;
  --white: #fffdfa;
  --line: rgb(38 49 38 / 14%);
  --shadow: 0 24px 70px rgb(49 55 42 / 13%);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Avenir Next", sans-serif;
  --script: "Caveat", cursive;
  --content: 1180px;
  --radius-large: 42px;
  --radius-medium: 26px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

:focus-visible {
  outline: 3px solid #f4c171;
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

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

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

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

.section {
  padding: 112px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  color: var(--clay-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 24px;
  height: 1px;
  background: currentcolor;
  content: "";
}

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

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

h2 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 6vw, 5.6rem);
}

h3 {
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.lede {
  max-width: 690px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--clay-dark);
  box-shadow: 0 10px 28px rgb(93 53 42 / 16%);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--clay-dark);
  box-shadow: 0 12px 34px rgb(93 53 42 / 24%);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button.secondary {
  border-color: rgb(255 255 255 / 65%);
  background: rgb(24 31 27 / 62%);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.button.secondary:hover {
  background: rgb(255 255 255 / 18%);
}

.button.dark {
  background: var(--forest-dark);
}

.button.dark:hover {
  background: #273422;
}

.button img {
  width: 18px;
  filter: brightness(0) invert(1);
}

html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.22, 1, .36, 1);
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.language-suggestion {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: flex;
  max-width: min(400px, calc(100% - 36px));
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgb(255 253 250 / 95%);
  box-shadow: var(--shadow);
  font-size: 13px;
}

.language-suggestion p {
  margin: 0;
}

.language-suggestion a {
  color: var(--clay-dark);
  font-weight: 750;
}

.language-suggestion button {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  padding: 6px;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: max(760px, 100svh);
  overflow: hidden;
  background: #68705e;
  color: #fff;
  isolation: isolate;
}

.hero-picture,
.hero-picture::after,
.hero-picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture {
  z-index: -2;
}

.hero-picture img {
  object-fit: cover;
  object-position: center 48%;
}

.hero-picture::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgb(25 29 28 / 60%) 0%, rgb(25 29 28 / 30%) 45%, rgb(25 29 28 / 9%) 74%),
    linear-gradient(180deg, rgb(17 21 20 / 44%) 0%, transparent 34%, rgb(17 21 20 / 35%) 100%);
  content: "";
}

.site-header {
  position: relative;
  z-index: 30;
  display: flex;
  width: min(calc(100% - 48px), 1320px);
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-inline: auto;
  border-bottom: 1px solid rgb(255 255 255 / 30%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: block;
  width: 42px;
  height: 46px;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

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

.desktop-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-language {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding-left: 2px;
  font-size: 12px;
}

.nav-language .active {
  font-weight: 800;
}

.nav-language span {
  opacity: 0.5;
}

.nav-cta {
  padding: 11px 17px;
  border: 1px solid rgb(255 255 255 / 45%);
  border-radius: 999px;
  background: rgb(255 255 255 / 12%);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid rgb(255 255 255 / 40%);
  border-radius: 50%;
  background: rgb(255 255 255 / 11%);
  cursor: pointer;
}

.menu-button img {
  filter: brightness(0) invert(1);
}

.menu-button .menu-close,
.menu-button[aria-expanded="true"] .menu-open {
  display: none;
}

.menu-button[aria-expanded="true"] .menu-close {
  display: block;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 110px 30px 40px;
  background: var(--forest-dark);
  overflow-y: auto;
}

.mobile-nav a {
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 11vw, 4rem);
  line-height: 1;
  text-decoration: none;
}

.mobile-nav .mobile-language {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 14px;
}

.hero-content {
  position: relative;
  display: flex;
  width: min(calc(100% - 48px), 1320px);
  min-height: calc(max(760px, 100svh) - 92px);
  flex-direction: column;
  justify-content: flex-end;
  margin-inline: auto;
  padding: 72px 0 62px;
}

.hero-copy {
  max-width: 710px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #fff;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-eyebrow img {
  width: 20px;
  filter: brightness(0) invert(1);
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 8vw, 7.7rem);
  text-wrap: balance;
}

.hero-intro {
  max-width: 640px;
  margin-bottom: 32px;
  color: #fff;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

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

.hero-meta {
  position: absolute;
  right: 0;
  bottom: 62px;
  display: grid;
  width: 255px;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgb(255 255 255 / 34%);
  border-radius: 20px;
  background: rgb(29 35 31 / 27%);
  backdrop-filter: blur(12px);
}

.hero-meta-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--clay);
}

.hero-meta-icon img {
  width: 22px;
  filter: brightness(0) invert(1);
}

.hero-meta strong,
.hero-meta span {
  display: block;
}

.hero-meta strong {
  margin-bottom: 3px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-meta span {
  color: rgb(255 255 255 / 78%);
  font-size: 12px;
  line-height: 1.45;
}

/* Empathy and tools */
.empathy {
  background: var(--cream);
  text-align: center;
}

.empathy .section-kicker {
  justify-content: center;
}

.empathy .section-kicker::before {
  display: none;
}

.empathy h2 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(3rem, 6vw, 5.4rem);
  text-wrap: balance;
}

.empathy .lede {
  margin: 0 auto 62px;
}

.emotion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.emotion {
  position: relative;
  padding: 14px 28px 0;
}

.emotion:not(:last-child)::after {
  position: absolute;
  top: 18px;
  right: -20px;
  width: 1px;
  height: 110px;
  background: var(--line);
  content: "";
}

.emotion-icon {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  margin: 0 auto 22px;
  border: 1px solid rgb(76 91 63 / 24%);
  border-radius: 50%;
  background: rgb(255 253 250 / 54%);
}

.emotion-icon img {
  width: 29px;
  opacity: 0.78;
}

.emotion h3 {
  margin-bottom: 10px;
  font-size: 2.1rem;
}

.emotion p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.connection-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 60px;
  color: var(--forest-dark);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.connection-pill img {
  width: 22px;
  opacity: 0.78;
}

.featured-testimonial {
  display: grid;
  width: min(100%, 960px);
  grid-template-columns: 128px minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  margin: 74px auto 0;
  padding: 34px 42px;
  border: 1px solid rgb(76 91 63 / 15%);
  border-radius: 32px;
  background: rgb(255 253 250 / 72%);
  box-shadow: 0 20px 52px rgb(49 55 42 / 8%);
  text-align: left;
}

.featured-testimonial-portrait {
  width: 128px;
  aspect-ratio: 1;
  grid-row: 1 / 3;
  overflow: hidden;
  border: 6px solid var(--cream-dark);
  border-radius: 50%;
  box-shadow: 0 10px 26px rgb(49 55 42 / 16%);
}

.featured-testimonial-portrait img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.featured-testimonial blockquote {
  grid-column: 2;
  margin: 0 0 20px;
  color: var(--forest-dark);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.3vw, 2.65rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
  text-wrap: balance;
}

.featured-testimonial figcaption {
  display: flex;
  grid-column: 2;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 3px 10px;
  color: var(--ink-soft);
  font-size: 12px;
}

.featured-testimonial cite {
  color: var(--ink);
  font-style: normal;
  font-weight: 750;
}

.tools-wrap {
  padding: 0 24px 112px;
  background: var(--cream);
}

.tools-panel {
  width: min(100%, 1380px);
  margin-inline: auto;
  padding: 92px max(36px, calc((100% - var(--content)) / 2));
  border-radius: var(--radius-large);
  background: var(--forest-panel);
  color: #fff;
}

.tools-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 72px;
}

.tools-heading .section-kicker {
  color: #f7e6de;
}

.tools-heading h2 {
  margin-bottom: 0;
}

.tools-heading p {
  max-width: 540px;
  margin: 0;
  color: rgb(255 255 255 / 88%);
}

.tool-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.tool-item {
  position: relative;
  padding: 0 17px;
  text-align: center;
}

.tool-item::before {
  position: absolute;
  top: 96px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgb(255 255 255 / 26%);
  content: "";
}

.tool-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin: 80px auto 24px;
  border: 1px solid rgb(255 255 255 / 52%);
  border-radius: 50%;
  background: var(--forest-panel);
  color: rgb(255 255 255 / 86%);
  font-size: 12px;
  font-weight: 700;
}

.tool-art {
  position: absolute;
  top: 0;
  left: 50%;
  width: 96px;
  height: 86px;
  object-fit: contain;
  transform: translateX(-50%);
}

.tool-item h3 {
  min-height: 55px;
  margin-bottom: 14px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.tool-item p {
  margin: 0;
  color: rgb(255 255 255 / 84%);
  font-size: 12px;
  line-height: 1.65;
}

/* Course */
.course {
  background: var(--white);
}

.course-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(400px, 1.02fr);
  align-items: center;
  gap: 76px;
}

.course-media {
  display: grid;
  max-width: 620px;
  gap: 16px;
  justify-items: end;
}

.course-media picture {
  display: block;
  width: 100%;
}

.course-media picture img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 11;
  border-radius: 30px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.course-seal {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 4px;
  color: var(--clay-dark);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.course-seal::before {
  width: 34px;
  height: 1px;
  background: currentcolor;
  content: "";
}

.course-copy h2 {
  font-size: clamp(3.3rem, 6vw, 5.7rem);
}

.course-copy .lede {
  margin-bottom: 30px;
}

.course-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.course-facts li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
}

.course-facts img {
  width: 18px;
  margin-top: 2px;
  opacity: 0.7;
}

.course-status-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--cream);
}

.course-status-card strong,
.course-status-card span {
  display: block;
}

.course-status-card strong {
  margin-bottom: 3px;
  font-size: 13px;
}

.course-status-card span {
  color: var(--ink-soft);
  font-size: 12px;
}

.course-status-card .course-price {
  flex: 0 0 auto;
  color: var(--clay-dark);
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1;
}

.fine-print {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

/* About */
.about {
  background: var(--cream-dark);
}

.about-heading {
  max-width: 820px;
  margin-bottom: 58px;
}

.about-heading h2 {
  margin-bottom: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: 0 88px;
}

.about-portrait {
  width: min(100%, 360px);
  grid-row: 1 / 3;
  justify-self: center;
}

.about-portrait picture {
  display: block;
}

.about-portrait picture img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 42%;
  box-shadow: var(--shadow);
}

.about-quote-block {
  max-width: 720px;
  grid-column: 2;
  margin: 14px 0 0;
}

.about-quote-block blockquote {
  margin: 0;
  color: var(--forest);
  font-family: var(--script);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  letter-spacing: -0.015em;
  line-height: 1.04;
  text-wrap: balance;
}

.about-identity {
  max-width: 280px;
  margin-top: 30px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.about-identity strong,
.about-identity span {
  display: block;
}

.about-identity strong {
  color: var(--ink);
  font-weight: 750;
}

.about-story {
  max-width: 720px;
  grid-column: 2;
  margin-top: 48px;
}

.about-story > p {
  color: var(--ink-soft);
}

.about-more {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-more summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  list-style: none;
}

.about-more summary::-webkit-details-marker {
  display: none;
}

.about-more summary::after {
  width: 20px;
  height: 20px;
  background: url("./icons/plus.svg") center / 18px no-repeat;
  content: "";
  opacity: 0.7;
}

.about-more[open] summary::after {
  background-image: url("./icons/minus.svg");
}

.about-more-content {
  padding: 4px 0 28px;
}

.about-more-content p,
.about-more-content li {
  color: var(--ink-soft);
  font-size: 14px;
}

.about-more-content ul {
  padding-left: 20px;
}

.testimonials {
  margin-top: 84px;
}

.testimonials-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.testimonials-heading h3 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.testimonial {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border: 1px solid rgb(76 91 63 / 15%);
  border-radius: 26px;
  background: rgb(255 253 250 / 68%);
}

.testimonial blockquote {
  margin: 0 0 36px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.16;
}

.testimonial footer {
  color: var(--ink-soft);
  font-size: 12px;
}

.testimonial cite {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-style: normal;
  font-weight: 750;
}

/* Coaching */
.coaching {
  padding: 24px;
  background: var(--cream-dark);
}

.coaching-card {
  display: grid;
  width: min(100%, 1380px);
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  margin-inline: auto;
  overflow: hidden;
  border-radius: var(--radius-large);
  background: var(--forest-dark);
  color: #fff;
}

.coaching-card picture {
  position: relative;
  min-height: 440px;
}

.coaching-card picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.coaching-copy {
  display: flex;
  min-width: 0;
  min-height: 440px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 6vw, 86px);
}

.coaching-copy > * {
  max-width: 610px;
}

.coaching-copy .section-kicker {
  color: #e5c6b6;
}

.coaching-copy h2 {
  font-size: clamp(3.6rem, 7vw, 6.5rem);
}

.coaching-copy p:not(.section-kicker) {
  margin-bottom: 30px;
  color: rgb(255 255 255 / 80%);
  font-size: 1.05rem;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro h2 {
  font-size: clamp(3.3rem, 6vw, 5.4rem);
}

.faq-intro p:not(.section-kicker) {
  color: var(--ink-soft);
}

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

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

.faq summary {
  position: relative;
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 52px 24px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.15;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  right: 0;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: url("./icons/plus.svg") center / 17px no-repeat;
  content: "";
}

.faq details[open] summary::after {
  background-image: url("./icons/minus.svg");
}

.details-answer {
  padding: 0 52px 30px 0;
}

.details-answer p {
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 14px;
}

/* Contact */
.contact {
  background: var(--cream);
}

.contact h2[tabindex="-1"]:focus {
  outline: 0;
}

.contact-shell {
  display: grid;
  width: min(calc(100% - 48px), 1320px);
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  margin-inline: auto;
  overflow: hidden;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.contact-story {
  display: flex;
  min-height: 750px;
  flex-direction: column;
  justify-content: space-between;
  padding: 68px;
  background: var(--clay);
  color: #fff;
}

.contact-story .section-kicker {
  color: rgb(255 255 255 / 78%);
}

.contact-story h2 {
  max-width: 510px;
  font-size: clamp(3.6rem, 6vw, 5.6rem);
}

.contact-story p:not(.section-kicker) {
  color: rgb(255 255 255 / 81%);
}

.contact-facts {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.contact-facts li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid rgb(255 255 255 / 22%);
  font-size: 13px;
}

.contact-facts img {
  width: 18px;
  filter: brightness(0) invert(1);
}

.contact-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 34px;
  border-top: 1px solid rgb(255 255 255 / 22%);
  font-size: 12px;
}

.contact-note img {
  width: 19px;
  filter: brightness(0) invert(1);
}

.contact-form-wrap {
  padding: 68px;
  background: var(--white);
}

.no-js-form-fallback {
  margin: 0;
  color: #a94032;
  font-size: 14px;
  line-height: 1.65;
}

.forms-ready .no-js-form-fallback,
html:not(.forms-ready) .form-tabs,
html:not(.forms-ready) .form-panel {
  display: none;
}

.form-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-bottom: 42px;
  padding: 5px;
  border-radius: 999px;
  background: var(--cream-dark);
}

.form-tab {
  min-height: 46px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}

.form-tab[aria-selected="true"] {
  background: var(--white);
  box-shadow: 0 3px 12px rgb(45 52 40 / 10%);
  color: var(--ink);
}

.form-panel > h3 {
  margin-bottom: 12px;
  font-size: clamp(2.6rem, 5vw, 4rem);
}

.form-intro {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 14px;
}

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

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

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 12px;
  font-weight: 750;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--cream);
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field textarea {
  min-height: 126px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--forest);
  background: var(--white);
  box-shadow: 0 0 0 3px rgb(76 91 63 / 12%);
}

.binding-fields {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 18px;
}

.binding-fields .full {
  grid-column: 1 / -1;
}

.checkboxes {
  display: grid;
  grid-column: 1 / -1;
  gap: 14px;
  margin-top: 4px;
}

.checkbox {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.55;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--forest);
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 26px;
}

.privacy-hint {
  display: flex;
  max-width: 340px;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.5;
}

.privacy-hint img {
  width: 17px;
  opacity: 0.65;
}

.form-status {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.form-status.is-success {
  color: #47744c;
}

.form-status.is-error {
  color: #a94032;
}

/* Footer */
.site-footer {
  padding: 80px 0 30px;
  background: var(--forest-dark);
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 70px;
  padding-bottom: 70px;
}

.footer-brand {
  max-width: 470px;
}

.footer-brand .brand {
  margin-bottom: 24px;
}

.footer-brand p {
  color: rgb(255 255 255 / 64%);
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1.25;
}

.footer-column h3 {
  margin-bottom: 20px;
  font-family: var(--sans);
  color: rgb(255 255 255 / 72%);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 11px 0;
  color: rgb(255 255 255 / 78%);
  font-size: 13px;
  text-decoration: none;
}

.footer-column a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid rgb(255 255 255 / 17%);
  color: rgb(255 255 255 / 72%);
  font-size: 11px;
}

.footer-bottom img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  opacity: 0.78;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 19px;
  }

  .tool-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 0;
  }

  .tool-item:nth-child(4) {
    grid-column: 1 / 2;
    margin-left: 50%;
  }

  .tool-item:nth-child(5) {
    grid-column: 2 / 3;
    margin-left: 50%;
  }

  .course-grid {
    gap: 54px;
  }

  .contact-story,
  .contact-form-wrap {
    padding: 50px;
  }
}

@media (max-width: 920px) {
  .section {
    padding: 88px 0;
  }

  .site-header {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .desktop-nav {
    display: flex;
    width: 100%;
    order: 3;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 8px;
    white-space: nowrap;
  }

  html.js .site-header {
    flex-wrap: nowrap;
    padding: 0;
  }

  html.js .desktop-nav {
    display: none;
  }

  html.js .menu-button {
    position: relative;
    z-index: 31;
    display: block;
  }

  .hero-meta {
    position: static;
    margin-top: 30px;
  }

  .tools-heading,
  .course-grid,
  .faq-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .tools-heading {
    gap: 26px;
  }

  .course-media {
    max-width: 690px;
    justify-self: center;
  }

  .about-portrait {
    max-width: 300px;
  }

  .about-grid {
    grid-template-columns: minmax(210px, 0.7fr) minmax(0, 1.3fr);
    gap: 0 48px;
  }

  .coaching-card {
    grid-template-columns: 1fr;
  }

  .coaching-card picture {
    min-height: 0;
    aspect-ratio: 5 / 3;
  }

  .coaching-copy {
    min-height: 0;
    justify-content: flex-start;
    padding: 50px;
  }

  .faq-grid {
    gap: 54px;
  }

  .faq-intro {
    position: static;
  }

  .contact-story {
    min-height: 520px;
  }
}

@media (max-width: 720px) {
  :root {
    --radius-large: 28px;
  }

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

  .section {
    padding: 76px 0;
  }

  h2 {
    font-size: clamp(2.8rem, 14vw, 4.3rem);
  }

  .site-header,
  .hero-content {
    width: calc(100% - 36px);
  }

  .site-header {
    min-height: 78px;
  }

  .brand {
    font-size: 11px;
  }

  .brand-mark {
    width: 38px;
    height: 42px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-picture img {
    object-position: center 45%;
  }

  .hero-picture::after {
    background:
      linear-gradient(180deg, rgb(18 22 21 / 48%) 0%, rgb(18 22 21 / 5%) 26%, rgb(18 22 21 / 66%) 72%, rgb(18 22 21 / 79%) 100%);
  }

  .hero-content {
    min-height: 742px;
    padding: 52px 0 34px;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(4rem, 19vw, 5.7rem);
  }

  .hero-intro {
    margin-bottom: 24px;
    font-size: 1rem;
  }

  .hero-actions .button {
    flex: 1 1 155px;
  }

  .hero-meta {
    width: 100%;
    padding: 14px;
  }

  .emotion-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .emotion {
    padding: 8px 18px 26px;
  }

  .emotion:not(:last-child)::after {
    top: auto;
    right: 18%;
    bottom: 0;
    left: 18%;
    width: auto;
    height: 1px;
  }

  .connection-pill {
    margin-top: 36px;
  }

  .featured-testimonial {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 52px;
    padding: 26px;
    border-radius: 26px;
  }

  .featured-testimonial-portrait {
    width: 78px;
    grid-row: auto;
    border-width: 4px;
  }

  .featured-testimonial blockquote {
    grid-column: auto;
    font-size: clamp(1.7rem, 8.8vw, 2.2rem);
  }

  .featured-testimonial figcaption {
    grid-column: auto;
  }

  .tools-wrap {
    padding: 0 12px 76px;
  }

  .tools-panel {
    padding: 64px 25px;
  }

  .tool-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .tool-item,
  .tool-item:nth-child(4),
  .tool-item:nth-child(5) {
    display: grid;
    width: 100%;
    min-width: 0;
    grid-template-columns: 72px minmax(0, 1fr);
    grid-template-rows: auto auto;
    min-height: 118px;
    align-items: center;
    gap: 4px 18px;
    margin: 0;
    padding: 0 0 22px;
    text-align: left;
  }

  .tool-item::before {
    top: 0;
    bottom: 0;
    left: 35px;
    width: 1px;
    height: 100%;
  }

  .tool-art {
    position: relative;
    top: auto;
    left: auto;
    width: 70px;
    height: 68px;
    grid-column: 1;
    grid-row: 1 / 3;
    transform: none;
  }

  .tool-number {
    position: absolute;
    top: 72px;
    left: 19px;
    width: 32px;
    height: 32px;
    margin: 0;
  }

  .tool-item h3 {
    min-width: 0;
    min-height: 0;
    align-self: end;
    margin: 0;
    overflow-wrap: anywhere;
  }

  .tool-item p {
    min-width: 0;
    align-self: start;
    overflow-wrap: anywhere;
  }

  .course-grid {
    gap: 48px;
  }

  .course-media picture img {
    border-radius: 24px;
  }

  .course-seal {
    padding-inline: 2px;
    font-size: 9px;
  }

  .course-seal::before {
    width: 24px;
  }

  .course-facts {
    grid-template-columns: 1fr;
  }

  .course-status-card {
    align-items: flex-start;
  }

  .about-heading {
    margin-bottom: 38px;
  }

  .about-grid {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 0 20px;
  }

  .about-portrait {
    width: 112px;
    grid-row: 1;
  }

  .about-quote-block {
    grid-column: 2;
    margin-top: 2px;
  }

  .about-quote-block blockquote {
    font-size: clamp(1.4rem, 6vw, 1.65rem);
    line-height: 1.04;
    text-wrap: wrap;
  }

  .about-identity {
    margin-top: 14px;
    font-size: 10px;
    line-height: 1.45;
  }

  .about-story {
    max-width: none;
    grid-column: 1 / -1;
    margin-top: 32px;
  }

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

  .testimonial {
    min-height: 230px;
    padding: 27px;
  }

  .coaching {
    padding: 12px;
  }

  .coaching-card picture img {
    object-position: center;
  }

  .coaching-copy {
    padding: 42px 28px 46px;
  }

  .faq summary {
    min-height: 84px;
    padding-right: 45px;
  }

  .details-answer {
    padding-right: 8px;
  }

  .contact {
    padding-top: 0;
  }

  .contact-shell {
    width: calc(100% - 24px);
  }

  .contact-story,
  .contact-form-wrap {
    padding: 42px 24px;
  }

  .contact-story {
    min-height: 560px;
  }

  .form-tabs {
    margin-bottom: 34px;
  }

  .form-grid,
  .binding-fields {
    grid-template-columns: 1fr;
  }

  .form-submit-row {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .form-submit-row .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 46px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

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

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