/* InnaPace — ported from innapace-mockup_2.html. Brand: Navy #0d1b2a / Teal #2fa68c / Coral #e57b3f / Cream #faf7f2. Fonts: Inter + Fraunces. */
/* ============================================================
   INNAPACE — BRAND SYSTEM
   Navy #0d1b2a · Teal #2fa68c · Coral #e57b3f · Cream #faf7f2
   Inter (structural) + Fraunces Italic (editorial accents)
   ============================================================ */

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

:root {
  /* Brand */
  --navy: #0d1b2a;
  --navy-soft: #1a2a3e;
  --teal: #2fa68c;
  --teal-deep: #248a73;
  --teal-tint: rgba(47, 166, 140, 0.10);
  --coral: #e57b3f;
  --coral-tint: rgba(229, 123, 63, 0.10);
  --cream: #faf7f2;
  --cream-warm: #f4f0e8;
  --paper: #ffffff;
  --line: #e8e2d6;
  --line-soft: #f0ebe0;
  --ink: #0d1b2a;
  --ink-mid: #4a5765;
  --ink-soft: #6b7888;
  --shadow-sm: 0 1px 2px rgba(13,27,42,0.04);
  --shadow-md: 0 8px 28px rgba(13,27,42,0.06);
  --shadow-lg: 0 24px 60px rgba(13,27,42,0.12);
  /* Type */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; --font-display: 'Oswald', sans-serif;
  --font-serif: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::selection { background: var(--teal); color: white; }

/* ============================================================
   HEADER (shared)
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  max-width: 1280px; margin: 0 auto;
  padding: 18px 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.logotype {
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.5px;
  user-select: none;
}
.logotype .inna {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal); letter-spacing: -0.8px;
  font-size: 1.05em;
}
.logotype .pace {
  font-family: var(--font-sans); font-weight: 800;
  color: var(--navy); letter-spacing: -0.6px;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta-group { display: flex; align-items: center; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 100px;
  font-size: 14px; font-weight: 600; letter-spacing: -0.1px;
  cursor: pointer; transition: all 0.25s ease;
  border: 1.5px solid transparent;
  font-family: inherit; line-height: 1;
}
.btn-ghost { color: var(--navy); border-color: var(--line); background: transparent; }
.btn-ghost:hover { background: var(--navy); color: white; border-color: var(--navy); }
.btn-primary { background: var(--navy); color: white; }
.btn-primary:hover { background: var(--teal); }
.btn-teal { background: var(--teal); color: white; }
.btn-teal:hover { background: var(--teal-deep); transform: translateY(-1px); }
.btn-coral { background: var(--coral); color: white; }
.btn-coral:hover { background: #d06b30; }
.btn-lg { padding: 15px 28px; font-size: 15px; }
.btn-arrow::after {
  content: '→'; transition: transform 0.2s;
}
.btn:hover .btn-arrow::after, .btn-arrow:hover::after { transform: translateX(3px); }

/* ============================================================
   SHARED PRIMITIVES
   ============================================================ */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--coral);
}
.kicker::before {
  content: ''; width: 24px; height: 1.5px; background: var(--coral); display: inline-block;
}
.kicker.teal { color: var(--teal); }
.kicker.teal::before { background: var(--teal); }
.kicker.cream { color: var(--teal); }
.kicker.cream::before { background: var(--teal); }

.serif-accent {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal); letter-spacing: -0.5px;
}

.h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800; letter-spacing: -2.5px; line-height: 1.02;
  color: var(--navy);
}
.h2 {
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 800; letter-spacing: -1.4px; line-height: 1.08;
  color: var(--navy);
}
.h3 {
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 700; letter-spacing: -0.5px; line-height: 1.2;
  color: var(--navy);
}
.lead {
  font-size: 18px; line-height: 1.6; color: var(--ink-mid);
  max-width: 560px;
}

.tag {
  display: inline-flex; align-items: center;
  padding: 5px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  width: fit-content;
}
.tag.teal { background: var(--teal-tint); color: var(--teal-deep); }
.tag.coral { background: var(--coral-tint); color: var(--coral); }
.tag.navy { background: rgba(13,27,42,0.06); color: var(--navy); }
.tag.cream-on-dark { background: rgba(47,166,140,0.18); color: var(--teal); }

/* ============================================================
   PAGE ROUTING
   ============================================================ */
.page { display: block; padding-top: 0; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Generic image placeholder — doubles as photo brief */
.img-ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  position: relative; overflow: hidden;
  gap: 6px;
}
.img-ph::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.18) 0%, transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(13,27,42,0.25) 0%, transparent 40%);
}
.img-ph > * { position: relative; z-index: 1; }
.img-ph .ph-tag {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 9px;
  letter-spacing: 1.2px;
  font-weight: 700;
}
.img-ph .ph-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: none;
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  max-width: 280px;
}
.img-ph .ph-note {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: none;
  color: rgba(255,255,255,0.7);
  font-style: normal;
  max-width: 240px;
  line-height: 1.5;
}
.img-ph.coral { background: linear-gradient(135deg, var(--coral), #c9602c); }
.img-ph.navy { background: linear-gradient(135deg, var(--navy), #1a3247); }
.img-ph.warm { background: linear-gradient(135deg, #c4a880, #a08760); }
.img-ph.sage { background: linear-gradient(135deg, #b8c9b5, #8aa288); }
.img-ph.dusk { background: linear-gradient(135deg, #6b7895, #4a5874); }
.img-ph.rose { background: linear-gradient(135deg, #d99383, #b56b5c); }

/* ============================================================
   ████████  HOME PAGE  ████████
   ============================================================ */
.h-hero {
  position: relative;
  padding: 80px 40px 100px;
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center;
}
.h-hero-text { position: relative; }
.h-hero h1 { margin: 24px 0 28px; }
.h-hero h1 .accent {
  display: block; color: var(--teal);
  font-family: var(--font-serif); font-weight: 500; font-style: normal;
  letter-spacing: -3px; margin-top: 4px;
}
.h-hero .lead { margin-bottom: 36px; max-width: 480px; font-size: 19px; }
.h-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.h-hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.h-hero-visual .img-ph { width: 100%; height: 100%; font-size: 13px; }
.h-hero-badge {
  position: absolute;
  bottom: 32px; left: 32px; right: 32px;
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 20px 24px; border-radius: 14px;
  display: flex; align-items: center; gap: 16px;
}
.h-hero-badge-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal-tint); color: var(--teal-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-style: normal; font-weight: 700; font-size: 20px;
}
.h-hero-badge-text {
  font-size: 13px; color: var(--ink-mid); line-height: 1.4;
}
.h-hero-badge-text strong { color: var(--navy); display: block; font-size: 14px; font-weight: 700; }

.h-hero-decor {
  position: absolute;
  font-family: var(--font-serif); font-style: normal;
  font-size: 240px; font-weight: 400;
  color: var(--teal); opacity: 0.04;
  top: 40px; left: -30px;
  z-index: 0; pointer-events: none; line-height: 1;
  user-select: none;
}

/* Quick search */
.h-search-bar {
  max-width: 1100px;
  margin: -60px auto 0;
  padding: 0 40px;
  position: relative; z-index: 5;
}
.h-search-card {
  background: white; border: 1px solid var(--line);
  border-radius: 20px; padding: 8px;
  display: grid; grid-template-columns: 1fr 1fr 1fr auto;
  gap: 4px;
  box-shadow: var(--shadow-md);
}
.h-search-field {
  padding: 16px 20px;
  display: flex; flex-direction: column; gap: 2px;
  border-radius: 12px; cursor: pointer;
  transition: background 0.2s;
}
.h-search-field:hover { background: var(--cream); }
.h-search-field + .h-search-field { border-left: 1px solid var(--line-soft); }
.h-search-field-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-soft);
}
.h-search-field-value {
  font-size: 14px; font-weight: 600; color: var(--navy);
}
.h-search-btn {
  background: var(--navy); color: white;
  border: none; padding: 0 32px;
  border-radius: 12px;
  font-size: 14px; font-weight: 600;
  cursor: pointer; transition: background 0.25s;
  font-family: inherit;
  display: flex; align-items: center; gap: 8px;
}
.h-search-btn:hover { background: var(--teal); }

/* Three steps */
.h-steps {
  max-width: 1280px; margin: 0 auto;
  padding: 120px 40px 80px;
}
.h-steps-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 60px;
  align-items: end;
}
.h-steps-head h2 .accent { display: block; }
.h-steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.h-step {
  background: white; border: 1px solid var(--line);
  border-radius: 20px; padding: 36px 32px;
  position: relative; transition: all 0.3s ease;
}
.h-step:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.h-step-num {
  font-family: var(--font-serif); font-style: normal;
  font-size: 56px; font-weight: 500;
  color: var(--teal); line-height: 1;
  margin-bottom: 28px;
}
.h-step h3 { margin-bottom: 12px; font-size: 22px; }
.h-step p { color: var(--ink-mid); font-size: 15px; line-height: 1.6; }

/* Wellness categories */
.h-categories {
  background: var(--paper);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.h-categories-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 100px 40px;
}
.h-categories-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 60px; flex-wrap: wrap; gap: 24px;
}
.h-categories-head h2 .accent { color: var(--teal); font-family: var(--font-serif); font-style: normal; font-weight: 500; }
.h-categories-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.h-cat {
  border-radius: 18px; padding: 32px; cursor: pointer;
  background: var(--cream); border: 1px solid transparent;
  transition: all 0.3s;
}
.h-cat:nth-child(1) { background: var(--teal-tint); }
.h-cat:nth-child(2) { background: var(--coral-tint); }
.h-cat:nth-child(3) { background: rgba(13,27,42,0.05); }
.h-cat:nth-child(4) { background: rgba(74,144,164,0.08); }
.h-cat:nth-child(5) { background: rgba(184,201,200,0.20); }
.h-cat:nth-child(6) { background: rgba(123,94,167,0.08); }
.h-cat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.h-cat-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-style: normal; font-weight: 600;
  font-size: 22px; color: var(--navy);
  margin-bottom: 24px;
}
.h-cat-count {
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  color: var(--ink-mid); margin-bottom: 8px;
}
.h-cat h3 { font-size: 19px; margin-bottom: 8px; }
.h-cat p { color: var(--ink-mid); font-size: 14px; line-height: 1.55; }

/* Rooted In One — editorial */
.h-rooted {
  max-width: 1280px; margin: 0 auto;
  padding: 120px 40px;
}
.h-rooted-head {
  text-align: center; max-width: 780px; margin: 0 auto 60px;
}
.h-rooted-head h2 { margin: 20px 0 24px; }
.h-rooted-head h2 .accent {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal); display: block; letter-spacing: -1.5px;
}
.h-rooted p {
  color: var(--ink-mid); font-size: 17px; line-height: 1.65;
}
.h-rooted-strong { color: var(--navy); font-weight: 600; }
.h-rooted-imgs {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.9fr 1.1fr 1fr;
  gap: 12px;
  margin-top: 60px;
  height: 240px;
}
.h-rooted-imgs .img-ph { border-radius: 14px; font-size: 11px; }
.h-rooted-imgs .img-ph:nth-child(1) { margin-top: 20px; }
.h-rooted-imgs .img-ph:nth-child(2) { margin-bottom: 20px; }
.h-rooted-imgs .img-ph:nth-child(3) { margin-top: 28px; }
.h-rooted-imgs .img-ph:nth-child(4) { margin-bottom: 12px; }
.h-rooted-imgs .img-ph:nth-child(5) { margin-top: 16px; }

/* More than one way to heal — split */
.h-heal {
  background: var(--navy);
  color: white;
  position: relative; overflow: hidden;
}
.h-heal::before {
  content: ''; position: absolute;
  font-family: var(--font-serif); font-style: normal;
  bottom: -80px; right: -40px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--teal-tint), transparent 65%);
  pointer-events: none;
}
.h-heal-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 100px 40px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.h-heal h2 { color: white; margin: 20px 0 24px; }
.h-heal h2 .accent {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal); display: block;
}
.h-heal p {
  color: rgba(255,255,255,0.7); font-size: 17px; line-height: 1.65;
  margin-bottom: 16px;
}
.h-heal-list {
  margin-top: 36px;
  display: grid; gap: 16px;
}
.h-heal-list-item {
  display: flex; gap: 14px; padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 16px; color: rgba(255,255,255,0.85);
  align-items: center;
}
.h-heal-list-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.h-heal-list-item-marker {
  font-family: var(--font-serif); font-style: normal;
  color: var(--teal); font-weight: 600; font-size: 14px;
  width: 28px;
}
.h-heal-visual {
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.h-heal-visual .img-ph { width: 100%; height: 100%; font-size: 13px; }
.h-heal-quote {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(250,247,242,0.95);
  padding: 24px;
  border-radius: 14px;
  font-family: var(--font-serif); font-style: normal;
  color: var(--navy); font-size: 16px; line-height: 1.5;
}

/* Care meets you — concerns */
.h-concerns {
  max-width: 1280px; margin: 0 auto;
  padding: 100px 40px;
  text-align: center;
}
.h-concerns h2 { margin-bottom: 16px; }
.h-concerns p { color: var(--ink-mid); margin-bottom: 40px; }
.h-concerns-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; max-width: 900px; margin: 0 auto;
}
.h-pill {
  padding: 12px 22px; border-radius: 100px;
  background: white; border: 1px solid var(--line);
  font-size: 14px; font-weight: 500; color: var(--navy);
  cursor: pointer; transition: all 0.2s;
}
.h-pill:hover {
  background: var(--navy); color: white; border-color: var(--navy);
  transform: translateY(-2px);
}

/* FAQ */
.h-faq {
  background: var(--paper); border-top: 1px solid var(--line);
}
.h-faq-inner {
  max-width: 880px; margin: 0 auto;
  padding: 100px 40px;
}
.h-faq h2 { text-align: center; margin-bottom: 16px; }
.h-faq > p {
  text-align: center; color: var(--ink-mid); margin-bottom: 48px;
}
.faq-list { display: grid; gap: 4px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: flex-start;
  cursor: pointer; gap: 24px;
}
.faq-q h3 {
  font-size: 17px; font-weight: 600;
  color: var(--navy); flex: 1; letter-spacing: -0.2px;
}
.faq-q-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--teal-tint); color: var(--teal-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 600; flex-shrink: 0;
}
.faq-a {
  margin-top: 14px; color: var(--ink-mid);
  font-size: 15px; line-height: 1.65;
}

/* ============================================================
   ████████  PRACTITIONERS PAGE  ████████
   ============================================================ */
.p-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: white;
}
.p-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(47,166,140,0.18) 0%, transparent 50%),
    radial-gradient(circle at 15% 90%, rgba(229,123,63,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.p-hero-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 100px 40px 80px;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center;
}
.p-hero h1 {
  color: white; margin: 24px 0 28px;
  font-size: clamp(40px, 5vw, 64px);
}
.p-hero h1 .accent {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal); display: block; letter-spacing: -1.8px;
}
.p-hero p {
  font-size: 18px; line-height: 1.65;
  color: rgba(255,255,255,0.7); max-width: 480px;
  margin-bottom: 36px;
}
.p-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.p-hero-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.p-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 26px;
  border-radius: 16px;
}
.p-stat-num {
  font-family: var(--font-serif); font-style: normal; font-weight: 600;
  font-size: 48px; line-height: 1; color: var(--teal);
  letter-spacing: -1.5px; margin-bottom: 10px;
}
.p-stat-label {
  font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.45;
}

