@font-face {
  font-family: "Fakt Pro";
  src: url("assets/fonts/FaktPro-Normal.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Fakt Pro";
  src: url("assets/fonts/FaktPro-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Fakt Pro";
  src: url("assets/fonts/FaktPro-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Fakt Pro";
  src: url("assets/fonts/FaktPro-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Reckless Neue";
  src: url("assets/fonts/RecklessNeue-Book.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Reckless Neue";
  src: url("assets/fonts/RecklessNeue-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Reckless Neue";
  src: url("assets/fonts/RecklessNeue-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Reckless Neue";
  src: url("assets/fonts/RecklessNeue-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

:root {
  --bg: #fff9ee;
  --cream: #f0e3d1;
  --cream-soft: #e5dfc6;
  --gold: #d6b88c;
  --tan: #ac9169;
  --rust: #ab613b;
  --rust-light: #b86c4a;
  --wine: #410c1e;
  --wine-dark: #2b0713;
  --olive: #4c5f3e;
  --olive-dark: #3c4c24;
  --forest: #1a2a0f;
  --text: #222222;
  --muted: #5a5a5a;
  --white: #ffffff;
  --border: rgba(26, 26, 26, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Fakt Pro", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul {
  list-style: none;
}

.site-wrapper {
  width: 100%;
}

.section-inner {
  width: min(1280px, calc(100% - 160px));
  margin: 0 auto;
}

.section-inner-narrow {
  width: min(1280px, calc(100% - 160px));
  margin: 0 auto;
}

/* NAV */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}

.nav-shell {
  width: 100%;
  min-height: 96px;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
}

.nav-logo img {
  width: 170px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-menu a {
  color: var(--cream-soft);
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  padding: 0 4px;
}

.nav-cta {
  border: 1px solid var(--cream-soft);
  border-radius: 4px;
  padding: 8px 12px !important;
  font-weight: 500;
  letter-spacing: -0.01em !important;
}

.nav-toggle {
  display: none;
}

.nav-toggle img {
  width: 28px;
  height: 28px;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 16px 18px;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  font-weight: 500;
  transition: 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--cream-soft);
  color: #000;
}

.btn-secondary {
  border: 1px solid var(--cream-soft);
  color: var(--cream-soft);
  background: transparent;
}

.btn-outline {
  border: 1px solid var(--tan);
  color: var(--tan);
  background: transparent;
}

.btn-centre,
.btn-center {
  display: flex;
  width: fit-content;
  margin: 0 auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* DIVIDER */

.section-divider {
  width: min(552px, 100%);
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  align-items: center;
  gap: 21px;
}

.section-divider span {
  flex: 1;
  border-top: 1px solid var(--cream);
}

.section-divider img {
  width: 44px;
  height: 42px;
  object-fit: contain;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  background-image: url("assets/images/Homepage-hero.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  min-height: 760px;
  margin: 0 auto;
  padding: 140px 40px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
}

.hero-brand img {
  width: min(582px, 88vw);
}

.hero-copy {
  max-width: 980px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.hero-lead {
  font-size: clamp(26px, 2.3vw, 32px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--cream-soft);
}

.hero-credit {
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #d4754b;
}

/* FOCUS */

.focus-areas {
  background: var(--wine);
  padding: 60px 0;
}

.focus-intro {
  position: relative;
  min-height: 253px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.focus-flourish {
  position: absolute;
  left: 90px;
  top: 0;
  width: 200px;
  opacity: 0.22;
  pointer-events: none;
}

.focus-intro h2 {
  font-family: "Reckless Neue", serif;
  font-weight: 300;
  font-size: clamp(34px, 3vw, 40px);
  line-height: 1.4;
  letter-spacing: -0.05em;
  color: #ea9e7c;
}

.focus-intro h2 span {
  font-weight: 500;
}

.focus-intro p {
  max-width: 930px;
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--cream-soft);
}

.section-label {
  margin-top: 24px;
  text-align: center;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: var(--cream);
}

.focus-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.focus-card {
  min-height: 200px;
  background: var(--wine-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
}

.focus-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.focus-card h3 {
  font-family: "Reckless Neue", serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--cream-soft);
}

.focus-areas .btn-secondary {
  margin-top: 24px;
}

/* SPLIT IMAGE/TEXT */

.vision-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.vision-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.vision-copy {
  background: var(--olive);
  min-height: 480px;
  padding: 0 80px 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.vision-copy h2 {
  font-family: "Reckless Neue", serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.4;
  letter-spacing: -0.05em;
  color: var(--gold);
}

.vision-copy li {
  position: relative;
  padding-left: 16px;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--cream-soft);
}

.vision-copy li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
}

/* JOURNEY */

.journey {
  padding: 0 0 40px;
  background: var(--bg);
}

.journey h2 {
  text-align: center;
  font-family: "Reckless Neue", serif;
  font-weight: 300;
  font-size: clamp(38px, 4vw, 48px);
  line-height: 1.4;
  letter-spacing: -0.05em;
  color: var(--olive-dark);
}

.journey-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 47px;
}

.journey-phase {
  text-align: center;
}

.phase-number {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text);
}

.journey-phase h3 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--tan);
}

.journey-phase p:last-child {
  margin-top: 6px;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -0.01em;
  color: var(--muted);
}

.journey-cta-copy {
  margin-top: 24px;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--muted);
}

.journey .btn-outline {
  margin: 12px auto 0;
}

/* BOOKING */

.booking {
  display: grid;
  grid-template-columns: 642px 1fr;
  min-height: 700px;
}

.booking-copy {
  background: var(--rust);
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.booking-copy h2 {
  font-family: "Reckless Neue", serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: -0.05em;
  color: var(--cream);
}

.booking-copy p {
  max-width: 482px;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--cream-soft);
}

.booking-card {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
  min-height: 592px;

  display: flex;
  overflow: hidden;
}

.calendly-inline-widget {
  width: 100%;
  height: 100%;
}

/* COACH */

.coach {
  padding-bottom: 20px;
}

.coach-content {
  display: grid;
  grid-template-columns: 331px 1fr;
  align-items: center;
  gap: 88px;
}

.coach-image img {
  width: 331px;
  height: 331px;
  object-fit: cover;
  border-radius: 50%;
}

.coach-copy h2 {
  font-family: "Reckless Neue", serif;
  font-weight: 400;
  font-size: clamp(42px, 4.8vw, 60px);
  line-height: 1.4;
  letter-spacing: -0.05em;
  color: var(--rust);
}

.coach-copy p {
  max-width: 585px;
  margin-top: 22px;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: var(--text);
}

.coach-copy .btn-outline {
  margin-top: 22px;
}

/* TESTIMONIALS */

.testimonials {
  padding-bottom: 0;
}

.testimonials h2 {
  text-align: center;
  font-family: "Reckless Neue", serif;
  font-weight: 300;
  font-size: clamp(42px, 4.8vw, 60px);
  line-height: 1.4;
  letter-spacing: -0.05em;
  color: var(--olive-dark);
}

.testimonial-split {
  margin-top: 45px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.testimonial-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.testimonial-copy {
  background: var(--olive);
  min-height: 480px;
  padding: 0 80px 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.testimonial-copy h3 {
  font-family: "Reckless Neue", serif;
  font-weight: 300;
  font-size: 40px;
  line-height: 1.4;
  letter-spacing: -0.05em;
  color: var(--gold);
}

.testimonial-copy p {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--cream-soft);
}

/* COMMUNITY */

.community {
  position: relative;
  min-height: 464px;
  background-image: url("assets/images/Join community.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.community-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.8) 30.67%,
    rgba(0, 0, 0, 0) 115.28%
  );
}

.community-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  min-height: 464px;
  margin: 0 auto;
  padding: 103px 93px 115px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.community-content h2 {
  max-width: 822px;
  font-family: "Reckless Neue", serif;
  font-weight: 300;
  font-size: clamp(42px, 4.8vw, 60px);
  line-height: 1.4;
  letter-spacing: -0.05em;
  color: var(--cream);
}

.community-content p {
  max-width: 822px;
  font-size: 21px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--cream-soft);
}

/* PRICING */

.pricing {
  padding-bottom: 30px;
}

.pricing h2 {
  text-align: center;
  font-family: "Reckless Neue", serif;
  font-weight: 300;
  font-size: clamp(42px, 4.8vw, 60px);
  line-height: 1.4;
  letter-spacing: -0.05em;
  color: var(--olive-dark);
}

.pricing-subtitle {
  margin-top: 8px;
  text-align: center;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: var(--text);
}

.pricing-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 400px);
  justify-content: center;
  gap: 12px;
}

.pricing-card {
  min-height: 387px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.pricing-card-one {
  background: #795f2e;
}

.pricing-card-two {
  background: var(--wine);
}

.pricing-card-three {
  background: var(--rust-light);
}

.pricing-option {
  font-size: 10px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #dfc7a4;
}

.pricing-card h3 {
  margin-top: 10px;
  font-family: "Reckless Neue", serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 40px;
  letter-spacing: 0.01em;
  color: var(--cream);
}

.pricing-title {
  margin-top: 10px;
  font-size: 20px;
  line-height: 24px;
  color: var(--cream);
}

.pricing-note {
  margin-top: 18px;
  font-size: 10px;
  line-height: 20px;
  letter-spacing: 0.01em;
  color: #fff4c7;
}

.pricing .btn-outline {
  margin-top: 20px;
}

/* FINAL CTA */

.final-cta {
  position: relative;
  min-height: 411px;
  background-image: url("assets/images/plant-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  min-height: 411px;
  margin: 0 auto;
  padding: 95px 100px 94px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.final-cta-content h2 {
  font-family: "Reckless Neue", serif;
  font-weight: 300;
  font-size: clamp(42px, 4.8vw, 60px);
  line-height: 1.4;
  letter-spacing: -0.05em;
  color: var(--cream-soft);
}

.final-cta-content p {
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--cream-soft);
}

/* FOOTER */

.site-footer {
  background: var(--forest);
  padding: 40px 80px;
  display: grid;
  grid-template-columns: 360px 1fr 320px;
  align-items: center;
  gap: 60px;
}

.footer-brand img {
  width: 360px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 95px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-column a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: #c8e5d1;
}

.footer-credit {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-credit p {
  font-size: 21px;
  line-height: 1.4;
  font-weight: 300;
  letter-spacing: -0.05em;
  color: var(--cream-soft);
}

.footer-credit a {
  font-family: "Reckless Neue", serif;
  font-size: 30px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -0.05em;
  text-decoration: underline;
  color: var(--cream-soft);
}

/* ABOUT PAGE */

.about-hero {
  position: relative;
  min-height: 760px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  min-height: 760px;
  margin: 0 auto;
  padding: 150px 44px 70px;
  display: flex;
  align-items: center;
}

.about-hero-copy {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-hero-copy h1 {
  font-family: "Reckless Neue", serif;
  font-weight: 400;
  font-size: clamp(56px, 5vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.05em;
  color: var(--cream);
}

.about-hero-lead {
  font-size: clamp(28px, 2.4vw, 32px);
  line-height: 1.32;
  letter-spacing: -0.02em;
  color: var(--cream-soft);
}

.about-hero-credit {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--gold);
}

.about-intro {
  padding: 56px 0 24px;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: center;
}

.about-portrait-wrap {
  display: flex;
  justify-content: center;
}

.about-portrait {
  width: 360px;
  height: 360px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #e2c79c;
}

.about-bio h2 {
  font-family: "Reckless Neue", serif;
  font-weight: 400;
  font-size: clamp(46px, 4.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: #d4754b;
}

.about-role {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.4;
  color: var(--gold);
}

.about-bio p {
  max-width: 560px;
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--text);
}

.about-experience {
  padding-bottom: 36px;
}

.about-experience h2 {
  text-align: center;
  font-family: "Reckless Neue", serif;
  font-weight: 400;
  font-size: clamp(48px, 4.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: var(--olive-dark);
}

.about-experience-subtitle {
  margin-top: 16px;
  text-align: center;
  font-size: 18px;
  line-height: 1.4;
  color: var(--gold);
}

.experience-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.experience-item {
  padding: 0 22px;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.experience-item:not(:last-child) {
  border-right: 1px solid #e8dcc8;
}

.experience-item p {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--text);
}

.about-qualifications-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-qualifications-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-qualifications-copy {
  min-height: 480px;
  background: #596f45;
  padding: 0 72px 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-qualifications-copy h2 {
  font-family: "Reckless Neue", serif;
  font-weight: 400;
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: var(--cream);
}

.about-qualifications-copy ul {
  margin-top: 24px;
  padding-left: 18px;
  list-style: disc;
}

.about-qualifications-copy li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--cream-soft);
}

.about-philosophy {
  padding-bottom: 36px;
}

.about-philosophy h2 {
  text-align: center;
  font-family: "Reckless Neue", serif;
  font-weight: 400;
  font-size: clamp(48px, 4.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: var(--olive-dark);
}

.philosophy-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.philosophy-item {
  text-align: center;
}

.philosophy-item h3 {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--text);
}

.philosophy-item p {
  margin-top: 6px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--gold);
}

.about-philosophy-cta-copy {
  margin-top: 24px;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 700;
  color: var(--muted);
}

.about-philosophy .btn-outline {
  margin-top: 12px;
}

.about-support-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-support-copy {
  min-height: 480px;
  background: var(--rust);
  padding: 0 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-support-copy h2 {
  font-family: "Reckless Neue", serif;
  font-weight: 400;
  font-size: clamp(46px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: var(--cream);
}

.about-support-copy p {
  margin-top: 24px;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--cream-soft);
}

.about-support-copy .btn-secondary {
  margin-top: 28px;
  width: fit-content;
}

.about-support-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .section-inner,
  .section-inner-narrow {
    width: calc(100% - 64px);
  }

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

  .pricing-grid {
    justify-content: stretch;
  }

  .pricing-card {
    min-height: 320px;
  }

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

  .booking-copy {
    min-height: 280px;
    padding: 60px 48px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .about-intro-grid,
  .experience-grid,
  .philosophy-grid,
  .about-qualifications-split,
  .about-support-split {
    grid-template-columns: 1fr;
  }

  .experience-item {
    border-right: 0 !important;
    border-bottom: 1px solid #e8dcc8;
    padding: 20px 0;
  }

  .experience-item:last-child {
    border-bottom: 0;
  }

}

@media (max-width: 900px) {
  .nav-shell {
    width: calc(100% - 24px);
    min-height: 84px;
    padding: 18px 16px;
    position: relative;
  }

  .nav-logo img {
    width: 148px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(26, 42, 15, 0.96);
    border-radius: 10px;
    padding: 12px;
  }

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

  .nav-menu a {
    width: 100%;
    padding: 14px 8px;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .section-inner,
  .section-inner-narrow {
    width: calc(100% - 32px);
  }

 .hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center top;
}

  .hero-inner {
    min-height: 680px;
    padding: 120px 20px 50px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    width: 100%;
  }

  .btn {
    width: 100%;
    white-space: normal;
  }

  .focus-flourish {
    left: 0;
    width: 140px;
  }

  .focus-grid,
  .journey-grid,
  .pricing-grid,
  .vision-split,
  .testimonial-split,
  .coach-content {
    grid-template-columns: 1fr;
  }

  .vision-copy,
  .testimonial-copy {
    min-height: auto;
    padding: 48px 24px;
  }

  .vision-image img,
  .testimonial-image img {
    height: 340px;
  }

  .booking-copy {
    padding: 48px 24px;
  }

  .coach-image img {
    width: 260px;
    height: 260px;
  }

  .coach-content {
    justify-items: center;
    text-align: left;
    gap: 32px;
  }

  .community-content,
  .final-cta-content {
    padding: 72px 24px;
  }

  .community-content p,
  .final-cta-content p {
    font-size: 18px;
  }

  .pricing-grid {
    gap: 16px;
  }

  .site-footer {
    padding: 40px 24px;
    gap: 32px;
  }

  .footer-brand img {
    width: 220px;
  }

  .footer-links {
    flex-direction: column;
    gap: 24px;
  }

  .section-divider {
    padding: 28px 0;
  }

    .about-hero {
    min-height: 680px;
    background-position: 68% center;
  }

  .about-hero-inner {
    min-height: 680px;
    padding: 120px 24px 56px;
    align-items: flex-end;
  }

  .about-hero-copy {
    max-width: 100%;
    gap: 14px;
  }

  .about-hero-copy h1 {
    font-size: 52px;
  }

  .about-hero-lead {
    font-size: 24px;
  }

  .about-hero-credit {
    font-size: 16px;
  }

  .about-intro {
    padding: 40px 0 12px;
  }

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

  .about-portrait {
    width: 260px;
    height: 260px;
  }

  .about-bio h2,
  .about-experience h2,
  .about-philosophy h2,
  .about-qualifications-copy h2,
  .about-support-copy h2 {
    font-size: 44px;
  }

  .about-bio p,
  .about-experience-subtitle,
  .philosophy-item p,
  .about-support-copy p {
    font-size: 16px;
  }

  .experience-grid,
  .philosophy-grid,
  .about-qualifications-split,
  .about-support-split {
    grid-template-columns: 1fr;
  }

  .about-qualifications-copy,
  .about-support-copy {
    min-height: auto;
    padding: 48px 24px;
  }

  .about-qualifications-image img,
  .about-support-image img {
    height: 340px;
  }

  .about-support-copy .btn-secondary {
    width: 100%;
  }
}

/* METHOD PAGE */

.method-hero {
  position: relative;
  min-height: 720px;
  background-image: url("assets/images/method-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.method-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
}

.method-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  min-height: 720px;
  margin: 0 auto;
  padding: 150px 44px 70px;
  display: flex;
  align-items: center;
}

.method-hero-copy {
  max-width: 680px;
}

.method-hero-copy h1 {
  font-family: "Reckless Neue", serif;
  font-weight: 400;
  font-size: clamp(56px, 5vw, 76px);
  line-height: 1.06;
  letter-spacing: -0.05em;
  color: var(--cream);
}

.method-hero-copy p {
  margin-top: 22px;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--cream-soft);
}

.method-intro {
  padding: 80px 0;
}

.method-intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 80px;
  align-items: start;
}

.method-kicker {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.method-intro h2,
.method-pillars h2,
.method-journey h2,
.method-fit h2 {
  font-family: "Reckless Neue", serif;
  font-weight: 400;
  font-size: clamp(46px, 4.4vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: var(--olive-dark);
}

.method-intro-copy p {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--text);
}

.method-pillars {
  background: var(--wine);
  padding: 0 0 72px;
}

.method-pillars h2 {
  text-align: center;
  color: #ea9e7c;
}

.method-pillar-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.method-pillar-card {
  min-height: 320px;
  padding: 40px 28px;
  background: var(--wine-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.method-pillar-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.method-pillar-card h3 {
  font-family: "Reckless Neue", serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 1.1;
  color: var(--gold);
}

.method-pillar-card p {
  max-width: 320px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--cream-soft);
}

.method-journey {
  padding: 0 0 56px;
}

.method-journey h2,
.method-fit h2 {
  text-align: center;
}

.method-phase-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.method-phase-grid article {
  text-align: center;
}

.method-phase-grid h3 {
  margin-top: 4px;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--tan);
}

.method-phase-grid p:last-child {
  margin-top: 12px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
}

.method-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.method-split-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.method-split-copy {
  min-height: 520px;
  background: var(--olive);
  padding: 0 80px 0 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.method-split-copy h2 {
  font-family: "Reckless Neue", serif;
  font-weight: 400;
  font-size: clamp(44px, 4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: var(--gold);
}

.method-split-copy ul {
  margin-top: 28px;
  padding-left: 20px;
  list-style: disc;
}

.method-split-copy li {
  font-size: 18px;
  line-height: 1.8;
  color: var(--cream-soft);
}

.method-fit {
  padding-bottom: 56px;
  text-align: center;
}

.method-fit p {
  max-width: 760px;
  margin: 24px auto 0;
  font-size: 20px;
  line-height: 1.55;
  color: var(--text);
}

.method-fit .btn-outline {
  margin-top: 28px;
}

@media (max-width: 1200px) {
  .method-intro-grid,
  .method-pillar-grid,
  .method-phase-grid,
  .method-split {
    grid-template-columns: 1fr;
  }

  .method-split-copy {
    min-height: auto;
    padding: 56px 40px;
  }
}

@media (max-width: 900px) {
  .method-hero {
    min-height: 680px;
  }

  .method-hero-inner {
    min-height: 680px;
    padding: 120px 24px 56px;
    align-items: flex-end;
  }

  .method-hero-copy h1 {
    font-size: 52px;
  }

  .method-hero-copy p {
    font-size: 22px;
  }

  .method-intro {
    padding: 56px 0;
  }

  .method-intro-grid {
    gap: 28px;
  }

  .method-intro-copy p,
  .method-fit p {
    font-size: 17px;
  }

  .method-pillar-card {
    min-height: auto;
    padding: 40px 24px;
  }

  .method-phase-grid {
    gap: 32px;
  }

  .method-split-image img {
    height: 340px;
  }

  .method-split-copy {
    padding: 48px 24px;
  }

  .method-split-copy li {
    font-size: 16px;
  }
}

/* CONTACT PAGE */

.contact-page {
  padding: 140px 0 60px;
}

.contact-heading h1 {
  font-family: "Reckless Neue", serif;
  font-weight: 300;
  font-size: clamp(48px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--olive-dark);
}

.contact-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-copy h2 {
  font-family: "Reckless Neue", serif;
  font-weight: 400;
  font-size: 28px;
  color: var(--rust);
}

.contact-copy p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 420px;
}

.contact-form {
  background: var(--cream);
  padding: 28px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: var(--text);
  gap: 6px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 4px;
  border: 1px solid var(--border);
  font-size: 14px;
  font-family: inherit;
}

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

.contact-submit {
  background: var(--forest);
  color: white;
  margin-top: 8px;
}

.form-message {
  font-size: 14px;
  color: var(--olive-dark);
  margin-top: 4px;
}

/* MOBILE */

@media (max-width: 900px) {
  .contact-page {
    padding: 120px 0 40px;
  }

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

  .contact-form {
    padding: 20px;
  }
}
