/* =========================================================
   Reformer Pilates Algarve
   Palette: from logo — terracotta · sage · cream · ink
   Fonts:   Cormorant Garamond (display) · DM Sans (body)
   Style:   editorial, conversational, generous whitespace
   ========================================================= */

:root {
  --cream:       #F5EFE0;
  --sand:        #EDE7D8;
  --sage-light:  #D5E5CE;
  --sage:        #5A7A5C;
  --terracotta:  #C4714A;
  --terracotta-dark: #A85A38;
  --ink:         #2C3A2E;
  --muted:       #5E6E62;
  --border:      #DDD5C8;
  --border-dark: rgba(255,255,255,0.12);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
body { margin: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: 'Gloock', serif; }
p, ul, ol { margin: 0; padding: 0; }
li { list-style: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px)  { .container { padding: 0 2.5rem; } }
@media (min-width: 1200px) { .container { padding: 0 3rem; } }

.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container-narrow { padding: 0 2.5rem; } }

/* ── Section spacing ── */
.section    { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-lg { padding: 7rem 0; }

/* ── Background colours ── */
.bg-cream       { background: var(--cream); }
.bg-sand        { background: var(--sand); }
.bg-sage-light  { background: var(--sage-light); }
.bg-sage        { background: var(--sage); }
.bg-ink         { background: var(--ink); }
.bg-terracotta  { background: var(--terracotta); }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(44,58,46,0.07); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}
@media (min-width: 768px) { .nav-inner { height: 5rem; } }

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) { .nav-links { display: flex; gap: 1.25rem; } }
@media (min-width: 1240px) { .nav-links { gap: 1.9rem; } }

.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--ink); }

/* Retreats dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  padding: 0;
  transition: color 0.2s;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active { color: var(--ink); }
.nav-dropdown-toggle svg { transition: transform 0.2s; }
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 1.25rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  border: 1px solid var(--border);
  min-width: 190px;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(44,58,46,0.08);
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }

.nav-dropdown-item {
  display: block;
  padding: 0.85rem 1.25rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-dropdown-item:last-child { border-bottom: none; }
.nav-dropdown-item:hover { color: var(--ink); }
.nav-dropdown-item small {
  display: block;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  margin-top: 0.2rem;
}

.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: block; } }

/* Burger */
.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
}
@media (min-width: 1024px) { .nav-burger { display: none; } }
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  transition: all 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link { font-size: 0.85rem; }

.nav-mobile-group { display: flex; flex-direction: column; gap: 0.75rem; }
.nav-mobile-sub {
  display: none;
  flex-direction: column;
  gap: 0.6rem;
  padding-left: 1rem;
  border-left: 2px solid var(--terracotta);
  margin-top: 0.25rem;
}
.nav-mobile-sub.open { display: flex; }
.nav-mobile-sub a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Page top offset ── */
.page-top { padding-top: 4.5rem; }
@media (min-width: 768px) { .page-top { padding-top: 5rem; } }

