/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
  --olive-dark:   #2C3A28;
  --olive-mid:    #3D5035;
  --olive-light:  #4A6040;
  --cream:        #F0EBE0;
  --cream-light:  #F7F3EC;
  --cream-warm:   #EDE7D9;
  --text-dark:    #1E1C18;
  --text-body:    #3D3830;
  --text-muted:   #6B6358;
  --text-light:   #F0EBE0;
  --gold:         #A8865A;
  --gold-light:   #C8A878;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Raleway', sans-serif;
  --nav-height:   80px;
  --max-width:    1200px;
  --transition:   0.4s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text-body);
  background: var(--cream-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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


/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: calc(0.7rem + 10px);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 3rem;
}

.link-arrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-dark);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}

.link-arrow:hover {
  color: var(--gold);
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: 1px solid transparent;
  border-radius: 22px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn--primary {
  background: #4E5B3C;
  color: #F4F1EA;
  border-color: #4E5B3C;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 14px 24px;
}

.btn--primary:hover {
  background: #5D6A46;
  border-color: #5D6A46;
}

.btn--nav {
  background: var(--olive-dark);
  color: var(--cream-light) !important;
  border-color: var(--olive-dark);
  font-size: calc(0.7rem + 5px);
  font-weight: 900;
  padding: 0.65rem 1.4rem;
}

.btn--nav:hover {
  background: var(--olive-mid);
  border-color: var(--olive-mid);
}

.btn--light {
  background: transparent;
  color: var(--cream-light);
  border-color: var(--cream-light);
}

.btn--light:hover {
  background: var(--cream-light);
  color: var(--olive-dark);
}

.btn--outline {
  background: transparent;
  color: var(--olive-dark);
  border-color: var(--olive-dark);
}

.btn--outline:hover {
  background: var(--olive-dark);
  color: var(--cream-light);
}


/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
}

.container--narrow {
  max-width: 680px;
}


/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.fade-in {
  animation: fadeInUp 1.2s ease both;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal--delay-1 { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.3s; }
.reveal--delay-3 { transition-delay: 0.45s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(30, 38, 26, 0.3);
  backdrop-filter: blur(6px);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(30, 38, 26, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.2);
}

.logo-link {
  display: flex;
  align-items: center;
  color: var(--cream-light);
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--cream-light);
  text-transform: uppercase;
}

.logo-tagline {
  font-family: var(--font-serif);
  font-size: 1.06rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(240,235,224,0.7);
  letter-spacing: 0.03em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links li a {
  font-family: var(--font-sans);
  font-size: calc(0.68rem + 5px);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-light);
  transition: color var(--transition);
}

.nav__links li a:hover {
  color: var(--gold-light);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream-light);
  transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: transparent;
  position: relative;
  display: block;
  height: auto;
  overflow: hidden;
}

.hero__image {
  position: relative;
  z-index: 0;
}

.hero__image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  transform: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(20, 25, 18, 0.80) 0%,
    rgba(20, 25, 18, 0.58) 42%,
    rgba(20, 25, 18, 0.18) 70%,
    rgba(20, 25, 18, 0)    100%
  );
}

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  max-width: 900px;
  margin-left: calc(max(6vw, calc((100vw - var(--max-width)) / 2 + 2.5rem)) - 50px);
  min-height: 100%;
  padding: calc(var(--nav-height) + 7rem) 0 5.5rem;
  margin-top: -60px;
  animation-delay: 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__headline {
  font-family: 'Canela', 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(64px, 5.9vw, 96px);
  font-weight: 500;
  color: #F4F1EA;
  line-height: 1.07;
  letter-spacing: -0.02em;
  text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25);
  margin-bottom: 2.8rem;
}

.hero__body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(20px, 1.7vw, 27px);
  font-weight: 450;
  color: #EDE7DC;
  line-height: 1.42;
  max-width: 720px;
  margin-bottom: 2.05rem;
}

.hero__cta {
  align-self: flex-start;
  margin-top: 0.75rem;
}

.hero__meta {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(237, 231, 220, 0.88);
  line-height: 1.7;
  margin-top: 0.9rem;
  max-width: 34ch;
}

.hero__mobile-face {
  display: none;
}

.proof-strip {
  background: #d6d0c6;
  padding: 2rem 0 2.4rem;
  border-top: 1px solid rgba(145, 112, 103, 0.12);
  border-bottom: 1px solid rgba(145, 112, 103, 0.12);
}

.proof-strip__trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.proof-strip__item {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.proof-strip__item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -0.75rem;
  width: 1px;
  height: 2.4rem;
  background: rgba(145, 112, 103, 0.24);
  transform: translateY(-50%);
}

.proof-strip__value {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.45;
}


/* ============================================================
   SECTION 2 — FOR YOU IF
   ============================================================ */
.for-you {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(244, 240, 232, 0.72), rgba(236, 230, 220, 0.76)),
    url('for-you-moss-bg.jpg') center center / cover no-repeat;
  padding: 7rem 0 5rem;
}

.for-you::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 250, 242, 0.34), transparent 26%),
    radial-gradient(circle at 80% 70%, rgba(210, 222, 198, 0.12), transparent 24%);
  opacity: 1;
  pointer-events: none;
}

