/*
 * Therapeia v1.2.0 — Editorial / modern design system.
 *
 * Aesthetic goals:
 *   - Warm, magazine-like, intentional
 *   - Editorial display typography (Fraunces/Lora italic for accents)
 *   - Bento layouts, never just equal rows
 *   - Bold colour blocks, generous whitespace
 *   - Real photography integrated tastefully
 */

/* ═══ PALETTE TOKENS ═══════════════════════════════════════════ */
/*
 * Palettes match the official brand sheets exactly.
 * Each defines hex values + RGB triplets so translucent overlays adapt too.
 *
 *   Clinical Trust:      Navy  #1A365D  +  Sky Blue  #5BA3E0  +  Bg #F0F4F8
 *   Holistic Growth:     Forest #2C4035 +  Sage      #8BA892  +  Bg #F7F5F0
 *   Empathetic Embrace:  Navy  #2D3748  +  Dusty Rose #D99A8F +  Bg #FFFDF9
 */

:root,
body.palette-clinical {
  --primary:        #1A365D;       /* deep navy */
  --primary-rgb:    26, 54, 93;
  --primary-2:      #2A4670;
  --primary-2-rgb:  42, 70, 112;
  --accent:         #5BA3E0;       /* sky blue */
  --accent-rgb:     91, 163, 224;
  --accent-soft:    #D6E5F2;
  --bg:             #F0F4F8;       /* pale blue-grey */
  --bg-rgb:         240, 244, 248;
  --surface:        #FFFFFF;
  --surface-rgb:    255, 255, 255;
  --surface-2:      #E0EBF5;
  --text:           #1A2332;
  --text-muted:     #5A6470;
  --text-soft:      #8A8E96;
  --line:           rgba(26, 54, 93, 0.10);
  --line-soft:      rgba(26, 54, 93, 0.05);
}

body.palette-growth {
  --primary:        #2C4035;       /* deep forest */
  --primary-rgb:    44, 64, 53;
  --primary-2:      #3C5044;
  --primary-2-rgb:  60, 80, 68;
  --accent:         #8BA892;       /* sage green */
  --accent-rgb:     139, 168, 146;
  --accent-soft:    #DCE8DF;
  --bg:             #F7F5F0;       /* warm off-white */
  --bg-rgb:         247, 245, 240;
  --surface:        #FFFFFF;
  --surface-rgb:    255, 255, 255;
  --surface-2:      #EFEBE0;
  --text:           #1F2922;
  --text-muted:     #5A6258;
  --text-soft:      #8A8678;
  --line:           rgba(44, 64, 53, 0.10);
  --line-soft:      rgba(44, 64, 53, 0.05);
}

body.palette-embrace {
  --primary:        #2D3748;       /* deep navy */
  --primary-rgb:    45, 55, 72;
  --primary-2:      #3D485A;
  --primary-2-rgb:  61, 72, 90;
  --accent:         #D99A8F;       /* dusty rose */
  --accent-rgb:     217, 154, 143;
  --accent-soft:    #F4E0DB;
  --bg:             #FFFDF9;       /* warm off-white */
  --bg-rgb:         255, 253, 249;
  --surface:        #FFFFFF;
  --surface-rgb:    255, 255, 255;
  --surface-2:      #F5EFE8;
  --text:           #1A1F2E;
  --text-muted:     #5A6470;
  --text-soft:      #8A8478;
  --line:           rgba(45, 55, 72, 0.10);
  --line-soft:      rgba(45, 55, 72, 0.05);
}

:root {
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 36px;
  --r-full: 999px;
  --shadow-sm: 0 1px 2px rgba(var(--primary-rgb), 0.04);
  --shadow-md: 0 8px 24px rgba(var(--primary-rgb), 0.06);
  --shadow-lg: 0 24px 60px rgba(var(--primary-rgb), 0.10);
  --container: 1240px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══ BASE TYPOGRAPHY ═════════════════════════════════════════ */

* { box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin: 0 0 0.5em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.5rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

p { margin: 0 0 1em; line-height: 1.65; }
a { color: var(--accent); text-decoration: none; transition: color 0.15s var(--ease); }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; display: block; }

/* ═══ SECTION WRAPPER ═════════════════════════════════════════ */

.t2-section { position: relative; }
.t2-section--soft { background: var(--surface-2); }
.t2-section--dark { background: var(--primary); color: var(--bg); }
.t2-section--dark h1,
.t2-section--dark h2,
.t2-section--dark h3 { color: var(--bg); }

.elementor-section .elementor-container { max-width: var(--container); }

/* ═══ ATOMIC BITS ════════════════════════════════════════════ */

.t2-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  display: inline-block;
  margin-bottom: 12px;
}
.t2-label--light { color: rgba(var(--bg-rgb), 0.55); }

.t2-h2 {
  font-family: 'Lora', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--primary);
  margin: 0;
}

.t2-accent {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
  position: relative;
}
.t2-accent--light { color: var(--accent); }

.t2-num-highlight {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.t2-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 8px;
  vertical-align: middle;
}

.t2-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 500;
}

.t2-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.t2-button--primary { background: var(--primary); color: var(--bg); }
.t2-button--primary:hover { background: var(--accent); color: var(--bg); transform: translateY(-1px); }
.t2-button--white { background: var(--bg); color: var(--primary); }
.t2-button--white:hover { background: var(--accent); color: var(--bg); }
.t2-button span { transition: transform 0.2s var(--ease); display: inline-block; }
.t2-button:hover span { transform: translateX(3px); }

.t2-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--primary);
  font-size: 1.05rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  transition: all 0.2s var(--ease);
}
.t2-link-arrow:hover { color: var(--accent); border-color: var(--accent); gap: 12px; }
.t2-link-light {
  color: rgba(var(--bg-rgb), 0.7);
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(var(--bg-rgb), 0.2);
  padding-bottom: 2px;
  transition: all 0.2s var(--ease);
}
.t2-link-light:hover { color: var(--bg); border-color: var(--accent); }

/* ═══ HERO — asymmetric editorial ═══════════════════════════ */

.t2-section--hero {
  padding-top: 80px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg) 100%);
}

.t2-hero { padding: 0 24px; }
.t2-hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 0 80px;
  align-items: center;
}

.t2-hero__content { max-width: 620px; }
.t2-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding: 6px 0;
}

.t2-hero__title {
  font-family: 'Lora', serif;
  font-size: clamp(2.8rem, 6.5vw, 5.4rem);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--primary);
  margin: 0 0 28px;
}
.t2-hero__title .t2-accent {
  font-style: italic;
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.t2-hero__title .t2-accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.12em;
  background: var(--accent-soft);
  z-index: -1;
}

.t2-hero__sub {
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 36px;
  max-width: 520px;
}

.t2-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.t2-hero__pills .t2-pill {
  background: transparent;
  border-color: var(--line);
  color: var(--text-muted);
  font-size: 0.82rem;
  padding: 5px 12px;
}

