/* ═══════════════════════════════════════════════════
   BELIEVE THERAPY & COACHING — Global Stylesheet
   Aristole Web Design · aristole.co
   Version: 1.0 · June 2026
═══════════════════════════════════════════════════ */

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

/* ─── DESIGN TOKENS ─── */
:root {
  /* Forest Canopy + Desert Rose palette */
  --forest:       #2A5C45;   /* emerald — primary brand accent */
  --forest-dark:  #1F4634;   /* deep emerald — hovers, CTA bands */
  --sage:         #3E7A5A;   /* mid emerald */
  --olive:        #2A5C45;   /* emerald — eyebrows, italics */
  --olive-mid:    #6B9E85;   /* soft emerald — muted labels */
  --ivory:        #faf9f6;
  --sand:         #F2EDE3;
  --sand-deep:    #E8DDD0;
  --clay:         #b87d6d;
  --dusty:        #d4a5a5;
  --ink:          #1e2019;
  --bark:         #3d3a30;
  --stone:        #6b6860;
  --mist:         #a8a59e;
  --white:        #ffffff;
  /* Aliases */
  --teal:         #2A5C45;
  --teal-dark:    #1F4634;
  --beige:        #F2EDE3;
  --beige-deep:   #E8DDD0;
  --slate:        #6b6860;
  --gold:         #c9a96e;
  --terracotta:      #B85C3A;   /* terracotta — strategic pop on CTAs/key accents */
  --terracotta-dark: #9E4A2C;
  /* Typography */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
  /* Layout */
  --nav-h: 76px;
  --ease:  cubic-bezier(.4,0,.2,1);
}

/* ─── BASE ─── */
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); font-weight: 300; background: var(--ivory); color: var(--ink); line-height: 1.75; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; object-fit: cover; }

/* ─── GOOGLE FONTS — include this link in every page <head> ───
   <link rel="preconnect" href="https://fonts.googleapis.com">
   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
   <link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap" rel="stylesheet">
─── */

/* ═══════════════════════════════════════
   UTILITIES
═══════════════════════════════════════ */

.eyebrow {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--olive);
  display: block;
}

.serif-headline {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.18;
  color: var(--ink);
}
.serif-headline em { font-style: italic; font-weight: 300; color: var(--olive); }

.body-copy { font-size: 14.5px; color: var(--stone); line-height: 1.85; font-weight: 300; }

.section-pad { padding: 88px 0; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 44px; }
.section-wrap { position: relative; }

.section-header-center { text-align: center; margin-bottom: 52px; }
.section-header-center .eyebrow { margin-bottom: 12px; }
.section-header-center .serif-headline { font-size: clamp(1.9rem,3vw,2.6rem); }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 10.5px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; cursor: pointer;
  transition: all .28s var(--ease); border: 1.5px solid transparent;
  padding: 14px 30px; gap: 8px;
  border-radius: 6px;
}
.btn-primary { background: var(--terracotta); color: var(--white); border-color: var(--terracotta); }
.btn-primary:hover { background: var(--terracotta-dark); border-color: var(--terracotta-dark); }
.btn-outline { background: transparent; color: var(--bark); border-color: var(--bark); }
.btn-outline:hover { background: var(--bark); color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-ghost:hover { background: var(--white); color: var(--forest); border-color: var(--white); }
.btn-hero-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.55); }
.btn-hero-outline:hover { background: var(--white); color: var(--forest); border-color: var(--white); }
/* Smaller pill for nav */
.nav-cta { padding: 9px 20px !important; font-size: 10px !important; white-space: nowrap; }

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */

nav {
  position: sticky; top: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(250,249,246,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(93,102,69,.1);
  display: flex; align-items: center;
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: 100%; max-width: 100%; margin: 0 auto; padding: 0 clamp(28px, 4vw, 64px);
}

/* Logo */
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 120px; width: auto; min-width: 136px; display: block; object-fit: contain; }

/* Centered links */
.nav-links {
  display: flex; align-items: center; justify-content: center;
  gap: 0; list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; justify-content: center;
  height: var(--nav-h);
  padding: 0 16px;
  font-size: 12px; font-weight: 400; letter-spacing: .1em; text-transform: uppercase;
  color: var(--stone);
  white-space: nowrap;
  transition: color .2s var(--ease);
  position: relative;
}
.nav-links > li > a::after {
  content: '';
  position: absolute; bottom: 0; left: 16px; right: 16px;
  height: 2px; background: var(--olive);
  transform: scaleX(0); transform-origin: center;
  transition: transform .25s var(--ease);
}
.nav-links > li > a:hover { color: var(--olive); }
.nav-links > li > a:hover::after { transform: scaleX(1); }
.nav-links > li.active > a { color: var(--forest); }
.nav-links > li.active > a::after { transform: scaleX(1); background: var(--forest); }
/* Veterans standalone tab */
.nav-links > li.veterans > a { color: var(--forest); font-weight: 500; }
.nav-links > li.veterans > a::after { background: var(--forest); }

/* Dropdowns */
.nav-dropdown > a { gap: 4px; }
.nav-dropdown > a::after { display: none; }
.nav-dropdown > a::before {
  content: '';
  position: absolute; bottom: 0; left: 16px; right: 16px;
  height: 2px; background: var(--olive);
  transform: scaleX(0); transform-origin: center;
  transition: transform .25s var(--ease);
}
.nav-dropdown:hover > a::before { transform: scaleX(1); }
.nav-dropdown:hover > a { color: var(--olive); }
.chevron { width: 8px; height: 8px; flex-shrink: 0; transition: transform .2s; }
.nav-dropdown:hover .chevron { transform: rotate(180deg); }

