:root {
  --fs-body:     clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --fs-small:    clamp(0.8125rem, 0.8rem + 0.1vw,  0.9375rem);
  --fs-lead:     clamp(1.125rem, 1rem    + 0.6vw,  1.375rem);
  --fs-h3:       clamp(1.125rem, 1rem    + 0.4vw,  1.375rem);
  --fs-h2:       clamp(1.5rem,   1.2rem  + 1.2vw,  2.25rem);
  --fs-h2-sm:    clamp(1.25rem,  1.05rem + 0.8vw,  1.75rem);
  --fs-h1-sec:   clamp(2rem,     1.5rem  + 2.2vw,  3.25rem);
  --fs-hero:     clamp(2.75rem,  2rem    + 4.5vw,  6rem);
  --fs-tag:      clamp(1.5rem,   1.1rem  + 1.6vw,  2.5rem);
  --lh-body:     1.7;
  --lh-tight:    1.1;
  --space-h1:    clamp(2rem,     1.2rem + 2vw,     4rem);
}

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

body {
  font-family: "Gentium Basic", "Gentium Plus", serif;
  color: #333;
  background-color: #f2f2f2;
  line-height: var(--lh-body);
  font-size: var(--fs-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Anchor targets clear the fixed nav. Single-page site, so every nav
   link is a jump — without this the heading lands underneath the bar. */
section[id],
header[id],
.offering[id] {
  scroll-margin-top: 72px;
}

/* ─── Navigation ─── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  backdrop-filter: blur(0px);
  box-shadow: none;
  z-index: 1000;
  padding: 15px 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

#nav.scrolled,
#nav.open {
  background-color: rgba(33, 33, 33, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 48px;
}

.nav-brand {
  font-family: "Gentium Plus", serif;
  font-size: 1.1rem;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

nav.scrolled .nav-brand,
nav.open .nav-brand { text-shadow: none; }

.nav-brand:hover { color: #7db6b1; }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
  align-items: baseline;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease, transform 0.3s ease;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.5);
}

nav.scrolled .nav-dropdown-toggle,
nav.open .nav-dropdown-toggle { text-shadow: none; }

.nav-dropdown-toggle:hover { color: #7db6b1; }

.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-toggle svg { transition: transform 0.3s ease; }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -24px;
  right: auto;
  min-width: 240px;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  background-color: rgba(33, 33, 33, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu li { text-align: left; }

.nav-menu .nav-dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-family: "Lora", serif;
  font-size: 0.95rem;
  color: #ffffff;
  text-decoration: none;
  text-shadow: none;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-menu .nav-dropdown-menu a::after { display: none; }

.nav-menu .nav-dropdown-menu a:hover {
  color: #7db6b1;
  background-color: rgba(255, 255, 255, 0.05);
}

.nav-menu li { margin: 0; }

.nav-menu a {
  font-family: "Lora", serif;
  font-size: 1.1667rem; /* 18.67px — matches yogitony.com's 14pt */
  color: #ffffff;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.5);
}

nav.scrolled .nav-menu a { color: #ffffff; text-shadow: none; }

.nav-menu a:hover { color: #7db6b1; }

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #7db6b1;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after { width: 100%; }

/* ─── Hamburger ─── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Hero ─── */
.header-section {
  background-color: #212121;
  color: #ffffff;
  padding: 60px 48px;
  text-align: center;
  position: relative;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Sized to the section, not oversized: the parallax translates the
   image downward, so the gap it opens is always above the viewport. */
.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(images/dfd.jpg), var(--lqip-dfd);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  will-change: transform;
  z-index: 0;
}

.header-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(33, 33, 33, 0.7);
  z-index: 1;
}

.header-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 1), 0 1px 8px rgba(0, 0, 0, 0.9), 0 0 60px rgba(0, 0, 0, 0.6);
}

/* Gaps grow with the viewport — at full size the type is large enough
   that 20px between h1 and tagline reads as crowded. */
