/* ============================================================
   MINDFUL MINDS — style.css  (plain CSS, no preprocessor)
   Breakpoints: mobile <600px | tablet <900px | desktop 900px+
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --ivory:       #FAF7F2;
  --cream:       #F3EDE3;
  --sage:        #8BA888;
  --sage-light:  #B4CBAE;
  --sage-dark:   #5A7A57;
  --forest:      #2C3E2D;
  --rose:        #C49A8A;
  --rose-light:  #E8D0C5;
  --rose-dark:   #9E6A57;
  --sand:        #D4C4A8;
  --charcoal:    #3A3530;
  --mist:        rgba(138,168,136,0.12);
  --font-display:'Cormorant Garamond', serif;
  --font-body:   'Jost', sans-serif;
  --ease:        cubic-bezier(0.25,0.46,0.45,0.94);
  --r-sm: 4px; --r-md: 12px; --r-lg: 24px; --r-xl: 48px;
  --shadow-sm: 0 2px 12px rgba(44,62,45,.08);
  --shadow-md: 0 8px 32px rgba(44,62,45,.13);
  --shadow-lg: 0 20px 60px rgba(44,62,45,.18);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); font-weight: 300; background: var(--ivory); color: var(--charcoal); line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); cursor: pointer; border: none; }
input, select, textarea { font-family: var(--font-body); }

/* ── Typography ───────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage-dark);
}
.display-xl { font-family: var(--font-display); font-size: clamp(3rem,7vw,7rem); font-weight: 300; line-height: 1.05; letter-spacing: -0.02em; }
.display-lg { font-family: var(--font-display); font-size: clamp(2.2rem,5vw,5rem); font-weight: 300; line-height: 1.1; letter-spacing: -0.01em; }
.display-md { font-family: var(--font-display); font-size: clamp(1.7rem,3.5vw,3rem); font-weight: 400; line-height: 1.2; }
.display-sm { font-family: var(--font-display); font-size: clamp(1.3rem,2.5vw,2rem); font-weight: 400; line-height: 1.3; }
.body-lg { font-size: 1.05rem; font-weight: 300; line-height: 1.8; }
.text-center { text-align: center; }
.text-forest { color: var(--forest); }

/* ── Layout ───────────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(1rem,5vw,3.5rem); }
.section-pad { padding: clamp(3.5rem,9vw,8rem) 0; }
.divider { width: 52px; height: 1.5px; background: var(--sage); margin: 1rem 0; }

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(26px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes scaleIn  { from { opacity:0; transform:scale(.94); } to { opacity:1; transform:scale(1); } }
@keyframes float    { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes pulse    { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.4);opacity:.5} }
@keyframes revealUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }

.anim-fade-up  { animation: fadeUp  .8s var(--ease) both; }
.anim-fade-in  { animation: fadeIn  .8s ease both; }
.anim-scale-in { animation: scaleIn .7s var(--ease) both; }
.delay-1 { animation-delay:.15s; }
.delay-2 { animation-delay:.3s; }
.delay-3 { animation-delay:.45s; }
.delay-4 { animation-delay:.6s; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .9rem 2rem; border-radius: var(--r-xl);
  transition: all .35s var(--ease); position: relative; overflow: hidden;
}
.btn::before {
  content:''; position:absolute; inset:0;
  background:rgba(255,255,255,.15);
  transform:scaleX(0); transform-origin:left;
  transition:transform .35s ease;
}
.btn:hover::before { transform:scaleX(1); }
.btn-primary { background:var(--forest); color:var(--ivory); box-shadow:0 4px 20px rgba(44,62,45,.28); }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(44,62,45,.38); }
.btn-outline { background:transparent; color:var(--forest); border:1.5px solid var(--forest); }
.btn-outline:hover { background:var(--forest); color:var(--ivory); transform:translateY(-2px); }
.btn-rose { background:var(--rose); color:#fff; box-shadow:0 4px 20px rgba(196,154,138,.32); }
.btn-rose:hover { background:var(--rose-dark); transform:translateY(-2px); }
.btn-sage { background:var(--sage-dark); color:#fff; }
.btn-sage:hover { background:var(--forest); transform:translateY(-2px); }
.btn-lg { padding:1.1rem 2.6rem; font-size:.82rem; }
.btn-full { width:100%; justify-content:center; }

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  padding: 1.2rem 0;
  transition: all .4s ease;
}
.navbar.scrolled {
  background: rgba(250,247,242,.96);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  padding: .75rem 0;
}
.nav-inner { display:flex; align-items:center; justify-content:space-between; gap:1rem; }
.nav-logo { display:flex; align-items:center; gap:.75rem; }
.logo-mark {
  width:38px; height:38px; border-radius:50%;
  background:var(--sage-dark);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.logo-mark svg { width:20px; height:20px; fill:none; stroke:#fff; stroke-width:1.5; }
.logo-text { font-family:var(--font-display); font-size:1.2rem; font-weight:500; color:var(--forest); line-height:1.1; }
.logo-text span { display:block; font-family:var(--font-body); font-size:.62rem; font-weight:400; letter-spacing:.14em; text-transform:uppercase; color:var(--sage-dark); }

.nav-links { display:flex; align-items:center; gap:2rem; }
.nav-links a {
  font-size:.76rem; font-weight:400; letter-spacing:.1em;
  text-transform:uppercase; color:var(--charcoal);
  position:relative; transition:color .3s;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-3px; left:0;
  width:0; height:1.5px; background:var(--sage-dark);
  transition:width .3s ease;
}
.nav-links a:hover, .nav-links a.active { color:var(--sage-dark); }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; }
.hamburger span { width:24px; height:1.5px; background:var(--charcoal); transition:all .3s ease; display:block; }
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display:none; position:fixed; inset:0; z-index:999;
  background:var(--ivory);
  flex-direction:column; align-items:center; justify-content:center; gap:2rem;
  opacity:0; pointer-events:none; transition:opacity .35s ease;
}
.mobile-menu.open { opacity:1; pointer-events:all; }
.mobile-menu a { font-family:var(--font-display); font-size:2.2rem; font-weight:300; color:var(--forest); transition:color .3s; }
.mobile-menu a:hover { color:var(--sage-dark); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 5rem;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 65% 50%, rgba(139,168,136,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(196,154,138,.12) 0%, transparent 60%);
}
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; }
.shape-1 { width: 480px; height: 480px; background: radial-gradient(circle,rgba(139,168,136,.15),transparent 70%); right: -80px; top: -80px; animation: float 8s ease-in-out infinite; }
.shape-2 { width: 280px; height: 280px; background: radial-gradient(circle,rgba(196,154,138,.12),transparent 70%); left: 32%; bottom: 8%; animation: float 10s ease-in-out infinite 2s; }
.shape-3 { width: 180px; height: 180px; border: 1px solid rgba(139,168,136,.28); right: 14%; bottom: 18%; animation: float 7s ease-in-out infinite 1s; }

/* Hero inner two-column grid — lives in CSS so media queries can override it */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(139,168,136,.14); border: 1px solid rgba(139,168,136,.3);
  border-radius: var(--r-xl); padding: .42rem 1rem; margin-bottom: 1.6rem;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); animation: pulse 2s ease-in-out infinite; flex-shrink: 0; }