.dropdown-menu {
  display: none; opacity: 0;
  position: absolute; top: calc(var(--nav-h) - 1px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid rgba(93,102,69,.14);
  min-width: 248px; padding: 10px 0;
  box-shadow: 0 12px 40px rgba(30,32,25,.1);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.nav-dropdown:hover .dropdown-menu {
  display: block; opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block; padding: 10px 22px;
  font-size: 10.5px; letter-spacing: .07em; text-transform: uppercase;
  color: var(--stone); font-weight: 300;
  transition: background .15s, color .15s, padding-left .15s;
}
.dropdown-menu a:hover { background: var(--sand); color: var(--forest); padding-left: 28px; }

/* Nav right — language + CTA */
.nav-right { display: flex; align-items: center; gap: 12px; justify-self: end; white-space: nowrap; }
/* EN/FR toggle hidden until French site launches — re-enable by removing the two display:none lines below */
.lang-pair { display: none !important; gap: 6px; }
.footer-lang .lang-btn { display: none !important; }
.lang-btn {
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 11px; border: 1px solid rgba(93,102,69,.25);
  color: var(--stone); cursor: pointer; background: transparent;
  font-family: var(--sans); font-weight: 400;
  transition: all .2s; border-radius: 6px;
}
.lang-btn.active { border-color: var(--forest); color: var(--forest); font-weight: 500; }
.lang-btn:hover:not(.active) { border-color: var(--sage); color: var(--sage); }

/* ═══════════════════════════════════════
   HAMBURGER & MOBILE MENU
═══════════════════════════════════════ */

.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: transparent; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); border-radius: 2px;
  transition: all .28s var(--ease); transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 300;
}
.mobile-menu.open { display: flex; }
.mobile-menu-inner {
  position: absolute; top: 0; right: 0;
  width: min(360px, 90vw); height: 100%;
  background: var(--ivory);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(30,32,25,.18);
  animation: slideIn .32s var(--ease) both;
  overflow-y: auto;
}
@keyframes slideIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
.mobile-menu-backdrop {
  position: absolute; inset: 0;
  background: rgba(30,32,25,.45);
  animation: fadeInBg .3s var(--ease) both;
}
@keyframes fadeInBg { from { opacity: 0; } to { opacity: 1; } }

.mobile-menu-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid rgba(93,102,69,.12);
  background: var(--white);
}
.mobile-close {
  background: transparent; border: none; cursor: pointer;
  font-size: 18px; color: var(--stone); padding: 4px 8px;
  line-height: 1; transition: color .2s;
}
.mobile-close:hover { color: var(--ink); }

.mobile-nav {
  flex: 1; display: flex; flex-direction: column;
  padding: 16px 0;
}
.mobile-nav > a {
  display: block; padding: 14px 28px;
  font-size: 12px; font-weight: 400; letter-spacing: .1em; text-transform: uppercase;
  color: var(--bark); border-bottom: 1px solid rgba(93,102,69,.08);
  transition: background .15s, color .15s;
}
.mobile-nav > a:hover { background: var(--sand); color: var(--forest); }

.mobile-accordion { border-bottom: 1px solid rgba(93,102,69,.08); }
.mobile-acc-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 14px 28px;
  font-family: var(--sans); font-size: 12px; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--bark); background: transparent; border: none; cursor: pointer;
  transition: color .15s;
}
.mobile-acc-btn svg { transition: transform .25s var(--ease); flex-shrink: 0; }
.mobile-acc-btn.open { color: var(--forest); }
.mobile-acc-btn.open svg { transform: rotate(180deg); }
.mobile-acc-body { display: none; background: var(--sand); padding: 8px 0; }
.mobile-acc-body.open { display: block; }
.mobile-acc-body a {
  display: block; padding: 11px 28px 11px 38px;
  font-size: 11.5px; color: var(--stone); letter-spacing: .05em;
  transition: color .15s;
}
.mobile-acc-body a:hover { color: var(--forest); }

.mobile-menu-footer {
  padding: 24px 24px 32px;
  border-top: 1px solid rgba(93,102,69,.12);
  background: var(--white);
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */

#hero {
  position: relative;
  min-height: calc(92vh - var(--nav-h));
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(145deg, #dfd6c8 0%, #cec3b0 100%);
  display: flex; align-items: center; justify-content: center;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    #EDE8DC 0%,
    #EDE8DC 30%,
    rgba(237,232,220,.85) 42%,
    rgba(237,232,220,.40) 58%,
    rgba(237,232,220,.0) 75%
  );
}
.hero-left {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px 80px 80px;
  max-width: 680px;
}
.hero-eyebrow { margin-bottom: 20px; color: rgba(61,58,48,.65); }
.hero-headline {
  font-size: clamp(2.5rem, 4.2vw, 3.75rem);
  margin-bottom: 22px; color: var(--ink);
}
.hero-headline em { color: var(--forest-dark); }
.hero-sub {
  font-size: 15px; color: rgba(61,58,48,.75); max-width: 460px;
  line-height: 1.8; margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 14px; }
.hero-right { display: none; }
.hero-deco { display: none; }