.for-you::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.04) 0%, rgba(232, 226, 214, 0.05) 100%);
  pointer-events: none;
}

.for-you .container {
  position: relative;
  z-index: 1;
}

.for-you .eyebrow {
  font-size: calc(0.7rem + 25px);
}

.for-you__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

.for-you__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
}

.for-you__icon {
  width: 60px;
  height: 60px;
  color: var(--olive-mid);
  opacity: 0.78;
}

.for-you__icon svg {
  width: 100%;
  height: 100%;
}

.for-you__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.for-you__col li {
  font-family: var(--font-sans);
  font-size: calc(0.88rem + 7px);
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.75;
}

.for-you__cta {
  text-align: center;
  padding-top: 1rem;
}

.for-you__cta .link-arrow {
  font-size: calc(0.75rem + 8px);
}


/* ============================================================
   SECTION 3 — METHOD / PAUSE
   ============================================================ */
.method {
  background: #f8f4ee;
  padding: 5rem 0;
  overflow: hidden;
}

.method__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
  gap: clamp(4.5rem, 9vw, 10rem);
  align-items: center;
  width: 100%;
}

.method__inner {
  text-align: left;
  padding-left: max(2.5rem, calc((100vw - var(--max-width)) / 2 + 2.5rem));
  padding-right: 0;
  max-width: 760px;
}

.method__lead {
  font-family: var(--font-serif);
  font-size: clamp(calc(1.8rem + 18px), calc(3vw + 18px), calc(2.6rem + 18px));
  font-weight: 600;
  font-style: normal;
  color: var(--text-dark);
  margin-bottom: 2.6rem;
  line-height: 1.16;
  letter-spacing: -0.015em;
}

.method__intro {
  font-family: var(--font-serif);
  font-size: clamp(calc(1.75rem - 4px), calc(2.3vw - 4px), calc(2.35rem - 4px));
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 2rem;
}

.method__divider {
  width: 2.25rem;
  height: 1px;
  background: rgba(145, 112, 103, 0.7);
  margin-bottom: 2rem;
}

.method__body {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.method__body p {
  font-family: var(--font-serif);
  font-size: clamp(calc(1.65rem - 4px), calc(2.25vw - 4px), calc(2.2rem - 4px));
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 0;
}

.method__image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
}

.method__image img {
  width: min(100%, 860px);
  height: auto;
  display: block;
  opacity: 0.96;
  filter: saturate(0.95) brightness(1.02);
}

.method__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 3rem 0;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(168, 134, 90, 0.3);
  border-bottom: 1px solid rgba(168, 134, 90, 0.3);
}

.method__list p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-muted);
  font-style: italic;
}

.moved-copy {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 15%, rgba(255, 218, 164, 0.42), transparent 26%),
    radial-gradient(circle at 12% 82%, rgba(229, 158, 174, 0.28), transparent 34%),
    linear-gradient(135deg, #fff0ed 0%, #f7e2e1 54%, #ecd0d2 100%);
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.moved-copy::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3.25rem;
  width: 108px;
  height: 13px;
  border-bottom: 2px solid rgba(145, 112, 103, 0.62);
  border-radius: 0 0 62% 48%;
  transform: translateX(-50%) rotate(-2deg);
}

.moved-copy__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.moved-copy__inner p {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-style: normal;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.28;
  letter-spacing: -0.01em;
}

.moved-copy--single .moved-copy__inner p {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-style: normal;
  color: var(--text-body);
  line-height: 1.55;
}

.moved-copy__lead {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
}

.moved-copy__accent {
  color: #874e59;
  font-style: italic;
}


/* ============================================================
   SECTION 4 — WHAT BECOMES POSSIBLE
   ============================================================ */
.possible {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(240, 235, 224, 0.44), rgba(240, 235, 224, 0.5)),
    url('IMG_3304.jpg') center 70% / cover no-repeat;
  padding: 7rem 0 7.5rem;
}

.possible::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 252, 246, 0.09), transparent 24%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.015) 0%, rgba(232, 226, 214, 0.02) 100%);
  pointer-events: none;
}

.possible .container {
  position: relative;
  z-index: 1;
}

.possible__header {
  max-width: 900px;
  margin-bottom: 2.5rem;
}

.possible__header h2 {
  font-size: clamp(calc(2rem + 15px), calc(3.5vw + 15px), calc(2.8rem + 15px));
  margin-bottom: 1.25rem;
}

.possible__intro {
  font-family: var(--font-sans);
  font-size: 1.14rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 56ch;
}

.possible__emphasis {
  font-weight: 700;
  font-style: italic;
}

.possible__options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.possible__options--pillars {
  align-items: stretch;
}

.possible-option {
  background: rgba(255, 252, 247, 0.78);
  border: 1px solid rgba(145, 112, 103, 0.14);
  border-radius: 30px;
  padding: 2.25rem 1.9rem 2.35rem;
  min-height: 100%;
  box-shadow: 0 14px 36px rgba(56, 47, 39, 0.08);
  backdrop-filter: blur(2px);
}

.possible-option h3 {
  font-size: clamp(1.65rem, 2vw, 2rem);
  line-height: 1.22;
  margin-bottom: 1rem;
}