/* ── Urgency banner ── */
.urgency-banner {
  background: var(--terracotta-dark);
  padding: 0.65rem 1rem;
  text-align: center;
}
.urgency-banner p {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(245,239,224,0.9);
  line-height: 1.4;
}
.urgency-banner strong { color: white; font-weight: 700; }
.urgency-banner a { color: white; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 1.5px solid transparent;
  border-radius: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn-dark {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-dark:hover {
  background: var(--sage);
  border-color: var(--sage);
}
.btn-terra {
  background: var(--terracotta);
  color: white;
  border-color: var(--terracotta);
}
.btn-terra:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,239,224,0.5);
}
.btn-outline-light:hover {
  background: rgba(245,239,224,0.1);
  border-color: var(--cream);
}
.btn-light {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.btn-light:hover {
  background: var(--sand);
  border-color: var(--sand);
}
.btn-whatsapp {
  background: #25D366;
  color: white;
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1da855;
  border-color: #1da855;
}

/* arrow icon in buttons */
.btn svg { width: 14px; height: 14px; }

/* ── Hero layouts ── */

/* Wright Mode style — full bleed with overlay or large split */
.hero-home {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .hero-home {
    flex-direction: row;
    min-height: 100vh;
    padding-top: 5rem;
  }
}
.hero-home-text {
  background: var(--cream);
  padding: 2.5rem 1.5rem 2rem;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-home-text {
    flex: 0 0 52%;
    padding: 4rem 4rem 5rem 3rem;
  }
}
.hero-home-image {
  position: relative;
  overflow: hidden;
  height: 70vw;
}
@media (min-width: 768px) {
  .hero-home-image {
    flex: 0 0 48%;
    height: auto;
  }
}
.hero-home-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Dark panel hero (for inner pages) */
.hero-dark {
  background: var(--ink);
  padding: 7.5rem 0 5rem;
}
@media (min-width: 768px) { .hero-dark { padding: 8.5rem 0 6rem; } }

/* Full-bleed photo hero */
.hero-photo {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(44,58,46,0.86) 0%,
    rgba(44,58,46,0.48) 55%,
    rgba(44,58,46,0.06) 100%);
}
.hero-photo-overlay-light {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(245,239,224,0.93) 0%,
    rgba(245,239,224,0.65) 50%,
    rgba(245,239,224,0.04) 100%);
}
.hero-photo-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ── Eyebrow label ── */
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.eyebrow.sage { color: var(--sage); }
.eyebrow.light { color: rgba(245,239,224,0.65); }