/* ─── PAGE LOAD ANIMATION ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-left > * { animation: fadeUp .7s var(--ease) both; }
.hero-eyebrow   { animation-delay: .1s; }
.hero-headline  { animation-delay: .22s; }
.hero-sub       { animation-delay: .34s; }
.hero-ctas      { animation-delay: .46s; }

/* ─── IMAGE PLACEHOLDERS (swap with real photos after shoot) ─── */
.img-placeholder { width: 100%; height: 100%; min-height: 520px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; }
.img-placeholder.sand-tone   { background: linear-gradient(145deg, #dfd6c8 0%, #cec3b0 100%); }
.img-placeholder.sage-tone   { background: linear-gradient(145deg, #c8cfb8 0%, #b5bea4 100%); }
.img-placeholder.forest-tone { background: linear-gradient(145deg, #b4bda3 0%, #9da890 100%); }
.img-placeholder span { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: rgba(61,58,48,.45); font-weight: 400; }
.placeholder-icon { width: 36px; height: 36px; opacity: .3; }

/* ═══════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════ */

#trust-bar { background: var(--forest-dark); padding: 15px 0; }
.trust-inner { display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap; }
.trust-item { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.8); font-weight: 400; }
.trust-dot { color: rgba(255,255,255,.3); font-size: 12px; }

/* ═══════════════════════════════════════
   AUTOPILOT BANNER
═══════════════════════════════════════ */

.autopilot-bar { background: var(--forest-dark); padding: 22px 0; }
.autopilot-inner { display: flex; justify-content: center; align-items: center; }
.autopilot-text {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 300; font-style: normal;
  letter-spacing: .01em;
  color: rgba(255,255,255,.9);
  text-align: center; line-height: 1.5;
}

/* ═══════════════════════════════════════
   ABOUT / FOUNDER
═══════════════════════════════════════ */

#about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 400px 1fr; gap: 80px; align-items: center; }
.about-img { aspect-ratio: 3/4; overflow: hidden; position: relative; }
.about-img-inner { width: 100%; height: 100%; }
.about-img::before {
  content: ''; position: absolute;
  top: -12px; left: -12px; right: 12px; bottom: 12px;
  border: 1px solid rgba(93,102,69,.18); z-index: 0;
  pointer-events: none;
}
.about-content .eyebrow { margin-bottom: 16px; }
.about-headline { font-size: clamp(1.9rem,3vw,2.6rem); margin-bottom: 22px; }
.about-creds {
  margin: 22px 0 30px;
  font-size: 11.5px; color: var(--mist); letter-spacing: .04em;
  line-height: 1.7; font-weight: 400; font-style: italic;
  padding-left: 14px; border-left: 2px solid rgba(93,102,69,.2);
}
.about-short-bio {
  margin-top: 40px; padding-top: 32px;
  border-top: 1px solid rgba(127,123,97,.14);
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.about-short-bio p { font-size: 13.5px; color: var(--stone); line-height: 1.85; font-weight: 300; }

/* ═══════════════════════════════════════
   WHO WE HELP
═══════════════════════════════════════ */

#who { background: var(--sand); padding: 52px 0; }
.who-row { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.who-chips { display: flex; gap: 10px; flex-wrap: wrap; flex: 1; }
.who-chip {
  padding: 9px 18px;
  background: var(--white); border: 1px solid rgba(93,102,69,.22);
  font-size: 11px; font-weight: 400; color: var(--stone);
  letter-spacing: .07em; cursor: pointer;
  transition: all .22s var(--ease);
}
.who-chip:hover { background: var(--forest); color: var(--white); border-color: var(--forest); transform: translateY(-1px); }
.who-langs { display: flex; flex-direction: column; gap: 3px; flex-shrink: 0; padding-left: 28px; border-left: 1px solid rgba(93,102,69,.18); }
.who-langs-label { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--mist); font-weight: 500; }
.who-langs-list { font-size: 12px; color: var(--stone); letter-spacing: .04em; font-weight: 300; }

/* ═══════════════════════════════════════
   CONDITIONS / AREAS WE HELP WITH
═══════════════════════════════════════ */

#conditions { background: var(--white); }
.conditions-intro { max-width: 540px; margin-bottom: 52px; }
.conditions-headline { font-size: clamp(1.9rem,3vw,2.6rem); margin-top: 14px; }
.conditions-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(93,102,69,.12);
}
.condition-cell {
  padding: 24px 20px;
  border-right: 1px solid rgba(93,102,69,.1);
  border-bottom: 1px solid rgba(93,102,69,.1);
  cursor: pointer; transition: background .2s;
  position: relative; overflow: hidden;
}
.condition-cell:nth-child(5n) { border-right: none; }
.condition-cell:nth-last-child(-n+5) { border-bottom: none; }
.condition-cell::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--olive); transition: width .3s var(--ease);
}
.condition-cell:hover { background: var(--sand); }
.condition-cell:hover::before { width: 100%; }
.condition-title { font-family: var(--serif); font-size: 16.5px; font-weight: 400; color: var(--ink); margin-bottom: 4px; }
.condition-sub { font-size: 10.5px; color: var(--mist); letter-spacing: .04em; line-height: 1.5; }
.condition-arrow { font-size: 10px; color: var(--olive); margin-top: 10px; display: block; opacity: 0; transition: opacity .2s; }
.condition-cell:hover .condition-arrow { opacity: 1; }

/* Specialties sub-section */
.specialties-sub { margin-top: 52px; padding-top: 44px; border-top: 1px solid rgba(127,123,97,.12); }
.specialties-sub .eyebrow { display: block; margin-bottom: 20px; }
.specialties-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.spec-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  background: var(--white);
  border: 1px solid rgba(127,123,97,.18);
  font-size: 12px; font-weight: 400; color: var(--bark);
  letter-spacing: .04em; cursor: pointer;
  border-radius: 6px;
  transition: all .22s var(--ease);
}
.spec-tag::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--forest); flex-shrink: 0;
  transition: transform .22s var(--ease);
}
.spec-tag:hover { background: var(--forest); color: var(--white); border-color: var(--forest); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(127,123,97,.2); }
.spec-tag:hover::before { background: var(--white); transform: scale(1.3); }