/* Hero visual stack */
.t2-hero__visual {
  position: relative;
  aspect-ratio: 1 / 1.15;
  max-width: 520px;
  width: 100%;
  margin-left: auto;
}
.t2-hero__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--surface-2);
  border-radius: var(--r-xl);
  overflow: hidden;
  transform: rotate(-1.5deg);
  box-shadow: var(--shadow-lg);
}
.t2-hero__photo-tag {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  background: rgba(var(--primary-rgb), 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--bg);
  padding: 20px 24px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 16px;
}
.t2-hero__photo-tag-num {
  font-family: 'Lora', serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  color: var(--bg);
}
.t2-hero__photo-tag-num span { color: var(--accent); }
.t2-hero__photo-tag-label {
  font-size: 0.85rem;
  line-height: 1.3;
  color: rgba(var(--bg-rgb), 0.85);
}

/* Floating cards */
.t2-hero__float {
  position: absolute;
  background: var(--surface);
  border-radius: var(--r-full);
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: rotate(2deg);
  z-index: 2;
}
.t2-hero__float--avail {
  top: -10px;
  right: 8%;
  transform: rotate(3deg);
}
.t2-hero__float--rating {
  bottom: 6%;
  right: -10%;
  transform: rotate(-2deg);
  padding: 12px 20px;
  font-size: 0.82rem;
  max-width: 260px;
}
.t2-hero__float--rating span:first-child { color: var(--accent); font-size: 0.95rem; letter-spacing: 1px; }
.t2-hero__float--rating span:last-child { color: var(--text-muted); }

.t2-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ABE63;
  box-shadow: 0 0 0 4px rgba(42, 190, 99, 0.18);
  animation: t2-pulse 2s infinite;
}
@keyframes t2-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(42, 190, 99, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(42, 190, 99, 0.05); }
}

.t2-stars { color: var(--accent); letter-spacing: 1px; }

@media (max-width: 920px) {
  .t2-hero__inner { grid-template-columns: 1fr; gap: 40px; padding: 24px 0 60px; }
  .t2-hero__visual { max-width: 100%; aspect-ratio: 4 / 5; }
  .t2-hero__float--avail { top: 12px; right: 12px; }
  .t2-hero__float--rating { bottom: 12px; right: 12px; left: auto; }
}

/* ═══ MARQUEE STRIP ═════════════════════════════════════════ */

.t2-section--marquee {
  background: var(--primary);
  color: var(--bg);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid var(--primary-2);
  border-bottom: 1px solid var(--primary-2);
}
.t2-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.t2-marquee::before, .t2-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 2;
}
.t2-marquee::before { left: 0; background: linear-gradient(90deg, var(--primary), transparent); }
.t2-marquee::after { right: 0; background: linear-gradient(-90deg, var(--primary), transparent); }
.t2-marquee__track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: t2-marquee 40s linear infinite;
  width: max-content;
}
.t2-marquee__item {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--bg);
}
.t2-marquee__dot {
  color: var(--accent);
  font-size: 0.8rem;
}
@keyframes t2-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══ BIG PROMISE ═════════════════════════════════════════ */

.t2-promise {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.t2-promise__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 32px;
}
.t2-promise__title {
  font-family: 'Lora', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.028em;
  color: var(--primary);
  margin: 0 0 32px;
  max-width: 1000px;
}
.t2-promise__title .t2-num-highlight {
  font-style: italic;
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.t2-promise__title .t2-num-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 0.16em;
  background: var(--accent-soft);
  z-index: -1;
}
.t2-promise__sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 680px;
  margin: 0;
}

/* ═══ BENTO HEAD (shared with multiple sections) ═══════════ */

.t2-bento-head {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 56px;
}
.t2-bento-head__left h2 { margin-top: 8px; }
.t2-bento-head__right {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
  max-width: 380px;
}
@media (max-width: 768px) {
  .t2-bento-head { grid-template-columns: 1fr; gap: 16px; }
}

/* ═══ CONCERNS BENTO ════════════════════════════════════════ */

.t2-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}
.t2-bento__card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.t2-bento__card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.t2-bento__card--feature {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--primary);
  color: var(--bg);
  border-color: transparent;
  justify-content: flex-end;
  padding: 36px;
}
.t2-bento__card--feature:hover {
  background: var(--primary-2);
  border-color: transparent;
}
.t2-bento__card--feature .t2-bento__card-title { color: var(--bg); }
.t2-bento__card--feature .t2-bento__card-body { color: rgba(var(--bg-rgb), 0.75); }
.t2-bento__card--feature .t2-bento__arrow { color: var(--accent); }

.t2-bento__chip {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--accent);
  color: var(--bg);
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.t2-bento__card-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.4rem, 2.4vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  color: var(--primary);
  line-height: 1.05;
}
.t2-bento__card--med .t2-bento__card-title { font-size: 1.5rem; margin-bottom: 4px; }
.t2-bento__card-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 6px 0 0;
  line-height: 1.55;
}
.t2-bento__card-meta {
  font-size: 0.84rem;
  color: var(--text-soft);
  margin: 0;
  font-weight: 500;
}

.t2-bento__arrow,
.t2-bento__arrow-sm {
  position: absolute;
  bottom: 20px;
  right: 24px;
  color: var(--accent);
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.2s var(--ease);
}
.t2-bento__arrow-sm { font-size: 1.2rem; }
.t2-bento__card:hover .t2-bento__arrow,
.t2-bento__card:hover .t2-bento__arrow-sm { transform: translate(4px, -4px); }

.t2-bento__card--quote {
  grid-column: span 2;
  background: var(--accent-soft);
  border-color: transparent;
  padding: 32px;
  justify-content: center;
}
.t2-bento__card--quote:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}
.t2-quote-mark { color: var(--accent); opacity: 0.6; }
.t2-bento__quote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--primary);
  margin: 12px 0 12px;
}
.t2-bento__quote-by {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

.t2-bento__card--sm {
  padding: 22px;
  justify-content: center;
  align-items: flex-start;
}
.t2-bento__emoji {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 12px;
}
.t2-bento__sm-name {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.t2-bento-foot { text-align: center; margin-top: 48px; max-width: 1180px; margin-left: auto; margin-right: auto; }

@media (max-width: 1024px) {
  .t2-bento { grid-template-columns: repeat(3, 1fr); }
  .t2-bento__card--feature { grid-column: span 3; grid-row: span 1; aspect-ratio: 2.5/1; }
  .t2-bento__card--quote { grid-column: span 3; }
}
@media (max-width: 640px) {
  .t2-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .t2-bento__card--feature { grid-column: span 2; }
  .t2-bento__card--quote { grid-column: span 2; }
}

/* ═══ HOW IT WORKS — alternating editorial steps ═══════════ */

.t2-steps {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.t2-step {
  display: grid;
  grid-template-columns: 110px 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.t2-step--reverse {
  grid-template-columns: 110px 1fr 1.2fr;
}
.t2-step--reverse .t2-step__media { order: 3; }
.t2-step--reverse .t2-step__body  { order: 2; }

.t2-step__num {
  font-family: 'Lora', serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 500;
  font-style: italic;
  color: var(--accent);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.t2-step__media {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--surface-2);
  border-radius: var(--r-lg);
}
.t2-step__body h3 {
  font-family: 'Lora', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin: 0 0 12px;
  line-height: 1.1;
}
.t2-step__body p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 460px;
}

@media (max-width: 880px) {
  .t2-step, .t2-step--reverse { grid-template-columns: 1fr; gap: 16px; }
  .t2-step__num { font-size: 3rem; }
  .t2-step--reverse .t2-step__media { order: 1; }
  .t2-step--reverse .t2-step__body  { order: 2; }
}

/* ═══ CITIES BENTO ══════════════════════════════════════════ */

.t2-cities {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-auto-rows: 220px;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}
.t2-city {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: var(--primary);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: var(--bg);
  transition: transform 0.3s var(--ease);
}
.t2-city::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(var(--primary-rgb), 0.85) 100%);
  transition: background 0.3s var(--ease);
}
.t2-city:hover { transform: translateY(-3px); }
.t2-city:hover::before { background: linear-gradient(180deg, transparent 20%, rgba(var(--primary-rgb), 0.92) 100%); }

.t2-city__bottom { position: relative; padding: 24px; width: 100%; }
.t2-city__count {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.t2-city__name {
  font-family: 'Lora', serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--bg);
  margin: 0 0 4px;
  line-height: 1.05;
}
.t2-city__hint {
  display: block;
  font-size: 0.85rem;
  color: rgba(var(--bg-rgb), 0.75);
  line-height: 1.4;
}

.t2-city--feature {
  grid-column: span 2;
  grid-row: span 2;
}
.t2-city--feature .t2-city__name { font-size: clamp(2.4rem, 4.5vw, 4rem); }

.t2-city--all {
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--primary);
}
.t2-city--all::before { display: none; }
.t2-city--all:hover { background: var(--accent); color: var(--bg); }
.t2-city__all-inner { padding: 24px; }
.t2-city__all-arrow {
  font-size: 2rem;
  color: var(--accent);
  font-family: 'Lora', serif;
  margin-bottom: 8px;
  transition: transform 0.2s var(--ease);
}
.t2-city--all:hover .t2-city__all-arrow { color: var(--bg); transform: translate(4px, -4px); }
.t2-city--all .t2-city__name { color: inherit; font-size: 1.6rem; }
.t2-city--all .t2-city__hint { color: var(--text-muted); }
.t2-city--all:hover .t2-city__hint { color: rgba(var(--bg-rgb),0.8); }