/* Why join */
.p-why {
  max-width: 1280px; margin: 0 auto;
  padding: 100px 40px;
}
.p-why-head {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px;
  margin-bottom: 60px; align-items: end;
}
.p-why-head h2 { margin-top: 20px; }
.p-why-head h2 .accent {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal); display: block;
}
.p-why-head p { color: var(--ink-mid); font-size: 17px; line-height: 1.65; }

.p-benefits {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.p-benefit {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
}
.p-benefit:last-child { border-right: none; }
.p-benefit-num {
  font-family: var(--font-serif); font-style: normal;
  font-size: 14px; font-weight: 600;
  color: var(--coral); margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.p-benefit h3 {
  font-size: 19px; font-weight: 700;
  letter-spacing: -0.3px; margin-bottom: 14px;
  color: var(--navy);
}
.p-benefit p {
  font-size: 14px; color: var(--ink-mid); line-height: 1.6;
}

/* Who we want */
.p-who {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.p-who-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 100px 40px;
}
.p-who-head { margin-bottom: 60px; max-width: 720px; }
.p-who-head h2 { margin: 20px 0 20px; }
.p-who-head h2 .accent {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal);
}
.p-who-head p { color: var(--ink-mid); font-size: 17px; line-height: 1.65; }
.p-who-cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.p-who-col {
  border-top: 2px solid var(--navy);
  padding-top: 28px;
}
.p-who-col-head {
  display: flex; gap: 16px; align-items: center;
  margin-bottom: 28px;
}
.p-who-col-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--teal-tint);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-style: normal; font-weight: 600;
  font-size: 24px; color: var(--teal-deep);
}
.p-who-col-head h3 {
  font-size: 22px; font-weight: 700; letter-spacing: -0.4px;
  margin-bottom: 4px;
}
.p-who-col-head p {
  font-size: 13px; color: var(--ink-soft);
  font-family: var(--font-serif); font-style: normal;
}
.p-who-list {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px;
}
.p-who-list li {
  font-size: 14px; color: var(--ink); padding: 8px 0;
  display: flex; gap: 10px; align-items: flex-start;
  border-bottom: 1px solid var(--line-soft);
}
.p-who-list li::before {
  content: '+'; color: var(--teal); font-weight: 700;
}

/* How it works — stepped */
.p-how {
  max-width: 1280px; margin: 0 auto;
  padding: 100px 40px;
}
.p-how-head {
  text-align: center; max-width: 720px; margin: 0 auto 60px;
}
.p-how-head h2 { margin-top: 20px; }
.p-how-head h2 .accent {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal);
}
.p-how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.p-how-step {
  background: white; border: 1px solid var(--line);
  padding: 40px 32px; border-radius: 20px;
  position: relative;
}
.p-how-step-num {
  position: absolute; top: -22px; left: 32px;
  font-family: var(--font-serif); font-style: normal; font-weight: 600;
  font-size: 18px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--coral); color: white;
  display: flex; align-items: center; justify-content: center;
}
.p-how-step h3 { margin-top: 14px; margin-bottom: 16px; font-size: 22px; }
.p-how-step p { font-size: 15px; color: var(--ink-mid); line-height: 1.65; }
.p-how-step em {
  font-family: var(--font-serif); font-style: normal;
  color: var(--teal); font-weight: 600;
}

/* Pricing */
.p-pricing {
  background: var(--cream-warm);
  border-top: 1px solid var(--line);
}
.p-pricing-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 100px 40px;
}
.p-pricing-head {
  text-align: center; max-width: 720px; margin: 0 auto 56px;
}
.p-pricing-head h2 { margin-top: 20px; }
.p-pricing-head h2 .accent {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--coral);
}
.p-pricing-head p {
  color: var(--ink-mid); font-size: 16px; margin-top: 16px;
}
.p-pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 980px; margin: 0 auto;
}
.p-plan {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
}
.p-plan-popular {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
}
.p-plan-flag {
  position: absolute; top: -12px; right: 24px;
  background: var(--coral); color: white;
  padding: 6px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
}
.p-plan-name {
  font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--coral); margin-bottom: 14px;
}
.p-plan-popular .p-plan-name { color: var(--teal); }
.p-plan-price {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  font-size: 64px; line-height: 1;
  color: var(--navy); letter-spacing: -2px;
}
.p-plan-popular .p-plan-price { color: white; }
.p-plan-price span {
  font-family: var(--font-sans); font-style: normal; font-weight: 600;
  font-size: 16px; color: var(--ink-mid); letter-spacing: 0;
}
.p-plan-popular .p-plan-price span { color: rgba(255,255,255,0.6); }
.p-plan-yr {
  font-size: 13px; color: var(--ink-mid); margin-top: 8px;
  font-style: normal;
}
.p-plan-popular .p-plan-yr { color: rgba(255,255,255,0.6); }
.p-plan ul {
  list-style: none; margin: 28px 0;
  display: grid; gap: 12px;
}
.p-plan li {
  font-size: 14px; color: var(--ink); line-height: 1.5;
  display: flex; gap: 10px; align-items: flex-start;
  padding-left: 0;
}
.p-plan-popular li { color: rgba(255,255,255,0.92); }
.p-plan li::before {
  content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0;
}
.p-plan li strong { color: inherit; font-weight: 700; }
.p-plan-popular li strong { color: white; }
.p-plan-cta {
  width: 100%;
  padding: 14px; border-radius: 12px;
  background: var(--navy); color: white;
  border: none; cursor: pointer;
  font-family: inherit; font-size: 14px; font-weight: 600;
  transition: all 0.25s;
}
.p-plan-popular .p-plan-cta { background: var(--teal); }
.p-plan-cta:hover { background: var(--coral); }
.p-pricing-note {
  text-align: center; max-width: 740px; margin: 40px auto 0;
  font-size: 14px; color: var(--ink-mid); line-height: 1.65;
}
.p-pricing-note em {
  font-family: var(--font-serif); font-style: normal; color: var(--navy); font-weight: 600;
}

/* Founding member */
.p-founding {
  max-width: 1100px;
  margin: -40px auto 0;
  padding: 0 40px;
  position: relative; z-index: 2;
}
.p-founding-card {
  background: linear-gradient(135deg, var(--coral), #d56333);
  color: white;
  border-radius: 20px;
  padding: 36px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.p-founding-card h3 {
  font-size: 22px; font-weight: 700;
  color: white; letter-spacing: -0.3px;
  margin-bottom: 6px;
}
.p-founding-card h3 em {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
}
.p-founding-card p {
  font-size: 14px; color: rgba(255,255,255,0.85);
  max-width: 460px; line-height: 1.5;
}
.p-founding-card .btn {
  background: white; color: var(--coral); flex-shrink: 0;
}
.p-founding-card .btn:hover { background: var(--navy); color: white; }

/* Active Vitals partner */
.p-vitals {
  max-width: 1280px; margin: 0 auto;
  padding: 120px 40px 100px;
}
.p-vitals-head { max-width: 720px; margin-bottom: 48px; }
.p-vitals-head h2 { margin-top: 20px; }
.p-vitals-head h2 em {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal);
}
.p-vitals-head p { color: var(--ink-mid); font-size: 17px; line-height: 1.65; margin-top: 16px; }
.p-vitals-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.p-tier {
  border: 1px solid var(--line);
  background: white;
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
}
.p-tier-flag {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 8px;
}
.p-tier h3 {
  font-size: 22px; margin: 4px 0 16px;
  font-weight: 700; letter-spacing: -0.4px;
}
.p-tier-price {
  font-family: var(--font-serif); font-style: normal;
  font-weight: 500; font-size: 36px;
  color: var(--navy); letter-spacing: -1px;
  margin-bottom: 16px;
}
.p-tier-price span {
  font-family: var(--font-sans); font-style: normal; font-weight: 500;
  font-size: 14px; color: var(--ink-mid);
}
.p-tier p {
  font-size: 14px; color: var(--ink-mid); line-height: 1.6;
}
.p-tier-mid {
  border-color: var(--teal);
  background: var(--teal-tint);
}
.p-tier-mid .p-tier-flag { color: var(--teal-deep); }

/* Quotes */
.p-quotes {
  background: var(--navy);
  color: white;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.p-quotes-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 100px 40px;
}
.p-quotes-head {
  text-align: center; max-width: 720px; margin: 0 auto 56px;
}
.p-quotes-head h2 { color: white; margin-top: 20px; }
.p-quotes-head h2 em {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal);
}
.p-quotes-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.p-quote {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--teal);
  padding: 36px 36px 32px;
  border-radius: 0 16px 16px 0;
}
.p-quote-mark {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  font-size: 60px; color: var(--teal); line-height: 0.6;
  margin-bottom: 16px;
}
.p-quote blockquote {
  font-family: var(--font-serif);
  font-style: normal; font-weight: 400;
  font-size: 19px; line-height: 1.5;
  color: rgba(255,255,255,0.92);
  margin-bottom: 24px;
}
.p-quote-author {
  font-size: 13px; color: rgba(255,255,255,0.6);
  font-weight: 500; letter-spacing: 0.3px;
}
.p-quote-author strong {
  display: block; color: white; font-weight: 700;
  margin-bottom: 2px; font-size: 14px;
}

/* ============================================================
   ████████  RESOURCES PAGE  ████████
   ============================================================ */
.r-hero {
  padding: 90px 40px 60px;
  max-width: 1280px; margin: 0 auto;
}
.r-hero-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px; align-items: center;
}
.r-hero h1 { margin: 24px 0 28px; }
.r-hero h1 .accent {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal); display: block;
}
.r-hero .lead { font-size: 19px; max-width: none; }
.r-hero-visual {
  aspect-ratio: 1 / 1.1;
  border-radius: 24px;
  overflow: hidden;
}