/* ═══════════════════════════════════════
   SERVICES CARDS
═══════════════════════════════════════ */

#services { background: var(--sand); }
.services-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(93,102,69,.15); gap: 0; margin-bottom: 36px;
}
.service-card {
  background: var(--white); padding: 34px 22px 28px;
  border-right: 1px solid rgba(93,102,69,.12);
  display: flex; flex-direction: column; gap: 14px;
  cursor: pointer; transition: background .22s, transform .22s;
  position: relative;
}
.service-card:last-child { border-right: none; }
.service-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; width: 100%; height: 3px;
  background: var(--forest); transform: scaleX(0);
  transform-origin: left; transition: transform .3s var(--ease);
}
.service-card:hover { background: var(--ivory); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { width: 34px; height: 34px; color: var(--olive); }
.svc-title { font-family: var(--serif); font-size: 18px; font-weight: 400; color: var(--ink); line-height: 1.3; }
.svc-body { font-size: 12.5px; color: var(--stone); line-height: 1.72; flex: 1; }
.svc-link { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--olive); font-weight: 500; display: flex; align-items: center; gap: 7px; transition: gap .2s; }
.service-card:hover .svc-link { gap: 11px; }
.svc-link::after { content: '→'; }
.services-cta { text-align: center; }

/* ═══════════════════════════════════════
   APPROACH
═══════════════════════════════════════ */

#approach { background: var(--white); }
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.approach-img { aspect-ratio: 5/6; overflow: hidden; position: relative; }
.approach-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; padding-top: 36px; border-top: 1px solid rgba(93,102,69,.12); }
.pillar { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.pillar-icon { width: 30px; height: 30px; color: var(--olive); }
.pillar-label { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--stone); line-height: 1.5; }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */

#testimonials { background: var(--sand); }

.testimonials-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.testimonials-slider {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.testimonials-track {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: nowrap;
  transition: transform 0.4s ease;
  will-change: transform;
}
.tcard {
  background: var(--white); padding: 38px 30px;
  border: 1px solid rgba(93,102,69,.1);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  flex: 0 0 calc(33.333% - 14px);
  min-width: calc(33.333% - 14px);
  height: auto;
  align-self: flex-start;
}
.tcard:hover { box-shadow: 0 8px 32px rgba(45,74,43,.08); transform: translateY(-3px); }
.tcard::before {
  content: '\201C';
  font-family: var(--serif); font-size: 80px; font-weight: 300;
  color: var(--sand-deep); line-height: .75;
  position: absolute; top: 20px; right: 24px;
}
.tcard-text { font-family: var(--serif); font-size: 17px; font-weight: 300; font-style: italic; color: var(--bark); line-height: 1.65; margin-bottom: 24px; }
.tcard-foot { border-top: 1px solid rgba(93,102,69,.1); padding-top: 16px; }
.tcard-author { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); }
.tcard-source { font-size: 10px; color: var(--olive-mid); margin-top: 3px; }

.slider-prev, .slider-next {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(127,123,97,.35);
  background: rgba(242,237,227,.8);
  color: var(--forest);
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, color .2s;
  line-height: 1;
}
.slider-prev:hover, .slider-next:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}

.slider-dots { display: flex; justify-content: center; gap: 8px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sand-deep); cursor: pointer; transition: background .2s, transform .2s; }
.dot.active { background: var(--forest); transform: scale(1.3); }

/* ═══════════════════════════════════════
   PROCESS — 3 STEPS
═══════════════════════════════════════ */

#process { background: var(--ivory); }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; position: relative; }
.process-steps::before {
  content: ''; position: absolute;
  top: 26px; left: calc(16.67% + 16px); right: calc(16.67% + 16px);
  height: 1px; background: rgba(93,102,69,.18);
}
.pstep { text-align: center; }
.step-circle {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1.5px solid var(--olive);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-family: var(--serif); font-size: 21px; font-weight: 400;
  color: var(--forest); background: var(--ivory); position: relative; z-index: 1;
  transition: background .25s, color .25s;
}
.pstep:hover .step-circle { background: var(--forest); color: var(--white); border-color: var(--forest); }
.step-title { font-family: var(--serif); font-size: 19px; font-weight: 400; color: var(--ink); margin-bottom: 10px; }
.step-body { font-size: 13.5px; color: var(--stone); line-height: 1.78; }

/* ═══════════════════════════════════════
   COACHING SECTION
═══════════════════════════════════════ */