@media (max-width: 880px) {
  .t2-cities { grid-template-columns: 1fr 1fr; }
  .t2-city--feature { grid-column: span 2; }
}
@media (max-width: 540px) {
  .t2-cities { grid-template-columns: 1fr; }
  .t2-city--feature { grid-column: span 1; grid-row: span 2; }
}

/* ═══ FEATURED COUNSELLORS SECTION FOOT ════════════════════ */

.t2-section-foot { text-align: center; margin-top: 56px; }

/* ═══ EDITORIAL PULL QUOTE ═════════════════════════════════ */

.t2-section--quote-feature {
  background: var(--primary);
  color: var(--bg);
}
.t2-pullquote {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.t2-pullquote__mark { color: var(--accent); margin: 0 auto 24px; opacity: 0.8; }
.t2-pullquote__quote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  line-height: 1.25;
  letter-spacing: -0.018em;
  color: var(--bg);
  margin: 0 0 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.t2-pullquote__by {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  text-align: left;
}
.t2-pullquote__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--accent);
}
.t2-pullquote__by strong { display: block; color: var(--bg); font-size: 1.05rem; }
.t2-pullquote__by span  { display: block; color: rgba(var(--bg-rgb), 0.65); font-size: 0.9rem; margin-top: 2px; }

/* ═══ WHY US — 4 minimal columns ═══════════════════════════ */

.t2-why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
}
.t2-why__col {
  padding-top: 24px;
  border-top: 2px solid var(--primary);
}
.t2-why__num {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}
.t2-why__title {
  font-family: 'Lora', serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--primary);
  margin: 0 0 12px;
  line-height: 1.2;
}
.t2-why__body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 880px) { .t2-why { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (max-width: 540px) { .t2-why { grid-template-columns: 1fr; } }

/* ═══ PRO CTA — full bleed bold ════════════════════════════ */

.t2-procta {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px 24px;
  align-items: center;
}
.t2-procta__num {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(6rem, 14vw, 12rem);
  color: var(--accent);
  line-height: 0.9;
  letter-spacing: -0.05em;
}
.t2-procta__num span { color: var(--bg); }
.t2-procta__title {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--bg);
  margin: 16px 0 24px;
}
.t2-procta__title .t2-accent { color: var(--accent); }
.t2-procta__title .t2-accent::after { display: none; }
.t2-procta__sub {
  font-size: 1.08rem;
  color: rgba(var(--bg-rgb), 0.78);
  line-height: 1.6;
  margin: 0 0 32px;
  max-width: 600px;
}
.t2-procta__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 880px) {
  .t2-procta { grid-template-columns: 1fr; gap: 32px; padding: 60px 24px; }
}

/* ═══ CRISIS STRIP ═════════════════════════════════════════ */

.t2-section--crisis {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
}
.t2-crisis {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.t2-crisis__icon { color: var(--accent); flex-shrink: 0; }
.t2-crisis__body strong { color: var(--primary); margin-right: 4px; }
.t2-crisis__body a { color: var(--accent); font-weight: 600; border-bottom: 1px solid var(--accent); }

/* ═══ SHARED LEGACY UTILITIES (back-compat for non-Welcome pages) ═══ */
/* Kept so About/Services/Pricing/Contact builders still look acceptable
   even before they're rewritten in v1.2 vocabulary. They can be removed
   once those builders are also redesigned. */

.t-eyebrow { font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin: 0 0 16px; }
.t-eyebrow--center { text-align: center; }
.t-eyebrow--light { color: rgba(255,255,255,0.85); }
.t-hero-sub { font-size: 1.18rem; line-height: 1.55; color: var(--text-muted); margin: 0 0 32px; max-width: 42rem; }
.t-section-sub { text-align: center; font-size: 1.05rem; color: var(--text-muted); max-width: 36rem; margin: 0 auto 48px; line-height: 1.6; }
.t-section-cta { text-align: center; margin: 48px 0 0; }
.t-tinted-bg { background: var(--surface-2); }
.t-button { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; font-family: 'Inter', sans-serif; font-size: 0.98rem; font-weight: 500; border-radius: var(--r-full); border: 2px solid transparent; cursor: pointer; transition: all 0.2s var(--ease); text-decoration: none; }
.t-button--primary { background: var(--primary); color: var(--bg); }
.t-button--primary:hover { background: var(--accent); }
.t-button--secondary { background: var(--accent); color: var(--bg); }
.t-button--secondary:hover { background: var(--primary); }
.t-button--ghost { background: transparent; color: var(--primary); border-color: var(--line); }
.t-button--ghost:hover { border-color: var(--primary); }
.t-button--block { display: flex; width: 100%; justify-content: center; }
.t-link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; color: var(--accent); }
.t-link-arrow:hover { color: var(--primary); }
.t-link-light { color: rgba(255,255,255,0.9); }

.t-stat { text-align: center; padding: 8px 12px; }
.t-stat__num { display: block; font-family: 'Lora', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 500; color: var(--accent); line-height: 1.1; font-style: italic; }
.t-stat__label { display: block; font-size: 0.86rem; color: var(--text-muted); margin-top: 6px; }
.t-stats-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.t-stat-large { text-align: center; padding: 16px; }
.t-stat-large__num { display: block; font-family: 'Lora', serif; font-style: italic; font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 500; color: var(--accent); line-height: 1; }
.t-stat-large__label { display: block; font-size: 1.05rem; font-weight: 600; margin-top: 12px; color: var(--primary); }
.t-stat-large__sub { display: block; font-size: 0.88rem; color: var(--text-muted); margin-top: 8px; max-width: 18rem; margin-left: auto; margin-right: auto; }