/* ── Display headings (Wright Mode style) ── */
/* Natural, sentence case, italic for emphasis */
.display-hero {
  font-family: 'Gloock', serif;
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 700;
  line-height: 0.93;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.display-hero em {
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
}

.display-lg {
  font-family: 'Gloock', serif;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.display-lg em {
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
}

.display-md {
  font-family: 'Gloock', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.display-md em {
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
}

/* On dark/colored backgrounds */
.display-light { color: var(--cream) !important; }
.display-light em { color: var(--terracotta) !important; }

/* ── Body text ── */
.lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(44,58,46,0.85);
}
.prose {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(44,58,46,0.82);
}
.prose + .prose { margin-top: 1.25rem; }

.prose-light { color: rgba(245,239,224,0.82); }
.lead-light { color: rgba(245,239,224,0.9); }

/* ── Two column grid ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.grid-2.items-center { align-items: center; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

/* ── Trust bar ── */
.trust-bar {
  background: var(--ink);
  padding: 2.25rem 0;
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 3rem;
}
.trust-stat { text-align: center; }
.trust-val {
  font-family: 'Gloock', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.trust-label {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.48);
  margin-top: 0.25rem;
}
.trust-sep {
  color: rgba(245,239,224,0.2);
  font-size: 1.2rem;
}

/* ── Class cards ── */
.class-card { background: var(--cream); display: flex; flex-direction: column; }
.class-card img { width: 100%; height: 210px; object-fit: cover; }
.class-card-body { padding: 1.5rem; flex: 1; }
.class-level {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}
.class-name {
  font-family: 'Gloock', serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.class-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.75; }

/* ── Testimonials ── */
.testimonial {
  border: 1.5px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-quote {
  font-family: 'Gloock', serif;
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-rule {
  width: 2rem; height: 2px;
  background: var(--terracotta);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.testimonial-context {
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  color: rgba(124,140,128,0.75);
  padding-left: 2.75rem;
  margin-top: 0.2rem;
}

/* ── FAQ ── */
.faq-list { border-top: 1px solid var(--border); }
.faq-list.dark { border-top-color: var(--border-dark); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-list.dark .faq-item { border-bottom-color: var(--border-dark); }

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  text-align: left;
}
.faq-q {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}
.faq-list.dark .faq-q { color: rgba(245,239,224,0.88); }
.faq-icon {
  flex-shrink: 0;
  width: 14px; height: 14px;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--terracotta);
}
.faq-icon::before { top: 6px; left: 0; right: 0; height: 2px; }
.faq-icon::after  { top: 0; bottom: 0; left: 6px; width: 2px; transition: transform 0.25s; }
.faq-item.open .faq-icon::after { transform: scaleY(0); }
.faq-a {
  /* Visible by default so answers are always in the rendered DOM for
     search/AI crawlers and no-JS visitors; script.js adds .js to <html>
     and collapses them into the accordion. */
  display: block;
  padding-bottom: 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.8;
}
.faq-list.dark .faq-a { color: rgba(245,239,224,0.6); }
html.js .faq-a { display: none; }
html.js .faq-item.open .faq-a { display: block; }

/* ── Schedule ── */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px)  { .schedule-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .schedule-grid { grid-template-columns: repeat(7, 1fr); } }

.schedule-day { background: var(--sand); padding: 1rem; }
.schedule-day-name {
  font-family: 'Gloock', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.schedule-class { display: flex; flex-direction: column; gap: 0.2rem; margin-bottom: 0.75rem; }
.schedule-class:last-child { margin-bottom: 0; }
.schedule-time { font-weight: 600; font-size: 0.85rem; color: var(--ink); }
.schedule-name { font-size: 0.78rem; color: var(--muted); line-height: 1.4; }
.schedule-badge {
  display: inline-block;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  margin-top: 0.15rem;
}
.schedule-badge.all  { background: var(--sage-light); color: var(--ink); }
.schedule-badge.exp  { background: var(--ink); color: white; }

/* ── Pricing cards ── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px)  { .pricing-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); } }

.pricing-card { padding: 2rem; display: flex; flex-direction: column; }
.pricing-card.standard { background: rgba(245,239,224,0.55); }
.pricing-card.featured { background: var(--ink); }
.pricing-name {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.pricing-card.standard .pricing-name { color: var(--muted); }
.pricing-card.featured .pricing-name { color: rgba(245,239,224,0.5); }
.pricing-price {
  font-family: 'Gloock', serif;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
}
.pricing-card.standard .pricing-price { color: var(--ink); }
.pricing-card.featured .pricing-price { color: white; }
.pricing-per { font-size: 0.75rem; margin-top: 0.4rem; }
.pricing-card.standard .pricing-per { color: var(--muted); }
.pricing-card.featured .pricing-per { color: rgba(245,239,224,0.5); }
.pricing-detail { font-size: 0.75rem; font-weight: 600; margin-top: 0.2rem; }
.pricing-card.standard .pricing-detail { color: var(--sage); }
.pricing-card.featured .pricing-detail { color: var(--sage-light); }
.pricing-action { margin-top: auto; padding-top: 1.5rem; }
.pricing-popular {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}

/* ── Benefit cards (1:1 page) ── */
.benefit-card {
  border: 1.5px solid rgba(90,122,92,0.25);
  background: rgba(213,229,206,0.2);
  padding: 2rem;
}
.benefit-rule { width: 2rem; height: 2px; background: var(--terracotta); margin-bottom: 1.25rem; }
.benefit-title {
  font-family: 'Gloock', serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.benefit-body { font-size: 0.875rem; color: var(--muted); line-height: 1.75; }

/* ── Bullet list ── */
.bullet-list { display: flex; flex-direction: column; gap: 1rem; }
.bullet-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.bullet-dot {
  margin-top: 0.5rem;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}
.bullet-text { font-size: 0.875rem; line-height: 1.75; color: var(--muted); }

/* ── Photo gallery ── */
.gallery-main {
  position: relative;
  width: 100%;
  height: clamp(300px, 55vw, 580px);
  overflow: hidden;
  background: #111;
}
.gallery-main img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.gallery-main img.active { opacity: 1; }
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(245,239,224,0.88);
  border: none;
  width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: background 0.2s;
}
.gallery-btn:hover { background: var(--cream); }
.gallery-btn.prev { left: 1rem; }
.gallery-btn.next { right: 1rem; }
.gallery-btn svg { width: 16px; height: 16px; color: var(--ink); }
.gallery-counter {
  position: absolute; bottom: 1rem; right: 1rem;
  background: rgba(44,58,46,0.7);
  padding: 0.3rem 0.75rem;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: var(--cream);
}
.gallery-thumbs {
  display: flex; gap: 0.5rem;
  overflow-x: auto;
  padding: 0.75rem 0;
  scrollbar-width: none;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb {
  flex-shrink: 0;
  width: 80px; height: 60px;
  border: none;
  outline: 2px solid transparent;
  outline-offset: 1px;
  padding: 0;
  cursor: pointer;
  transition: outline-color 0.2s;
}
.gallery-thumb.active { outline-color: var(--terracotta); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Inclusion cards ── */
.inclusion-card { border: 1.5px solid var(--border); padding: 2rem; }
.inclusion-name {
  font-family: 'Gloock', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.inclusion-body { font-size: 0.875rem; color: var(--muted); line-height: 1.75; }

/* ── Who-it's-for cards ── */
.avatar-card { background: var(--cream); overflow: hidden; }
.avatar-card img { width: 100%; height: 240px; object-fit: cover; }
.avatar-body { padding: 1.75rem; }
.avatar-title {
  font-family: 'Gloock', serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.avatar-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.75; }

/* ── Retreat pricing ── */
.retreat-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.rp-item { border: 1px solid var(--border); padding: 0.9rem; position: relative; }
.rp-item.sold { opacity: 0.65; background: #f2ebe6; border-color: #cba49e; }
.sold-badge {
  position: absolute; top: 0.4rem; right: 0.4rem;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  background: var(--terracotta-dark);
  padding: 0.12rem 0.4rem;
}
.rp-label {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.rp-price {
  font-family: 'Gloock', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.rp-item.sold .rp-price { text-decoration: line-through; color: var(--muted); }

/* ── What's included checklist ── */
.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1.5rem;
}
.checklist li {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}
.checklist li::before { content: '✓'; color: var(--terracotta); flex-shrink: 0; margin-top: 1px; }

/* ── Process steps ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.process-step { text-align: center; }
.process-num {
  font-family: 'Gloock', serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(90,122,92,0.22);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.process-title {
  font-family: 'Gloock', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.process-body { font-size: 0.875rem; color: rgba(245,239,224,0.62); line-height: 1.8; }

/* ── Urgency dot badge ── */
.urgency-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--terracotta-dark);
  padding: 0.5rem 1.2rem;
}
.udot { width: 7px; height: 7px; border-radius: 50%; background: white; flex-shrink: 0; }
.urgency-dot span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
}

/* ── CTA band (full-bleed image with overlay) ── */
.cta-band {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.cta-band > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(44,58,46,0.94) 0%,
    rgba(44,58,46,0.68) 60%,
    rgba(44,58,46,0.3) 100%);
}
.cta-content { position: relative; z-index: 1; width: 100%; }

/* ── Wellness ── */
.circuit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}
.circuit-step {
  background: white;
  padding: 1.5rem;
  border-left: 3px solid var(--sage);
}
.circuit-step-emoji { font-size: 1.4rem; margin-bottom: 0.5rem; }
.circuit-step-time {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.2rem;
}
.circuit-step-label {
  font-family: 'Gloock', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}

.modality-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .modality-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.modality-img { width: 100%; height: 420px; object-fit: cover; }
.modality-tagline {
  font-family: 'Gloock', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--sage);
  margin-bottom: 1.5rem;
}
.modality-benefits { display: flex; flex-direction: column; gap: 0.6rem; }
.modality-benefits li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.modality-benefits li::before { content: '—'; color: var(--sage); flex-shrink: 0; }

.wellness-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .wellness-pricing-grid { grid-template-columns: 1fr 1fr; } }
.wellness-price-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255,255,255,0.15);
}
.wellness-price-card.featured { background: var(--terracotta); border: none; }
.wellness-price-title {
  font-family: 'Gloock', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.wellness-price-card.featured .wellness-price-title { color: white; }
.wellness-price-sub { font-size: 0.8rem; color: rgba(245,239,224,0.68); margin-bottom: 1.5rem; line-height: 1.5; }
.wellness-price-card.featured .wellness-price-sub { color: rgba(255,255,255,0.75); }
.wellness-price-pair { display: flex; justify-content: center; gap: 2rem; }
.wellness-price-divider { width: 1px; background: rgba(255,255,255,0.2); }
.wellness-price-fig {
  font-family: 'Gloock', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--cream);
}
.wellness-price-card.featured .wellness-price-fig { color: white; }
.wellness-price-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.58);
  margin-top: 0.3rem;
  text-align: center;
}
.wellness-price-card.featured .wellness-price-label { color: rgba(255,255,255,0.65); }