#coaching { background: var(--sand); position: relative; overflow: hidden; }
#coaching .container { position: relative; z-index: 1; }
.coaching-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48%;
  max-width: 624px;
  height: auto;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to left, black 55%, transparent 100%),
                      linear-gradient(to top, black 70%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to left, black 55%, transparent 100%),
              linear-gradient(to top, black 70%, transparent 100%);
  mask-composite: intersect;
  opacity: 0.9;
}
.coaching-grid { display: grid; grid-template-columns: 1fr 420px; gap: 72px; align-items: start; }
.coaching-content .eyebrow { margin-bottom: 16px; }
.coaching-headline { font-size: clamp(1.8rem,2.8vw,2.4rem); margin-bottom: 22px; }
.coaching-list { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.coaching-item { display: flex; gap: 14px; align-items: flex-start; }
.coaching-bullet { width: 5px; height: 5px; border-radius: 50%; background: var(--olive); margin-top: 9px; flex-shrink: 0; }
.coaching-text { font-size: 13.5px; color: var(--stone); line-height: 1.7; }

/* Coaching form card */
.form-card { background: var(--white); padding: 42px; border: 1px solid rgba(93,102,69,.14); box-shadow: 0 4px 24px rgba(45,74,43,.05); }
.form-card .eyebrow { margin-bottom: 10px; }
.form-title { font-family: var(--serif); font-size: 23px; font-weight: 400; color: var(--ink); margin-bottom: 6px; }
.form-sub { font-size: 12.5px; color: var(--mist); margin-bottom: 26px; line-height: 1.65; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--mist); margin-bottom: 6px; font-weight: 500; }
.field input, .field select {
  width: 100%; padding: 12px 14px;
  border: 1px solid rgba(93,102,69,.2); background: var(--ivory);
  font-family: var(--sans); font-size: 13px; color: var(--ink); font-weight: 300;
  outline: none; transition: border-color .2s; appearance: none;
}
.field input:focus, .field select:focus { border-color: var(--forest); background: var(--white); }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%235C6645' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
  background-color: var(--ivory);
}
.field select:focus { background-color: var(--white); }
.form-submit { margin-top: 24px; }
.form-submit .btn { width: 100%; }

/* Form validation */
.field-error { display: none; font-size: 11px; color: #c0392b; margin-top: 5px; letter-spacing: .03em; }
.field.has-error input,
.field.has-error select { border-color: #c0392b; }
.field.has-error .field-error { display: block; }

/* Form confirmation */
@keyframes confirmIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
#coachingConfirmation { animation: confirmIn .5s var(--ease) both; }
.confirm-icon { margin-bottom: 20px; }
.confirm-icon svg { display: block; margin: 0 auto; }
.confirm-title { font-family: var(--serif); font-size: 28px; font-weight: 400; color: var(--ink); margin-bottom: 12px; }
.confirm-body { font-size: 14px; color: var(--stone); line-height: 1.75; margin-bottom: 8px; }
.confirm-note { font-size: 12px; color: var(--mist); line-height: 1.6; }

/* Spinner */
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════
   TEAM
═══════════════════════════════════════ */

#team { background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
#team .team-grid { grid-template-columns: repeat(3, 1fr); }
.tcard-team { cursor: pointer; }
.team-photo { aspect-ratio: 3/4; overflow: hidden; position: relative; margin-bottom: 18px; }
.team-photo-inner { width: 100%; height: 100%; transition: transform .45s var(--ease); }
.tcard-team:hover .team-photo-inner { transform: scale(1.04); }
.team-name { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--ink); margin-bottom: 3px; }
.team-role { font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--olive-mid); margin-bottom: 10px; line-height: 1.4; }
.team-body { font-size: 12.5px; color: var(--stone); line-height: 1.7; margin-bottom: 14px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.tag {
  font-size: 9px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--forest); border: 1px solid rgba(122,140,101,.25);
  padding: 4px 10px; transition: all .2s;
}
.tcard-team:hover .tag { background: var(--forest); color: var(--white); border-color: var(--forest); }
.team-lang { font-size: 11px; color: var(--mist); }
.virtual-badge {
  font-size: 8.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--olive); border: 1px solid rgba(93,102,69,.35);
  padding: 2px 8px; margin-left: 6px; vertical-align: middle;
}
.team-cta { text-align: center; margin-top: 48px; }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */

#faq { background: var(--sand); padding: 88px 0; }
.faq-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.faq-headline { font-size: clamp(1.9rem,3vw,2.6rem); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
.faq-item { border-bottom: 1px solid rgba(93,102,69,.15); padding: 22px 0; cursor: pointer; }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q-text { font-size: 13.5px; color: var(--ink); font-weight: 400; }
.faq-toggle {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid rgba(93,102,69,.3); display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--olive); font-weight: 300; flex-shrink: 0;
  transition: all .2s; background: transparent;
}
.faq-item.open .faq-toggle { background: var(--forest); border-color: var(--forest); color: var(--white); transform: rotate(45deg); }
.faq-answer { font-size: 13px; color: var(--stone); line-height: 1.8; margin-top: 14px; display: none; }
.faq-item.open .faq-answer { display: block; }

/* ═══════════════════════════════════════
   FINAL CTA SECTION
═══════════════════════════════════════ */

#cta-final {
  padding: 100px 0; text-align: center;
  background: url('/images/Footer_Image.jpg') center center / cover no-repeat;
  position: relative; overflow: hidden;
}
#cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,  var(--ink) 0%, transparent 22%, transparent 78%, var(--ink) 100%),
    linear-gradient(to bottom, rgba(12,10,8,.62) 0%, rgba(12,10,8,.52) 100%);
}
.cta-eyebrow { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 18px; font-weight: 400; position: relative; }
.cta-headline { font-family: var(--serif); font-size: clamp(2.2rem,4.5vw,3.4rem); font-weight: 300; font-style: italic; color: var(--white); margin-bottom: 38px; line-height: 1.2; position: relative; }
.cta-final-btn { position: relative; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */

footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 64px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.2fr; gap: 52px; margin-bottom: 52px; }
.footer-brand-name { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--white); letter-spacing: .08em; margin-bottom: 4px; }
.footer-brand-sub { font-size: 9px; letter-spacing: .26em; text-transform: uppercase; color: var(--sage); margin-bottom: 22px; }
.footer-about { font-size: 12.5px; line-height: 1.75; color: rgba(255,255,255,.45); max-width: 260px; }
.footer-col h4 { font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 20px; font-weight: 400; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 12.5px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact p { font-size: 12.5px; color: rgba(255,255,255,.5); margin-bottom: 9px; line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,.25); letter-spacing: .04em; }
.footer-lang { display: flex; gap: 8px; align-items: center; }
.footer-lang .lang-btn { border-color: rgba(255,255,255,.18); color: rgba(255,255,255,.4); }
.footer-lang .lang-btn.active { border-color: rgba(255,255,255,.5); color: var(--white); }