.t-values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; }
.t-value__title { font-family: 'Lora', serif; font-size: 1.22rem; color: var(--primary); margin: 0 0 10px; }
.t-value__body { color: var(--text-muted); font-size: 0.98rem; line-height: 1.6; margin: 0; }

.t-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.t-info-card { display: block; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 32px 28px; text-decoration: none; transition: all 0.2s var(--ease); color: var(--text); }
.t-info-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.t-info-card__num { display: inline-block; font-family: 'Lora', serif; font-style: italic; font-size: 1rem; color: var(--accent); margin-bottom: 16px; }
.t-info-card__title { font-family: 'Lora', serif; font-size: 1.25rem; color: var(--primary); margin: 0 0 10px; }
.t-info-card__body { color: var(--text-muted); font-size: 0.96rem; line-height: 1.6; margin: 0 0 18px; }
.t-info-card__cta { font-size: 0.92rem; font-weight: 500; color: var(--accent); }

.t-types-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.t-type-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px 24px; }
.t-type-card__tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); background: var(--accent-soft); padding: 4px 10px; border-radius: var(--r-full); margin-bottom: 14px; }
.t-type-card__name { font-family: 'Lora', serif; font-size: 1.18rem; color: var(--primary); margin: 0 0 8px; }
.t-type-card__body { color: var(--text-muted); font-size: 0.94rem; line-height: 1.6; margin: 0; }

.t-faq { max-width: 48rem; margin: 0 auto; }
.t-faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); margin-bottom: 12px; overflow: hidden; transition: border-color 0.15s; }
.t-faq__item[open] { border-color: var(--accent); }
.t-faq__q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; font-family: 'Lora', serif; font-size: 1.08rem; font-weight: 500; color: var(--primary); cursor: pointer; list-style: none; }
.t-faq__q::-webkit-details-marker { display: none; }
.t-faq__icon { font-size: 1.4rem; font-weight: 300; color: var(--accent); transition: transform 0.2s; }
.t-faq__item[open] .t-faq__icon { transform: rotate(45deg); }
.t-faq__a { padding: 0 24px 22px; color: var(--text-muted); font-size: 0.98rem; line-height: 1.65; }

.t-checklist { list-style: none; padding: 0; margin: 16px 0 0; }
.t-checklist li { position: relative; padding: 16px 0 16px 36px; border-bottom: 1px solid var(--line-soft); font-size: 1rem; line-height: 1.6; }
.t-checklist li:last-child { border-bottom: none; }
.t-checklist li::before { content: ''; position: absolute; left: 0; top: 20px; width: 22px; height: 22px; background: var(--accent); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-size: 14px; background-repeat: no-repeat; background-position: center; }
.t-checklist li strong { color: var(--primary); margin-right: 4px; }

.t-tiers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.t-tier { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px 32px 32px; display: flex; flex-direction: column; }
.t-tier--featured { border-color: var(--accent); border-width: 2px; box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.t-tier__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--bg); font-size: 0.78rem; font-weight: 600; padding: 6px 14px; border-radius: var(--r-full); }
.t-tier__name { font-family: 'Lora', serif; font-size: 1.5rem; color: var(--primary); margin: 0 0 6px; }
.t-tier__tag { color: var(--text-muted); font-size: 0.92rem; margin: 0 0 24px; }
.t-tier__price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 28px; }
.t-tier__price-num { font-family: 'Lora', serif; font-style: italic; font-size: 2.6rem; font-weight: 500; color: var(--accent); }
.t-tier__price-per { font-size: 1rem; color: var(--text-muted); }
.t-tier .t-button { margin-bottom: 24px; }
.t-tier__feats { list-style: none; padding: 20px 0 0; margin: 0; border-top: 1px solid var(--line-soft); }
.t-tier__feat { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; font-size: 0.94rem; }
.t-tier__feat--off { opacity: 0.5; }
.t-tier__feat-icon { flex-shrink: 0; margin-top: 3px; color: var(--accent); }
@media (max-width: 880px) { .t-tier--featured { transform: none; } }

.t-routes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.t-route-card { display: block; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 30px 26px; color: var(--text); text-decoration: none; transition: all 0.2s var(--ease); }
.t-route-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.t-route-card__icon { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; background: var(--accent-soft); color: var(--accent); border-radius: var(--r-sm); margin-bottom: 18px; }
.t-route-card__title { font-family: 'Lora', serif; font-size: 1.2rem; color: var(--primary); margin: 0 0 8px; }
.t-route-card__body { color: var(--text-muted); font-size: 0.94rem; line-height: 1.6; margin: 0 0 16px; }
.t-route-card__cta { font-size: 0.92rem; font-weight: 500; color: var(--accent); }

.t-form { max-width: 36rem; margin: 0 auto; }
.t-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .t-form__row { grid-template-columns: 1fr; } }
.t-form__field { display: block; margin-bottom: 18px; }
.t-form__field > span { display: block; font-size: 0.88rem; font-weight: 500; color: var(--primary); margin-bottom: 6px; }
.t-form__field input, .t-form__field select, .t-form__field textarea { width: 100%; font-family: inherit; font-size: 1rem; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--surface); color: var(--text); transition: border-color 0.15s; }
.t-form__field input:focus, .t-form__field select:focus, .t-form__field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.t-form__field textarea { resize: vertical; min-height: 120px; }
.t-form__note { font-size: 0.86rem; color: var(--text-muted); margin: 4px 0 18px; }

.t-details-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; max-width: 56rem; margin: 0 auto; }
.t-detail { text-align: center; }
.t-detail h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin: 0 0 8px; }

.t-trust-grid { display: flex; flex-wrap: wrap; gap: 32px; }
.t-trust-card { flex: 1 1 280px; }
.t-trust-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: var(--r-md); background: var(--accent-soft); color: var(--accent); margin-bottom: 20px; }
.t-trust-card__title { font-family: 'Lora', serif; font-size: 1.3rem; margin: 0 0 10px; color: var(--primary); }
.t-trust-card__body { color: var(--text-muted); font-size: 0.98rem; line-height: 1.6; margin: 0; }

.t-testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.t-testimonial { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 32px 28px; }
.t-testimonial__mark { color: var(--accent); opacity: 0.6; margin-bottom: 12px; }
.t-testimonial__quote { font-family: 'Lora', serif; font-style: italic; font-size: 1.12rem; line-height: 1.55; color: var(--text); margin: 0 0 20px; }
.t-testimonial__by { font-size: 0.92rem; color: var(--text-muted); }
.t-testimonial__by strong { color: var(--primary); }

.t-dark-section { background: var(--primary); color: var(--bg); }
.t-pro-cta { text-align: center; max-width: 36rem; margin: 0 auto; }
.t-pro-cta__title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--bg); margin: 12px 0 16px; font-family: 'Lora', serif; }
.t-pro-cta__sub { font-size: 1.08rem; color: rgba(var(--bg-rgb),0.85); margin: 0 0 28px; line-height: 1.6; }
.t-pro-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center; }