/* ── About / credentials ── */
.credential-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; }
.credential { border-top: 1px solid rgba(245,239,224,0.16); padding-top: 1.5rem; }
.credential-val {
  font-family: 'Gloock', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.credential-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}
.credential-detail { font-size: 0.875rem; color: rgba(245,239,224,0.52); line-height: 1.6; }

/* Key facts grid */
.key-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.key-fact { background: var(--sand); padding: 1.5rem; }
.key-fact-label {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.4rem;
}
.key-fact-val {
  font-family: 'Gloock', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

/* ── Contact ── */
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 2rem; height: 2rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--sage-light);
  flex-shrink: 0; margin-top: 0.1rem;
}
.contact-icon svg { width: 14px; height: 14px; stroke: var(--ink); fill: none; stroke-width: 2; }
.contact-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.3rem;
}
.directions-box { background: var(--sand); padding: 1.5rem; }
.directions-row { display: flex; align-items: center; justify-content: space-between; padding: 0.4rem 0; border-bottom: 1px solid var(--border); }
.directions-row:last-child { border-bottom: none; }
.directions-place { font-size: 0.875rem; color: var(--muted); }
.directions-time { font-size: 0.875rem; font-weight: 600; color: var(--terracotta); }

/* Contact form */
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.form-input, .form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
  background: white;
  border: 1px solid var(--border);
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--sage); }
.form-textarea { resize: none; }