.possible-option p {
  font-family: var(--font-sans);
  font-size: calc(1.04rem + 3px);
  color: var(--text-body);
  line-height: 1.72;
}


/* ============================================================
   SECTION 5 — HOW THIS WORK IS DIFFERENT
   ============================================================ */
.different {
  background: var(--olive-dark);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.different__botanical {
  position: absolute;
  top: 0;
  right: 0;
  width: 340px;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 400' fill='none'%3E%3Cpath d='M100 380 L100 20' stroke='rgba(168,134,90,0.12)' stroke-width='1'/%3E%3Cpath d='M100 80 C100 80 60 60 40 30' stroke='rgba(168,134,90,0.12)' stroke-width='1'/%3E%3Cpath d='M100 110 C100 110 140 90 160 60' stroke='rgba(168,134,90,0.12)' stroke-width='1'/%3E%3Cpath d='M100 150 C100 150 65 135 48 110' stroke='rgba(168,134,90,0.12)' stroke-width='1'/%3E%3Cpath d='M100 190 C100 190 138 175 154 150' stroke='rgba(168,134,90,0.12)' stroke-width='1'/%3E%3Cpath d='M100 230 C100 230 62 218 46 195' stroke='rgba(168,134,90,0.12)' stroke-width='1'/%3E%3Cpath d='M100 270 C100 270 136 258 150 235' stroke='rgba(168,134,90,0.12)' stroke-width='1'/%3E%3Cpath d='M100 310 C100 310 68 300 54 278' stroke='rgba(168,134,90,0.12)' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  opacity: 0.6;
}

.different__lead {
  max-width: 880px;
  margin: 0 auto calc(3.5rem + 70px);
  text-align: center;
}

.different__lead p {
  font-family: var(--font-serif);
  font-size: calc(1.6rem + 24px);
  font-weight: 500;
  color: var(--cream-light);
  line-height: 1.4;
  font-style: italic;
}

.different__grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 4rem;
  align-items: start;
}

.different__divider {
  background: rgba(168, 134, 90, 0.3);
  align-self: stretch;
}

.different__col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.different__col p,
.different__col li {
  font-family: var(--font-sans);
  font-size: 1.03rem;
  font-weight: 300;
  color: rgba(240, 235, 224, 0.82);
  line-height: 1.9;
}

.different__intro {
  font-family: var(--font-serif) !important;
  font-size: calc(1.6rem + 9px) !important;
  font-weight: 500 !important;
  color: var(--cream-light) !important;
  line-height: 1.45 !important;
  font-style: normal;
}

.different__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-left: 1rem;
}

.different__col ul li {
  position: relative;
  padding-left: 1rem;
}

.different__col ul li::before {
  content: '—';
  position: absolute;
  left: -0.2rem;
  color: var(--gold);
  font-size: 0.85rem;
}


/* ============================================================
   SECTION 6 — COMMON REASONS PEOPLE REACH OUT
   ============================================================ */
.reasons {
  position: relative;
  background: linear-gradient(180deg, #f1ede5 0%, #e5dfd4 100%);
  padding: 7rem 0 5rem;
  overflow: hidden;
}

.reasons__rose {
  display: none;
}

.reasons .container {
  position: relative;
  z-index: 1;
  max-width: 1080px;
}

.reasons__header {
  max-width: 820px;
  margin: 0 auto 4.5rem;
  text-align: center;
}

.reasons__header .eyebrow {
  text-align: center;
  margin-bottom: 2rem;
}

.reasons__header h2 {
  font-size: calc(clamp(2rem, 4vw, 3rem) + 5px);
  margin-bottom: 1.35rem;
  width: 100%;
}

.reasons__emphasis {
  font-weight: 600;
}

.reasons__intro {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.9;
  max-width: 680px;
  margin: 0 auto;
}

.reasons__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  max-width: 980px;
  margin: 0 auto;
}

.reasons__card {
  background: transparent;
  border: 0;
  padding: 0 3rem;
  box-shadow: none;
  backdrop-filter: none;
  max-width: none;
}

.reasons__card + .reasons__card {
  margin-top: 0;
  border-left: 1px solid rgba(168, 134, 90, 0.48);
}

.reasons__card h3 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1.6rem;
}

.reasons__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.reasons__list li {
  position: relative;
  padding-left: 2rem;
  font-family: var(--font-serif);
  font-size: clamp(calc(1.5rem - 5px), calc(2vw - 5px), calc(1.95rem - 5px));
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.24;
}

.reasons__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0.02em;
  color: var(--gold);
  font-size: 1.35rem;
}

.reasons__scope {
  max-width: 700px;
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(168, 134, 90, 0.42);
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
}


/* ============================================================
   SECTION 7 — WAYS TO WORK WITH ME
   ============================================================ */
.services {
  background: var(--cream-light);
  padding: 8rem 0;
  text-align: center;
}

.services h2 {
  font-size: calc(clamp(2rem, 4vw, 3rem) + 3px);
  text-align: center;
  margin-bottom: 4rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3.5rem;
  text-align: left;
}

.services__card {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(145, 112, 103, 0.12);
  box-shadow: 0 14px 34px rgba(56, 47, 39, 0.08);
}