.hero-badge span { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sage-dark); font-weight: 500; }

.hero h1 { font-family: var(--font-display); font-size: clamp(2.6rem, 4.5vw, 5.8rem); font-weight: 300; color: var(--forest); line-height: 1.06; letter-spacing: -.02em; margin-bottom: 1.3rem; }
.hero h1 em { font-style: italic; color: var(--rose); }
.hero-desc { font-size: 1rem; font-weight: 300; color: #6B6259; line-height: 1.82; max-width: 460px; margin-bottom: 2rem; }
.hero-ctas { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 1.4rem; margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--sand); flex-wrap: wrap; }
.trust-stat h3 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 400; color: var(--forest); line-height: 1; }
.trust-stat p { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: #999; margin-top: .2rem; }
.trust-divider { width: 1px; height: 38px; background: var(--sand); flex-shrink: 0; }

/* Hero visual column */
.hero-visual { position: relative; z-index: 1; display: flex; justify-content: center; align-items: center; }
.hero-image-wrap { position: relative; width: clamp(240px, 36vw, 420px); height: clamp(300px, 44vw, 520px); }
.hero-img {
  width: 100%; height: 100%; border-radius: 200px 200px 140px 140px;
  background: linear-gradient(145deg, #B4CBAE 0%, #8BA888 40%, #5A7A57 100%);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.hero-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg,rgba(180,203,174,.6),rgba(90,122,87,.7)); }
.hero-img-placeholder svg { width: 110px; height: 110px; opacity: .35; }

/* Floating cards */
.floating-card { position: absolute; background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow-md); padding: .85rem 1.1rem; animation: float 6s ease-in-out infinite; z-index: 2; }
.fc-1 { left: -48px; top: 30%; }
.fc-2 { right: -42px; top: 16%; animation-delay: 1.5s; display: flex; align-items: center; gap: .7rem; }
.fc-3 { right: -36px; bottom: 20%; animation-delay: 3s; display: flex; align-items: center; gap: .5rem; }
.card-icon { font-size: 1.35rem; margin-bottom: .22rem; }
.card-label { font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: #999; }
.card-value { font-family: var(--font-display); font-size: 1.15rem; color: var(--forest); font-weight: 500; }
.avatar-stack { display: flex; }
.avatar-stack .av { width: 25px; height: 25px; border-radius: 50%; border: 2px solid #fff; margin-left: -7px; }
.avatar-stack .av:first-child { margin-left: 0; background: var(--sage-light); }
.avatar-stack .av:nth-child(2) { background: var(--rose-light); }
.avatar-stack .av:nth-child(3) { background: var(--sand); }
.card-txt .card-label { font-size: .62rem; color: #999; text-transform: uppercase; letter-spacing: .08em; }
.card-txt .card-value { font-size: .8rem; font-weight: 500; color: var(--forest); }
.fc-3 .stars { color: #F5A623; font-size: .76rem; letter-spacing: 1px; }
.fc-3 span { font-size: .78rem; font-weight: 500; color: var(--forest); }
.hero-tag { position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%); background: var(--forest); color: var(--ivory); padding: .68rem 1.4rem; border-radius: var(--r-xl); white-space: nowrap; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }

/* ── Services Grid ────────────────────────────────────────── */
.services-preview { background:var(--cream); }
.services-preview .section-header { max-width:560px; margin-bottom:3rem; }
.services-preview .section-header h2 { margin:.7rem 0 1rem; }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }

.service-card {
  background:var(--ivory); border-radius:var(--r-lg); padding:1.75rem;
  transition:all .4s var(--ease); border:1px solid transparent; position:relative; overflow:hidden;
}
.service-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--sage),var(--sage-light));
  transform:scaleX(0); transform-origin:left; transition:transform .4s ease;
}
.service-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:var(--sage-light); }
.service-card:hover::before { transform:scaleX(1); }
.card-icon-wrap { width:48px; height:48px; border-radius:var(--r-md); background:var(--mist); display:flex; align-items:center; justify-content:center; margin-bottom:1.1rem; }
.card-icon-wrap svg { width:22px; height:22px; stroke:var(--sage-dark); fill:none; stroke-width:1.5; }
.service-card h3 { font-family:var(--font-display); font-size:1.25rem; font-weight:400; color:var(--forest); margin-bottom:.65rem; }
.service-card p { font-size:.88rem; color:#7A7068; line-height:1.7; }
.card-link { display:inline-flex; align-items:center; gap:.4rem; margin-top:1.1rem; font-size:.72rem; font-weight:500; letter-spacing:.1em; text-transform:uppercase; color:var(--sage-dark); transition:gap .3s ease; }
.card-link:hover { gap:.8rem; }

/* ── Why Us ───────────────────────────────────────────────── */
.why-us .inner { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; }
.visual-block { position:relative; }
.main-img { width:100%; aspect-ratio:4/5; border-radius:var(--r-lg); background:linear-gradient(150deg,var(--sage-light),var(--sage-dark)); display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:5rem; color:rgba(255,255,255,.28); }
.accent-block { position:absolute; bottom:-1.25rem; right:-1.25rem; width:180px; background:var(--forest); color:var(--ivory); border-radius:var(--r-md); padding:1.25rem; text-align:center; }
.accent-block h3 { font-family:var(--font-display); font-size:2.3rem; font-weight:300; }
.accent-block p { font-size:.68rem; letter-spacing:.12em; text-transform:uppercase; margin-top:.25rem; opacity:.68; }
.content-block .section-header { margin-bottom:2rem; }
.content-block .section-header h2 { margin:.7rem 0 1rem; }

.feature-list { display:flex; flex-direction:column; gap:1.4rem; margin-bottom:2.2rem; }
.feature { display:flex; gap:1.1rem; align-items:flex-start; }
.feature-icon { width:42px; height:42px; min-width:42px; border-radius:50%; background:var(--mist); border:1px solid rgba(139,168,136,.22); display:flex; align-items:center; justify-content:center; }
.feature-icon svg { width:17px; height:17px; stroke:var(--sage-dark); fill:none; stroke-width:1.5; }
.feature h4 { font-family:var(--font-display); font-size:1.05rem; font-weight:500; color:var(--forest); margin-bottom:.25rem; }
.feature p { font-size:.86rem; color:#7A7068; line-height:1.7; }

/* ── Testimonials (dark section) ──────────────────────────── */
.testimonials-section { background:var(--forest); color:var(--ivory); overflow:hidden; position:relative; }
.testimonials-section::before { content:'"'; position:absolute; top:-2rem; left:2rem; font-family:var(--font-display); font-size:18rem; color:rgba(255,255,255,.04); line-height:1; pointer-events:none; }
.testimonials-section .section-header { margin-bottom:3rem; }
.testimonials-section .section-header .eyebrow { color:var(--sage-light); }
.testimonials-section .section-header h2 { color:var(--ivory); margin:.7rem 0 1rem; }
.testimonials-section .section-header p { color:rgba(250,247,242,.58); max-width:480px; }
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }

.testi-card { background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); border-radius:var(--r-lg); padding:1.75rem; transition:all .4s var(--ease); }
.testi-card:hover { background:rgba(255,255,255,.1); transform:translateY(-4px); }
.testi-stars { color:var(--rose); font-size:.82rem; letter-spacing:3px; margin-bottom:.9rem; }
.testi-quote { font-family:var(--font-display); font-size:1.05rem; font-weight:300; font-style:italic; line-height:1.72; color:rgba(250,247,242,.86); margin-bottom:1.4rem; }
.testi-author { display:flex; align-items:center; gap:.85rem; }
.author-avatar { width:38px; height:38px; border-radius:50%; background:var(--sage-dark); display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:.95rem; color:#fff; font-weight:400; flex-shrink:0; }
.author-info h5 { font-size:.86rem; font-weight:500; color:var(--ivory); }
.author-info p { font-size:.68rem; color:rgba(250,247,242,.48); text-transform:uppercase; letter-spacing:.1em; margin-top:.12rem; }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-section { background:var(--cream); }
.cta-inner {
  background:linear-gradient(135deg,var(--sage-dark),var(--forest));
  border-radius:var(--r-xl); padding:clamp(2.5rem,6vw,5rem) clamp(1.5rem,5vw,4rem);
  display:flex; align-items:center; justify-content:space-between; gap:2.5rem;
  position:relative; overflow:hidden;
}
.cta-inner::before { content:''; position:absolute; top:-50%; right:-10%; width:380px; height:380px; border:1px solid rgba(255,255,255,.1); border-radius:50%; }
.cta-text { max-width:500px; position:relative; z-index:1; }
.cta-text h2 { font-family:var(--font-display); font-size:clamp(1.8rem,3.5vw,3.2rem); font-weight:300; color:#fff; line-height:1.18; margin-bottom:.8rem; }
.cta-text p { color:rgba(255,255,255,.62); font-size:.96rem; }
.cta-actions { display:flex; flex-direction:column; gap:.85rem; min-width:200px; position:relative; z-index:1; }
.btn-white { background:#fff; color:var(--forest); font-size:.76rem; font-weight:500; letter-spacing:.1em; text-transform:uppercase; padding:.9rem 1.8rem; border-radius:var(--r-xl); display:flex; align-items:center; justify-content:center; gap:.5rem; border:none; cursor:pointer; transition:all .35s var(--ease); }
.btn-white:hover { background:var(--ivory); transform:translateY(-2px); }
.btn-ghost { background:transparent; color:rgba(255,255,255,.72); font-size:.76rem; letter-spacing:.1em; text-transform:uppercase; text-align:center; padding:.5rem; border:none; cursor:pointer; transition:color .3s; }
.btn-ghost:hover { color:#fff; }

/* ── About Hero ───────────────────────────────────────────── */
.about-hero { background:var(--cream); padding:clamp(7rem,12vw,11rem) 0 clamp(3rem,6vw,6rem); }
.about-hero .inner { display:grid; grid-template-columns:1fr 1fr; gap:4.5rem; align-items:center; }
.about-hero h1 { font-family:var(--font-display); font-size:clamp(2.4rem,5vw,4.8rem); font-weight:300; color:var(--forest); line-height:1.1; margin:.7rem 0 1.4rem; }
.about-hero h1 em { font-style:italic; color:var(--rose); }
.about-hero p { color:#6B6259; line-height:1.82; margin-bottom:.9rem; }
.about-img { position:relative; }
.img-wrap { width:100%; aspect-ratio:3/4; background:linear-gradient(145deg,var(--sage-light),var(--sage-dark)); border-radius:160px 160px 100px 100px; display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:7rem; color:rgba(255,255,255,.22); overflow:hidden; }
.credential-badge { position:absolute; bottom:1.5rem; left:-1.5rem; background:#fff; border-radius:var(--r-md); padding:1.1rem 1.3rem; box-shadow:var(--shadow-md); }
.cred-item { display:flex; align-items:center; gap:.65rem; font-size:.8rem; }
.cred-item:not(:last-child) { margin-bottom:.5rem; }
.cred-dot { width:7px; height:7px; border-radius:50%; background:var(--sage); flex-shrink:0; }

/* ── Values ───────────────────────────────────────────────── */
.values-section .section-header { max-width:540px; margin:0 auto 3rem; }
.values-section .section-header h2 { margin:.7rem 0 1rem; }
.values-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.25rem; }
.value-card { background:var(--cream); border-radius:var(--r-lg); padding:1.75rem 1.4rem; text-align:center; transition:all .4s var(--ease); }
.value-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-sm); }
.value-num { font-family:var(--font-display); font-size:3rem; font-weight:300; color:rgba(139,168,136,.28); line-height:1; margin-bottom:.65rem; }
.value-card h3 { font-family:var(--font-display); font-size:1.2rem; font-weight:500; color:var(--forest); margin-bottom:.65rem; }
.value-card p { font-size:.85rem; color:#7A7068; line-height:1.7; }

/* ── Team ─────────────────────────────────────────────────── */
.team-section { background:var(--cream); }
.team-section .section-header { margin-bottom:3rem; }
.team-section .section-header h2 { margin:.7rem 0 1rem; }
.team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.75rem; }
.team-card { background:var(--ivory); border-radius:var(--r-lg); overflow:hidden; transition:all .4s var(--ease); }
.team-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); }
.team-img-wrap { aspect-ratio:1; background:linear-gradient(145deg,var(--sage-light),var(--sage)); display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:4.5rem; color:rgba(255,255,255,.28); overflow:hidden; }
.team-info { padding:1.4rem; }
.team-info h3 { font-family:var(--font-display); font-size:1.2rem; font-weight:500; color:var(--forest); margin-bottom:.22rem; }
.team-info .role { font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color:var(--sage-dark); }
.team-info p { font-size:.85rem; color:#7A7068; margin-top:.7rem; line-height:1.65; }

/* ── Sessions Hero ────────────────────────────────────────── */
.sessions-hero { background:var(--cream); padding:clamp(7rem,12vw,10rem) 0 clamp(3rem,5vw,5.5rem); text-align:center; }
.sessions-hero h1 { margin:.7rem auto 1.4rem; max-width:680px; }
.sessions-hero p { max-width:520px; margin:0 auto; color:#6B6259; }

/* ── Sessions List ────────────────────────────────────────── */
.sessions-list { display:flex; flex-direction:column; gap:1.25rem; }
.session-row {
  background:var(--cream); border-radius:var(--r-lg); padding:2rem 2.2rem;
  display:grid; grid-template-columns:64px 1fr auto; gap:1.75rem; align-items:center;
  transition:all .4s var(--ease); border:1px solid transparent;
}
.session-row:hover { border-color:var(--sage-light); box-shadow:var(--shadow-sm); transform:translateX(4px); }
.session-num { font-family:var(--font-display); font-size:2.6rem; font-weight:300; color:rgba(139,168,136,.32); line-height:1; }
.session-content h3 { font-family:var(--font-display); font-size:1.5rem; font-weight:400; color:var(--forest); margin-bottom:.45rem; }
.session-content p { font-size:.88rem; color:#7A7068; line-height:1.72; }
.session-tags { display:flex; gap:.4rem; flex-wrap:wrap; margin-top:.65rem; }
.tag { font-size:.65rem; letter-spacing:.1em; text-transform:uppercase; background:rgba(139,168,136,.14); color:var(--sage-dark); padding:.28rem .7rem; border-radius:var(--r-xl); }
.session-meta { text-align:right; min-width:130px; }
.session-meta .price { font-family:var(--font-display); font-size:1.7rem; font-weight:400; color:var(--forest); }
.session-meta .duration { font-size:.68rem; letter-spacing:.1em; text-transform:uppercase; color:#999; margin-bottom:.9rem; }

/* ── Pricing Cards ────────────────────────────────────────── */
.pricing-cards { background:var(--cream); }
.pricing-cards .section-header { max-width:520px; margin:0 auto 3rem; }
.pricing-cards .section-header h2 { margin:.7rem 0 1rem; }
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; max-width:940px; margin:0 auto; }
.pricing-card { background:var(--ivory); border-radius:var(--r-lg); padding:2.2rem 1.75rem; text-align:center; border:1.5px solid transparent; transition:all .4s var(--ease); position:relative; }
.pricing-card.featured { background:var(--forest); transform:scale(1.04); box-shadow:var(--shadow-lg); }
.pricing-card:not(.featured):hover { border-color:var(--sage-light); box-shadow:var(--shadow-sm); transform:translateY(-4px); }
.plan-badge { position:absolute; top:-12px; left:50%; transform:translateX(-50%); background:var(--sage-dark); color:#fff; font-size:.62rem; letter-spacing:.15em; text-transform:uppercase; padding:.28rem .9rem; border-radius:var(--r-xl); white-space:nowrap; }
.pricing-card h3 { font-family:var(--font-display); font-size:1.35rem; font-weight:500; color:var(--forest); margin-bottom:.45rem; }
.pricing-card.featured h3 { color:var(--ivory); }
.plan-desc { font-size:.83rem; color:#7A7068; margin-bottom:1.4rem; }
.pricing-card.featured .plan-desc { color:rgba(250,247,242,.58); }
.price-amount { font-family:var(--font-display); font-size:2.8rem; font-weight:300; color:var(--forest); line-height:1; }
.pricing-card.featured .price-amount { color:var(--ivory); }
.period { font-size:.76rem; color:#999; margin-bottom:1.4rem; }
.pricing-card.featured .period { color:rgba(250,247,242,.48); }
.price-features { margin:1.4rem 0 1.75rem; text-align:left; }
.price-feature { display:flex; align-items:center; gap:.55rem; font-size:.83rem; color:#6B6259; padding:.6rem 0; border-bottom:1px solid var(--sand); }
.price-feature:last-child { border-bottom:none; }
.pricing-card.featured .price-feature { color:rgba(250,247,242,.68); border-color:rgba(255,255,255,.1); }
.price-feature svg { width:13px; height:13px; stroke:var(--sage-dark); fill:none; stroke-width:2; flex-shrink:0; }

/* ── Booking Page ─────────────────────────────────────────── */
.booking-page { padding:clamp(7rem,12vw,9rem) 0 clamp(3rem,6vw,5rem); }
.booking-inner { display:grid; grid-template-columns:1fr 1.2fr; gap:4.5rem; align-items:start; }
.booking-info h1 { font-family:var(--font-display); font-size:clamp(2.2rem,4vw,3.8rem); font-weight:300; color:var(--forest); line-height:1.1; margin:.7rem 0 1.4rem; }
.booking-info h1 em { font-style:italic; color:var(--rose); }
.booking-info > p { color:#6B6259; line-height:1.82; margin-bottom:2rem; }
.info-cards { display:flex; flex-direction:column; gap:.9rem; }
.info-card { background:var(--cream); border-radius:var(--r-md); padding:1.1rem 1.3rem; display:flex; align-items:center; gap:.9rem; }
.info-icon { width:38px; height:38px; border-radius:var(--r-sm); background:var(--mist); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.info-icon svg { width:17px; height:17px; stroke:var(--sage-dark); fill:none; stroke-width:1.5; }
.info-card h4 { font-size:.8rem; font-weight:500; color:var(--forest); margin-bottom:.1rem; }
.info-card p { font-size:.78rem; color:#7A7068; }

.booking-form-wrap { background:var(--cream); border-radius:var(--r-xl); padding:clamp(1.75rem,4vw,3rem); box-shadow:var(--shadow-md); }
.step-indicators { display:flex; gap:.4rem; margin-bottom:1.75rem; }
.step { height:3px; flex:1; border-radius:2px; background:var(--sand); transition:background .4s; }
.step.active { background:var(--sage-dark); }
.step.done { background:var(--sage-light); }
.booking-form-wrap > div > h2 { font-family:var(--font-display); font-size:1.7rem; font-weight:400; color:var(--forest); margin-bottom:.4rem; }
.booking-form-wrap > div > p { font-size:.85rem; color:#7A7068; margin-bottom:1.75rem; }

/* ── Forms ────────────────────────────────────────────────── */
.form-group { margin-bottom:1.35rem; }
.form-group label { display:block; font-size:.69rem; font-weight:500; letter-spacing:.12em; text-transform:uppercase; color:var(--sage-dark); margin-bottom:.45rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; background:var(--ivory); border:1.5px solid var(--sand);
  border-radius:var(--r-md); padding:.82rem 1rem;
  font-size:.9rem; font-weight:300; color:var(--charcoal);
  transition:border-color .3s, box-shadow .3s; outline:none; -webkit-appearance:none; appearance:none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color:var(--sage); box-shadow:0 0 0 3px rgba(139,168,136,.15); }
.form-group input::placeholder,
.form-group textarea::placeholder { color:#BBADA0; }
.form-group select { background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A7A57' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right .95rem center; background-color:var(--ivory); padding-right:2.4rem; cursor:pointer; }
.form-group textarea { resize:vertical; min-height:110px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-note { font-size:.72rem; color:#BBADA0; text-align:center; margin-top:.9rem; }

.form-success { text-align:center; padding:2.5rem 1.5rem; display:none; }
.form-success.show { display:block; animation:fadeUp .6s ease both; }
.success-icon { width:68px; height:68px; border-radius:50%; background:rgba(139,168,136,.14); border:1.5px solid var(--sage); display:flex; align-items:center; justify-content:center; margin:0 auto 1.4rem; }
.success-icon svg { width:30px; height:30px; stroke:var(--sage-dark); fill:none; stroke-width:1.5; }
.form-success h3 { font-family:var(--font-display); font-size:1.85rem; font-weight:400; color:var(--forest); margin-bottom:.7rem; }
.form-success p { color:#7A7068; }

/* ── Contact Page ─────────────────────────────────────────── */
.contact-page { padding:clamp(7rem,12vw,9rem) 0 clamp(3rem,6vw,5rem); }
.contact-inner { display:grid; grid-template-columns:1.2fr 1fr; gap:4.5rem; align-items:start; }
.contact-form-wrap { background:var(--cream); border-radius:var(--r-xl); padding:clamp(1.75rem,4vw,3rem); box-shadow:var(--shadow-md); }
.contact-form-wrap h2 { font-family:var(--font-display); font-size:1.9rem; font-weight:400; color:var(--forest); margin:.45rem 0 1.4rem; }
.contact-details h2 { font-family:var(--font-display); font-size:1.9rem; font-weight:400; color:var(--forest); margin:.7rem 0 .9rem; }
.contact-details > p { color:#6B6259; line-height:1.82; margin-bottom:1.75rem; }
.contact-list { display:flex; flex-direction:column; gap:1.1rem; margin-bottom:2rem; }
.contact-item { display:flex; gap:.9rem; align-items:flex-start; }
.ci-icon { width:42px; height:42px; border-radius:50%; background:var(--mist); border:1px solid rgba(139,168,136,.22); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.ci-icon svg { width:17px; height:17px; stroke:var(--sage-dark); fill:none; stroke-width:1.5; }
.contact-item h4 { font-size:.68rem; letter-spacing:.12em; text-transform:uppercase; color:var(--sage-dark); margin-bottom:.22rem; }
.contact-item p { font-size:.88rem; color:var(--charcoal); }
.map-placeholder { background:var(--cream); border-radius:var(--r-lg); aspect-ratio:4/3; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:.65rem; color:#BBADA0; border:1.5px dashed var(--sand); }
.map-placeholder svg { width:32px; height:32px; stroke:var(--sand); fill:none; stroke-width:1.2; }
.map-placeholder p { font-size:.8rem; letter-spacing:.08em; }

/* ── Testimonials Page ────────────────────────────────────── */
.testi-page { padding:clamp(7rem,12vw,9rem) 0 clamp(3rem,6vw,5rem); }
.testi-hero { text-align:center; margin-bottom:4rem; }
.testi-hero h1 { font-family:var(--font-display); font-size:clamp(2.5rem,5vw,4.8rem); font-weight:300; color:var(--forest); margin:.7rem auto .9rem; max-width:680px; line-height:1.1; }
.testi-hero h1 em { font-style:italic; color:var(--rose); }
.testi-hero p { max-width:480px; margin:0 auto; color:#6B6259; }
.testi-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; margin-bottom:3.5rem; }
.testi-stat { text-align:center; background:var(--cream); border-radius:var(--r-lg); padding:1.75rem 1rem; }
.testi-stat h3 { font-family:var(--font-display); font-size:2.8rem; font-weight:300; color:var(--forest); line-height:1; }
.testi-stat p { font-size:.68rem; letter-spacing:.12em; text-transform:uppercase; color:#999; margin-top:.45rem; }
.testi-masonry { columns:3; column-gap:1.25rem; }
.testi-item { break-inside:avoid; margin-bottom:1.25rem; background:var(--cream); border-radius:var(--r-lg); padding:1.75rem; border:1px solid transparent; transition:all .4s var(--ease); }
.testi-item:hover { border-color:var(--sage-light); box-shadow:var(--shadow-sm); }
.testi-item.featured { background:var(--forest); }
.testi-item .testi-quote { font-family:var(--font-display); font-size:1.02rem; font-style:italic; font-weight:300; color:var(--charcoal); line-height:1.72; margin-bottom:1.1rem; }
.testi-item.featured .testi-quote { color:rgba(250,247,242,.88); }
.testi-item .testi-stars { color:var(--rose); font-size:.78rem; letter-spacing:2px; margin-bottom:.9rem; }
.testi-item .testi-author { display:flex; align-items:center; gap:.7rem; }
.testi-item .av { width:34px; height:34px; border-radius:50%; background:var(--sage); display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:.88rem; color:#fff; flex-shrink:0; }
.author-name { font-size:.86rem; font-weight:500; color:var(--forest); }
.testi-item.featured .author-name { color:var(--ivory); }
.author-role { font-size:.68rem; letter-spacing:.08em; text-transform:uppercase; color:#999; margin-top:.1rem; }
.testi-item.featured .author-role { color:rgba(250,247,242,.45); }

/* ── Footer ───────────────────────────────────────────────── */
.footer { background:var(--charcoal); color:rgba(250,247,242,.68); padding:clamp(3rem,7vw,5rem) 0 2rem; }
.footer-inner { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:2.5rem; margin-bottom:3.5rem; }
.footer-brand p { font-size:.86rem; line-height:1.8; margin-top:.9rem; max-width:280px; }
.social-links { display:flex; gap:.65rem; margin-top:1.35rem; }
.social-links a { width:34px; height:34px; border-radius:50%; border:1px solid rgba(255,255,255,.14); display:flex; align-items:center; justify-content:center; transition:all .35s var(--ease); }
.social-links a svg { width:14px; height:14px; stroke:rgba(250,247,242,.56); fill:none; stroke-width:1.5; }
.social-links a:hover { background:var(--sage-dark); border-color:var(--sage-dark); }
.footer-col h4 { font-size:.68rem; letter-spacing:.18em; text-transform:uppercase; color:rgba(250,247,242,.38); margin-bottom:1.1rem; }
.footer-col ul { display:flex; flex-direction:column; gap:.6rem; }
.footer-col ul li a { font-size:.85rem; transition:color .3s; }
.footer-col ul li a:hover { color:var(--ivory); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.07); padding-top:1.75rem; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1rem; }
.footer-bottom p { font-size:.75rem; }
.footer-links { display:flex; gap:1.75rem; }
.footer-links a { font-size:.75rem; cursor:pointer; transition:color .3s; }
.footer-links a:hover { color:var(--ivory); }

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal { opacity:0; transform:translateY(24px); transition:opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ============================================================
   RESPONSIVE — Tablet  ≤900px
   ============================================================ */
@media (max-width: 900px) {

  /* Navbar */
  .nav-links, .nav-cta { display:none; }
  .hamburger { display:flex; }
  .mobile-menu { display:flex; }

  /* Hero — stack vertically on tablet/mobile */
  .hero { min-height: auto; padding-top: 5rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { padding: 3rem 0 3.5rem; }
  .hero h1 { font-size: clamp(2.4rem, 6vw, 3.8rem); }
  .hero-trust { gap: 1rem; }

  /* Grids → 2 col */
  .services-grid  { grid-template-columns:repeat(2,1fr); }
  .values-grid    { grid-template-columns:repeat(2,1fr); }
  .team-grid      { grid-template-columns:repeat(2,1fr); }
  .testi-grid     { grid-template-columns:repeat(2,1fr); }
  .pricing-grid   { grid-template-columns:1fr; max-width:420px; }
  .pricing-card.featured { transform:none; }
  .footer-inner   { grid-template-columns:1fr 1fr; }
  .testi-stats    { grid-template-columns:repeat(2,1fr); }
  .testi-masonry  { columns:2; }

  /* Two-col sections → single col */
  .why-us .inner     { grid-template-columns:1fr; gap:3rem; }
  .about-hero .inner { grid-template-columns:1fr; gap:3rem; }
  .booking-inner     { grid-template-columns:1fr; gap:3rem; }
  .contact-inner     { grid-template-columns:1fr; gap:3rem; }

  /* Visual blocks on tablet */
  .visual-block { max-width:460px; margin:0 auto; }
  .about-img    { max-width:400px; margin:0 auto; }
  .credential-badge { left:-0.5rem; }
  .accent-block { right:0; bottom:-1rem; }

  /* Sessions */
  .session-row { grid-template-columns:1fr; gap:1rem; }
  .session-num  { font-size:2rem; }
  .session-meta { text-align:left; }

  /* CTA */
  .cta-inner { flex-direction:column; text-align:center; padding:3rem 2rem; }
  .cta-actions { align-items:center; min-width:auto; }
}

/* ============================================================
   RESPONSIVE — Mobile  ≤600px
   ============================================================ */
@media (max-width: 600px) {

  /* Typography scale down */
  .hero h1 { font-size:clamp(2rem,8vw,2.8rem); }
  .hero-desc { font-size:.94rem; }
  .hero-ctas { flex-direction:column; align-items:flex-start; }
  .hero-ctas .btn { width:100%; justify-content:center; }

  /* All grids → 1 col */
  .services-grid  { grid-template-columns:1fr; }
  .values-grid    { grid-template-columns:1fr 1fr; }
  .team-grid      { grid-template-columns:1fr; }
  .testi-grid     { grid-template-columns:1fr; }
  .testi-masonry  { columns:1; }
  .testi-stats    { grid-template-columns:repeat(2,1fr); gap:1rem; }
  .footer-inner   { grid-template-columns:1fr; gap:2rem; }
  .footer-brand p { max-width:100%; }

  /* Form row → stack */
  .form-row { grid-template-columns:1fr; }

  /* Session rows */
  .session-row { padding:1.4rem; }

  /* Booking/contact info adjustments */
  .booking-form-wrap, .contact-form-wrap { padding:1.5rem; }

  /* CTA */
  .cta-inner { border-radius:var(--r-lg); }
  .cta-text h2 { font-size:1.75rem; }
  .btn-white, .btn-ghost { width:100%; }

  /* Pricing */
  .pricing-grid   { grid-template-columns:1fr; }

  /* About credential badge */
  .credential-badge { position:static; margin-top:1.25rem; border-radius:var(--r-md); }
  .about-img { max-width:100%; }

  /* Footer */
  .footer-bottom { flex-direction:column; align-items:flex-start; }
  .footer-links  { flex-wrap:wrap; gap:1rem; }

  /* Testi stats */
  .testi-stat h3 { font-size:2.2rem; }
}

/* ============================================================
   RESPONSIVE — Small Mobile  ≤380px
   ============================================================ */
@media (max-width: 380px) {
  .values-grid { grid-template-columns:1fr; }
  .testi-stats { grid-template-columns:1fr 1fr; }
  .hero-trust  { flex-direction:column; align-items:flex-start; gap:.8rem; }
  .trust-divider { display:none; }
}

/* ============================================================
   TEAM CARD — clickable upgrade
   ============================================================ */
.team-card {
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}
.team-card .team-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  transition: gap .3s ease;
}
.team-card:hover .team-arrow { gap: .75rem; }

/* ============================================================
   TEAM PROFILE PAGE
   ============================================================ */

/* Back breadcrumb */
.profile-back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  text-decoration: none;
  transition: gap .3s ease;
  margin-bottom: 2.5rem;
}
.profile-back:hover { gap: .85rem; }
.profile-back svg { width: 16px; height: 16px; stroke: var(--sage-dark); fill: none; stroke-width: 1.8; }

/* Profile hero */
.profile-hero {
  background: var(--cream);
  padding: clamp(7rem, 12vw, 10rem) 0 0;
}
.profile-hero-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}
.profile-avatar-col { position: relative; }
.profile-avatar {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 160px 160px 100px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  overflow: hidden;
  position: relative;
}
.profile-badges {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: 1.5rem;
}
.profile-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: white;
  border: 1px solid var(--sand);
  border-radius: var(--r-xl);
  padding: .45rem 1rem;
  font-size: .72rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: .04em;
}
.profile-badge-pill .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

.profile-info-col { padding-bottom: 3rem; }
.profile-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--forest);
  line-height: 1.08;
  margin: .6rem 0 .5rem;
}
.profile-role-tag {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 1.5rem;
}
.profile-intro {
  font-size: 1.05rem;
  font-weight: 300;
  color: #6B6259;
  line-height: 1.85;
  max-width: 580px;
  margin-bottom: 2rem;
}
.profile-quick-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.75rem 0;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  margin-bottom: 2rem;
}
.qs-item h4 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
}
.qs-item p {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #999;
  margin-top: .2rem;
}
.profile-hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Profile body */
.profile-body { padding: clamp(3rem, 7vw, 6rem) 0; }
.profile-body-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}

/* Section blocks */
.profile-section { margin-bottom: 3.5rem; }
.profile-section:last-child { margin-bottom: 0; }
.profile-section-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.profile-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--sand);
}
.profile-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.profile-section p {
  font-size: .95rem;
  color: #6B6259;
  line-height: 1.85;
  margin-bottom: .9rem;
}
.profile-section p:last-child { margin-bottom: 0; }

/* Education timeline */
.edu-timeline { display: flex; flex-direction: column; gap: 0; }
.edu-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.25rem;
  position: relative;
  padding-bottom: 2rem;
}
.edu-item:last-child { padding-bottom: 0; }
.edu-item::before {
  content: '';
  position: absolute;
  left: 44px;
  top: 28px;
  bottom: 0;
  width: 1px;
  background: var(--sand);
}
.edu-item:last-child::before { display: none; }
.edu-year {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--sage-dark);
  padding-top: .15rem;
  text-align: right;
}
.edu-dot-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.edu-card {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 1.25rem 1.4rem;
  border-left: 3px solid var(--sage);
  width: 100%;
}
.edu-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: .2rem;
}
.edu-card .edu-institution {
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: .5rem;
}
.edu-card p {
  font-size: .86rem;
  color: #7A7068;
  line-height: 1.65;
  margin: 0;
}

/* Expertise tags */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
.expertise-item {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  transition: all .35s var(--ease);
  border: 1px solid transparent;
}
.expertise-item:hover {
  border-color: var(--sage-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.expertise-item .ex-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.expertise-item .ex-icon svg {
  width: 16px; height: 16px;
  stroke: var(--sage-dark); fill: none; stroke-width: 1.5;
}
.expertise-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: .2rem;
}
.expertise-item p {
  font-size: .78rem;
  color: #7A7068;
  line-height: 1.55;
  margin: 0;
}

/* Approach pillars */
.approach-list { display: flex; flex-direction: column; gap: 1rem; }
.approach-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  background: var(--cream);
  border-radius: var(--r-md);
  transition: all .35s var(--ease);
}
.approach-item:hover { box-shadow: var(--shadow-sm); }
.approach-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: rgba(139,168,136,.35);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
}
.approach-item h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: .2rem;
}
.approach-item p { font-size: .84rem; color: #7A7068; line-height: 1.65; margin: 0; }

/* Sidebar sticky card */
.profile-sidebar { position: sticky; top: 6rem; }
.sidebar-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}
.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 1.1rem;
}
.sidebar-list { display: flex; flex-direction: column; gap: .6rem; }
.sidebar-list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .86rem;
  color: #6B6259;
}
.sidebar-list li svg {
  width: 14px; height: 14px;
  stroke: var(--sage-dark); fill: none; stroke-width: 2;
  flex-shrink: 0;
}
.sidebar-book-card {
  background: var(--forest);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  text-align: center;
}
.sidebar-book-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: .6rem;
}
.sidebar-book-card p {
  font-size: .82rem;
  color: rgba(250,247,242,.6);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

/* Quote block */
.profile-quote {
  background: var(--forest);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  margin: 3.5rem 0;
  position: relative;
}
.profile-quote::before {
  content: '"';
  position: absolute;
  top: -1rem; left: 1.5rem;
  font-family: var(--font-display);
  font-size: 7rem;
  color: rgba(255,255,255,.1);
  line-height: 1;
}
.profile-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(250,247,242,.9);
  line-height: 1.65;
  margin: 0;
}
.profile-quote cite {
  display: block;
  margin-top: 1rem;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(250,247,242,.45);
  font-style: normal;
}

/* ── Profile page responsive ─────────────────────────────── */
@media (max-width: 900px) {
  .profile-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .profile-avatar { max-width: 280px; margin: 0 auto; }
  .profile-avatar-col { display: flex; flex-direction: column; align-items: center; }
  .profile-badges { align-items: center; flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .profile-body-grid { grid-template-columns: 1fr; }
  .profile-sidebar { position: static; }
  .expertise-grid { grid-template-columns: 1fr; }
  .edu-item { grid-template-columns: 70px 1fr; }
  .edu-item::before { left: 34px; }
}

@media (max-width: 600px) {
  .profile-quick-stats { gap: 1.2rem; }
  .expertise-grid { grid-template-columns: 1fr; }
  .profile-hero-ctas { flex-direction: column; }
  .profile-hero-ctas .btn { width: 100%; justify-content: center; }
  .edu-item { grid-template-columns: 1fr; }
  .edu-item::before { display: none; }
  .edu-year { text-align: left; }
}