/* ── Footer ── */
.footer { background: var(--ink); }
.footer-main { padding: 5rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 2fr; gap: 2rem; } }

.footer-brand-name {
  font-family: 'Gloock', serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--cream);
  line-height: 1;
}
.footer-brand-sub {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-top: 0.3rem;
}
.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(245,239,224,0.5);
  margin-top: 1.25rem;
  max-width: 28ch;
}
.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer-social a { color: rgba(245,239,224,0.38); text-decoration: none; transition: color 0.2s; }
.footer-social a:hover { color: var(--cream); }
.footer-social svg { width: 18px; height: 18px; }

.footer-heading {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(245,239,224,0.52);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }
.footer-links a.accent { color: rgba(196,113,74,0.82); }

.footer-address { font-size: 0.875rem; line-height: 1.75; color: rgba(245,239,224,0.52); }

.footer-bottom {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; }
}
.footer-copy { font-size: 0.75rem; color: rgba(245,239,224,0.32); }
.footer-legal { display: flex; gap: 1rem; align-items: center; }
.footer-legal a { font-size: 0.75rem; color: rgba(245,239,224,0.32); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(245,239,224,0.62); }
.footer-legal span { color: rgba(245,239,224,0.18); }

/* ── WhatsApp FAB ── */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 40;
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-fab:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(37,211,102,0.45); }
.whatsapp-fab svg { width: 20px; height: 20px; fill: white; }

/* ── Fade-up scroll animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }

/* ── Layout utils ── */
.flex          { display: flex; }
.flex-col      { flex-direction: column; }
.items-center  { align-items: center; }
.items-start   { align-items: flex-start; }
.items-end     { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.flex-wrap     { flex-wrap: wrap; }
.shrink-0      { flex-shrink: 0; }
.gap-xs { gap: 0.5rem; }
.gap-sm { gap: 0.75rem; }
.gap-1  { gap: 1rem; }
.gap-2  { gap: 1.5rem; }
.gap-3  { gap: 2.5rem; }
.gap-4  { gap: 4rem; }
.mt-1 { margin-top: 0.75rem; }
.mt-2 { margin-top: 1.25rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.75rem; }
.mb-2 { margin-bottom: 1.25rem; }
.mb-3 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 3rem; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }

/* Contact form sent state */
.js-form-wrap.sent form { display: none; }
.js-form-wrap.sent .sent-message { display: block !important; }

/* ── Pilates Republic layout system (Barlow Condensed) ── */

/* All-caps condensed headings */
.caps-hero {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(4.5rem, 11vw, 11rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
}
.caps-hero.light { color: white; }

.caps-section {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
}
.caps-section.light { color: white; }

.caps-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}

/* Vertical rail label (editorial sidebar) */
.label-rail { display: flex; gap: 3rem; }
.label-vert {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 1.25rem;
  flex-shrink: 0;
}
@media (min-width: 768px) { .label-vert { display: flex; } }
.label-vert-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  padding: 0.5rem 0;
}
.label-rule { flex: 1; width: 1px; background: var(--border); min-height: 2.5rem; }
.label-content { flex: 1; min-width: 0; }

/* About sub-blocks */
.about-block { border-top: 1px solid var(--border); padding: 2.25rem 0; }
.about-block:last-child { border-bottom: 1px solid var(--border); }
.about-block-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 1rem;
}

/* Class list — Pilates Republic // style */
.class-list-pr { display: flex; flex-direction: column; }
.class-list-pr-item {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 0.75rem;
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}
.class-list-pr-item:last-child { border-bottom: 1px solid var(--border); }
.class-list-pr-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink);
  line-height: 1.1;
  flex-shrink: 0;
}
.class-list-pr-sep {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: 1.3rem;
  color: rgba(124,140,128,0.5);
  flex-shrink: 0;
}
.class-list-pr-desc {
  font-size: 0.92rem;
  font-style: italic;
  color: rgba(44,58,46,0.72);
  line-height: 1.55;
}

/* Text link with arrow */
.text-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.15rem;
  transition: color 0.2s, border-color 0.2s;
}
.text-link:hover { color: var(--terracotta); border-color: var(--terracotta); }
.text-link.light {
  color: rgba(245,239,224,0.85);
  border-color: rgba(245,239,224,0.35);
}
.text-link.light:hover { color: var(--cream); border-color: var(--cream); }

/* Pull quote — centered, dark bg version */
.pull-quote-pr-text {
  font-family: 'Gloock', serif;
  font-size: clamp(1.75rem, 4vw, 3.2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.pull-quote-pr-attr {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
}

/* ── Full-bleed hero (homepage editorial) ── */
.hero-full {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
}
.hero-full-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-full-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(44,58,46,0.32), rgba(44,58,46,0.32)),
    linear-gradient(to bottom, rgba(44,58,46,0.65) 0%, rgba(44,58,46,0) 25%),
    linear-gradient(to top, rgba(44,58,46,0.95) 0%, rgba(44,58,46,0.6) 38%, rgba(44,58,46,0) 70%);
}
.hero-full-content {
  position: relative;
  z-index: 1;
  padding: 3rem 0 6rem;
  width: 100%;
}

/* ── Transparent nav (dark-hero pages only) ── */
body.hero-transparent-nav .nav:not(.scrolled) {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}
body.hero-transparent-nav .nav:not(.scrolled) .nav-link {
  color: rgba(245,239,224,0.95);
}
body.hero-transparent-nav .nav:not(.scrolled) .nav-link:hover,
body.hero-transparent-nav .nav:not(.scrolled) .nav-link.active {
  color: var(--cream);
}
body.hero-transparent-nav .nav:not(.scrolled) .nav-dropdown-toggle {
  color: rgba(245,239,224,0.95);
}
body.hero-transparent-nav .nav:not(.scrolled) .nav-dropdown-toggle:hover {
  color: var(--cream);
}
body.hero-transparent-nav .nav:not(.scrolled) .nav-logo span {
  color: var(--cream) !important;
}
body.hero-transparent-nav .nav:not(.scrolled) .nav-burger span {
  background: var(--cream);
}
body.hero-transparent-nav .nav:not(.scrolled) .nav-cta.btn-dark {
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  border-color: rgba(245,239,224,0.35);
}
body.hero-transparent-nav .nav:not(.scrolled) .nav-cta.btn-dark:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(245,239,224,0.55);
}