.t-crisis-strip { background: var(--surface-2); border-top: 1px solid var(--line); }
.t-crisis { display: flex; align-items: flex-start; gap: 14px; max-width: var(--container); margin: 0 auto; font-size: 0.92rem; color: var(--text-muted); }
.t-crisis__icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.t-crisis__body strong { color: var(--primary); margin-right: 6px; }

/* Plugin widget polish */
.gt-counsellor-search-form input,
.gt-counsellor-search-form select { border-radius: var(--r-full) !important; }

/* Mobile */
@media (max-width: 768px) {
  body { font-size: 16px; }
}

/* ═════════════════════════════════════════════════════════════════
   v1.3.0 ADDITIONS — pill eyebrow, header/footer, FA icons,
   all-page editorial components, mobile responsiveness
   ═════════════════════════════════════════════════════════════════ */

/* ─── Skip link / a11y ─────────────────────────────────────── */
.t-skip {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 12px 20px;
  background: var(--primary);
  color: var(--bg);
  border-radius: var(--r-sm);
}
.t-skip:focus { left: 16px; top: 16px; }

/* ─── HEADER ───────────────────────────────────────────────── */
.t-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(var(--bg-rgb), 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
body.t-scrolled .t-header {
  border-bottom-color: var(--line);
  background: rgba(var(--bg-rgb), 0.95);
}

.t-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 24px;
}

.t-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--primary);
}
.t-brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.t-brand__name {
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--primary);
}

.t-nav__list,
.t-mobile-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.t-nav__list li a,
.t-nav__list li > a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: var(--r-full);
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.t-nav__list li a:hover,
.t-nav__list .current-menu-item > a {
  background: var(--surface);
  color: var(--primary);
}
.t-nav__list .sub-menu {
  display: none; /* keep simple — Elementor can replace if needed */
}

.t-header__actions { display: flex; align-items: center; gap: 12px; }
.t-button--header {
  padding: 10px 18px;
  font-size: 0.9rem;
  background: var(--primary);
  color: var(--bg);
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s var(--ease);
}
.t-button--header:hover { background: var(--accent); }

.t-nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--line);
  width: 42px;
  height: 42px;
  border-radius: var(--r-full);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary);
  font-size: 1rem;
}

@media (max-width: 960px) {
  .t-nav--desktop { display: none; }
  .t-button--header { display: none; }
  .t-nav-toggle { display: inline-flex; }
}

/* ─── MOBILE NAV ───────────────────────────────────────────── */
.t-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease), visibility 0.2s var(--ease);
}
body.t-nav-open .t-mobile-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.t-mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(var(--primary-rgb), 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.t-mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 88vw);
  background: var(--bg);
  padding: 20px 24px 32px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
}
body.t-nav-open .t-mobile-nav__panel { transform: translateX(0); }
.t-mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.t-mobile-nav__close {
  background: var(--surface);
  border: 1px solid var(--line);
  width: 42px;
  height: 42px;
  border-radius: var(--r-full);
  cursor: pointer;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.t-mobile-nav__list {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.t-mobile-nav__list li { border-bottom: 1px solid var(--line); }
.t-mobile-nav__list li:last-child { border-bottom: none; }
.t-mobile-nav__list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
}
.t-mobile-nav__list li a i { color: var(--accent); font-size: 0.9rem; }

/* ─── PILL EYEBROW (new modern style) ──────────────────────── */
.t2-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-muted);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.t2-eyebrow-pill .t2-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: t2-pulse-soft 2.5s ease-in-out infinite;
}
@keyframes t2-pulse-soft {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(0.85); }
}

/* Pill versions in trust strips — make them feel like FA badges */
.t2-pill {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.85rem;
  padding: 7px 14px;
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
}
.t2-pill i { color: var(--accent); font-size: 0.85em; }

/* ─── ICON STYLES for bento small cards (replacing emojis) ── */
.t2-bento__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.05rem;
  margin-bottom: 14px;
}

/* ─── ABOUT PAGE: STORY SECTION ────────────────────────────── */
.t2-story {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}
.t2-story__media {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--surface-2);
  border-radius: var(--r-xl);
  position: sticky;
  top: 100px;
}
.t2-story__body p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.7;
  margin: 0 0 1.4em;
}
.t2-story__pull {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.35;
  color: var(--primary);
  margin: 2em 0 0;
  padding: 32px 28px;
  background: var(--accent-soft);
  border-radius: var(--r-lg);
  border-left: 3px solid var(--accent);
}
.t2-story__pull cite {
  display: block;
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 14px;
}
@media (max-width: 880px) {
  .t2-story { grid-template-columns: 1fr; gap: 32px; }
  .t2-story__media { position: relative; top: 0; aspect-ratio: 4/3; }
}

/* ─── ABOUT: BIG STATS row ─────────────────────────────────── */
.t2-bigstats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
}
.t2-bigstat {
  padding-top: 28px;
  border-top: 3px solid var(--primary);
}
.t2-bigstat__num {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.t2-bigstat__label {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 10px;
}
.t2-bigstat__sub {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}
@media (max-width: 880px) {
  .t2-bigstats { grid-template-columns: 1fr; gap: 32px; }
}

/* ─── ABOUT: VALUES BENTO ─────────────────────────────────── */
.t2-vbento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}
.t2-vbento__card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px 32px;
  transition: all 0.25s var(--ease);
}
.t2-vbento__card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.t2-vbento__card--feature {
  grid-column: span 2;
  background: var(--primary);
  border-color: transparent;
  color: var(--bg);
  padding: 48px 40px;
}
.t2-vbento__card--feature:hover {
  background: var(--primary-2);
  border-color: transparent;
}
.t2-vbento__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.t2-vbento__card--feature .t2-vbento__icon {
  background: rgba(var(--accent-rgb), 0.18);
  color: var(--accent);
}
.t2-vbento__num {
  position: absolute;
  top: 28px;
  right: 32px;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--accent);
  opacity: 0.7;
}
.t2-vbento__title {
  font-family: 'Lora', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 500;
  letter-spacing: -0.018em;
  color: var(--primary);
  margin: 0 0 10px;
  line-height: 1.2;
}
.t2-vbento__card--feature .t2-vbento__title { color: var(--bg); font-size: clamp(1.6rem, 3vw, 2.4rem); }
.t2-vbento__body {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
.t2-vbento__card--feature .t2-vbento__body {
  color: rgba(var(--bg-rgb), 0.78);
  font-size: 1.08rem;
}
@media (max-width: 720px) {
  .t2-vbento { grid-template-columns: 1fr; }
  .t2-vbento__card--feature { grid-column: span 1; }
}

/* ─── ABOUT: VERIFICATION CHECKS ──────────────────────────── */
.t2-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}
.t2-check {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
}
.t2-check__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent);
  color: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.t2-check__title {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary);
  margin: 0 0 6px;
  line-height: 1.25;
}
.t2-check__body {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 720px) { .t2-checks { grid-template-columns: 1fr; } }