.header-content h1 {
  margin-bottom: clamp(22px, 2.4vw, 36px);
}

.hero-tagline {
  font-style: italic;
  font-size: var(--fs-tag);
  margin-top: 0;
  margin-bottom: clamp(20px, 2vw, 30px);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-lead);
  max-width: 800px;
  margin: 0 auto 36px;
  line-height: 1.6;
  font-style: italic;
}

.header-content .hero-button {
  background-color: #ffffff;
  color: #323232;
  text-shadow: none;
}

.header-content .hero-button:hover {
  background-color: #7db6b1;
  color: #1e2a2f;
}

/* ─── Typography ─── */
h1 {
  font-family: "Lora", serif;
  font-size: var(--fs-hero);
  font-weight: 400;
  letter-spacing: -1px;
  line-height: var(--lh-tight);
  margin-top: var(--space-h1);
  margin-bottom: calc(var(--space-h1) * 0.625);
  color: #ffffff;
}

h2 {
  font-family: "Lora", serif;
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.2;
  margin-top: 25px;
  color: #ffffff;
}

/* ─── Sections ─── */
section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 96px 48px;
}

section.dark {
  background-color: #323232;
  color: #ffffff;
  max-width: none;
  margin: 0;
  align-self: stretch;
  padding: 96px max(48px, calc(50% - 500px + 48px));
}

section.alt {
  background-color: #ebebeb;
  max-width: none;
  margin: 0;
  align-self: stretch;
  padding: 96px max(48px, calc(50% - 500px + 48px));
}

section h1 {
  font-family: "Lora", serif;
  font-size: var(--fs-h1-sec);
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.2;
  margin-top: var(--space-h1);
  margin-bottom: var(--space-h1);
  color: #37474f;
  text-align: left;
}

section h1.centered { text-align: center; }

section h2 {
  font-family: "Lora", serif;
  font-size: var(--fs-h2-sm);
  font-weight: 400;
  line-height: 1.4;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #37474f;
}

section h2.centered { text-align: center; }

section p + h2,
section div + h2 { margin-top: 40px; }

section p {
  margin-bottom: 20px;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: #212121;
}

.dark h1,
.dark h2,
.dark p { color: #ffffff; }

/* ─── About columns ─── */
.about-columns {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 30px;
}

.about-image-column {
  flex: 0 0 300px;
  text-align: center;
}

.about-image-column img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
}

.about-text-column { flex: 1; }


/* ─── Divider ─── */
.divider {
  width: 40px;
  height: 1px;
  background: #7db6b1;
  margin: 30px 0;
}

/* ─── Accent text ─── */
.accent { color: #7db6b1; }

/* ─── Links ─── */
a {
  color: #478c9e;
  text-decoration: underline;
  text-decoration-color: rgba(71, 140, 158, 0.35);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 200ms ease, text-decoration-color 200ms ease;
}
a:hover { color: #5a707a; text-decoration-color: #5a707a; }
.dark a { color: #7db6b1; text-decoration-color: rgba(125, 182, 177, 0.4); }
.dark a:hover { color: #7db6b1; opacity: 0.7; text-decoration-color: rgba(125, 182, 177, 0.7); }

/* ─── Buttons — solid pill with sliding arrow ─── */
.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background-color: #37474f;
  border: 0;
  color: #ffffff;
  font-family: "Lora", serif;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 20px 10px 20px 0;
}

.button::after {
  content: "→";
  display: inline-block;
  line-height: 1;
  transition: transform 0.3s ease;
}

.button:hover {
  background-color: #478c9e;
  color: #ffffff;
}

.button:hover::after { transform: translateX(4px); }

.dark .button {
  background-color: #ffffff;
  color: #323232;
}

.dark .button:hover {
  background-color: #7db6b1;
  color: #1e2a2f;
}

/* ─── Features — numbered editorial entries ─── */
.features-list {
  display: flex;
  flex-direction: column;
  max-width: 820px;
  margin-top: 40px;
}

.feature {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  padding: 48px 0;
  border-top: 1px solid rgba(55, 71, 79, 0.15);
  align-items: start;
}

.features-list .feature:last-child {
  border-bottom: 1px solid rgba(55, 71, 79, 0.15);
}

.feature-number {
  font-family: "Lora", serif;
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.25rem);
  font-weight: 400;
  font-style: italic;
  color: #7db6b1;
  line-height: 1.15;
}

.feature-title {
  font-family: "Lora", serif;
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.25rem);
  font-weight: 400;
  color: #37474f;
  margin: 0 0 16px;
  line-height: 1.15;
}

.feature-text {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: #37474f;
  margin: 0;
}

.dark .feature {
  border-color: rgba(255, 255, 255, 0.15);
}

.dark .feature-title {
  color: #ffffff;
}

.dark .feature-text {
  color: #ffffff;
}

/* ─── Arc narrative — coaching "what changes" ─── */
.arc-narrative {
  max-width: 820px;
  margin-top: 40px;
}

.arc-step {
  padding: 48px 0 0;
}

.arc-step h2 {
  font-family: "Lora", serif;
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.25rem);
  font-weight: 400;
  font-style: italic;
  color: #7db6b1;
  margin: 0 0 16px;
  line-height: 1.15;
}