/* Two-track section */
.r-tracks {
  max-width: 1280px; margin: 0 auto;
  padding: 60px 40px 100px;
}
.r-tracks-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.r-track {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  display: flex; flex-direction: column;
  transition: all 0.3s;
}
.r-track:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}
.r-track-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--coral); margin-bottom: 16px;
}
.r-track h2 {
  font-size: 32px; font-weight: 800;
  letter-spacing: -1px; line-height: 1.1;
  color: var(--navy); margin-bottom: 16px;
}
.r-track h2 em {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal); display: block;
}
.r-track p {
  color: var(--ink-mid); font-size: 15px; line-height: 1.7;
  margin-bottom: 24px;
}
.r-track-list {
  display: grid; gap: 8px;
  margin-bottom: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}
.r-track-list-item {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}
.r-track-list-item:last-child { border-bottom: none; }
.r-track-list-name {
  font-size: 14px; font-weight: 600; color: var(--navy);
}
.r-track-list-tag {
  font-family: var(--font-serif); font-style: normal;
  font-size: 13px; color: var(--ink-mid);
}
.r-track .btn { width: fit-content; margin-top: auto; }

/* Across Cultures section */
.r-across {
  background: var(--navy);
  color: white;
  position: relative; overflow: hidden;
}
.r-across::before {
  content: 'silence';
  position: absolute;
  font-family: var(--font-serif); font-style: normal;
  font-size: 400px; font-weight: 400;
  color: rgba(47,166,140,0.04);
  top: 40px; right: -100px;
  line-height: 1; letter-spacing: -10px;
  pointer-events: none; user-select: none;
}
.r-across-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 100px 40px;
  position: relative; z-index: 1;
}
.r-across-head {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 80px; margin-bottom: 60px;
  align-items: end;
}
.r-across-head h2 {
  color: white;
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -2px; line-height: 1.05;
  font-weight: 800; margin-top: 20px;
}
.r-across-head h2 em {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal); display: block;
}
.r-across-head p {
  color: rgba(255,255,255,0.7);
  font-size: 17px; line-height: 1.65;
}
.r-across-head strong { color: white; font-weight: 500; }

.r-communities {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: rgba(255,255,255,0.06);
  padding: 1px;
  border-radius: 24px;
  overflow: hidden;
}
.r-community {
  background: var(--navy);
  padding: 36px 32px;
  transition: background 0.3s;
}
.r-community:hover { background: var(--navy-soft); }
.r-community-num {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  font-size: 14px; color: var(--coral);
  margin-bottom: 16px; letter-spacing: 0.5px;
}
.r-community h3 {
  font-size: 21px; font-weight: 700;
  color: white; letter-spacing: -0.3px;
  margin-bottom: 16px;
}
.r-community p {
  font-size: 14px; color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

.r-across-closer {
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.r-across-closer p:first-child {
  font-family: var(--font-serif); font-style: normal; font-weight: 400;
  font-size: 26px; line-height: 1.4;
  color: white;
  max-width: 720px; margin: 0 auto 20px;
  letter-spacing: -0.3px;
}
.r-across-closer p:last-child {
  font-size: 15px; color: rgba(255,255,255,0.6);
  line-height: 1.65; max-width: 720px; margin: 0 auto;
}

/* Resources CTA */
.r-cta {
  max-width: 1280px; margin: 0 auto;
  padding: 100px 40px;
}
.r-cta-card {
  background: linear-gradient(135deg, var(--coral), #d56333);
  color: white;
  border-radius: 28px;
  padding: 64px;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 40px; align-items: center;
  position: relative; overflow: hidden;
}
.r-cta-card::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 60%);
  pointer-events: none;
}
.r-cta-card h2 {
  font-size: 40px; font-weight: 800;
  color: white; letter-spacing: -1.5px;
  line-height: 1.1; margin-bottom: 14px;
  position: relative;
}
.r-cta-card h2 em {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  display: block;
}
.r-cta-card p {
  font-size: 16px; color: rgba(255,255,255,0.85);
  line-height: 1.6; margin-bottom: 28px;
  position: relative;
}
.r-cta-card-actions {
  display: flex; gap: 12px; flex-wrap: wrap; position: relative;
}
.r-cta-card .btn-primary {
  background: var(--navy); border-color: var(--navy);
}
.r-cta-card .btn-primary:hover { background: white; color: var(--navy); }
.r-cta-card .btn-ghost {
  background: rgba(255,255,255,0.15); color: white;
  border-color: rgba(255,255,255,0.3);
}
.r-cta-card .btn-ghost:hover {
  background: white; color: var(--coral); border-color: white;
}

/* ============================================================
   ████████  UNDERSTANDING PROFESSIONALS PAGE  ████████
   ============================================================ */
.u-hero {
  background: var(--cream-warm);
  border-bottom: 1px solid var(--line);
}
.u-hero-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 80px 40px 60px;
}
.u-breadcrumb {
  font-size: 13px; color: var(--ink-soft);
  margin-bottom: 32px;
}
.u-breadcrumb a:hover { color: var(--teal); }
.u-breadcrumb span { color: var(--navy); font-weight: 600; }
.u-hero-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 80px; align-items: center;
}
.u-hero h1 { margin-bottom: 24px; }
.u-hero h1 em {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal);
}
.u-hero p {
  font-size: 17px; line-height: 1.7;
  color: var(--ink-mid); max-width: 520px;
}
.u-hero-visual {
  aspect-ratio: 5/6;
  border-radius: 24px;
  overflow: hidden;
}
.u-tabs {
  position: sticky; top: 117px;
  background: rgba(244,240,232,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.u-tabs-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 40px;
  display: flex; gap: 4px;
  overflow-x: auto;
}
.u-tab {
  padding: 18px 20px;
  font-size: 14px; font-weight: 600;
  color: var(--ink-mid);
  border-bottom: 2px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: all 0.2s;
}
.u-tab:hover { color: var(--navy); }
.u-tab.active {
  color: var(--navy);
  border-bottom-color: var(--teal);
}

/* Profession section */
.u-section {
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.u-section:nth-child(even) { background: var(--paper); }
.u-section-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 80px 40px;
}
.u-section-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; margin-bottom: 56px;
  align-items: start;
}
.u-section-head h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800; letter-spacing: -1.5px;
  line-height: 1.05; color: var(--navy);
  margin-top: 16px;
}
.u-section-head h2 em {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal); display: block;
}
.u-section-head p {
  color: var(--ink-mid); font-size: 16px; line-height: 1.7;
}

.u-profs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.u-prof {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
  display: flex; flex-direction: column;
  transition: all 0.3s;
}
.u-section:nth-child(even) .u-prof { background: var(--cream); }
.u-prof:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}
.u-prof-head {
  display: flex; gap: 16px;
  margin-bottom: 16px; align-items: flex-start;
}
.u-prof-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--teal-tint);
  color: var(--teal-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-style: normal; font-weight: 600;
  font-size: 20px; flex-shrink: 0;
}
.u-prof-title h3 {
  font-size: 20px; font-weight: 700;
  letter-spacing: -0.3px; margin-bottom: 4px;
  color: var(--navy);
}
.u-prof-cred {
  font-family: var(--font-serif); font-style: normal;
  font-size: 13px; color: var(--ink-soft); font-weight: 500;
}
.u-prof p {
  font-size: 14px; color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}
.u-prof-meta {
  display: grid; gap: 8px;
  padding: 16px 18px;
  background: var(--cream-warm);
  border-radius: 10px;
  margin-bottom: 18px;
}
.u-section:nth-child(even) .u-prof-meta { background: white; }
.u-prof-meta-row {
  display: flex; gap: 8px;
  font-size: 13px;
}
.u-prof-meta-label {
  font-weight: 700; color: var(--navy);
  flex-shrink: 0; min-width: 80px;
}
.u-prof-meta-value {
  color: var(--ink-mid);
}
.u-prof-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: auto;
}
.u-prof-tag {
  padding: 4px 10px; border-radius: 100px;
  background: var(--teal-tint); color: var(--teal-deep);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2px;
}
.u-prof-tag.coral {
  background: var(--coral-tint); color: var(--coral);
}
.u-prof-tag.navy {
  background: rgba(13,27,42,0.06); color: var(--navy);
}

.u-prof-wide {
  grid-column: span 2;
}

/* Final CTA */
.u-final {
  background: var(--navy);
  color: white;
}
.u-final-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 100px 40px;
  text-align: center;
}
.u-final h2 {
  color: white; font-size: clamp(34px, 4vw, 48px);
  margin: 20px 0 20px; letter-spacing: -1.5px;
}
.u-final h2 em {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal); display: block;
}
.u-final p {
  font-size: 17px; color: rgba(255,255,255,0.7);
  line-height: 1.65; max-width: 620px; margin: 0 auto 36px;
}
.u-final-ctas {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* ============================================================
   ████████  ABOUT PAGE  ████████
   ============================================================ */
.a-hero {
  position: relative;
  background: var(--cream-warm);
  overflow: hidden;
}
.a-hero-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 100px 40px 80px;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: center;
}
.a-hero h1 { margin: 20px 0 28px; line-height: 1.0; letter-spacing: -3px; }
.a-hero h1 em {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal); display: block;
  margin-top: 8px;
}
.a-hero p {
  font-size: 18px; line-height: 1.65;
  color: var(--ink-mid); max-width: 480px;
}
.a-hero-visual {
  aspect-ratio: 5/6;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

/* Founder's Note — editorial spread */
.a-founder {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.a-founder-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 100px;
  align-items: start;
}
.a-founder-aside {
  position: sticky;
  top: 200px;
}
.a-founder-motto {
  margin-top: 40px;
  padding: 32px 28px;
  border-radius: 20px;
  background: var(--cream-warm);
  border-left: 3px solid var(--teal);
}
.a-founder-motto-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 14px;
}
.a-founder-motto-text {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.8px;
}
.a-founder-motto-text em {
  font-style: normal; color: var(--teal); font-weight: 500;
}
.a-founder-motto-sub {
  margin-top: 14px;
  font-size: 13px; color: var(--ink-mid);
  font-style: normal;
}
.a-founder-prose {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink);
}
.a-founder-prose > p {
  margin-bottom: 22px;
}
.a-founder-prose > p:first-child::first-letter {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  float: left; font-size: 84px;
  line-height: 0.85; padding-right: 14px; padding-top: 6px;
  color: var(--teal);
}
.a-founder-prose em {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal);
}
.a-founder-prose strong {
  color: var(--navy); font-weight: 600;
}
.a-founder-stack {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--teal);
  background: var(--cream-warm);
  border-radius: 0 12px 12px 0;
}
.a-founder-stack p {
  font-family: var(--font-serif); font-style: normal;
  font-weight: 400;
  font-size: 23px;
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 0;
  letter-spacing: -0.3px;
}
.a-founder-pivot {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 500;
  font-size: 26px !important;
  line-height: 1.35 !important;
  color: var(--navy) !important;
  letter-spacing: -0.5px;
  margin: 32px 0 !important;
}
.a-founder-closer {
  margin-top: 36px !important;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  font-size: 22px !important;
  line-height: 1.5 !important;
  color: var(--navy) !important;
  letter-spacing: -0.3px;
}

/* Chapter nav */
.a-chapters-nav {
  background: white;
  border-bottom: 1px solid var(--line);
}
.a-chapters-nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 20px 40px;
  display: flex; gap: 32px;
  overflow-x: auto;
  font-size: 13px;
}
.a-chapter-link {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink-mid); font-weight: 500;
  white-space: nowrap; transition: color 0.2s;
}
.a-chapter-link:hover { color: var(--navy); }
.a-chapter-link span:first-child {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--coral); font-size: 12px;
  letter-spacing: 0.5px;
}

/* Chapter 1 — Finding help */
.a-chapter {
  padding: 100px 40px;
  max-width: 1280px; margin: 0 auto;
}
.a-chapter-tag {
  font-family: var(--font-serif); font-style: normal;
  color: var(--coral); font-weight: 500;
  font-size: 18px; margin-bottom: 14px;
  letter-spacing: 0.2px;
}
.a-chapter-tag::before { content: '— '; }
.a-chapter h2 {
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 800; letter-spacing: -2px;
  line-height: 1.05; color: var(--navy);
  margin-bottom: 60px;
  max-width: 780px;
}
.a-chapter h2 em {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal);
}
.a-prose {
  max-width: 720px;
  font-size: 18px; line-height: 1.75;
  color: var(--ink); font-weight: 400;
}
.a-prose > p { margin-bottom: 24px; }
.a-prose > p:first-child::first-letter {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  float: left; font-size: 80px;
  line-height: 0.85; padding-right: 14px; padding-top: 6px;
  color: var(--teal);
}
.a-stack {
  margin: 36px 0;
  border-left: 3px solid var(--teal);
  padding-left: 28px;
}
.a-stack p {
  font-family: var(--font-serif); font-style: normal; font-weight: 400;
  font-size: 22px; line-height: 1.4;
  color: var(--navy);
  margin-bottom: 4px;
}
.a-chapter-imgs {
  display: grid; grid-template-columns: 1fr 1.3fr 0.9fr;
  gap: 16px;
  margin-top: 64px;
  height: 280px;
}
.a-chapter-imgs .img-ph { border-radius: 14px; }
.a-chapter-imgs .img-ph:nth-child(2) { margin-top: -32px; }
.a-chapter-imgs .img-ph:nth-child(3) { margin-top: 32px; }