.services__card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #d7d0c5;
  position: relative;
  isolation: isolate;
}

.services__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.services__card:hover .services__card-img img {
  transform: scale(1.04);
}

.services__card-img--blush::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(214, 149, 155, 0.22) 0%, rgba(214, 149, 155, 0.08) 38%, rgba(255, 241, 234, 0.14) 100%),
    radial-gradient(circle at 78% 22%, rgba(255, 229, 224, 0.2) 0%, rgba(255, 229, 224, 0) 54%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.services__card-img--blush img {
  filter: saturate(0.92) sepia(0.12) hue-rotate(-10deg) brightness(1.02);
}

.services__card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  background: linear-gradient(180deg, rgba(244, 241, 234, 0.94) 0%, rgba(244, 241, 234, 1) 100%);
}

.services__card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-dark);
}

.services__card-body p {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  color: var(--text-body);
  line-height: 1.75;
  flex: 1;
}

.services__card-body .link-arrow {
  margin-top: 0.5rem;
  align-self: flex-start;
}

.services__cta {
  text-align: center;
}


/* ============================================================
   SECTION 8 — TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--cream);
  padding: 4.5rem 0 5rem;
}

.testimonials__simple {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.testimonials__carousel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonials__slides {
  position: relative;
  min-height: 360px;
}

.testimonials__simple-quote {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  position: relative;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
  padding: 2.8rem 2.6rem 2.4rem;
  border: 1px solid rgba(145, 112, 103, 0.14);
  border-radius: 28px;
  box-shadow: 0 14px 36px rgba(56, 47, 39, 0.08);
  backdrop-filter: blur(2px);
  --glow-gold: rgba(200, 168, 120, 0.22);
  --glow-gold-size: 55%;
  --glow-sage: rgba(74, 96, 64, 0.14);
  --glow-sage-size: 50%;
  background:
    radial-gradient(circle at 88% 8%, var(--glow-gold), transparent var(--glow-gold-size)),
    radial-gradient(circle at 6% 96%, var(--glow-sage), transparent var(--glow-sage-size)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M24 22 C24 22 17 17 14 11 C18 11 22 14 24 17 C26 14 30 11 34 11 C31 17 24 22 24 22Z' stroke='rgba(168,134,90,0.34)' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M24 32 C24 32 18 28 16 23 C19 23 22 25 24 27 C26 25 29 23 32 23 C30 28 24 32 24 32Z' stroke='rgba(168,134,90,0.34)' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat bottom right 1.2rem / 60px 60px,
    rgba(255, 252, 247, 0.86);
}

.testimonials__simple-quote:nth-of-type(odd) {
  --glow-gold: rgba(200, 168, 120, 0.34);
  --glow-gold-size: 62%;
  --glow-sage: rgba(74, 96, 64, 0.06);
  --glow-sage-size: 42%;
}

.testimonials__simple-quote:nth-of-type(even) {
  --glow-gold: rgba(200, 168, 120, 0.08);
  --glow-gold-size: 42%;
  --glow-sage: rgba(74, 96, 64, 0.26);
  --glow-sage-size: 62%;
}

.testimonials__simple-quote.is-active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.testimonial__quote {
  font-family: var(--font-serif);
  font-size: 3.1rem;
  color: var(--gold);
  line-height: 0.6;
  opacity: 0.7;
}

.testimonials__simple-quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.62rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.65;
  max-width: 54ch;
}

.testimonials__simple-quote cite {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-mid);
  font-style: normal;
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.testimonials__arrow {
  border: none;
  background: transparent;
  color: var(--olive-mid);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--transition), opacity var(--transition);
}

.testimonials__arrow:hover {
  color: var(--gold);
}

.testimonials__dots {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(61, 80, 53, 0.24);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}

.testimonials__dot.is-active {
  background: var(--gold);
  transform: scale(1.15);
}

/* ============================================================
   SECTION 9 — FINAL CTA
   ============================================================ */
.final-cta {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-image: url('final-cta-sunset.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(250, 243, 216, 0.63) 0%,
    rgba(246, 235, 193, 0.53) 100%);
  display: flex;
  align-items: center;
  width: 100%;
}

.final-cta__content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.final-cta__content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 600;
  font-style: normal;
  color: #6f2733;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.final-cta__content p {
  font-family: var(--font-sans);
  font-size: calc(0.95rem + 3px);
  font-weight: 500;
  color: rgba(111, 39, 51, 0.84);
  line-height: 1.85;
}

.final-cta__content .btn {
  margin-top: 1rem;
  border-color: #8a3041;
  color: #fff7ef;
  background: #8a3041;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(111, 39, 51, 0.28);
}

.final-cta__content .btn:hover {
  background: #a13a4d;
  border-color: #a13a4d;
  color: #fffaf3;
  transform: translateY(-1px);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text-dark);
  padding: 2.5rem 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.footer__logo .logo-name {
  color: var(--cream-light);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
}

.footer__logo .logo-tagline {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-style: italic;
  color: rgba(240,235,224,0.5);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.footer__nav a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240,235,224,0.55);
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--cream-light);
}

.footer__copy {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: rgba(240,235,224,0.35);
  letter-spacing: 0.05em;
}


/* ============================================================
   INNER PAGE HERO (shared across About, Work, Contact)
   ============================================================ */