/* ── Editorial class list ── */
.class-list { display: flex; flex-direction: column; }
.class-entry { border-top: 1px solid var(--border); padding: 1.75rem 0; }
.class-entry:last-child { border-bottom: 1px solid var(--border); }
.class-entry-name {
  font-family: 'Gloock', serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 0.3rem;
}
.class-entry-level {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}
.class-entry-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.75; max-width: 52ch; }

/* ── Editorial split (text + escaped image) ── */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .editorial-split { grid-template-columns: 1fr 0.65fr; align-items: start; }
}
.editorial-image-escape img {
  width: 100%; height: 500px;
  object-fit: cover; object-position: center top;
  display: block;
}
@media (min-width: 768px) {
  .editorial-image-escape { margin-right: -3rem; }
}

/* ── Pull-quote (large single testimonial) ── */
.pull-quote { max-width: 820px; }
.pull-quote-text {
  font-family: 'Gloock', serif;
  font-size: clamp(1.9rem, 4.5vw, 3.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.pull-quote-attr {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
}

/* ── Block-colour sections — distinct brand bands ──
   Full-saturation sage and terracotta blocks. Drop .bg-sage or
   .bg-terracotta on any section and the type flips to cream. */
.bg-sage, .bg-terracotta { color: var(--cream); }
.bg-sage .caps-section, .bg-terracotta .caps-section,
.bg-sage .about-block-heading, .bg-terracotta .about-block-heading,
.bg-sage h2, .bg-terracotta h2, .bg-sage h3, .bg-terracotta h3 { color: var(--cream); }
.bg-sage .lead, .bg-terracotta .lead,
.bg-sage .prose, .bg-terracotta .prose { color: rgba(245,239,224,0.85); }
.bg-sage .class-list-pr-name, .bg-terracotta .class-list-pr-name { color: var(--cream); }
.bg-sage .class-list-pr-desc, .bg-terracotta .class-list-pr-desc { color: rgba(245,239,224,0.72); }
.bg-sage .class-list-pr-sep, .bg-terracotta .class-list-pr-sep { color: rgba(245,239,224,0.4); }
.bg-sage .class-list-pr-item, .bg-terracotta .class-list-pr-item,
.bg-sage .class-list-pr-item:last-child, .bg-terracotta .class-list-pr-item:last-child { border-color: rgba(245,239,224,0.22); }
.bg-sage .text-link, .bg-terracotta .text-link { color: var(--cream); border-color: rgba(245,239,224,0.4); }
.bg-sage .text-link:hover, .bg-terracotta .text-link:hover { color: var(--cream); border-color: var(--cream); }
.bg-sage .label-vert-text, .bg-terracotta .label-vert-text { color: rgba(245,239,224,0.6); }
.bg-sage .label-rule, .bg-terracotta .label-rule { background: rgba(245,239,224,0.3); }
.bg-terracotta .pull-quote-pr-attr { color: var(--cream); }
.bg-sage .pull-quote-pr-attr { color: var(--cream); }
.bg-sage .faq-list, .bg-sage .faq-item,
.bg-terracotta .faq-list, .bg-terracotta .faq-item { border-color: rgba(245,239,224,0.22); }
.bg-sage .faq-q, .bg-terracotta .faq-q { color: rgba(245,239,224,0.9); }
.bg-sage .faq-a, .bg-terracotta .faq-a { color: rgba(245,239,224,0.65); }
.bg-sage .faq-icon::before, .bg-sage .faq-icon::after { background: var(--cream); }
.bg-sage .btn-dark, .bg-terracotta .btn-dark { background: var(--cream); color: var(--ink); border-color: var(--cream); }


/* ── Brand accents ── */
.about-block::before {
  content: '';
  display: block;
  width: 2.75rem;
  height: 4px;
  background: var(--terracotta);
  margin-bottom: 1.1rem;
}
.bg-sage .about-block::before, .bg-terracotta .about-block::before,
.bg-ink .about-block::before { background: var(--cream); }