/* Chapter 2 — That Familiar Feeling */
.a-familiar {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.a-familiar-inner {
  padding: 100px 40px;
  max-width: 1280px; margin: 0 auto;
}
.a-familiar-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: center;
}
.a-familiar-text h3 {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  font-size: 22px; color: var(--teal);
  margin-bottom: 16px;
}
.a-familiar-text h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800; letter-spacing: -1.5px;
  line-height: 1.1; color: var(--navy);
  margin-bottom: 24px;
}
.a-familiar-text > p {
  font-size: 17px; line-height: 1.7;
  color: var(--ink-mid); margin-bottom: 28px;
}
.a-familiar-list {
  list-style: none;
  display: grid; gap: 16px;
}
.a-familiar-list li {
  font-size: 17px; color: var(--navy);
  padding-left: 32px; position: relative;
  font-weight: 500;
}
.a-familiar-list li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--teal); font-weight: 700;
}
.a-familiar-divider {
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--line);
}
.a-familiar-divider h3 {
  margin-top: 0;
}
.a-familiar-visual {
  position: relative;
  aspect-ratio: 5/6;
  border-radius: 24px;
  overflow: hidden;
}
.a-familiar-quote {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  background: rgba(250,247,242,0.95);
  padding: 24px 28px;
  border-radius: 14px;
  font-family: var(--font-serif); font-style: normal;
  font-size: 17px; line-height: 1.5;
  color: var(--navy);
}

/* Chapter 3 — Other Half of the Equation */
.a-half {
  background: var(--navy);
  color: white;
  position: relative; overflow: hidden;
}
.a-half-inner {
  padding: 100px 40px;
  max-width: 1280px; margin: 0 auto;
  position: relative; z-index: 1;
}
.a-half-tag { color: var(--coral); }
.a-half h2 {
  color: white;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800; letter-spacing: -2px;
  line-height: 1.05;
  max-width: 800px;
  margin-bottom: 60px;
}
.a-half h2 em {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal);
}
.a-half-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px; align-items: start;
}
.a-half-text p {
  font-size: 17px; line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}
.a-half-text p:first-child {
  font-size: 19px;
  color: white;
}
.a-half-pullquote {
  background: rgba(47,166,140,0.10);
  border: 1px solid rgba(47,166,140,0.25);
  border-radius: 20px;
  padding: 40px 36px;
  position: sticky; top: 200px;
}
.a-half-pullquote blockquote {
  font-family: var(--font-serif); font-style: normal; font-weight: 400;
  font-size: 24px; line-height: 1.4;
  color: white;
  letter-spacing: -0.3px;
}
.a-half-pullquote::before {
  content: '“';
  font-family: var(--font-serif); font-style: normal;
  font-size: 96px; line-height: 0.5;
  color: var(--teal); display: block;
  margin-bottom: 12px;
}

.a-half-cta {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px; align-items: center;
}
.a-half-cta h3 {
  font-size: 30px; font-weight: 800;
  color: white; letter-spacing: -1px;
  margin-bottom: 18px;
}
.a-half-cta h3 em {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal);
}
.a-half-cta p {
  font-size: 16px; color: rgba(255,255,255,0.7);
  line-height: 1.65;
}
.a-half-cta-imgs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.a-half-cta-imgs .img-ph {
  aspect-ratio: 1; border-radius: 14px;
}

/* ============================================================
   ████████  CONTACT PAGE  ████████
   ============================================================ */
.c-hero {
  padding: 100px 40px 60px;
  max-width: 1280px; margin: 0 auto;
  text-align: center;
}
.c-hero h1 { margin: 24px 0; }
.c-hero h1 em {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal);
}
.c-hero p {
  font-size: 18px; color: var(--ink-mid);
  line-height: 1.65; max-width: 580px; margin: 0 auto;
}

.c-main {
  max-width: 1280px; margin: 0 auto;
  padding: 40px 40px 100px;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 60px;
}

/* Contact info */
.c-info { display: grid; gap: 24px; }
.c-card {
  background: white; border: 1px solid var(--line);
  border-radius: 20px; padding: 32px;
}
.c-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-style: normal; font-weight: 600;
  font-size: 22px;
  margin-bottom: 16px;
}
.c-card:nth-child(1) .c-card-icon { background: var(--teal-tint); color: var(--teal-deep); }
.c-card:nth-child(2) .c-card-icon { background: var(--coral-tint); color: var(--coral); }
.c-card:nth-child(3) .c-card-icon { background: rgba(13,27,42,0.06); color: var(--navy); }
.c-card:nth-child(4) .c-card-icon { background: rgba(74,144,164,0.10); color: #2e6f80; }

.c-card-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 10px;
}
.c-card-value {
  font-size: 17px; font-weight: 600;
  color: var(--navy); line-height: 1.4;
  margin-bottom: 4px;
}
.c-card-value a:hover { color: var(--teal); }
.c-card-sub {
  font-size: 14px; color: var(--ink-mid);
  font-family: var(--font-serif); font-style: normal;
  margin-top: 4px;
}
.c-socials {
  display: flex; gap: 10px; margin-top: 4px;
}
.c-social {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--cream-warm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--navy);
  transition: all 0.2s;
}
.c-social:hover {
  background: var(--navy); color: white;
  transform: translateY(-2px);
}

/* Form */
.c-form-card {
  background: var(--navy);
  color: white;
  border-radius: 24px;
  padding: 48px;
  position: relative; overflow: hidden;
}
.c-form-card::before {
  content: ''; position: absolute;
  top: -200px; right: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--teal-tint), transparent 60%);
  pointer-events: none;
}
.c-form-card h2 {
  color: white;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 8px;
  position: relative;
}
.c-form-card h2 em {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal);
}
.c-form-card > p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px; font-size: 15px;
  position: relative;
}
.c-form { display: grid; gap: 18px; position: relative; }
.c-form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.c-field {
  display: flex; flex-direction: column; gap: 6px;
}
.c-field label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.65);
}
.c-field input, .c-field select, .c-field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 16px;
  border-radius: 12px;
  color: white;
  font-family: inherit;
  font-size: 14px;
  transition: all 0.2s;
}
.c-field input::placeholder, .c-field textarea::placeholder {
  color: rgba(255,255,255,0.35);
}
.c-field input:focus, .c-field select:focus, .c-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: rgba(255,255,255,0.10);
}
.c-field textarea {
  resize: vertical; min-height: 130px;
}
.c-field select option { background: var(--navy); color: white; }
.c-submit {
  background: var(--teal); color: white;
  padding: 16px 32px; border-radius: 12px;
  border: none; cursor: pointer;
  font-family: inherit; font-size: 15px; font-weight: 600;
  transition: all 0.25s;
  margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.c-submit:hover {
  background: var(--coral); transform: translateY(-1px);
}

/* Map */
.c-map {
  max-width: 1280px; margin: 0 auto;
  padding: 0 40px 60px;
}
.c-map-card {
  background: linear-gradient(135deg, #b8c9b5, #8aa288);
  height: 360px;
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  position: relative; overflow: hidden;
}
.c-map-pin {
  width: 56px; height: 56px; border-radius: 50% 50% 50% 0;
  background: var(--coral);
  transform: rotate(-45deg);
  position: absolute;
  top: 50%; left: 50%;
  margin-top: -50px; margin-left: -28px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(229,123,63,0.4);
}
.c-map-pin::after {
  content: ''; width: 16px; height: 16px; border-radius: 50%;
  background: white; transform: rotate(45deg);
}
.c-map-label {
  position: absolute; bottom: 24px; left: 24px;
  background: white;
  padding: 14px 20px; border-radius: 12px;
  font-size: 14px; font-weight: 600;
  color: var(--navy); letter-spacing: -0.2px;
  text-transform: none;
}
.c-map-label em {
  font-family: var(--font-serif); font-style: normal;
  color: var(--teal); font-weight: 500;
  display: block; font-size: 12px; margin-top: 2px;
}

/* Contact FAQ */
.c-faq {
  background: var(--paper); border-top: 1px solid var(--line);
}
.c-faq-inner {
  max-width: 880px; margin: 0 auto;
  padding: 100px 40px;
}
.c-faq h2 { text-align: center; margin-bottom: 48px; }
.c-faq h2 em {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal);
}

/* ============================================================
   FOOTER (shared)
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 80px 40px 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 60px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logotype { font-size: 28px; }
.footer-brand .logotype .inna { color: var(--teal); }
.footer-brand .logotype .pace { color: white; }
.footer-tag {
  margin-top: 16px;
  font-family: var(--font-serif); font-style: normal;
  font-size: 15px; line-height: 1.5;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}
.footer-socials {
  margin-top: 28px;
  display: flex; gap: 10px;
}
.footer-social {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.footer-social:hover {
  background: var(--teal); border-color: var(--teal);
  color: white;
}
.footer-col h4 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: white; margin-bottom: 22px;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a {
  font-size: 14px; color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal); }

.footer-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: rgba(255,255,255,0.4);
}
.footer-bottom a:hover { color: var(--teal); }
.footer-legal {
  display: flex; gap: 24px;
}

/* ============================================================
   ████████  REGISTER PAGE  ████████
   ============================================================ */
.reg-hero {
  background: var(--cream-warm);
  border-bottom: 1px solid var(--line);
}
.reg-hero-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 80px 40px 40px;
  display: grid; grid-template-columns: 1fr 0.9fr;
  gap: 60px; align-items: end;
}
.reg-hero h1 { margin: 22px 0 24px; }
.reg-hero h1 em {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal); display: block;
}
.reg-hero p {
  font-size: 18px; line-height: 1.65;
  color: var(--ink-mid); max-width: 540px;
}
.reg-toggle {
  display: inline-flex;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 5px;
  margin-bottom: 24px;
}
.reg-toggle-btn {
  padding: 11px 24px; border-radius: 100px;
  background: transparent; color: var(--ink-mid);
  border: none; cursor: pointer;
  font-family: inherit; font-size: 14px; font-weight: 600;
  letter-spacing: -0.1px; transition: all 0.25s;
}
.reg-toggle-btn.active {
  background: var(--navy); color: white;
}

.reg-bullets {
  display: grid; gap: 14px;
  padding: 28px 32px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.reg-bullet {
  display: flex; gap: 14px;
  font-size: 14px; color: var(--ink);
  align-items: flex-start;
}
.reg-bullet-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--teal-tint); color: var(--teal-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-style: normal; font-weight: 700;
  font-size: 14px; flex-shrink: 0;
}
.reg-bullet strong { color: var(--navy); font-weight: 700; display:block; margin-bottom:2px; }
.reg-bullet em {
  font-family: var(--font-serif); font-style: normal;
  color: var(--ink-mid); font-weight: 400;
}

.reg-progress {
  background: white;
  border-bottom: 1px solid var(--line);
}
.reg-progress-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 32px 40px;
  display: flex; gap: 0;
  align-items: center;
}
.reg-step {
  flex: 1;
  display: flex; align-items: center;
  font-size: 13px; color: var(--ink-soft);
  font-weight: 500;
  position: relative;
}
.reg-step::after {
  content: ''; flex: 1; height: 1px;
  background: var(--line);
  margin: 0 18px;
}
.reg-step:last-child::after { display: none; }
.reg-step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream-warm);
  color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-style: normal; font-weight: 600;
  font-size: 13px; margin-right: 12px;
  border: 1.5px solid var(--line);
  flex-shrink: 0;
}
.reg-step.current .reg-step-num {
  background: var(--navy); color: white;
  border-color: var(--navy);
}
.reg-step.current { color: var(--navy); font-weight: 600; }
.reg-step.done .reg-step-num {
  background: var(--teal); color: white;
  border-color: var(--teal);
}

.reg-main {
  max-width: 1280px; margin: 0 auto;
  padding: 60px 40px 100px;
  display: grid; grid-template-columns: 1fr 0.5fr;
  gap: 48px;
  align-items: start;
}