/* ─── ABOUT: TEAM STRIP ────────────────────────────────────── */
.t2-team {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.t2-team__photo {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  border-radius: var(--r-xl);
  background-color: var(--surface-2);
}
.t2-team__body h2 { margin-top: 12px; margin-bottom: 24px; }
.t2-team__body p {
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.7;
  margin: 0 0 1.2em;
}
.t2-team__body p:last-child { color: var(--text-muted); }
@media (max-width: 880px) { .t2-team { grid-template-columns: 1fr; gap: 32px; } .t2-team__photo { aspect-ratio: 4/3; } }

/* ─── SERVICES: TYPES bento ────────────────────────────────── */
.t2-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}
.t2-type {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  position: relative;
}
.t2-type--feature {
  background: var(--primary);
  color: var(--bg);
  border-color: transparent;
  grid-column: span 1;
}
.t2-type__chip {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}
.t2-type--feature .t2-type__chip { background: rgba(var(--accent-rgb), 0.2); }
.t2-type__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.t2-type--feature .t2-type__icon { background: rgba(var(--accent-rgb), 0.18); }
.t2-type__name {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--primary);
  margin: 0 0 8px;
  letter-spacing: -0.018em;
}
.t2-type--feature .t2-type__name { color: var(--bg); }
.t2-type__body {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
.t2-type--feature .t2-type__body { color: rgba(var(--bg-rgb), 0.78); }
@media (max-width: 880px) { .t2-types { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .t2-types { grid-template-columns: 1fr; } }

/* ─── SERVICES: WHAT TO EXPECT ────────────────────────────── */
.t2-expect {
  max-width: 1180px;
  margin: 0 auto;
}
.t2-expect__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 32px;
}
.t2-expect__cols p {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 1.2em;
}
@media (max-width: 760px) { .t2-expect__cols { grid-template-columns: 1fr; gap: 24px; } }

/* ─── FAQ — new t2 style ──────────────────────────────────── */
.t2-faq {
  max-width: 820px;
  margin: 0 auto;
}
.t2-faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s var(--ease);
}
.t2-faq__item[open] {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.t2-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  letter-spacing: -0.01em;
}
.t2-faq__q::-webkit-details-marker { display: none; }
.t2-faq__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all 0.25s var(--ease);
}
.t2-faq__item[open] .t2-faq__icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--bg);
}
.t2-faq__a {
  padding: 0 26px 24px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}
.t2-faq__a p { margin: 0; }

/* ─── PRICING: TIERS ───────────────────────────────────────── */
.t2-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}
.t2-tier {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
}
.t2-tier--featured {
  background: var(--primary);
  color: var(--bg);
  border-color: transparent;
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}
.t2-tier__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: var(--r-full);
  white-space: nowrap;
}
.t2-tier__top { flex: 1; }
.t2-tier__name {
  font-family: 'Lora', serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--primary);
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.t2-tier--featured .t2-tier__name { color: var(--bg); }
.t2-tier__tag {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 28px;
}
.t2-tier--featured .t2-tier__tag { color: rgba(var(--bg-rgb), 0.7); }
.t2-tier__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
}
.t2-tier__price-num {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}
.t2-tier__price-per { font-size: 1rem; color: var(--text-muted); }
.t2-tier--featured .t2-tier__price-per { color: rgba(var(--bg-rgb), 0.7); }
.t2-tier .t2-button { margin-bottom: 28px; }
.t2-button--ghost {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--line);
}
.t2-button--ghost:hover { border-color: var(--primary); background: var(--bg); }
.t2-tier__feats {
  list-style: none;
  padding: 24px 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.t2-tier--featured .t2-tier__feats { border-top-color: rgba(var(--bg-rgb), 0.15); }
.t2-tier__feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.96rem;
  color: var(--text);
}
.t2-tier--featured .t2-tier__feat { color: rgba(var(--bg-rgb), 0.9); }
.t2-tier__feat--off { opacity: 0.5; }
.t2-tier__feat-icon {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--accent);
  font-size: 0.85rem;
}
.t2-tier__feat--off .t2-tier__feat-icon { color: var(--text-muted); }
.t2-tiers__note { text-align: center; color: var(--text-muted); font-size: 0.92rem; margin: 32px 0 0; }
.t2-button--block { display: flex; width: 100%; justify-content: center; }
@media (max-width: 920px) {
  .t2-tiers { grid-template-columns: 1fr; }
  .t2-tier--featured { transform: none; }
}

/* ─── PRICING: TESTIMONIAL CARDS ───────────────────────────── */
.t2-tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.t2-tcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.t2-tcard__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--accent);
  margin-bottom: 20px;
}
.t2-tcard__mark { color: var(--accent); opacity: 0.6; margin-right: 4px; }
.t2-tcard__quote {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 24px;
  flex: 1;
}
.t2-tcard__by strong { display: block; color: var(--primary); font-weight: 500; font-size: 1rem; }
.t2-tcard__by span { display: block; color: var(--text-muted); font-size: 0.85rem; margin-top: 3px; }
@media (max-width: 880px) { .t2-tgrid { grid-template-columns: 1fr; } }

/* ─── CONTACT: ROUTING CARDS ──────────────────────────────── */
.t2-routes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}
.t2-route {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.25s var(--ease);
}
.t2-route:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.t2-route--feature {
  background: var(--primary);
  color: var(--bg);
  border-color: transparent;
}
.t2-route--feature:hover {
  background: var(--primary-2);
  border-color: transparent;
  color: var(--bg);
}
.t2-route__icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 14px;
  margin-bottom: 22px;
  font-size: 1.3rem;
}
.t2-route--feature .t2-route__icon { background: rgba(var(--accent-rgb), 0.2); color: var(--accent); }
.t2-route__title {
  font-family: 'Lora', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--primary);
  margin: 0 0 10px;
  letter-spacing: -0.015em;
}
.t2-route--feature .t2-route__title { color: var(--bg); }
.t2-route__body {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
  margin: 0 0 24px;
  flex: 1;
}
.t2-route--feature .t2-route__body { color: rgba(var(--bg-rgb), 0.78); }
.t2-route__cta {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.t2-route__cta i { font-size: 0.85em; }
@media (max-width: 880px) { .t2-routes { grid-template-columns: 1fr; } }

/* ─── CONTACT: FORM ────────────────────────────────────────── */
.t2-form {
  max-width: 680px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px 36px;
}
.t2-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.t2-form__field { display: block; margin-bottom: 20px; }
.t2-form__field > span {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 8px;
}
.t2-form__field input,
.t2-form__field select,
.t2-form__field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg);
  color: var(--text);
  transition: all 0.18s var(--ease);
}
.t2-form__field input:focus,
.t2-form__field select:focus,
.t2-form__field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.t2-form__field textarea { resize: vertical; min-height: 140px; }
.t2-form__note {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 4px 0 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.t2-form__note i { color: var(--accent); }
@media (max-width: 540px) { .t2-form__row { grid-template-columns: 1fr; } .t2-form { padding: 28px 22px; } }

/* ─── CONTACT: DETAIL CARDS ───────────────────────────────── */
.t2-contacts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}
.t2-contact {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: left;
}
.t2-contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 12px;
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.t2-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 0 0 8px;
}
.t2-contact__val { font-size: 0.98rem; color: var(--primary); font-weight: 500; }
.t2-contact__val a { color: var(--accent); }
@media (max-width: 880px) { .t2-contacts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .t2-contacts { grid-template-columns: 1fr; } }