.page-hero {
  background: var(--olive-dark);
  padding: calc(var(--nav-height) + 5rem) 0 5rem;
  text-align: center;
}

.page-hero--resources {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(28, 38, 24, 0.24), rgba(28, 38, 24, 0.24)),
    url("resources-hero.jpg") center 48% / cover no-repeat;
}

.page-hero--resources::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 38, 24, 0.12) 0%, rgba(28, 38, 24, 0.38) 100%);
}

.page-hero--resources .container {
  position: relative;
  z-index: 1;
}

.page-hero--resources p {
  color: rgba(255, 249, 240, 0.98);
  text-shadow: 0 3px 18px rgba(20, 27, 18, 0.62);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.65;
  max-width: 680px;
}

.page-hero--about {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(28, 38, 24, 0.42), rgba(28, 38, 24, 0.42)),
    url("about-hero-woodland.jpg") center 52% / cover no-repeat;
}

.page-hero--about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 38, 24, 0.12) 0%, rgba(28, 38, 24, 0.36) 100%);
}

.page-hero--about .container {
  position: relative;
  z-index: 1;
}

.page-hero--about p {
  color: rgba(255, 249, 240, 0.98);
  text-shadow: 0 3px 18px rgba(20, 27, 18, 0.62);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.012em;
  line-height: 1.65;
  max-width: 680px;
}

.page-hero--testimonials {
  position: relative;
  overflow: hidden;
  background: none;
}

.page-hero--testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("testimonials-hero-river.jpg") center 58% / cover no-repeat;
  filter: brightness(1.22) saturate(1.3) contrast(1.03);
  z-index: 0;
}

.page-hero--testimonials::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 250, 224, 0.78), transparent 66%),
    linear-gradient(180deg, rgba(255, 250, 230, 0.32) 0%, rgba(250, 236, 196, 0.48) 100%);
  z-index: 1;
}

.page-hero--testimonials .container {
  position: relative;
  z-index: 2;
}

.page-hero.page-hero--testimonials h1 {
  color: #5c2029;
  text-shadow: 0 2px 22px rgba(255, 252, 240, 0.85), 0 1px 4px rgba(255, 252, 240, 0.9);
}

.page-hero.page-hero--testimonials p {
  color: rgba(92, 32, 41, 0.92);
  text-shadow: 0 2px 18px rgba(255, 252, 240, 0.85), 0 1px 3px rgba(255, 252, 240, 0.85);
}

.page-hero--contact {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(28, 38, 24, 0.18), rgba(28, 38, 24, 0.18)),
    url("testimonials-hero-river.jpg") center 35% / cover no-repeat;
}

.page-hero--contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 38, 24, 0.08) 0%, rgba(28, 38, 24, 0.18) 100%);
}

.page-hero--contact::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 24%, rgba(255, 246, 216, 0.28), transparent 34%),
    linear-gradient(120deg, rgba(244, 186, 177, 0.06), rgba(255, 236, 204, 0.08));
  mix-blend-mode: screen;
}

.page-hero--contact .container {
  position: relative;
  z-index: 1;
}

.page-hero--contact p {
  color: rgba(255, 249, 240, 0.98);
  text-shadow: 0 3px 18px rgba(20, 27, 18, 0.42);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.012em;
  line-height: 1.65;
  max-width: 680px;
}

.page-hero--work {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 580px;
  padding: var(--nav-height) 0 0;
  background: url("Robyn-Keramas-Beach-24-plain-cream.jpg") center 18% / cover no-repeat;
}

.page-hero--work::before {
  display: none;
}

.page-hero--work .container {
  position: relative;
  z-index: 1;
  text-align: left;
  padding-right: 46%;
}

.page-hero--work p {
  color: rgba(92, 32, 41, 0.96);
  text-shadow: 0 2px 18px rgba(255, 252, 240, 0.88), 0 1px 4px rgba(255, 252, 240, 0.8);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.012em;
  line-height: 1.65;
  max-width: 680px;
}

.page-hero.page-hero--work h1 {
  color: #5c2029;
  text-shadow: 0 2px 22px rgba(255, 252, 240, 0.9), 0 1px 4px rgba(255, 252, 240, 0.82);
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  font-style: normal;
  color: var(--cream-light);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.page-hero p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(240,235,224,0.65);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

.page-hero--work p,
.page-hero--contact p {
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-style: italic;
  font-weight: 600;
  color: rgba(255, 249, 240, 0.98);
  line-height: 1.4;
  max-width: 760px;
  text-shadow: 0 2px 16px rgba(20, 27, 18, 0.58);
}

.page-hero--work p {
  margin-left: 0;
  margin-right: 0;
}

.page-hero.page-hero--work p {
  color: rgba(92, 32, 41, 0.96);
  text-shadow: 0 2px 18px rgba(255, 252, 240, 0.88), 0 1px 4px rgba(255, 252, 240, 0.8);
  font-size: clamp(1.8rem, 2.8vw, 2.35rem);
}

.page-hero--testimonials p {
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.4;
  max-width: 760px;
}

.page-section {
  padding: 6rem 0;
  background: var(--cream-light);
}

.contact-image-break {
  position: relative;
  overflow: hidden;
  background: var(--olive-dark);
}

.contact-image-break::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(28, 38, 24, 0.18) 0%, rgba(28, 38, 24, 0.34) 100%);
}