.reg-form-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px;
}
.reg-form-card h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 8px;
  color: var(--navy);
}
.reg-form-card h2 em {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal);
}
.reg-form-card > p {
  color: var(--ink-mid); font-size: 15px;
  margin-bottom: 36px; line-height: 1.6;
}
.reg-section-header {
  margin-top: 36px; margin-bottom: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
  display: flex; gap: 16px; align-items: center;
}
.reg-section-header:first-of-type {
  margin-top: 0; padding-top: 0; border-top: none;
}
.reg-section-num {
  font-family: var(--font-serif); font-style: normal; font-weight: 600;
  font-size: 14px; color: var(--coral); letter-spacing: 0.5px;
  white-space: nowrap;
}
.reg-section-title {
  font-size: 17px; font-weight: 700;
  letter-spacing: -0.3px; color: var(--navy);
}
.reg-field-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 16px;
}
.reg-field-grid.cols-1 { grid-template-columns: 1fr; }
.reg-field-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.reg-field {
  display: flex; flex-direction: column; gap: 6px;
}
.reg-field.full { grid-column: 1 / -1; }
.reg-field label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.3px; color: var(--ink-mid);
}
.reg-field label .req { color: var(--coral); }
.reg-field input, .reg-field select, .reg-field textarea {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 13px 16px;
  border-radius: 10px;
  color: var(--navy);
  font-family: inherit;
  font-size: 14px;
  transition: all 0.2s;
}
.reg-field input:focus, .reg-field select:focus, .reg-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: white;
  box-shadow: 0 0 0 3px var(--teal-tint);
}
.reg-field textarea { resize: vertical; min-height: 110px; }
.reg-field-help {
  font-size: 12px; color: var(--ink-soft);
  font-style: normal; margin-top: 4px;
}

.reg-checkbox-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-top: 8px;
}
.reg-check {
  display: flex; gap: 10px; padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 13px; color: var(--ink);
  cursor: pointer; transition: all 0.2s;
  background: var(--cream);
}
.reg-check:hover { border-color: var(--teal); background: white; }
.reg-check input[type="checkbox"] {
  width: 16px; height: 16px; margin: 0;
  accent-color: var(--teal); flex-shrink: 0;
}

.reg-actions {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; gap: 12px; justify-content: space-between;
  align-items: center; flex-wrap: wrap;
}
.reg-actions-note {
  font-size: 13px; color: var(--ink-soft);
  font-style: normal; max-width: 360px;
  line-height: 1.5;
}

.reg-sidebar {
  position: sticky; top: 180px;
  display: grid; gap: 18px;
}
.reg-side-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}
.reg-side-card-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--coral); margin-bottom: 10px;
}
.reg-side-card h3 {
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.3px; color: var(--navy);
  margin-bottom: 14px;
}
.reg-side-card h3 em {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal);
}
.reg-side-card p {
  font-size: 14px; color: var(--ink-mid);
  line-height: 1.6;
}
.reg-side-card.dark {
  background: var(--navy); color: white;
}
.reg-side-card.dark .reg-side-card-eyebrow { color: var(--teal); }
.reg-side-card.dark h3 { color: white; }
.reg-side-card.dark p { color: rgba(255,255,255,0.7); }

/* ============================================================
   ████████  COMMUNITY & EVENTS PAGE  ████████
   Magazine Grid style
   ============================================================ */
.cm-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px 48px;
}
.cm-hero h1 { margin: 22px 0 18px; }
.cm-hero h1 em {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal);
}
.cm-hero p { color: var(--ink-mid); font-size: 18px; line-height: 1.6; max-width: 620px; }

.cm-filters {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 32px;
  display: flex; gap: 10px; flex-wrap: wrap;
  align-items: center;
}
.cm-filter-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-soft); margin-right: 8px;
}
.cm-filter {
  padding: 9px 20px; border-radius: 100px;
  background: white; border: 1px solid var(--line);
  font-size: 13px; font-weight: 600; color: var(--ink-mid);
  cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.cm-filter.active, .cm-filter:hover {
  background: var(--navy); color: white; border-color: var(--navy);
}

.cm-featured {
  max-width: 1280px;
  margin: 0 auto 64px;
  padding: 0 40px;
}
.cm-featured-card {
  display: grid; grid-template-columns: 1.2fr 1fr;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s;
}
.cm-featured-card:hover { box-shadow: var(--shadow-md); }
.cm-featured-img {
  min-height: 380px;
  position: relative;
}
.cm-featured-img .img-ph {
  position: absolute; inset: 0;
}
.cm-featured-flag {
  position: absolute; top: 24px; left: 24px;
  background: var(--coral); color: white;
  padding: 7px 16px; border-radius: 100px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  z-index: 2;
}
.cm-featured-body {
  padding: 56px; display: flex;
  flex-direction: column; justify-content: center;
}
.cm-featured-body .kicker { margin-bottom: 16px; }
.cm-featured-body h2 {
  font-size: 36px; font-weight: 800;
  letter-spacing: -1.2px; line-height: 1.1;
  color: var(--navy); margin-bottom: 16px;
}
.cm-featured-body h2 em {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal);
}
.cm-featured-body p {
  font-size: 15px; color: var(--ink-mid);
  line-height: 1.65; margin-bottom: 24px;
}
.cm-meta-row {
  display: flex; gap: 20px; flex-wrap: wrap;
  margin-bottom: 24px;
  font-size: 13px; color: var(--ink-mid);
}
.cm-meta {
  display: flex; gap: 8px; align-items: center;
}
.cm-meta-icon {
  font-family: var(--font-serif); font-style: normal; font-weight: 600;
  color: var(--teal);
  width: 24px; height: 24px;
  border-radius: 50%; background: var(--teal-tint);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.cm-meta strong { color: var(--navy); font-weight: 600; }

.cm-grid-section {
  max-width: 1280px;
  margin: 0 auto 80px;
  padding: 0 40px;
}
.cm-grid-head {
  display: flex; justify-content: space-between;
  align-items: end; margin-bottom: 36px;
  flex-wrap: wrap; gap: 16px;
}
.cm-grid-head h2 {
  font-size: 32px; font-weight: 800;
  letter-spacing: -1px; color: var(--navy);
  line-height: 1.1; margin-top: 16px;
}
.cm-grid-head h2 em {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal);
}
.cm-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cm-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex; flex-direction: column;
}
.cm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}
.cm-card-img {
  height: 200px; position: relative;
}
.cm-card-img .img-ph { position: absolute; inset: 0; }
.cm-card-date {
  position: absolute; top: 16px; left: 16px;
  background: rgba(13,27,42,0.92);
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  z-index: 2;
}
.cm-card-date-day {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  font-size: 18px; line-height: 1;
}
.cm-card-date-month {
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.cm-card-body {
  padding: 24px;
  display: flex; flex-direction: column; flex: 1;
}
.cm-card-tag {
  display: inline-flex; padding: 4px 12px;
  border-radius: 100px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  width: fit-content; margin-bottom: 14px;
}
.cm-card-tag.teal { background: var(--teal-tint); color: var(--teal-deep); }
.cm-card-tag.coral { background: var(--coral-tint); color: var(--coral); }
.cm-card-tag.navy { background: rgba(13,27,42,0.06); color: var(--navy); }
.cm-card-tag.sky { background: rgba(74,144,164,0.10); color: #2e6f80; }
.cm-card h3 {
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.3px; color: var(--navy);
  line-height: 1.3; margin-bottom: 10px;
}
.cm-card p {
  font-size: 14px; color: var(--ink-mid);
  line-height: 1.6; margin-bottom: 18px;
  flex: 1;
}
.cm-card-foot {
  display: flex; justify-content: space-between;
  align-items: center; padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
}
.cm-card-meta {
  color: var(--ink-soft);
  font-family: var(--font-serif); font-style: normal;
}
.cm-card-link {
  color: var(--teal); font-weight: 600;
  font-family: var(--font-sans); font-style: normal;
}

.cm-newsletter {
  max-width: 1280px;
  margin: 0 auto 100px;
  padding: 0 40px;
}
.cm-newsletter-card {
  background: var(--navy);
  color: white;
  border-radius: 24px;
  padding: 64px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; overflow: hidden;
}
.cm-newsletter-card::before {
  content: ''; position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--teal-tint), transparent 60%);
  pointer-events: none;
}
.cm-newsletter-card h2 {
  color: white;
  font-size: 36px; font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1; margin-bottom: 14px;
  position: relative;
}
.cm-newsletter-card h2 em {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal); display: block;
}
.cm-newsletter-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  position: relative;
}
.cm-newsletter-form {
  display: flex; gap: 10px; position: relative;
}
.cm-newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 14px 18px;
  border-radius: 12px;
  color: white;
  font-family: inherit;
  font-size: 14px;
}
.cm-newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.cm-newsletter-form input:focus {
  outline: none; border-color: var(--teal); background: rgba(255,255,255,0.12);
}
.cm-newsletter-form button {
  padding: 14px 28px; border-radius: 12px;
  background: var(--teal); color: white;
  border: none; cursor: pointer;
  font-family: inherit; font-size: 14px; font-weight: 600;
  transition: all 0.25s;
}
.cm-newsletter-form button:hover { background: var(--coral); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .h-hero, .h-heal-inner, .p-hero-inner, .p-why-head, .r-hero-grid,
  .r-cta-card, .u-hero-grid, .u-section-head, .a-hero-inner, .a-founder-inner,
  .a-familiar-grid, .a-half-grid, .a-half-cta, .c-main,
  .reg-hero-inner, .reg-main, .cm-featured-card, .cm-newsletter-card {
    grid-template-columns: 1fr; gap: 40px;
  }
  .p-benefits, .h-steps-grid, .h-categories-grid, .p-how-grid,
  .p-vitals-grid, .r-tracks-grid, .u-profs, .r-communities, .cm-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-benefit { border-right: none; border-bottom: 1px solid var(--line); }
  .p-pricing-grid, .p-quotes-grid { grid-template-columns: 1fr; }
  .a-founder-aside, .reg-sidebar { position: static; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav { padding: 14px 20px; }
  .h-hero, .h-steps, .h-categories-inner, .h-heal-inner, .p-hero-inner,
  .p-why, .p-who-inner, .p-how, .p-pricing-inner, .p-vitals, .p-quotes-inner,
  .r-hero, .r-tracks, .r-across-inner, .r-cta, .u-hero-inner, .u-section-inner,
  .u-final-inner, .a-hero-inner, .a-founder-inner, .a-familiar-inner, .a-half-inner, .a-chapter,
  .c-hero, .c-main, .c-faq-inner, .h-faq-inner, .footer-inner,
  .reg-hero-inner, .reg-main, .reg-progress-inner,
  .cm-hero, .cm-featured, .cm-grid-section, .cm-newsletter, .cm-filters {
    padding-left: 20px; padding-right: 20px;
  }
  .reg-form-card, .cm-featured-body, .cm-newsletter-card { padding: 32px 24px; }
  .p-benefits, .h-steps-grid, .h-categories-grid, .p-how-grid,
  .p-vitals-grid, .r-tracks-grid, .u-profs, .r-communities,
  .h-rooted-imgs, .footer-grid, .c-form-row,
  .cm-grid, .reg-field-grid, .reg-checkbox-grid {
    grid-template-columns: 1fr;
  }
  .h-rooted-imgs { height: auto; }
  .h-rooted-imgs .img-ph { height: 180px; margin-top: 0 !important; margin-bottom: 0 !important; }
  .h-search-card { grid-template-columns: 1fr; }
  .a-chapter-imgs { grid-template-columns: 1fr; height: auto; }
  .a-chapter-imgs .img-ph { height: 200px; margin-top: 0 !important; }
  .h-hero-decor { display: none; }
  .r-across::before { font-size: 200px; }
}

/* ============================================================
   TERRY O'REILLY NARRATIVE ABOUT — opens like a radio script
   ============================================================ */
.tor-stage {
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 80px 40px 100px;
}
.tor-stage::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 25%, rgba(229,123,63,0.15) 0%, transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(47,166,140,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.tor-stage-inner {
  max-width: 920px;
  margin: 0 auto;
  position: relative; z-index: 1;
  text-align: left;
}
.tor-stage-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 36px;
}
.tor-stage-label::before {
  content: ''; width: 32px; height: 1.5px;
  background: var(--coral); display: inline-block;
}
.tor-stage h1 {
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -2.5px;
  color: white;
  margin: 0 0 36px;
}
.tor-stage h1 em {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal);
  letter-spacing: -3px;
}
.tor-stage-cue {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  color: rgba(255,255,255,0.85);
  max-width: 680px;
  letter-spacing: -0.4px;
}