/* ─── PRICING CTA: number-sub for "30 days" ───────────────── */
.t2-procta__num-sub {
  display: block;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(var(--bg-rgb), 0.7);
  letter-spacing: 0.04em;
  margin-top: 8px;
}

/* ─── FOOTER ───────────────────────────────────────────────── */
.t-footer {
  background: var(--primary);
  color: var(--bg);
  margin-top: 60px;
}
.t-footer__cta {
  background: var(--primary-2);
  padding: 60px 24px;
  border-bottom: 1px solid rgba(var(--bg-rgb), 0.08);
}
.t-footer__cta-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.t-footer__cta .t-label--light { color: rgba(var(--bg-rgb), 0.55); }
.t-footer__cta-title {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--bg);
  margin: 8px 0 0;
  max-width: 720px;
}
.t-footer__cta-title em { color: var(--accent); font-style: italic; }
.t-button--white { background: var(--bg); color: var(--primary); padding: 16px 28px; border-radius: var(--r-full); font-weight: 500; display: inline-flex; align-items: center; gap: 10px; text-decoration: none; transition: all 0.2s var(--ease); }
.t-button--white:hover { background: var(--accent); color: var(--bg); transform: translateY(-1px); }

.t-footer__main {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px 40px;
}
.t-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.t-footer__brand .t-brand { margin-bottom: 16px; }
.t-footer__brand .t-brand__mark { background: var(--bg); color: var(--accent); }
.t-footer__brand .t-brand__name { color: var(--bg); }
.t-footer__desc {
  color: rgba(var(--bg-rgb), 0.65);
  font-size: 0.96rem;
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 340px;
}
.t-footer__social {
  display: flex;
  gap: 10px;
}
.t-footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(var(--bg-rgb), 0.06);
  border: 1px solid rgba(var(--bg-rgb), 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-size: 0.9rem;
  transition: all 0.2s var(--ease);
}
.t-footer__social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
.t-footer__col-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  margin: 0 0 20px;
}
.t-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.t-footer__col a {
  color: rgba(var(--bg-rgb), 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.15s var(--ease);
}
.t-footer__col a:hover { color: var(--accent); }

.t-footer__crisis {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 28px;
  background: rgba(var(--bg-rgb), 0.04);
  border: 1px solid rgba(var(--bg-rgb), 0.08);
  border-radius: var(--r-md);
  font-size: 0.92rem;
  color: rgba(var(--bg-rgb), 0.7);
  line-height: 1.55;
}
.t-footer__crisis i { color: var(--accent); flex-shrink: 0; margin-top: 4px; font-size: 1.1rem; }
.t-footer__crisis strong { color: var(--bg); margin-right: 4px; }
.t-footer__crisis a { color: var(--accent); font-weight: 600; }

.t-footer__bottom {
  border-top: 1px solid rgba(var(--bg-rgb), 0.08);
  padding: 24px 24px;
}
.t-footer__bottom-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.t-footer__copy { color: rgba(var(--bg-rgb), 0.5); font-size: 0.88rem; }
.t-footer__legal { list-style: none; padding: 0; margin: 0; display: flex; gap: 24px; flex-wrap: wrap; }
.t-footer__legal a { color: rgba(var(--bg-rgb), 0.5); font-size: 0.88rem; text-decoration: none; }
.t-footer__legal a:hover { color: var(--accent); }

@media (max-width: 880px) {
  .t-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .t-footer__brand { grid-column: span 2; }
  .t-footer__cta-inner { gap: 24px; }
}
@media (max-width: 540px) {
  .t-footer__grid { grid-template-columns: 1fr; }
  .t-footer__brand { grid-column: span 1; }
  .t-footer__main { padding: 48px 24px 32px; }
  .t-footer__cta { padding: 48px 24px; }
}

/* ─── EXTRA MOBILE RESPONSIVENESS for hero & sections ────── */
@media (max-width: 920px) {
  .t2-section { padding-left: 16px !important; padding-right: 16px !important; }
  .t2-hero { padding: 0 16px; }
  .t2-hero__title { font-size: clamp(2.2rem, 9vw, 3.5rem) !important; }
  .t2-bento-head { gap: 16px; }
  .t2-promise__title { font-size: clamp(2rem, 6vw, 3rem) !important; }
  .t2-pullquote__quote { font-size: clamp(1.4rem, 5vw, 2.2rem) !important; }
  .t2-procta { padding: 56px 24px !important; }
  .t2-procta__num { font-size: clamp(4rem, 18vw, 7rem) !important; }
}

@media (max-width: 540px) {
  .t2-hero__float--avail,
  .t2-hero__float--rating { font-size: 0.78rem; padding: 8px 14px; }
  .t2-hero__float--rating { max-width: 220px; }
  .t-footer__cta-inner { flex-direction: column; align-items: flex-start; }
}

/* ─── Loose anchor scroll offset for sticky header ────────── */
html { scroll-padding-top: 90px; }

/* ═════════════════════════════════════════════════════════════════
   v1.4.0 ADDITIONS — images on bare sections, dark CTA backgrounds
   All overlays use rgba(var(--primary-rgb), X) so they adapt to palette
   ═════════════════════════════════════════════════════════════════ */

/* ─── Big editorial promise with side image collage ────────── */
.t2-promise {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
  text-align: left;
}
.t2-promise__body { max-width: 720px; }
.t2-promise__pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }

/* Image collage — main + alt + floating stat */
.t2-promise__visual {
  position: relative;
  aspect-ratio: 1/1.1;
  max-width: 460px;
  width: 100%;
  margin-left: auto;
}
.t2-promise__photo {
  position: absolute;
  background-size: cover;
  background-position: center;
  background-color: var(--surface-2);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}