.contact-image-break img {
  display: block;
  width: 100%;
  height: auto;
}

.page-section + .page-section {
  background: var(--cream);
}

.page-section h2 {
  margin-bottom: 1.5rem;
}

.page-section p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-body);
  max-width: 640px;
  margin-bottom: 1.25rem;
}

.page-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.page-two-col img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top;
}

.about-photo img {
  height: auto;
  max-height: none;
  object-fit: contain;
  background: var(--cream);
  border-radius: 34px;
}

.about-footer-image {
  position: relative;
  height: 460px;
  overflow: hidden;
  background: #c99591;
}

.about-footer-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 247, 222, 0.28), transparent 20%),
    linear-gradient(120deg, rgba(255, 224, 211, 0.12), rgba(246, 190, 198, 0.06) 52%, rgba(255, 242, 219, 0.16));
  mix-blend-mode: screen;
}

.about-footer-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: brightness(1.08) saturate(0.98) contrast(1.04);
}

.training-section {
  padding-top: 1rem;
  padding-bottom: 5rem;
}

.training-intro {
  max-width: 38rem;
  margin: 0 auto 1.75rem;
}

.training-list {
  max-width: 38rem;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(76, 88, 57, 0.22);
  border-bottom: 1px solid rgba(76, 88, 57, 0.22);
  color: var(--text-body);
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
}

.training-list li + li {
  margin-top: 0.65rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}

.story-grid--reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.story-grid img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.copy-stack p,
.copy-stack li {
  max-width: none;
}

.feature-list,
.pill-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 1.75rem 0 0;
}

.feature-list li,
.pill-list li {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-body);
  padding-left: 1.3rem;
  position: relative;
}

.feature-list li::before,
.pill-list li::before {
  content: '\00b7';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1.4;
}

.resource-grid,
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.page-section--testimonials {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(200, 168, 120, 0.22), transparent 46%),
    radial-gradient(circle at 88% 94%, rgba(200, 168, 120, 0.16), transparent 50%),
    var(--olive-mid);
  padding: 7rem 0 7.5rem;
}

.page-section--testimonials::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 340px;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 400' fill='none'%3E%3Cpath d='M100 380 L100 20' stroke='rgba(168,134,90,0.14)' stroke-width='1'/%3E%3Cpath d='M100 80 C100 80 60 60 40 30' stroke='rgba(168,134,90,0.14)' stroke-width='1'/%3E%3Cpath d='M100 110 C100 110 140 90 160 60' stroke='rgba(168,134,90,0.14)' stroke-width='1'/%3E%3Cpath d='M100 150 C100 150 65 135 48 110' stroke='rgba(168,134,90,0.14)' stroke-width='1'/%3E%3Cpath d='M100 190 C100 190 138 175 154 150' stroke='rgba(168,134,90,0.14)' stroke-width='1'/%3E%3Cpath d='M100 230 C100 230 62 218 46 195' stroke='rgba(168,134,90,0.14)' stroke-width='1'/%3E%3Cpath d='M100 270 C100 270 136 258 150 235' stroke='rgba(168,134,90,0.14)' stroke-width='1'/%3E%3Cpath d='M100 310 C100 310 68 300 54 278' stroke='rgba(168,134,90,0.14)' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  opacity: 0.38;
}

.page-section--testimonials .container {
  position: relative;
  z-index: 1;
}

.quote-wall {
  columns: 2;
  column-gap: 2.2rem;
  max-width: 1040px;
  margin: 0 auto;
}

.resource-card,
.schedule-card {
  background: rgba(244, 241, 234, 0.74);
  border: 1px solid rgba(168, 134, 90, 0.18);
  padding: 1.75rem;
}

.resource-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 1.25rem;
}

.resource-card h3,
.schedule-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.resource-card p,
.schedule-card p,
.quote-card p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-body);
  max-width: none;
}

.quote-card p {
  font-family: var(--font-serif);
  font-size: 1.24rem;
  font-style: italic;
  line-height: 1.82;
  color: var(--text-dark);
  margin-bottom: 0;
}