/* SCENE blocks — short, breathable paragraphs */
.tor-scene {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 40px;
  position: relative;
}
.tor-scene + .tor-scene {
  padding-top: 0;
}
.tor-scene-marker {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  font-size: 14px;
  color: var(--coral);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.tor-scene-marker::before {
  content: '';
  width: 36px; height: 1.5px;
  background: var(--coral);
  display: inline-block;
}
.tor-scene p {
  font-size: 22px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 28px;
  font-weight: 400;
  letter-spacing: -0.3px;
}
.tor-scene p.short {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.35;
  margin: 40px 0;
  letter-spacing: -0.6px;
}
.tor-scene p.solo {
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.8px;
  margin: 48px 0;
}
.tor-scene p strong {
  color: var(--navy);
  font-weight: 700;
}
.tor-scene p em {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 500;
  color: var(--teal);
}

/* The pause — narrative breaks between scenes */
.tor-pause {
  background: var(--cream-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 72px 40px;
  text-align: center;
}
.tor-pause-inner {
  max-width: 720px;
  margin: 0 auto;
}
.tor-pause p {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.35;
  color: var(--navy);
  letter-spacing: -0.6px;
}
.tor-pause p em {
  color: var(--teal);
  font-weight: 500;
}

/* Dark scene — for the "movement" scene, flipped palette */
.tor-scene.dark-scene {
  max-width: none;
  background: var(--navy);
  color: white;
  padding: 120px 40px;
  position: relative;
}
.tor-scene.dark-scene > * {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.tor-scene.dark-scene p {
  color: rgba(255,255,255,0.85);
}
.tor-scene.dark-scene p.short {
  color: white;
}
.tor-scene.dark-scene p.solo {
  color: white;
}
.tor-scene.dark-scene p strong {
  color: white;
}
.tor-scene.dark-scene .tor-scene-marker {
  color: var(--coral);
}

/* Sign-off — the closing line that lands */
.tor-signoff {
  padding: 140px 40px 120px;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}
.tor-signoff::before {
  content: '';
  display: block;
  width: 60px;
  height: 1.5px;
  background: var(--coral);
  margin: 0 auto 60px;
}
.tor-signoff p {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.3;
  color: var(--navy);
  letter-spacing: -0.8px;
  margin-bottom: 28px;
}
.tor-signoff p:last-of-type {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.3;
  letter-spacing: -0.4px;
  color: var(--coral);
  margin-top: 48px;
  margin-bottom: 0;
}
.tor-signoff-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 56px;
  font-family: var(--font-sans);
}

/* CTA card at very end */
.tor-cta {
  background: var(--navy);
  padding: 80px 40px;
  text-align: center;
}
.tor-cta-inner {
  max-width: 720px; margin: 0 auto;
}
.tor-cta h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: white;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 18px;
}
.tor-cta h2 em {
  font-family: var(--font-serif); font-style: normal; font-weight: 500;
  color: var(--teal);
}
.tor-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 36px;
}




/* ============================================================
   FIND A PROFESSIONAL — directory page reskin
   Surgical overrides for the existing GeoDirectory template.
   ============================================================ */