/* ═══════════════════════════════════════
   INTERIOR PAGE — SERVICE PAGE LAYOUT
   (Used on all service and content pages)
═══════════════════════════════════════ */

.page-hero {
  background: var(--forest-dark); padding: 80px 0 72px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 30% 50%, rgba(125,132,113,.15) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 2; max-width: 760px; }
.page-hero .eyebrow { color: rgba(255,255,255,.5); margin-bottom: 14px; }
.page-hero-headline { font-family: var(--serif); font-size: clamp(2.2rem,4vw,3.2rem); font-weight: 400; color: var(--white); line-height: 1.2; margin-bottom: 20px; }
.page-hero-sub { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.8; max-width: 580px; }

.page-body { background: var(--ivory); padding: 80px 0; }
.page-body .container { display: grid; grid-template-columns: 1fr 340px; gap: 80px; align-items: start; }
.page-content h2 { font-family: var(--serif); font-size: clamp(1.6rem,2.5vw,2.1rem); font-weight: 400; color: var(--ink); margin: 44px 0 18px; line-height: 1.25; }
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; color: var(--ink); margin: 32px 0 14px; }
.page-content p { font-size: 14.5px; color: var(--stone); line-height: 1.85; margin-bottom: 18px; }
.page-content ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.page-content ul li { font-size: 14px; color: var(--stone); padding-left: 18px; position: relative; line-height: 1.7; }
.page-content ul li::before { content: '—'; position: absolute; left: 0; color: var(--olive); font-weight: 300; }

/* Sidebar CTA card */
.page-sidebar-card {
  background: var(--white); border: 1px solid rgba(93,102,69,.14);
  padding: 36px 28px; position: sticky; top: calc(var(--nav-h) + 24px);
  box-shadow: 0 4px 24px rgba(45,74,43,.05);
}
.page-sidebar-card .eyebrow { margin-bottom: 10px; }
.sidebar-title { font-family: var(--serif); font-size: 21px; font-weight: 400; color: var(--ink); margin-bottom: 12px; }
.sidebar-body { font-size: 13px; color: var(--stone); line-height: 1.75; margin-bottom: 24px; }
.sidebar-details { margin-bottom: 24px; }
.sidebar-detail { display: flex; gap: 10px; align-items: flex-start; font-size: 12px; color: var(--stone); margin-bottom: 10px; }
.sidebar-detail-label { font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: var(--mist); display: block; margin-bottom: 2px; }
.sidebar-card-btn { width: 100%; }

/* Interior FAQ (service page accordion) */
.interior-faq { margin-top: 52px; padding-top: 44px; border-top: 1px solid rgba(93,102,69,.12); }
.interior-faq .faq-item { border-bottom: 1px solid rgba(93,102,69,.12); }
.interior-faq-title { font-family: var(--serif); font-size: clamp(1.5rem,2.5vw,1.9rem); font-weight: 400; color: var(--ink); margin-bottom: 28px; }

/* ═══════════════════════════════════════
   FEES PAGE — TABLE
═══════════════════════════════════════ */

.fees-table { width: 100%; border-collapse: collapse; margin-bottom: 40px; }
.fees-table th { font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--mist); font-weight: 400; padding: 12px 16px; text-align: left; border-bottom: 1px solid rgba(93,102,69,.2); }
.fees-table td { font-size: 13.5px; color: var(--stone); padding: 16px 16px; border-bottom: 1px solid rgba(93,102,69,.1); }
.fees-table tr:last-child td { border-bottom: none; }
.fees-table td:last-child { font-weight: 400; color: var(--ink); }
.fees-section-title { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--ink); margin: 48px 0 20px; }
.fees-note { font-size: 11.5px; color: var(--mist); font-style: italic; margin-top: -24px; margin-bottom: 36px; }

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info-item { margin-bottom: 28px; }
.contact-info-label { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--mist); margin-bottom: 6px; }
.contact-info-value { font-size: 14.5px; color: var(--stone); line-height: 1.6; }
.emergency-box { background: var(--sand); border-left: 3px solid var(--clay); padding: 20px 24px; margin-top: 36px; }
.emergency-box p { font-size: 13px; color: var(--stone); line-height: 1.75; }

/* ═══════════════════════════════════════
   SECTION LABEL (build reference)
═══════════════════════════════════════ */

.sref {
  position: absolute; top: 10px; right: 10px; z-index: 10;
  font-size: 8.5px; letter-spacing: .14em; text-transform: uppercase;
  background: rgba(122,140,101,.1); color: var(--forest); padding: 3px 9px;
  pointer-events: none; font-weight: 500;
}

/* ═══════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════ */