.quote-card {
  position: relative;
  display: block;
  overflow: hidden;
  break-inside: avoid;
  --glow-gold: rgba(200, 168, 120, 0.22);
  --glow-gold-size: 55%;
  --glow-sage: rgba(74, 96, 64, 0.14);
  --glow-sage-size: 50%;
  background:
    radial-gradient(circle at 88% 10%, var(--glow-gold), transparent var(--glow-gold-size)),
    radial-gradient(circle at 6% 96%, var(--glow-sage), transparent var(--glow-sage-size)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M24 22 C24 22 17 17 14 11 C18 11 22 14 24 17 C26 14 30 11 34 11 C31 17 24 22 24 22Z' stroke='rgba(168,134,90,0.34)' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M24 32 C24 32 18 28 16 23 C19 23 22 25 24 27 C26 25 29 23 32 23 C30 28 24 32 24 32Z' stroke='rgba(168,134,90,0.34)' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat bottom right 1.4rem / 68px 68px,
    rgba(255, 252, 247, 0.82);
  border: 1px solid rgba(145, 112, 103, 0.22);
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(10, 14, 8, 0.28);
  backdrop-filter: blur(2px);
  padding: 2.1rem 2rem 2rem;
  margin: 0 0 2.2rem;
  transition: opacity 0.8s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.quote-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px rgba(10, 14, 8, 0.42);
}

.quote-card:nth-child(odd) {
  --glow-gold: rgba(200, 168, 120, 0.36);
  --glow-gold-size: 62%;
  --glow-sage: rgba(74, 96, 64, 0.06);
  --glow-sage-size: 42%;
}

.quote-card:nth-child(even) {
  --glow-gold: rgba(200, 168, 120, 0.08);
  --glow-gold-size: 42%;
  --glow-sage: rgba(74, 96, 64, 0.28);
  --glow-sage-size: 62%;
}

.quote-card::before {
  content: '\201C';
  display: block;
  font-family: var(--font-serif);
  font-size: 3.1rem;
  color: var(--gold);
  line-height: 0.6;
  opacity: 0.7;
  margin-bottom: 0.7rem;
}

.quote-card__tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive-dark);
  background: rgba(200, 168, 120, 0.24);
  border: 1px solid rgba(168, 134, 90, 0.32);
  border-radius: 999px;
  padding: 0.32rem 0.9rem;
  margin-bottom: 1rem;
}

.quote-card__attribution {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.quote-card__avatar {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 252, 247, 0.92);
  border: 1px solid rgba(168, 134, 90, 0.4);
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--olive-dark);
}

.quote-card__name {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-muted);
}

.featured-quote {
  background: var(--cream-light);
  padding: 5.5rem 0 3.5rem;
  text-align: center;
}

.featured-quote__block {
  max-width: 780px;
  margin: 0 auto;
}

.featured-quote__mark {
  font-family: var(--font-serif);
  font-size: 4.4rem;
  color: var(--gold);
  line-height: 0.5;
  opacity: 0.75;
  margin-bottom: 0.6rem;
}

.featured-quote__block p {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.55;
}

.featured-quote__block cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-mid);
  font-style: normal;
}

.page-section.page-cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 7rem 0;
}

.page-section.page-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("Mountains1-blueridge-real.jpg") center 42% / cover no-repeat;
  filter: brightness(1.3) saturate(1.45) contrast(1.05);
  z-index: 0;
}

.page-section.page-cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 6%, rgba(255, 247, 210, 0.75), transparent 58%),
    linear-gradient(160deg, rgba(255, 249, 226, 0.34) 0%, rgba(250, 233, 188, 0.5) 100%);
  z-index: 1;
}

.page-cta-band .container {
  position: relative;
  z-index: 2;
}

.page-cta-band h2 {
  color: #6f2733;
  margin-bottom: 1rem;
}

.page-cta-band p {
  color: rgba(111, 39, 51, 0.84);
  text-shadow: 0 1px 12px rgba(255, 248, 224, 0.6);
  margin: 0 auto 1.5rem;
}