.directory-hero {
  background: var(--cream) !important;
  position: relative;
  padding: 80px 40px 40px;
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.directory-hero::before {
  content: 'Inna';
  position: absolute;
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 280px;
  font-weight: 400;
  color: var(--teal);
  opacity: 0.05;
  top: 0;
  right: -20px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.directory-hero-text {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.directory-hero-text h1 {
  font-size: clamp(40px, 5.5vw, 72px) !important;
  font-weight: 800 !important;
  letter-spacing: -2.5px !important;
  line-height: 1.02 !important;
  color: var(--navy) !important;
  margin: 0 0 16px !important;
}
.directory-hero-text h1 em,
.directory-hero-text h1 .accent,
.directory-hero-text h1 span {
  font-family: var(--font-serif) !important;
  font-style: normal !important;
  font-weight: 500 !important;
  color: var(--teal) !important;
  background: none !important;
  -webkit-text-fill-color: var(--teal) !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
}
.directory-hero-text p {
  font-size: 18px !important;
  line-height: 1.6 !important;
  color: var(--ink-mid) !important;
  margin: 0 !important;
  max-width: 600px !important;
}
.directory-hero .search-field {
  border-color: var(--line) !important;
}
.directory-hero .search-field:focus-within {
  border-color: var(--teal) !important;
}
.directory-hero .search-divider { background: var(--line-soft) !important; }
.directory-hero button[type="submit"],
.directory-hero .search-submit {
  background: var(--navy) !important;
  color: white !important;
  border: none !important;
  border-radius: 100px !important;
}
.directory-hero button[type="submit"]:hover {
  background: var(--teal) !important;
}

.pill-bar { background: white; border-bottom: 1px solid var(--line-soft); }
.pill-bar-inner { max-width: 1280px; margin: 0 auto; padding: 16px 40px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.pill-bar [class*="pill"],
.pill-bar button,
.pill-bar a {
  border-radius: 100px !important;
  border: 1px solid var(--line) !important;
  background: white !important;
  color: var(--ink-mid) !important;
  padding: 8px 16px !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  transition: all 0.2s ease !important;
}
.pill-bar [class*="pill"]:hover,
.pill-bar button:hover,
.pill-bar a:hover {
  border-color: var(--teal) !important;
  color: var(--teal) !important;
}
.pill-bar .active,
.pill-bar [class*="active"],
.pill-bar [aria-pressed="true"],
.pill-bar [aria-current="true"] {
  background: var(--navy) !important;
  color: white !important;
  border-color: var(--navy) !important;
}

.filter-tab-row .active,
.filter-tab-row [class*="active"] {
  background: var(--navy) !important;
  color: white !important;
  border-color: var(--navy) !important;
}

.listing-card-v2 {
  background: white !important;
  border: 1px solid var(--line) !important;
  border-radius: 18px !important;
  overflow: hidden;
  transition: all 0.3s ease !important;
}
.listing-card-v2:hover {
  border-color: var(--teal) !important;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md) !important;
}
.listing-card-tags .tag,
.listing-card-pills .pill,
.listing-card-tags [class*="tag"],
.listing-card-pills [class*="pill"] {
  background: var(--teal-tint) !important;
  color: var(--teal-deep) !important;
  border-radius: 100px !important;
  padding: 4px 10px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
}

.sort-bar {
  background: transparent;
  padding: 24px 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.sort-bar-right select,
.sort-bar select {
  border: 1px solid var(--line) !important;
  border-radius: 100px !important;
  padding: 6px 14px !important;
  font-family: inherit !important;
  background: white !important;
}

.directory-content {
  background: var(--cream);
  padding: 40px 0;
}
.directory-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}


/* ============================================================
   FIND A PROFESSIONAL — fix v2: hide wavy img + correct pill class
   ============================================================ */
.directory-hero > img,
.directory-hero > div:not(.directory-hero-text) {
  display: none !important;
}
.directory-hero {
  background: var(--navy) !important;
  position: relative;
  padding: 80px 40px 60px !important;
  border-bottom: none !important;
  overflow: hidden;
  min-height: 320px;
}
.directory-hero-text {
  position: relative !important;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}
.directory-hero-text h1 {
  color: white !important;
  font-size: clamp(40px, 5.5vw, 72px) !important;
  font-weight: 800 !important;
  letter-spacing: -2.5px !important;
  line-height: 1.02 !important;
}
.directory-hero-text h1 em,
.directory-hero-text h1 .accent,
.directory-hero-text h1 span {
  color: var(--teal) !important;
  -webkit-text-fill-color: var(--teal) !important;
  font-family: var(--font-serif) !important;
  font-style: normal !important;
  font-weight: 500 !important;
  background: none !important;
}
.directory-hero-text p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 18px !important;
  margin-top: 12px !important;
}
.filter-pill {
  border-radius: 100px !important;
  border: 1px solid var(--line) !important;
  background: white !important;
  color: var(--ink-mid) !important;
  padding: 8px 16px !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center;
  text-decoration: none !important;
}
.filter-pill:hover {
  border-color: var(--teal) !important;
  color: var(--teal) !important;
}
a.filter-pill.active,
.filter-pill.active {
  background: var(--navy) !important;
  color: white !important;
  border-color: var(--navy) !important;
}


/* ===== InnaPace v2.1 type system — Oswald + Plus Jakarta Sans, no italic. FONT ONLY; colours unchanged. ===== */
h1,h2,h3,h4,.display,.hero-headline,.headline,.section-title,.h-categories-head h2{font-family:var(--font-display),'Oswald',sans-serif;}
body,body *,.ip-content,.ip-content *{font-style:normal !important;}
em,i,.italic,.it{font-style:normal !important;}
.logotype,.logotype .inna,.logotype .pace{font-family:var(--font-display),'Oswald',sans-serif !important;font-style:normal !important;font-weight:700;}
.experience-card p,.hours-time{font-family:var(--font-sans),'Plus Jakarta Sans',sans-serif !important;font-style:normal !important;}


/* v34g drawer CSS retired 2026-06-15 — innapace-design-system.css owns the mobile drawer (single source) */
@media (min-width: 768px) { #navBurger { display: none; } }

/* ===== footer CSS port from design-system (2026-06-11) - footer markup had no enqueued styles ===== */
/* ============================================================
   v34g — Mobile Burst 1.
   Adds:
   - Hamburger nav button + slide-in drawer (≤ 768px)
   - Footer 4-col → 2-col → 1-col stacking
   - Explicit h1/h2/h3 typography scale
   - Form input min-font-size 16px (prevents iOS auto-zoom on focus)
   - FAQ-specific 56px tap targets
   - Breakpoint reconciliation (760→768 + 360 tier added)
   ============================================================ */

/* ── Hamburger button — hidden on desktop, visible ≤ 768px ── */
.nav-burger {
  display: none;
  background: transparent;
  border: 0;
  padding: 12px;
  cursor: pointer;
  margin-left: auto;
  width: 48px;
  height: 48px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
/* ============================================================
   FOOTER — 4-col → 2-col → 1-col stack
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr !important;
    gap: 36px !important;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 768px) {
  .footer-inner { padding: 56px 20px 36px !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important;
    gap: 32px !important; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col h4 { font-size: 14px !important; margin-bottom: 12px !important; }
  .footer-col ul { gap: 8px; }
  .footer-col a { font-size: 14px !important; line-height: 1.6; }
  .footer-tag { font-size: 14px !important; }
  .footer-socials { margin-top: 18px !important;
    gap: 12px; }
  .footer-social { width: 42px;
    height: 42px;
    font-size: 14px; }
  .footer-bottom { flex-direction: column !important;
    gap: 14px !important;
    align-items: flex-start !important;
    padding-top: 28px !important;
    margin-top: 36px !important;
    font-size: 12px !important; }
  .footer-legal { gap: 18px !important;
    flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr !important;
    gap: 28px !important; }
}
/* ════════════════════════════════════════════════════════════
   v34h — InnaPace footer redesign (FitnessBeach pattern).
   Adapted to use the SITE's existing font system (Inter for body,
   Fraunces italic for accent) instead of Crimson Pro + Hanken
   Grotesk, which isn't deployed yet. Uses existing brand color
   vars (--navy, --coral, --teal) with sensible fallbacks.
   Replaces the v33.4 footer-grid CSS.
   ════════════════════════════════════════════════════════════ */

.site-footer {
  background: var(--navy, #1C2B3A);
  color: white;
  position: relative;
  overflow: hidden;
}
/* Culturis watermark — mirrors the homepage hero "Inna" treatment */
.site-footer .footer-watermark {
  position: absolute;
  bottom: -30px;
  left: -40px;
  font-family: var(--font-sans), 'Plus Jakarta Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 360px;
  color: white;
  opacity: 0.04;
  line-height: 0.85;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.site-footer .footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 48px 48px;
}
/* ── Footer top: wordmark + tagline ──────────────────── */
.site-footer .footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  margin-bottom: 56px;
}
.site-footer .footer-brand-block .wordmark {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1;
  color: white;
  margin-bottom: 16px;
}
.site-footer .footer-brand-block .wordmark em {
  font-family: var(--font-sans), 'Plus Jakarta Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--coral, #E07B45);
}
.site-footer .footer-brand-block .blurb {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.65;
  max-width: 380px;
}
.site-footer .footer-tagline-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 4px;
}
.site-footer .footer-tagline-block .tagline {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-style: normal;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
  color: white;
  text-align: right;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
  max-width: 360px;
}
.site-footer .footer-tagline-block .tagline em {
  font-family: var(--font-sans), 'Plus Jakarta Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--coral, #E07B45);
}
.site-footer .footer-tagline-block .platform-attr {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.50);
}
.site-footer .footer-tagline-block .platform-attr a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer .footer-tagline-block .platform-attr a:hover {
  color: white;
}
/* ── Footer columns: 4-column grid ───────────────────── */
.site-footer .footer-columns {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  margin-bottom: 32px;
}
.site-footer .footer-col h4 {
  font-family: var(--font-sans), 'Plus Jakarta Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  color: white;
  margin-bottom: 20px;
  letter-spacing: 0.2px;
}
.site-footer .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-col li {
  margin-bottom: 11px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.site-footer .footer-col li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer .footer-col li a:hover {
  color: var(--teal, #4AACA3);
}
.site-footer .footer-col li .descriptor {
  font-family: var(--font-sans), 'Plus Jakarta Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.40);
  white-space: nowrap;
  letter-spacing: 0.1px;
}
/* ── Social icon row (inside "In touch" column) ──────── */
.site-footer .footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer .footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.60);
  border-radius: 14px 14px 0 14px; /* v35 asymmetric corner */
  transition: color 0.2s ease, background 0.2s ease;
}
.site-footer .footer-social a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.06);
}
/* ── Footer bottom utility row ───────────────────────── */
.site-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 8px;
}
.site-footer .footer-bottom-left {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.50);
  letter-spacing: 0.1px;
}
.site-footer .footer-bottom-left em {
  font-family: var(--font-sans), 'Plus Jakarta Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--coral, #E07B45);
  font-size: 13px;
}
.site-footer .footer-bottom-right {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.50);
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.site-footer .footer-bottom-right a {
  color: rgba(255, 255, 255, 0.50);
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer .footer-bottom-right a:hover {
  color: white;
}
.site-footer .footer-bottom-right .sep {
  color: rgba(255, 255, 255, 0.20);
}
.site-footer .footer-tagline-secondary {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  text-align: right;
  letter-spacing: 0.1px;
  margin-top: 8px;
  width: 100%;
}
/* ── Override the old v34g footer-grid rules (which targeted .footer-grid).
   The new template uses .footer-columns instead, so .footer-grid is now
   inert. No CSS needed to retire it — just stops being applied. ── */

/* ── Mobile responsive (768 / 480 per v34g convention) ── */
@media (max-width: 980px) {
  .site-footer .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .site-footer .footer-tagline-block {
    align-items: flex-start;
  }
  .site-footer .footer-tagline-block .tagline {
    text-align: left;
  }
  .site-footer .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .site-footer .footer-watermark {
    font-size: 240px;
  }
}
@media (max-width: 768px) {
  .site-footer .footer-inner { padding: 56px 24px 36px; }
  .site-footer .footer-top { padding-bottom: 40px;
    margin-bottom: 40px; }
  .site-footer .footer-columns { gap: 32px 24px;
    padding-bottom: 36px;
    margin-bottom: 28px; }
  .site-footer .footer-brand-block .wordmark { font-size: 36px; }
  .site-footer .footer-tagline-block .tagline { font-size: 24px; }
}
@media (max-width: 480px) {
  .site-footer .footer-columns { grid-template-columns: 1fr;
    gap: 28px; }
  .site-footer .footer-watermark { font-size: 180px;
    bottom: -20px; }
  .site-footer .footer-bottom { flex-direction: column;
    align-items: flex-start; }
  .site-footer .footer-bottom-right { flex-wrap: wrap;
    gap: 14px; }
  .site-footer .footer-tagline-secondary { text-align: left; }
}
/* ===== end footer CSS port ===== */


/* ===== demo badge css (seed brief 2026-06-11) ===== */
.demo-tag{position:absolute;top:10px;right:12px;background:#FEF3C7;color:#B45309;font-size:10px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;padding:3px 8px;border-radius:6px;z-index:2}
.result-card.featured .demo-tag{top:34px}
.result-card{position:relative}
.demo-banner{background:#FEF8E7;border-bottom:1px solid #F5C56C;color:var(--navy,#0d1b2a);display:flex;align-items:center;justify-content:space-between;gap:14px;padding:10px 20px;font-size:13.5px}
.demo-banner a{color:var(--teal,#2fa68c);font-weight:600;text-decoration:underline}
.demo-banner button{background:none;border:0;font-size:22px;line-height:1;cursor:pointer;color:var(--navy,#0d1b2a);padding:2px 8px}

/* ===== find-page width parity fix2 (2026-06-11): 300px rail, beats v33-polish override ===== */
.results-shell{grid-template-columns:300px 1fr !important}
@media(max-width:900px){.results-shell{grid-template-columns:1fr !important}}

/* ═════ profile reset 2026-06-11 — canonical shell (spec: innapace-ref-body-variant.html) ═════
   Appended LAST so it wins the cascade. Geometry carries !important deliberately.
   Adapted per locked Culturis design rules: no decorative coloured border stripes anywhere. */
.profile-variant{position:relative}
.profile-variant .profile-hero-banner{height:220px !important;position:relative;width:100%;max-width:none !important;background-image:linear-gradient(135deg,#d6ebe5 0%,#f8e1d2 100%)}
.profile-variant[data-variant="body"] .profile-hero-banner{background-image:linear-gradient(135deg,#f8e1d2 0%,#d6ebe5 100%)}
.profile-variant[data-variant="spaces"] .profile-hero-banner{background-image:linear-gradient(135deg,#0d1b2a 0%,#1a2a3d 60%,#2c1a14 100%);height:300px !important}
.profile-variant[data-variant="group"] .profile-hero-banner{background-image:linear-gradient(135deg,#1f7a66 0%,#2fa68c 35%,#0d1b2a 100%)}
.profile-variant .profile-hero-banner::before{content:'';position:absolute;inset:0;background-image:radial-gradient(circle at 18% 28%,rgba(47,166,140,.18),transparent 36%),radial-gradient(circle at 78% 64%,rgba(229,123,63,.16),transparent 38%),radial-gradient(circle at 50% 92%,rgba(13,27,42,.06),transparent 40%);opacity:.9}
.profile-variant .profile-info-strip{background:#fff;position:relative;margin-top:-60px !important;border-bottom:1px solid #e6dfd0}
.profile-variant .profile-info-inner{max-width:1280px !important;margin:0 auto !important;padding:32px 40px 24px !important;display:flex !important;align-items:flex-start;gap:32px}
.profile-variant .profile-id{display:flex;gap:20px;flex:1;min-width:0}
.profile-variant .profile-avatar-wrap{flex-shrink:0;position:relative}
.profile-variant .profile-avatar{width:112px !important;height:112px !important;border-radius:18px;background:#e57b3f;color:#fff;display:flex;align-items:center;justify-content:center;font-family:'Oswald',sans-serif;font-weight:700;font-size:36px;border:4px solid #fff;box-shadow:0 8px 24px rgba(13,27,42,.08)}
.profile-variant[data-variant="spaces"] .profile-avatar{background:#0d1b2a}
.profile-variant[data-variant="group"] .profile-avatar{background:#1f7a66}
.profile-variant .featured-ribbon{position:absolute;top:-6px;left:-6px;background:#0d1b2a;color:#fff;font-family:'Oswald',sans-serif;font-weight:700;font-size:9.5px;letter-spacing:.13em;padding:5px 9px;border-radius:6px;text-transform:uppercase;z-index:2}
.profile-variant .profile-name-block{flex:1;min-width:0;padding-top:14px}
.profile-variant .profile-name-block h1{font-family:'Oswald',sans-serif;font-weight:700;font-size:34px;line-height:1.1;color:#0d1b2a;margin-bottom:6px}
.profile-variant .profile-designation{font-size:14.5px;color:#5a6573;margin-bottom:12px;font-weight:500}
.profile-variant .profile-meta{display:flex;flex-wrap:wrap;align-items:center;gap:10px 14px;margin-bottom:12px}
.profile-variant .profile-meta-item{display:inline-flex;align-items:center;gap:6px;font-size:13px;color:#5a6573;font-weight:500}
.profile-variant .profile-meta-item svg{color:#2fa68c}
.profile-variant .profile-badge{display:inline-flex;align-items:center;gap:5px;padding:5px 12px;border-radius:999px;background:#e8efe9;color:#1f7a66;font-size:12px;font-weight:600}
.profile-variant .profile-badge.verified-badge{background:#fef3eb;color:#b8531f}
.profile-variant .fitness-indicator{display:inline-flex;align-items:center;gap:6px;font-size:12.5px;color:#5a6573;font-weight:500}
.profile-variant .fi-icon{width:8px;height:8px;border-radius:50%;background:#2fa68c;display:inline-block}
.profile-variant .profile-cultural-tags{display:flex;flex-wrap:wrap;gap:6px;margin-top:4px}
.profile-variant .cultural-tag{font-size:11.5px;font-weight:500;padding:4px 11px;border-radius:999px;background:#e8efe9;color:#1f7a66}
.profile-variant .profile-actions{display:flex;flex-direction:column;gap:8px;flex-shrink:0;padding-top:14px}
.profile-variant .btn{font-weight:600;font-size:13.5px;padding:11px 22px;border-radius:999px;cursor:pointer;border:none;text-decoration:none;display:inline-flex;align-items:center;justify-content:center;gap:7px;transition:transform .12s,box-shadow .12s}
.profile-variant .btn-primary{background:#0d1b2a;color:#fff}
.profile-variant .btn-primary:hover{transform:translateY(-1px);box-shadow:0 6px 18px rgba(13,27,42,.16)}
.profile-variant .btn-outline{background:transparent;color:#1f2a36;border:1px solid #e6dfd0}
.profile-variant .btn-outline:hover{border-color:#0d1b2a}
.profile-variant .profile-tabs-bar{background:#fff;border-bottom:1px solid #e6dfd0}
.profile-variant .profile-tabs-inner{max-width:1280px !important;margin:0 auto !important;padding:0 40px !important;display:flex;gap:8px;overflow-x:auto}
.profile-variant .profile-tab{padding:18px 16px;font-size:14px;font-weight:600;color:#7a8794;cursor:pointer;border-bottom:2px solid transparent;white-space:nowrap;transition:.12s}
.profile-variant .profile-tab:hover{color:#1f2a36}
.profile-variant .profile-tab.active{color:#2fa68c;border-bottom-color:#2fa68c}
.profile-variant .profile-body{max-width:1280px !important;margin:0 auto !important;padding:50px 40px 80px !important;display:grid !important;grid-template-columns:1fr 360px !important;gap:40px !important;align-items:flex-start}
.profile-variant .profile-main{background:#fff;border-radius:22px;padding:48px 56px;box-shadow:0 12px 40px rgba(13,27,42,.06);min-width:0}
.profile-variant .profile-section{display:none}
.profile-variant .profile-section.active{display:block}
.profile-variant .profile-section h2{font-family:'Oswald',sans-serif;font-weight:700;font-size:clamp(26px,3vw,32px);line-height:1.15;color:#0d1b2a;margin-bottom:20px}
.profile-variant .profile-section h2 em{font-family:'Fraunces',serif;font-style:italic;font-weight:500;color:#2fa68c}
.profile-variant .profile-section p{font-size:15px;line-height:1.7;color:#5a6573;margin-bottom:16px}
.profile-variant .profile-section p strong{color:#1f2a36;font-weight:600}
.profile-variant .pull-quote{background:#fef3eb;padding:20px 24px;border-radius:8px;font-family:'Fraunces',serif;font-style:italic;font-size:16px;color:#1f2a36;line-height:1.55;margin:0 0 24px}
.profile-variant .editorial-spread{margin:32px 0;padding:24px 0}
.profile-variant .editorial-rule{height:1px;background:#ece4d3;margin:0 0 16px}
.profile-variant .editorial-rule:last-child{margin:16px 0 0}
.profile-variant .editorial-eyebrow{font-family:'Oswald',sans-serif;font-weight:600;font-size:11.5px;letter-spacing:.13em;text-transform:uppercase;color:#2fa68c;margin-bottom:12px}
.profile-variant .editorial-body{font-family:'Fraunces',serif;font-style:italic;font-size:17px;line-height:1.6;color:#1f2a36;max-width:62ch}
.profile-variant .cred-item{display:flex;gap:16px;align-items:flex-start;padding:18px 0;border-bottom:1px solid #ece4d3}
.profile-variant .cred-item:last-child{border-bottom:none}
.profile-variant .cred-icon{width:42px;height:42px;border-radius:10px;background:#e8efe9;color:#1f7a66;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.profile-variant .cred-text h4{font-family:'Oswald',sans-serif;font-weight:600;font-size:15px;color:#0d1b2a;margin-bottom:4px}
.profile-variant .cred-text p{font-size:13.5px;color:#5a6573;line-height:1.5;margin-bottom:0}
.profile-variant .availability-grid{display:grid;grid-template-columns:1fr;margin-top:16px}
.profile-variant .avail-day-row{display:grid;grid-template-columns:100px 1fr 1fr;gap:16px;align-items:center;padding:14px 0;border-bottom:1px solid #ece4d3}
.profile-variant .avail-day-row:last-child{border-bottom:none}
.profile-variant .avail-day{font-family:'Oswald',sans-serif;font-weight:600;font-size:14px;color:#0d1b2a;text-transform:uppercase;letter-spacing:.05em}
.profile-variant .avail-slot{display:inline-flex;align-items:center;gap:6px;padding:5px 11px;border-radius:999px;background:#e8efe9;color:#1f7a66;font-size:12px;font-weight:600;justify-self:start}
.profile-variant .avail-closed{font-size:13px;color:#7a8794}
.profile-variant .avail-note{background:#faf7f2;border:1px solid #e6dfd0;border-radius:10px;padding:14px 18px;margin-top:20px;font-size:13.5px;color:#5a6573;line-height:1.55}
.profile-variant .avail-note strong{color:#0d1b2a;font-weight:600;display:block;margin-bottom:4px;font-family:'Oswald',sans-serif;font-size:14px}
.profile-variant .profile-aside{display:flex;flex-direction:column;gap:16px;position:sticky;top:90px}
.profile-variant .aside-card{background:#fff;border-radius:18px;padding:24px;box-shadow:0 8px 28px rgba(13,27,42,.06)}
.profile-variant .aside-card h3{font-family:'Oswald',sans-serif;font-weight:700;font-size:18px;color:#0d1b2a;margin-bottom:6px}
.profile-variant .aside-card h3 em{font-family:'Fraunces',serif;font-style:italic;font-weight:500;color:#e57b3f}
.profile-variant .aside-card .lead{font-size:13px;color:#5a6573;line-height:1.55;margin-bottom:18px}
.profile-variant .aside-accepting{display:inline-flex;align-items:center;gap:6px;padding:6px 12px;border-radius:999px;background:#fef3eb;color:#b8531f;font-size:12px;font-weight:600;margin-bottom:16px}
.profile-variant .aside-accepting::before{content:'';width:7px;height:7px;border-radius:50%;background:#e57b3f;display:inline-block}
.profile-variant .aside-meta{display:flex;flex-direction:column;gap:8px;padding:14px 0;border-top:1px solid #ece4d3;border-bottom:1px solid #ece4d3;margin-bottom:16px}
.profile-variant .aside-meta-row{display:flex;align-items:flex-start;gap:10px;font-size:13px;color:#5a6573}
.profile-variant .aside-meta-row svg{flex-shrink:0;color:#2fa68c;margin-top:2px}
.profile-variant .aside-meta-row strong{color:#0d1b2a;font-weight:600}
.profile-variant .aside-card .btn-primary{width:100%}
.profile-variant .aside-price{display:flex;align-items:baseline;justify-content:space-between;padding:14px 0 0;margin-top:14px;border-top:1px solid #ece4d3}
.profile-variant .aside-price .label{font-family:'Oswald',sans-serif;font-weight:600;font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:#7a8794}
.profile-variant .aside-price .amount{font-family:'Oswald',sans-serif;font-weight:700;font-size:22px;color:#0d1b2a}
.profile-variant .avail-preview{display:flex;flex-direction:column;gap:6px;font-size:12.5px;margin-top:10px}
.profile-variant .avail-preview-row{display:flex;justify-content:space-between;color:#5a6573}
.profile-variant .avail-preview-row .day{font-weight:600;color:#0d1b2a}
.profile-variant .avail-more{text-align:center;font-size:12px;color:#e57b3f;font-weight:600;margin-top:14px;cursor:pointer}
.profile-variant .ip-gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.profile-variant .ip-gallery-item{display:block;border-radius:12px;overflow:hidden;aspect-ratio:4/3}
.profile-variant .ip-gallery-item.lead{grid-column:span 2;grid-row:span 2}
.profile-variant .ip-gallery-item img{width:100%;height:100%;object-fit:cover;display:block}
.profile-variant .ip-empty-card{background:#faf7f2;border:1px dashed #e6dfd0;border-radius:14px;padding:28px;text-align:center}
.profile-variant .ip-empty-card h4{font-family:'Oswald',sans-serif;font-weight:700;font-size:16px;color:#0d1b2a;margin-bottom:8px}
.profile-variant .ip-empty-card p{font-size:13.5px;color:#5a6573;max-width:48ch;margin:0 auto 14px}
.profile-variant .ip-empty-card.ip-amber{background:#FEF3C7;border-color:#F5C56C}
.profile-variant .ip-check{color:#1f7a66;font-weight:500;font-size:14px}
.profile-variant .ip-muted{color:#7a8794}
.profile-variant .ip-amenities-cols{columns:2;column-gap:32px;margin-top:8px}
.ip-modal-wrap{position:fixed;inset:0;z-index:9999;display:flex;align-items:center;justify-content:center;padding:20px}
.ip-modal-overlay{position:absolute;inset:0;background:rgba(13,27,42,.55)}
.ip-modal-card{position:relative;background:#fff;border-radius:18px;padding:32px;max-width:520px;width:100%;max-height:90vh;overflow-y:auto;box-shadow:0 24px 64px rgba(13,27,42,.25)}
.ip-modal-close{position:absolute;top:14px;right:18px;background:none;border:none;font-size:26px;color:#7a8794;cursor:pointer;line-height:1}
.ip-modal-title{font-family:'Oswald',sans-serif;font-weight:700;font-size:22px;color:#0d1b2a;margin-bottom:6px}
.ip-modal-title em{font-family:'Fraunces',serif;font-style:italic;font-weight:500;color:#e57b3f}
.ip-modal-sub{font-size:13.5px;color:#5a6573;margin-bottom:18px}
.ip-modal-privacy{font-size:11.5px;color:#7a8794;text-align:center;margin-top:12px}
.ip-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:12px}
.ip-form-grid label,.ip-form-row{display:block;font-size:12px;font-weight:600;color:#5a6573;margin-bottom:10px}
.ip-form-grid input,.ip-form-row input,.ip-form-row select,.ip-form-row textarea{width:100%;border:1px solid #e6dfd0;border-radius:8px;padding:10px 12px;font:inherit;font-size:14px;color:#1f2a36;margin-top:5px;outline:none}
.ip-form-grid input:focus,.ip-form-row textarea:focus,.ip-form-row select:focus{border-color:#2fa68c}
.ip-radio-row{display:flex;gap:14px;margin-top:10px}
.ip-inline{display:inline-flex;align-items:center;gap:6px;font-weight:500}
.ip-form-msg{font-size:13px;color:#b8531f;margin-top:10px;min-height:18px}
.ip-form-success{font-size:15px;color:#1f7a66;font-weight:600;text-align:center;padding:24px 0}
@media (max-width:1024px){
  .profile-variant .profile-body{grid-template-columns:1fr !important;gap:24px !important}
  .profile-variant .profile-aside{position:static}
}
@media (max-width:768px){
  .profile-variant .profile-info-inner{flex-direction:column;align-items:stretch}
  .profile-variant .profile-actions{flex-direction:row;justify-content:flex-start}
  .profile-variant .profile-main{padding:32px 24px}
  .profile-variant .profile-tabs-inner{padding:0 20px !important}
  .profile-variant .ip-form-grid{grid-template-columns:1fr}
}
/* demo badge directive 2026-06-12 */
.profile-variant .ip-demo-ribbon{background:#FEF3C7 !important;color:#B45309 !important}

/* culturis-design-lock-2026-06-12 */
.profile-variant .pull-quote{border-left:none !important;border-top:none !important;border-radius:14px 14px 0 14px !important}
.profile-variant .sidebar-card,.profile-variant .booking-card,.profile-variant .recommendation-card,.profile-variant .aside-card{border-radius:14px 14px 0 14px !important}

/* ===== bundle-sitewide-2026-06-14 ===== */
/* sitewide no-italic lock (master ref §14) */
*, *::before, *::after { font-style: normal !important; }
/* 2.3 — shrink Culturis watermark 30% (360 → 252) */
.site-footer .footer-watermark { font-size: 252px !important; }
/* 2.1 — compress footer vertical spacing ~35% */
.site-footer .footer-inner { padding-top: 48px !important; padding-bottom: 30px !important; }
.site-footer .footer-top { padding-bottom: 34px !important; margin-bottom: 34px !important; }
.site-footer .footer-col h4 { margin-bottom: 14px !important; }
.site-footer .footer-col ul { gap: 8px !important; }
.site-footer .footer-bottom { padding-top: 20px !important; }
.site-footer .footer-tagline-block .tagline { margin-bottom: 12px !important; }
.site-footer .footer-brand-block .blurb { line-height: 1.5 !important; }

/* ===== footer-redesign-2026-06-14 ===== */
.site-footer .ftr-top{display:flex;justify-content:space-between;align-items:flex-start;gap:40px;padding-bottom:28px}
.site-footer .ftr-logo-svg{height:40px;width:auto;display:block}
.site-footer .ftr-tagline{margin-top:16px;font-family:'Plus Jakarta Sans',system-ui,sans-serif;font-size:14.5px;color:rgba(255,255,255,.70);max-width:430px;line-height:1.5}
.site-footer .ftr-headline{font-family:'Oswald',sans-serif;font-weight:700;font-size:clamp(22px,2.4vw,30px);line-height:1.08;color:#fff;text-align:right;letter-spacing:-0.01em;white-space:nowrap}
.site-footer .ftr-headline .accent{color:#e57b3f}
.site-footer .ftr-hr{border:0;border-top:1px solid rgba(255,255,255,.10);margin:26px 0}
.site-footer .ftr-rows{display:flex;flex-direction:column;gap:16px}
.site-footer .ftr-row{display:grid;grid-template-columns:200px 1fr;gap:24px;align-items:baseline}
.site-footer .ftr-row-label{font-family:'Oswald',sans-serif;font-weight:700;font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.5)}
.site-footer .ftr-row-items{font-family:'Plus Jakarta Sans',system-ui,sans-serif;font-size:14px;color:rgba(255,255,255,.55);line-height:1.8}
.site-footer .ftr-row-items a{color:rgba(255,255,255,.78);text-decoration:none;transition:color .2s}
.site-footer .ftr-row-items a:hover{color:#2fa68c}
.site-footer .ftr-row-items .desc{color:rgba(255,255,255,.4);font-size:12.5px}
.site-footer .ftr-intouch{display:flex;align-items:center;gap:12px;flex-wrap:wrap}
.site-footer .ftr-sep{color:rgba(255,255,255,.3)}
.site-footer .ftr-socials{display:inline-flex;gap:12px;align-items:center}
.site-footer .ftr-socials a{color:rgba(255,255,255,.6);display:inline-flex}
.site-footer .ftr-socials a:hover{color:#2fa68c}
.site-footer .ftr-location{margin-left:auto;color:rgba(255,255,255,.5);white-space:nowrap}
.site-footer .ftr-bottom{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:16px;padding-top:24px;font-family:'Plus Jakarta Sans',system-ui,sans-serif;font-size:13px;color:rgba(255,255,255,.45)}
.site-footer .ftr-copy .accent{color:#e57b3f}
.site-footer .ftr-builtin{text-align:center;color:rgba(255,255,255,.6)}
.site-footer .ftr-legal{text-align:right}
.site-footer .ftr-legal a{color:rgba(255,255,255,.45);text-decoration:none}
.site-footer .ftr-legal a:hover{color:#2fa68c}
@media (max-width:760px){
.site-footer .ftr-top{flex-direction:column;gap:20px}
.site-footer .ftr-headline{text-align:left;white-space:normal}
.site-footer .ftr-row{grid-template-columns:1fr;gap:6px}
.site-footer .ftr-location{margin-left:0;width:100%}
.site-footer .ftr-bottom{grid-template-columns:1fr;text-align:center;gap:12px}
.site-footer .ftr-builtin,.site-footer .ftr-legal{text-align:center}
.site-footer .footer-watermark{font-size:150px !important}
}

/* innapace-navlogo */
.site-header .logotype{display:flex;align-items:center;}
.site-header .logotype img{height:32px;width:auto;display:block;}
.site-header .nav-links a.nav-find,.site-header .nav-drawer-links a.nav-find{font-weight:700;}
/* end innapace-navlogo */

/* innapace-mobile-safety */
img{height:auto;}
body{overflow-wrap:break-word;}
@media (max-width:768px){ input,select,textarea{font-size:16px;} }
/* end innapace-mobile-safety */



/* innapace-mobile-canonical */
@media (max-width:767.98px){ .home-watermark{display:none !important;} }
/* end innapace-mobile-canonical */