/* Tablet landscape: 1024px */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .nav-links > li > a { padding: 0 11px; font-size: 10px; }
  .nav-inner { padding: 0 24px; gap: 16px; }
  .about-grid { grid-template-columns: 340px 1fr; gap: 52px; }
  .conditions-grid { grid-template-columns: repeat(4, 1fr); }
  .condition-cell:nth-child(5n) { border-right: 1px solid rgba(93,102,69,.1); }
  .condition-cell:nth-child(4n) { border-right: none; }
  .condition-cell:nth-last-child(-n+5) { border-bottom: 1px solid rgba(93,102,69,.1); }
  .condition-cell:nth-last-child(-n+4) { border-bottom: none; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card:nth-child(3) { border-right: none; }
  .service-card:nth-child(4), .service-card:nth-child(5) { border-top: 1px solid rgba(93,102,69,.12); }
  .service-card:nth-child(5) { border-right: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 36px; }
  .footer-grid > div:last-child { grid-column: 1 / -1; display: flex; gap: 40px; align-items: flex-start; }
  .page-body .container { grid-template-columns: 1fr 300px; gap: 48px; }
}

/* Tablet portrait: 768px */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .container { padding: 0 24px; }
  .section-pad { padding: 52px 0; }
  .coaching-accent { display: none; }

  .nav-links, .nav-right { display: none !important; }
  .hamburger { display: flex; margin-left: auto; }
  .nav-inner { display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }

  #hero { min-height: 70vh; }
  .hero-left { padding: 52px 24px 44px; max-width: 100%; }
  .hero-headline { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-sub { max-width: 100%; }

  .trust-inner { gap: 6px; }
  .trust-dot { display: none; }
  .trust-item { width: 100%; text-align: center; }

  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-img { max-width: 320px; margin: 0 auto; aspect-ratio: 4/3; }
  .about-img::before { display: none; }
  .about-short-bio { grid-template-columns: 1fr; gap: 14px; }

  .who-row { flex-direction: column; align-items: flex-start; gap: 16px; }

  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .condition-cell:nth-child(4n) { border-right: 1px solid rgba(93,102,69,.1); }
  .condition-cell:nth-child(2n) { border-right: none; }
  .condition-cell:nth-last-child(-n+4) { border-bottom: 1px solid rgba(93,102,69,.1); }
  .condition-cell:nth-last-child(-n+2) { border-bottom: none; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid rgba(93,102,69,.12); }
  .service-card:nth-child(2n) { border-right: none; }
  .service-card:last-child { border-bottom: none; }

  .approach-grid { grid-template-columns: 1fr; gap: 40px; }
  .approach-img { aspect-ratio: 16/9; }
  .approach-pillars { grid-template-columns: repeat(3, 1fr); gap: 16px; }

  .process-steps { grid-template-columns: 1fr; gap: 56px; max-width: 460px; margin: 0 auto; }
  .process-steps::before { display: none; }
  .pstep { display: flex; flex-direction: column; gap: 0; text-align: center; align-items: center; }
  .step-circle { margin: 0 auto 28px; flex-shrink: 0; order: 1; }
  .step-title { order: 2; margin-bottom: 24px; font-size: 22px; }
  .step-body { order: 3; max-width: 360px; margin: 0 auto; }

  .coaching-grid { grid-template-columns: 1fr; gap: 40px; }

  .team-grid,
  #team .team-grid { grid-template-columns: 1fr; gap: 20px; }

  .faq-grid { grid-template-columns: 1fr; }
  .faq-top { flex-direction: column; }
  .faq-top .btn { align-self: stretch; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid > div:last-child { flex-direction: column; gap: 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }

  #cta-final { padding: 72px 0; }
  .cta-headline { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  .page-body .container { grid-template-columns: 1fr; }
  .page-sidebar-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* Mobile: 480px */
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .section-pad { padding: 40px 0; }
  .nav-logo-img { height: 84px; }

  .hero-left { padding: 40px 18px 36px; }
  .hero-headline { font-size: clamp(2rem, 9vw, 2.6rem); }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .conditions-grid { grid-template-columns: 1fr; }
  .condition-cell { border-right: none !important; }
  .condition-cell:nth-last-child(n+2) { border-bottom: 1px solid rgba(93,102,69,.1) !important; }
  .condition-cell:last-child { border-bottom: none !important; }
  .condition-arrow { opacity: 1; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; }

  .approach-pillars { grid-template-columns: repeat(3,1fr); gap: 12px; }
  .pillar-label { font-size: 9.5px; }

  .team-grid,
  #team .team-grid { grid-template-columns: 1fr; }

  .form-card { padding: 28px 20px; }

  .footer-about { max-width: 100%; }

  .step-circle { width: 44px; height: 44px; font-size: 18px; }

  #trust-bar { padding: 12px 0; }
  .trust-item { font-size: 9.5px; }

  .page-hero { padding: 56px 0 48px; }
  .page-hero-headline { font-size: clamp(1.9rem, 8vw, 2.6rem); }
}

/* Very small: 360px */
@media (max-width: 360px) {
  .hero-headline { font-size: 1.9rem; }
  .about-headline, .conditions-headline, .faq-headline, .coaching-headline { font-size: 1.7rem; }
  .btn { padding: 13px 22px; font-size: 10px; }
}

/* ═══════════════════════════════════════
   MOBILE / TABLET ENHANCEMENTS
═══════════════════════════════════════ */

/* Prevent horizontal overflow site-wide */
html, body { overflow-x: clip; max-width: 100%; }
img, video, iframe { max-width: 100%; }

/* Tablet & mobile: safer touch targets, no overflow */
@media (max-width: 1024px) {
  .btn { min-height: 44px; padding: 12px 26px; }
  .nav-cta { min-height: 36px; }
  .lang-btn { min-height: 30px; }
}

/* Tablet portrait: 768px enhancements */
@media (max-width: 768px) {
  /* Nav: hamburger always at far right, logo left */
  .nav-inner {
    display: flex !important;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    gap: 12px;
  }
  .nav-logo { align-items: flex-start; }
  .nav-logo-sub { text-align: left; }
  .nav-links, .nav-right { display: none !important; }
  .hamburger { display: flex !important; margin-left: auto; }

  /* Hero: stack column, scale headline, taller-but-not-blank */
  #hero { min-height: auto; }
  .hero-left { padding: 44px 24px 40px; max-width: 100%; }
  .hero-headline { font-size: clamp(1.85rem, 7.5vw, 2.6rem); line-height: 1.2; }
  .hero-sub { font-size: 14.5px; line-height: 1.7; }
  .hero-ctas { flex-direction: row; flex-wrap: wrap; gap: 10px; }

  /* Typography: comfortable on mobile */
  body { line-height: 1.7; }
  .body-copy, .page-content p, .page-content ul li { font-size: 14px; line-height: 1.75; }

  /* Grid collapsing safety net */
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid,
  #team .team-grid { grid-template-columns: 1fr; }
  .tcard-team { min-width: 0; overflow-wrap: break-word; }
  .footer-grid { grid-template-columns: 1fr; }

  /* Approach pillars: keep readable */
  .approach-pillars { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Testimonials: stack vertically on mobile */
  .slider-dots { display: none; }
  .testimonials-slider-wrapper { flex-direction: column; align-items: stretch; }
  .slider-prev, .slider-next { display: none; }
  .testimonials-slider { overflow: visible; }
  .testimonials-track {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 16px;
    transform: none !important;
  }
  .tcard {
    flex: none;
    min-width: 100%;
    width: 100%;
  }

  /* Services: single column stack */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; border-bottom: 1px solid rgba(93,102,69,.12); }
  .service-card:last-child { border-bottom: none; }

  /* Forms: full-width, stacked labels, 44px tap target */
  .field { display: block; margin-bottom: 14px; }
  .field label { display: block; margin-bottom: 6px; }
  .field input, .field select, .field textarea { width: 100%; min-height: 44px; font-size: 16px; }
  .form-submit .btn { width: 100%; min-height: 48px; }

  /* Fees table: horizontal scroll instead of clipping */
  .fees-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
  .fees-table thead, .fees-table tbody, .fees-table tr { display: table; width: 100%; table-layout: fixed; }
  .fees-table td, .fees-table th { white-space: normal; }

  /* Page hero / page body padding */
  .page-hero { padding: 56px 0 48px; }
  .page-body { padding: 52px 0; }
  .page-content h2 { margin: 32px 0 14px; }

  /* Sidebar full width when stacked */
  .page-sidebar-card { padding: 28px 22px; }

  /* Image safety */
  .about-img, .approach-img, .team-photo { max-width: 100%; }
}

/* Mobile: 480px enhancements */
@media (max-width: 480px) {
  /* Nav: even tighter */
  :root { --nav-h: 58px; }
  .nav-logo-mark { font-size: 21px; }
  .nav-logo-sub { font-size: 8px; letter-spacing: .22em; }

  /* Hero CTAs full width */
  .hero-ctas { flex-direction: column; gap: 10px; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; min-height: 48px; }
  .hero-headline { font-size: clamp(1.85rem, 9vw, 2.4rem); }

  /* Buttons fill width on smallest screens */
  .form-submit .btn,
  .sidebar-card-btn,
  .cta-final-btn,
  .services-cta .btn,
  .team-cta .btn { width: 100%; }

  /* All multi-column grids → single column */
  .approach-pillars { grid-template-columns: 1fr; gap: 14px; }
  .team-grid,
  #team .team-grid { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about-short-bio { grid-template-columns: 1fr; }
  .coaching-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  /* Process step circles left aligned */
  .process-steps { grid-template-columns: 1fr; gap: 48px; max-width: 100%; }
  .pstep { display: flex; flex-direction: column; gap: 0; text-align: center; align-items: center; }
  .step-circle { margin: 0 auto 26px; flex-shrink: 0; order: 1; }
  .step-title { order: 2; margin-bottom: 22px; font-size: 21px; }
  .step-body { order: 3; max-width: 320px; margin: 0 auto; }

  /* Footer single column */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid > div:last-child { display: block; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Page hero */
  .page-hero { padding: 44px 0 40px; }
  .page-body { padding: 40px 0; }
  .page-body .container { gap: 32px; }

  /* Form card */
  .form-card { padding: 24px 18px; }

  /* Spec tags / chips smaller padding */
  .spec-tag, .who-chip { font-size: 11.5px; padding: 9px 14px; }

  /* Min readable body */
  body { font-size: 14px; line-height: 1.7; }
  .body-copy, .svc-body, .team-body, .step-body, .faq-answer, .page-content p { font-size: 14px; line-height: 1.7; }

  /* Tap targets */
  a, button, .btn, .lang-btn, .faq-toggle { min-height: 36px; }
  .btn { min-height: 44px; }
}

/* Very small: 360px enhancements */
@media (max-width: 360px) {
  .container { padding: 0 16px; }
  .nav-inner { padding: 0 16px; }
  .hero-left { padding: 36px 16px 32px; }
  .nav-logo-mark { font-size: 19px; }
  .nav-logo-sub { font-size: 7.5px; }
  .form-card { padding: 20px 16px; }
}