/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form {
  max-width: 580px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--cream);
  border: 1px solid rgba(168,134,90,0.35);
  padding: 0.85rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(30, 38, 26, 0.98);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 1.5rem 0 2rem;
    transform: translateY(-110%);
    transition: transform 0.4s ease;
    z-index: 99;
  }

  .nav__links.open {
    transform: translateY(0);
  }

  .nav__links li {
    width: 100%;
    text-align: center;
  }

  .nav__links li a {
    display: block;
    padding: 1rem 0;
    font-size: calc(0.75rem + 5px);
    font-weight: 800;
  }

  .nav__links li:last-child {
    padding: 1rem 2rem 0;
  }

  .nav__links .btn--nav {
    display: block;
    width: 100%;
  }

  .nav__toggle {
    display: flex;
  }

  .for-you__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 440px;
    margin: 0 auto 4rem;
  }

  .possible {
    padding: 5rem 0 5.5rem;
  }

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

  .possible__header {
    margin-bottom: 2.5rem;
  }

  .possible-option {
    padding: 1.75rem 1.5rem 1.9rem;
  }

  .different__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .different__lead {
    margin-bottom: 2.5rem;
  }

  .different__lead p {
    font-size: clamp(2rem, 6vw, calc(1.6rem + 19px));
  }

  .different__divider {
    height: 1px;
    width: 100%;
  }

  .reasons__grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
  }

  .services__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto 3.5rem;
  }

  .page-two-col {
    grid-template-columns: 1fr;
  }

  .story-grid,
  .story-grid--reverse,
  .resource-grid,
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .quote-wall {
    columns: 1;
    max-width: 620px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__nav {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .nav {
    padding: 0 1.5rem;
    background: rgba(20, 25, 18, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 16px rgba(0, 0, 0, 0.28);
  }

  .nav__logo {
    min-width: 0;
    position: relative;
    z-index: 101;
  }

  .logo-name {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.15em;
  }

  .nav .logo-name {
    font-family: var(--font-sans);
    color: #fffdf8;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.42);
  }

  .nav .logo-tagline {
    font-size: 0.86rem;
    color: rgba(255, 253, 248, 0.82);
  }

  .nav__toggle {
    position: relative;
    z-index: 101;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    padding: 9px;
    border: 1px solid rgba(240, 205, 154, 0.72);
    border-radius: 4px;
    background: rgba(20, 25, 18, 0.72);
  }

  .nav__toggle span {
    width: 22px;
    height: 2px;
    background: #fffdf8;
  }

  .nav__links {
    top: 80px;
    background: rgba(20, 25, 18, 0.99);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.26);
    border-top: 1px solid rgba(240, 205, 154, 0.22);
  }

  .nav__links li a {
    color: #fffdf8;
  }

  .proof-strip {
    padding: 1rem 0 1.15rem;
  }

  .proof-strip__trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .proof-strip__item {
    min-height: 4.5rem;
    display: grid;
    place-items: center;
    padding: 0.65rem 0.55rem;
  }

  .proof-strip__item:not(:last-child)::after {
    display: none;
  }

  .proof-strip__item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(145, 112, 103, 0.2);
  }

  .proof-strip__value {
    font-size: 1.05rem;
    line-height: 1.3;
  }

  .hero {
    min-height: 640px;
  }

  .hero__image {
    position: absolute;
    inset: 0;
  }

  .hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
  }

  .hero__content {
    box-sizing: border-box;
    inset: 0;
    margin: 0;
    padding: 8.5rem 1.5rem 3.5rem;
    max-width: none;
    min-height: 100%;
    justify-content: center;
  }

  .container {
    padding: 0 1.5rem;
  }

  .training-list {
    list-style: disc;
    padding: 1.25rem 1rem 1.25rem 2.2rem;
  }

  .training-list li::marker {
    color: var(--gold);
  }

  .training-list li + li {
    margin-top: 0.85rem;
  }

  .moved-copy {
    padding: 5rem 0 5.5rem;
  }

  .moved-copy--single .moved-copy__inner p {
    font-size: 1.12rem;
    line-height: 1.6;
  }

  .moved-copy__lead {
    font-size: 1.85rem;
  }

  .quote-card {
    padding: 1.8rem 1.6rem 1.7rem;
    background-size: auto, auto, 50px 50px;
  }

  .quote-card::before {
    font-size: 2.6rem;
  }

  .quote-card p {
    font-size: 1.05rem;
    line-height: 1.82;
  }

  .testimonials__simple-quote {
    padding: 2rem 1.5rem 1.8rem;
    background-size: auto, auto, 46px 46px;
  }

  .reasons {
    padding: 5.5rem 0;
  }

  .reasons__rose {
    display: none;
  }

  .reasons .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .reasons__header {
    margin-bottom: 3rem;
    margin-left: 0;
  }

  .reasons__header h2 {
    width: 100%;
  }

  .reasons__header .eyebrow {
    text-align: center;
    transform: none;
  }

  .reasons__header,
  .reasons__scope {
    text-align: center;
  }

  .reasons__intro {
    max-width: 100%;
  }

  .reasons__grid {
    gap: 2.25rem;
  }

  .reasons__card {
    padding: 0;
  }

  .reasons__card + .reasons__card {
    margin-top: 0;
    padding-top: 2.25rem;
    border-left: 0;
    border-top: 1px solid rgba(168, 134, 90, 0.42);
  }

  .reasons__card h3 {
    font-size: clamp(1.7rem, 7vw, 2.3rem);
    text-align: center;
  }

  .reasons__list li {
    font-size: 1.32rem;
    padding-left: 1.5rem;
  }

  .hero__content {
    padding: 6rem 1.5rem;
    margin-left: 1.5rem;
    max-width: 100%;
    min-height: auto;
  }

  .hero__overlay {
    background: linear-gradient(
      90deg,
      rgba(20, 25, 18, 0.88) 0%,
      rgba(20, 25, 18, 0.72) 60%,
      rgba(20, 25, 18, 0.4) 100%
    );
  }

  .hero__body {
    max-width: 100%;
    font-size: 1.08rem;
  }

  .hero__headline {
    font-size: clamp(46px, 13vw, 58px);
    margin-bottom: 1.5rem;
  }

  .hero__meta {
    max-width: 100%;
  }

  .page-hero--testimonials p,
  .page-hero--work p,
  .page-hero--contact p {
    font-size: 1.32rem;
    line-height: 1.5;
    max-width: 30ch;
  }

  .page-hero--work .container {
    padding-right: 4rem;
  }

  .page-hero.page-hero--work p {
    font-size: 1.5rem;
  }

  .hero__mobile-face {
    display: block;
    height: 180px;
    overflow: hidden;
    background: #5c4d3b;
  }

  .hero__mobile-face img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 84% 38%;
    transform: scale(1.3);
    transform-origin: 84% 38%;
  }

  .method {
    padding: 3.5rem 0;
  }

  .method__layout {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .method__inner {
    text-align: left;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 100%;
  }

  .method__lead {
    margin-bottom: 1.8rem;
  }

  .method__intro {
    margin-bottom: 1.4rem;
  }

  .method__divider {
    margin-bottom: 1.4rem;
  }

  .method__body {
    gap: 1rem;
  }

  .method__image {
    justify-content: center;
  }

  .method__image img {
    width: min(100%, 620px);
  }
}