.t2-promise__photo--main {
  top: 0;
  right: 0;
  width: 70%;
  height: 78%;
  transform: rotate(2deg);
  z-index: 1;
}
.t2-promise__photo--alt {
  bottom: 0;
  left: 0;
  width: 55%;
  height: 55%;
  transform: rotate(-3deg);
  z-index: 2;
  border: 8px solid var(--bg);
}
.t2-promise__stat {
  position: absolute;
  bottom: 12%;
  right: -12px;
  z-index: 3;
  background: var(--primary);
  color: var(--bg);
  padding: 18px 22px;
  border-radius: var(--r-lg);
  text-align: center;
  transform: rotate(3deg);
  box-shadow: var(--shadow-md);
}
.t2-promise__stat-num {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.t2-promise__stat-num span { color: var(--bg); }
.t2-promise__stat-label {
  font-size: 0.78rem;
  color: rgba(var(--bg-rgb), 0.85);
  margin-top: 4px;
}

@media (max-width: 880px) {
  .t2-promise { grid-template-columns: 1fr; gap: 48px; }
  .t2-promise__visual { max-width: 100%; aspect-ratio: 1.4/1; margin: 0 auto; }
  .t2-promise__photo--main { width: 60%; height: 90%; }
  .t2-promise__photo--alt { width: 45%; height: 70%; }
}
@media (max-width: 540px) {
  .t2-promise__visual { aspect-ratio: 1.1/1; }
  .t2-promise__stat { padding: 12px 16px; }
  .t2-promise__stat-num { font-size: 1.5rem; }
}

/* ─── Anxiety feature card (now with bg image) ─────────────── */
.t2-bento__card--feature {
  background-color: var(--primary) !important; /* fallback while image loads */
  border-color: transparent;
  position: relative;
  overflow: hidden;
}
.t2-bento__card--feature .t2-bento__card-title,
.t2-bento__card--feature .t2-bento__card-body,
.t2-bento__card--feature .t2-bento__arrow,
.t2-bento__card--feature .t2-bento__chip {
  position: relative;
  z-index: 2;
}
.t2-bento__card--feature:hover {
  filter: brightness(1.08);
}

/* ─── Featured pull-quote with full bleed bg image ────────── */
.t2-section--quote-feature {
  background: var(--primary);
  padding: 0 !important;
}
.t2-pullquote {
  max-width: none;
  margin: 0;
  text-align: center;
  padding: 100px 24px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
}
.t2-pullquote > * { position: relative; z-index: 2; }
.t2-pullquote__quote,
.t2-pullquote__by {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── DARK CTA with background images ──────────────────────── */
.t2-section--dark-img {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.t2-section--dark-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(var(--primary-rgb), 0.94) 0%,
    rgba(var(--primary-rgb), 0.84) 100%
  );
  z-index: 0;
  pointer-events: none;
}
.t2-section--dark-img > .elementor-container {
  position: relative;
  z-index: 1;
}

/* Each page's CTA gets its own background photo, layered with palette-aware overlay */
.t2-section--dark-img--welcome {
  background-image: url('https://images.unsplash.com/photo-1604881991720-f91add269bed?w=1800&q=85&auto=format&fit=crop');
}
.t2-section--dark-img--about {
  background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1800&q=85&auto=format&fit=crop');
}
.t2-section--dark-img--services {
  background-image: url('https://images.unsplash.com/photo-1499002238440-d264edd596ec?w=1800&q=85&auto=format&fit=crop');
}
.t2-section--dark-img--pricing {
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1800&q=85&auto=format&fit=crop');
}

/* ─── Services: what-to-expect with side image ─────────────── */
.t2-expect { max-width: 1180px; margin: 0 auto; }
.t2-expect__head { margin-bottom: 56px; max-width: 720px; }
.t2-expect__layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.t2-expect__media {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--surface-2);
  border-radius: var(--r-xl);
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-md);
}
.t2-expect__cols {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 0;
}
.t2-expect__cols > div {
  padding: 0;
}
.t2-expect__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: 14px;
}
.t2-expect__chip i { font-size: 0.9em; }
.t2-expect__cols p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 1em;
}
.t2-expect__cols p:last-child { color: var(--text-muted); margin-bottom: 0; }
@media (max-width: 880px) {
  .t2-expect__layout { grid-template-columns: 1fr; gap: 32px; }
  .t2-expect__media { position: relative; top: 0; aspect-ratio: 4/3; }
}

/* ─── Make sure dark CTA content sits above the overlay ───── */
.t2-section--dark .t2-procta,
.t2-section--dark-img .t2-procta { position: relative; z-index: 2; }


/* ═════════════════════════════════════════════════════════════════
   v1.5.0 — PLUGIN COMPATIBILITY OVERRIDES
   Aggressive overrides that force the gototherapy plugin to follow
   the theme palette, even where the plugin uses !important.
   Targeted at body[class*="palette-"] for high specificity.
   ═════════════════════════════════════════════════════════════════ */

/* Search form submit button — every variant. */
body[class*="palette-"] .gt-search__submit,
body[class*="palette-"] .gt-search--hero .gt-search__submit,
body[class*="palette-"] .gt-search--compact .gt-search__submit,
body[class*="palette-"] .gt-search--card .gt-search__submit {
  background: var(--accent) !important;
  color: var(--bg) !important;
  border-color: var(--accent) !important;
  box-shadow: 0 6px 18px rgba(var(--accent-rgb), 0.30) !important;
}
body[class*="palette-"] .gt-search__submit:hover,
body[class*="palette-"] .gt-search--hero .gt-search__submit:hover,
body[class*="palette-"] .gt-search--compact .gt-search__submit:hover,
body[class*="palette-"] .gt-search--card .gt-search__submit:hover {
  background: var(--primary) !important;
  color: var(--bg) !important;
  border-color: var(--primary) !important;
}

/* Active state pills + format buttons */
body[class*="palette-"] .gt-search__format-btn.is-active,
body[class*="palette-"] .gt-search__pill.is-active {
  background: var(--accent) !important;
  color: var(--bg) !important;
  border-color: var(--accent) !important;
}
body[class*="palette-"] .gt-search--hero .gt-search__pill.is-active {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: var(--bg) !important;
}

/* Hover ring on format buttons */
body[class*="palette-"] .gt-search__format-btn:hover {
  border-color: var(--accent) !important;
}

/* Geolocate "Use my location" small button — uses gold by default */
body[class*="palette-"] .gt-search__geolocate {
  color: var(--accent) !important;
  border-color: rgba(var(--accent-rgb), 0.3) !important;
}
body[class*="palette-"] .gt-search__geolocate:hover {
  background: var(--accent-soft) !important;
}

/* Counsellor card hover accent — make sure outline/border matches palette */
body[class*="palette-"] .gt-card:hover,
body[class*="palette-"] .gt-counselor-card:hover {
  border-color: var(--accent) !important;
}

/* Schedule grid filled slots — currently teal by default */
body[class*="palette-"] .gt-schedule__cell--available,
body[class*="palette-"] .gt-schedule__cell.is-available {
  background: var(--accent) !important;
  color: var(--bg) !important;
}

/* Counsellor profile CTA buttons */
body[class*="palette-"] .gt-counselor__cta-btn,
body[class*="palette-"] .gt-card__cta,
body[class*="palette-"] .gt-button--primary {
  background: var(--accent) !important;
  color: var(--bg) !important;
  border-color: var(--accent) !important;
}
body[class*="palette-"] .gt-counselor__cta-btn:hover,
body[class*="palette-"] .gt-card__cta:hover,
body[class*="palette-"] .gt-button--primary:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

/* Counsellor profile credential / availability badges */
body[class*="palette-"] .gt-counselor__badge,
body[class*="palette-"] .gt-card__badge {
  background: var(--accent-soft) !important;
  color: var(--primary) !important;
  border-color: rgba(var(--accent-rgb), 0.3) !important;
}

/* Counsellor avatar ring */
body[class*="palette-"] .gt-counselor__avatar,
body[class*="palette-"] .gt-card__avatar {
  border-color: var(--accent) !important;
}

/* Search heading accent dot/span */
body[class*="palette-"] .gt-search__label span {
  color: var(--accent) !important;
}

/* Result filter chips */
body[class*="palette-"] .gt-filter-chip.is-active,
body[class*="palette-"] .gt-results__chip.is-active {
  background: var(--accent) !important;
  color: var(--bg) !important;
  border-color: var(--accent) !important;
}

/* Pagination active state */
body[class*="palette-"] .gt-pagination__item.is-active,
body[class*="palette-"] .gt-pagination__item--current {
  background: var(--accent) !important;
  color: var(--bg) !important;
  border-color: var(--accent) !important;
}