.arc-step p {
  margin: 0;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

/* ─── Outcomes — workshops two-column label/description ─── */
.outcomes {
  max-width: 920px;
  margin-top: 40px;
}

.outcome {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid rgba(55, 71, 79, 0.15);
  align-items: baseline;
}

.outcomes .outcome:last-child {
  border-bottom: 1px solid rgba(55, 71, 79, 0.15);
}

.outcome h2 {
  font-family: "Lora", serif;
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  font-weight: 400;
  color: #7db6b1;
  margin: 0;
  line-height: 1.25;
  text-align: right;
}

.outcome p {
  margin: 0;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.dark .outcome {
  border-color: rgba(125, 182, 177, 0.5);
}

.dark .outcome h2 {
  color: #ffffff;
}

.dark .outcome p {
  color: #ffffff;
}

/* ─── Timeline — yoga temporal progression ─── */
.timeline {
  position: relative;
  margin-top: 40px;
  padding-left: 36px;
  max-width: 820px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(125, 182, 177, 0.4);
}

.timeline-step {
  position: relative;
  padding: 0 0 48px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-step::before {
  content: "";
  position: absolute;
  left: -41px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #7db6b1;
}

.timeline-step h2 {
  font-family: "Lora", serif;
  font-size: clamp(1.3rem, 1rem + 1.2vw, 1.8rem);
  font-weight: 400;
  color: #7db6b1;
  margin: 0 0 12px;
  line-height: 1.2;
}

.timeline-step p {
  margin: 0;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.dark .timeline::before {
  background: rgba(125, 182, 177, 0.3);
}

.dark .timeline-step p {
  color: #ffffff;
}

/* ─── Offerings — alternating editorial rows ─── */
.offerings-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
}

.offering {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  column-gap: 80px;
  row-gap: 18px;
  align-items: start;
  padding: 56px 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border-top: 1px solid rgba(55, 71, 79, 0.15);
  transition: none;
  color: #37474f;
}

.offering > .offering-tag {
  grid-column: 1 / -1;
}

/* Rules sit *between* offerings only — no rule above the first or
   below the last, so the group doesn't read as a boxed table. */
.offerings-grid .offering:first-child { border-top: 0; }
.offerings-grid .offering:last-child { border-bottom: 0; }

.offering-label {
  display: flex;
  flex-direction: column;
}

.offering h2 {
  font-family: "Lora", serif;
  font-size: clamp(1.75rem, 1.2rem + 1.9vw, 2.75rem);
  font-weight: 400;
  color: #37474f;
  margin-top: 0;
  margin-bottom: 14px;
  line-height: 1.1;
  letter-spacing: -0.005em;
}

.offering-subtitle {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(55, 71, 79, 0.55);
  margin-top: -6px;
  margin-bottom: 14px;
}

.offering .price {
  display: block;
  font-family: "Lora", serif;
  font-style: italic;
  font-size: 0.95rem;
  color: #478c9e;
  margin-bottom: 0;
  text-decoration: none;
}

.offering p {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  margin-top: 0;
  margin-bottom: 0;
}

.offering-tag {
  display: inline-block;
  justify-self: start;
  font-family: "Inter", sans-serif;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 3px 10px;
  border-radius: 3px;
  background: rgba(125, 182, 177, 0.12);
  color: #478c9e;
  margin: 0;
}

.inline-cta {
  text-align: center;
  margin: 48px auto 0;
  padding-top: 40px;
  border-top: 1px solid rgba(125, 182, 177, 0.3);
  max-width: 640px;
}

.inline-cta p {
  margin-bottom: 24px;
}

.dark .inline-cta p { color: #ffffff; }

.resonance-list {
  list-style: '–';
  padding-left: 1.5em;
  margin: 0;
}

.resonance-list li {
  padding: 8px 0 8px 0.5em;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  text-wrap: pretty;
}

.resonance-list li::marker { color: #7db6b1; }

/* Heading on the left, bullets on the right. Used by "Is this you?" and "Who I work with". */
.resonance-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 7fr);
  grid-template-areas: "heading bullets";
  gap: 64px;
  align-items: start;
  margin-top: 20px;
}

.resonance-grid h1 {
  grid-area: heading;
  margin: 0;
  text-align: right;
}

.resonance-grid .resonance-list {
  grid-area: bullets;
}

.resonance-grid .resonance-list li {
  padding: 18px 0 18px 0.5em;
  font-size: var(--fs-lead);
}

.resonance-grid .resonance-list li:first-child { padding-top: 0; }

@media (max-width: 768px) {
  .resonance-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "heading" "bullets";
    gap: 24px;
  }
  .resonance-grid h1 { text-align: left; }
}

/* ─── Testimonials — editorial column ─── */
.testimonials-container {
  max-width: 640px;
  margin: 0 auto;
}

.testimonial {
  margin: 0;
  padding: 48px 0;
  position: relative;
}

.testimonial blockquote {
  font-family: "Gentium Plus", "Gentium Basic", serif;
  font-style: italic;
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: #37474f;
  margin: 0 0 16px;
  quotes: "\201C" "\201D";
  position: relative;
}

.testimonial blockquote::before {
  content: open-quote;
  position: absolute;
  right: 100%;
  margin-right: 2px;
  color: #7db6b1;
}
.testimonial blockquote::after  { content: close-quote; margin-left: 2px; color: #7db6b1; }

.testimonial figcaption {
  font-family: "Lora", serif;
  font-size: 0.9375rem;
  color: #5a707a;
}

.testimonial figcaption::before { content: "— "; color: #7db6b1; }

@media (max-width: 767px) {
  .testimonial { padding: 32px 0; }
}


/* ─── Contact ─── */
.contact-info {
  text-align: center;
  padding: 40px 0 0;
}

.dark .contact-info p { color: #ffffff; }

.contact-links {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.contact-links li {
  padding: 6px 0;
  font-size: var(--fs-body);
  color: rgba(255,255,255,0.7);
}

.contact-links a { color: #7db6b1; text-decoration: none; }
.contact-links a:hover { color: #7db6b1; opacity: 0.7; }

/* ─── Social links — masked glyphs, so they take the accent colour ─── */
.social-links {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-links a {
  display: block;
  padding: 6px;
  text-decoration: none;
}

.social-icon {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  background-color: #7db6b1;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  transition: background-color 0.2s ease;
}

.social-links a:hover .social-icon { background-color: #ffffff; }

/* In the footer column the row is left-aligned; the negative margin
   pulls the first icon's tap padding back to the column's text edge. */
.footer-col .social-links--footer {
  justify-content: flex-start;
  margin: 18px 0 0 -6px;
  gap: 14px;
}

.footer-col .social-links--footer li { padding: 0; }

.social-links--footer .social-icon {
  width: 20px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.75);
}

.social-links--footer a:hover .social-icon { background-color: #7db6b1; }

.social-icon--instagram { mask-image: url(/images/icons/ig.png); -webkit-mask-image: url(/images/icons/ig.png); }
.social-icon--facebook  { mask-image: url(/images/icons/fb.png); -webkit-mask-image: url(/images/icons/fb.png); }
.social-icon--youtube   { mask-image: url(/images/icons/yt.png); -webkit-mask-image: url(/images/icons/yt.png); }
.social-icon--whatsapp  { mask-image: url(/images/icons/wa.png); -webkit-mask-image: url(/images/icons/wa.png); }


/* ─── Footer ─── */
.site-footer {
  background-color: #1e1e1e;
  color: rgba(255, 255, 255, 0.7);
  width: 100%;
  margin-top: auto;
  padding: 80px max(48px, calc(50% - 600px + 48px)) 32px;
  font-family: "Gentium Basic", "Gentium Plus", serif;
  font-size: 0.9375rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-name {
  font-family: "Lora", serif;
  font-size: 1.125rem;
  color: #ffffff;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.footer-ethos {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  max-width: 34ch;
  margin: 0;
}

.footer-col-title {
  font-family: "Lora", serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  padding: 4px 0;
  line-height: 1.6;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #7db6b1;
}

.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-base a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.footer-base a:hover {
  color: #7db6b1;
}

.footer-attribution {
  font-size: 0.75rem;
  opacity: 0.65;
}

@media only screen and (max-width: 767px) {
  .site-footer { padding: 56px 24px 24px; }
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }
  .footer-base { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ─── Scroll reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

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

/* Sections themselves must not fade — their background paints the band of
   colour the next section's reveal animates against. Content inside still
   fades via its own .reveal children. */
section.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

body.no-reveal-anim .reveal { transition: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ─── Responsive ─── */
@media only screen and (max-width: 767px) {
  section { padding: 56px 24px; }
  section.dark { padding: 72px 24px; }
  .header-section { padding: 40px 24px; min-height: 100vh; }
  .about-columns { flex-direction: column; gap: 30px; }
  .about-image-column { flex: 1; width: 100%; text-align: center; }
  .about-image-column img { width: auto; max-width: 300px; display: block; margin: 0 auto; }
  .feature { grid-template-columns: 1fr; gap: 12px; padding: 36px 0; }
  .outcome { grid-template-columns: 1fr; gap: 8px; }
  .outcome h2 { text-align: left; }
  .timeline { padding-left: 28px; }
  .timeline-step::before { left: -33px; width: 10px; height: 10px; }
  .offerings-grid { flex-direction: column; }
  .offering { flex: 1 1 100%; }
  /* No brand to sit opposite it, so the hamburger goes to the right. */
  .nav-container { padding: 0 24px; justify-content: flex-end; }
  .nav-toggle { display: block; order: 2; }
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding-top: 10px;
    order: 3;
    align-items: stretch;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { text-align: right; }
  .nav-menu a {
    padding: 12px 0;
    display: block;
  }
  .nav-dropdown {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0;
  }
  .nav-dropdown-label { flex: 1; }
  .nav-dropdown-toggle { padding: 12px 8px; }
  .nav-dropdown-menu {
    position: static;
    width: 100%;
    min-width: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0 0 6px 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu li { text-align: right; }
  .nav-menu .nav-dropdown-menu a {
    padding: 10px 0;
    font-size: 0.9rem;
    opacity: 0.85;
  }
  .nav-dropdown:hover .nav-dropdown-menu {
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
}

/* ─── Offering card links ─── */
a.offering-link {
  text-decoration: none;
}

a.offering-link h2,
a.offering-link p,
a.offering-link li,
a.offering-link .price,
a.offering-link .offering-tag {
  color: inherit;
}

a.offering-link h2 { color: #37474f; }
a.offering-link p { color: #37474f; }
a.offering-link li { color: #37474f; }
a.offering-link .price { color: #478c9e; }

/* ─── Short header (sub-pages) ─── */
.header-section--short {
  height: auto;
  min-height: 40vh;
  padding-top: 120px;
  padding-bottom: 60px;
}

.header-section--short .header-bg {
  top: -30%;
  height: 160%;
}

.header-bg--threshold {
  background-image: url(images/threshold.jpg), var(--lqip-threshold);
  background-position: center top, center top;
  filter: saturate(1.15);
}

.header-section:has(.header-bg--threshold)::before {
  background-color: rgba(33, 33, 33, 0.25);
}

/* ─── Arc grid (session series) ─── */
.arc-grid {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.arc {
  flex: 1;
  padding: 28px 28px 28px 24px;
  position: relative;
}

.arc::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: rgba(125, 182, 177, 0.5);
  transition: background-color 0.3s ease;
}

.arc:hover::before {
  background-color: #7db6b1;
}

.arc h2 {
  color: #7db6b1;
  margin-top: 0;
  margin-bottom: 4px;
}

.arc-subtitle {
  font-style: italic;
  font-size: var(--fs-small);
  color: #37474f !important;
  margin-bottom: 16px !important;
}

.theme-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.theme-list li {
  padding: 6px 0 6px 18px;
  font-size: var(--fs-small);
  color: #37474f;
  position: relative;
}

.theme-list li::before {
  content: "\2013";
  position: absolute;
  left: 0;
  color: rgba(55, 71, 79, 0.45);
}

.arc-coda {
  font-family: "Lora", serif;
  font-style: italic;
  font-size: var(--fs-lead);
  color: rgba(55, 71, 79, 0.85) !important;
  text-align: center;
  margin: 40px auto 0 !important;
  max-width: 640px;
}

.dark .arc-subtitle {
  color: rgba(255, 255, 255, 0.6) !important;
}

.dark .theme-list li {
  color: rgba(255, 255, 255, 0.85);
}

.dark .theme-list li::before {
  color: rgba(255, 255, 255, 0.45);
}

.dark .arc-coda {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* ─── Details grid — icon + headline + detail ─── */
.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.detail-icon {
  display: block;
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  background-color: #478c9e;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
}

.detail-icon--calendar  { mask-image: url(/images/icons/calendar.png);  -webkit-mask-image: url(/images/icons/calendar.png); }
.detail-icon--location  { mask-image: url(/images/icons/location.png);  -webkit-mask-image: url(/images/icons/location.png); }
.detail-icon--chat      { mask-image: url(/images/icons/chat.png);      -webkit-mask-image: url(/images/icons/chat.png); }
.detail-icon--sterling  { mask-image: url(/images/icons/sterling.png);  -webkit-mask-image: url(/images/icons/sterling.png); }
.detail-icon--network   { mask-image: url(/images/icons/network.png);   -webkit-mask-image: url(/images/icons/network.png); }
.detail-icon--play      { mask-image: url(/images/icons/play.png);      -webkit-mask-image: url(/images/icons/play.png); }
.detail-icon--group     { mask-image: url(/images/icons/group.png);     -webkit-mask-image: url(/images/icons/group.png); }
.detail-icon--star      { mask-image: url(/images/icons/star.png);      -webkit-mask-image: url(/images/icons/star.png); }
.detail-icon--tea-leaf  { mask-image: url(/images/icons/tea-leaf.png);  -webkit-mask-image: url(/images/icons/tea-leaf.png); }

.detail h2 {
  font-family: "Lora", serif;
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.375rem);
  font-weight: 400;
  color: #37474f;
  margin: 0 0 8px;
  line-height: 1.25;
}

.detail p {
  font-size: var(--fs-small);
  color: #5a707a;
  margin: 0;
  line-height: 1.5;
}

.dark .detail-icon { background-color: #7db6b1; }
.dark .detail h2 { color: #ffffff; }
.dark .detail p { color: rgba(255, 255, 255, 0.75); }

/* ─── Doors — nd/pda "Different doors. Same room." ─── */
.doors {
  margin-top: 40px;
  max-width: 820px;
  border-top: 1px solid rgba(125, 182, 177, 0.25);
}

.door {
  display: block;
  padding: 36px 0;
  border-bottom: 1px solid rgba(125, 182, 177, 0.25);
  color: inherit;
  text-decoration: none;
}

.door-kicker {
  display: block;
  font-family: "Lora", serif;
  font-style: italic;
  font-size: 1rem;
  color: #7db6b1;
  margin-bottom: 10px;
}

.door-name {
  display: block;
  font-family: "Lora", serif;
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.875rem);
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 14px;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.door-body {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  max-width: 680px;
}

.door:hover .door-name {
  color: #7db6b1;
}

/* ─── Takeaways — coaching "What you walk away with" ─── */
.takeaways {
  list-style: none;
  padding: 0;
  max-width: 720px;
  margin: 32px auto 0;
}

.takeaways li {
  padding: 20px 0;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: #212121;
  border-bottom: 1px solid rgba(125, 182, 177, 0.25);
}

.takeaways li:first-child {
  border-top: 1px solid rgba(125, 182, 177, 0.25);
}

.takeaways li strong {
  font-family: "Lora", serif;
  font-weight: 400;
  font-style: italic;
  color: #478c9e;
  font-size: 1.1em;
}

.takeaways li strong::after {
  content: ":";
}

/* ─── Changes prose — nd-parenting "What changes" ─── */
.changes-prose {
  list-style: none;
  padding: 0;
  max-width: 680px;
  margin: 48px 0 0;
  border-top: 1px solid rgba(125, 182, 177, 0.25);
}

.changes-prose li {
  padding: 36px 0;
  border-bottom: 1px solid rgba(125, 182, 177, 0.25);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: #212121;
}

.changes-prose .change-line {
  display: block;
  margin-bottom: 12px;
}

.changes-prose .change-note {
  display: block;
  margin-left: 24px;
}

/* ─── Changes inline — pda-parenting "What changes" ─── */
.changes-inline {
  list-style: none;
  padding: 0;
  max-width: 680px;
  margin: 32px auto 0;
}

.changes-inline li {
  padding: 18px 0;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: #212121;
  position: relative;
}

.changes-inline li + li::before {
  content: '·  ·  ·';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  color: #7db6b1;
  font-size: 0.9em;
  letter-spacing: 0.1em;
}

/* ─── Aside note ─── */
.aside-note {
  font-size: var(--fs-small);
  color: #5a707a;
  text-align: center;
  margin-top: 30px;
}

.dark .aside-note {
  color: rgba(255, 255, 255, 0.6);
}

/* ─── Course tiers ─── */
.tier-grid {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  align-items: stretch;
}

.tier {
  flex: 1;
  background: #ffffff;
  border-radius: 10px;
  padding: 40px 32px 32px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.tier:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.tier--featured {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
  transform: translateY(-6px);
}

.tier--featured:hover {
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.1);
  transform: translateY(-9px);
}

.tier h2 {
  margin-top: 0;
  margin-bottom: 4px;
  font-family: "Lora", serif;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
}

.tier-format {
  font-style: italic;
  font-size: var(--fs-small);
  color: #478c9e !important;
  margin-bottom: 20px !important;
}

.tier p {
  font-size: var(--fs-small);
  color: #5a707a;
}

.tier .price {
  display: block;
  font-family: "Lora", serif;
  font-size: clamp(1.375rem, 1.1rem + 1vw, 1.75rem);
  color: #37474f;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(55, 71, 79, 0.12);
}

/* ─── Responsive: sub-pages ─── */
@media only screen and (max-width: 767px) {
  .arc-grid,
  .tier-grid { flex-direction: column; }
  .tier--featured { transform: none; }
  .tier--featured:hover { transform: translateY(-3px); }
  .details-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ─── Pull-quotes ─── */
.pullquote {
  font-family: "Lora", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.75rem, 1.1rem + 2.6vw, 3rem);
  line-height: 1.25;
  color: #37474f;
  margin: 56px 0;
  padding: 6px 0 6px 32px;
  border-left: 2px solid #7db6b1;
  max-width: 900px;
  quotes: none;
}

.pullquote::before, .pullquote::after { content: none; }

.dark .pullquote {
  color: #ffffff;
  border-left-color: #7db6b1;
}

@media only screen and (max-width: 767px) {
  .pullquote { padding-left: 20px; margin: 36px 0; }
}

/* ─── Theme break (thematic break inside a section) ─── */
hr.theme-break {
  border: 0;
  height: 1px;
  width: 80px;
  margin: 56px auto;
  background-color: #7db6b1;
}

@media only screen and (max-width: 767px) {
  hr.theme-break { margin: 36px auto; }
}

/* ─── Lede paragraph (opens a section with emphasis) ─── */
.lede {
  font-family: "Lora", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.375rem, 1rem + 1.4vw, 1.875rem);
  line-height: 1.4;
  color: #37474f;
  margin: 0 0 32px;
  max-width: 820px;
}

.dark .lede { color: #ffffff; }

/* ─── Coda statement (closes a section, centered, quiet) ─── */
.coda-statement {
  font-family: "Lora", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 0.95rem + 1vw, 1.625rem);
  line-height: 1.5;
  color: #37474f;
  text-align: center;
  max-width: 760px;
  margin: 48px auto 8px;
}

.dark .coda-statement { color: #ffffff; }

@media only screen and (max-width: 767px) {
  .lede { margin-bottom: 24px; }
  .coda-statement { margin: 32px auto 4px; }
}

/* ─── Photography: full-bleed bands & section backgrounds ─── */
.bleed-band {
  width: 100%;
  height: clamp(140px, 19vw, 240px);
  background-size: cover;
  background-repeat: no-repeat;
  align-self: stretch;
  background-color: #d0d0d0;
  background-blend-mode: multiply;
  filter: saturate(0.85);
}

.bleed-band--dartmoor {
  background-image: url('/images/band-dartmoor-wide.jpg');
  background-position: center 56%;
}

.bleed-band--approach {
  background-image: url('/images/band-moor-approach.jpg');
  background-position: center 64%;
}

.bleed-band--about {
  background-image: url('/images/band-moor-about.jpg');
  background-position: center 32%;
}

/* Asymmetric insert inside #approach */
.approach-lede {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 38%);
  gap: 56px;
  align-items: start;
  margin-top: 20px;
}
.approach-lede-text p { margin-bottom: 20px; }
.approach-lede-image {
  margin: 0;
  transform: translateY(12px);
}
.approach-lede-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.offering-body {
  padding: 0;
  display: flex;
  flex-direction: column;
}
.offering-body p {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.offering-shifts {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.offering-shifts li {
  line-height: 1.35;
  padding-left: 22px;
  position: relative;
  text-wrap: pretty;
}
.offering-shifts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 12px;
  height: 1px;
  background: #7db6b1;
}
/* Read-more affordance — only on cards that are actually links. These
   offerings have no sub-page yet, so they render as plain divs. */
.offering-link .offering-body::after {
  content: "Find out more →";
  font-family: "Lora", serif;
  font-size: 1rem;
  color: #478c9e;
  letter-spacing: 0.02em;
  transition: color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
}
.offering-link:hover .offering-body::after {
  color: #37474f;
  transform: translateX(4px);
}
@media only screen and (max-width: 767px) {
  .approach-lede { grid-template-columns: 1fr; gap: 24px; }
  .approach-lede-image { max-width: 320px; margin: 0 auto; transform: none; }
  .offering {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 0;
  }
}

