/* =========================================
   MindWave Counselling — Main Stylesheet
   Author: MindWave Counselling
   ========================================= */

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

:root {
  --cream: #fdf8f3;
  --blush: #f2e4d8;
  --sage: #8faa8b;
  --sage-dark: #5a7a56;
  --terra: #c4846a;
  --terra-light: #e8b49a;
  --brown: #4a3728;
  --text: #3a2e28;
  --muted: #6a5a50;
  --white: #ffffff;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--cream); color: var(--text); overflow-x: hidden; font-size: 16px; line-height: 1.6; }

/* ─── NAVIGATION ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 5%;
  background: rgba(253, 248, 243, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 132, 106, 0.15);
  min-height: 96px;
}

.nav-logo {
  display: flex; align-items: center; gap: 0.35rem;
  text-decoration: none;
}

.nav-logo img {
  height: 88px; width: auto; display: block;
  object-fit: contain; flex-shrink: 0;
}

.nav-logo-text {
  display: none;
}

.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.02em;
}

.nav-logo-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
}

.nav-links {
  display: flex; gap: 1.6rem; list-style: none; align-items: center;
}

.nav-links a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted);
  text-decoration: none; transition: color 0.3s;
}

.nav-links a:hover { color: var(--terra); }

.ncta {
  background: var(--terra) !important;
  color: white !important;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  transition: background 0.3s !important;
}

.ncta:hover { background: var(--brown) !important; }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.4rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--brown); margin: 5px 0; border-radius: 2px; transition: all 0.3s; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 7.5rem 5% 5rem;
  gap: 3.5rem;
  position: relative;
  overflow: hidden;
}

/* ─── BRAIN-WAVE BACKGROUND SVG ─── */
.hero-bg-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.92;
}

.hero > .rv { position: relative; z-index: 1; }

/* ─── MIND · WAVE · HEART ANIMATIONS ─── */

/* Brain fade */
.brain-shape { animation: brainFade 6s ease-in-out infinite; }
.brain-folds  { animation: brainFade 6s ease-in-out infinite 0.5s; }
@keyframes brainFade {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.72; }
}

/* Heart soft breathe */
.heart-outer { animation: shapeBreath 5s ease-in-out infinite 1s; transform-origin: 1060px 390px; }
.heart-inner { animation: shapeBreath 5s ease-in-out infinite 1.4s; transform-origin: 1060px 390px; }
.heart-core  { animation: shapeBreath 5s ease-in-out infinite 1.8s; transform-origin: 1060px 390px; }
@keyframes shapeBreath {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.025); }
}

/* Connection waves: draw left→right, then gentle float */
.cw1  { stroke-dasharray: 520; stroke-dashoffset: 520; animation: cwDraw 1.6s ease-out 0.4s forwards, waveFloat 3.0s ease-in-out 2.2s infinite; }
.cw2  { stroke-dasharray: 520; stroke-dashoffset: 520; animation: cwDraw 1.8s ease-out 0.7s forwards, waveFloat 3.4s ease-in-out 2.7s infinite; }
.cw3  { stroke-dasharray: 520; stroke-dashoffset: 520; animation: cwDraw 2.0s ease-out 1.0s forwards, waveFloat 2.8s ease-in-out 3.2s infinite reverse; }
.cw4  { stroke-dasharray: 520; stroke-dashoffset: 520; animation: cwDraw 2.2s ease-out 1.3s forwards, waveFloat 3.6s ease-in-out 3.7s infinite; }
/* Mobile connection waves (hidden by default) */
.cw1m { stroke-dasharray: 150; stroke-dashoffset: 150; display: none; animation: cwDraw 1.2s ease-out 0.4s forwards, waveFloat 3.0s ease-in-out 1.8s infinite; }
.cw2m { stroke-dasharray: 150; stroke-dashoffset: 150; display: none; animation: cwDraw 1.4s ease-out 0.6s forwards, waveFloat 3.4s ease-in-out 2.2s infinite; }
.cw3m { stroke-dasharray: 150; stroke-dashoffset: 150; display: none; animation: cwDraw 1.6s ease-out 0.8s forwards, waveFloat 2.8s ease-in-out 2.6s infinite reverse; }
.cw4m { stroke-dasharray: 150; stroke-dashoffset: 150; display: none; animation: cwDraw 1.8s ease-out 1.0s forwards, waveFloat 3.6s ease-in-out 3.0s infinite; }
@keyframes cwDraw { to { stroke-dashoffset: 0; } }
@keyframes waveFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}

/* Background sweep drift */
.ws1 { animation: sweepDrift 14s ease-in-out infinite; }
.ws2 { animation: sweepDrift 11s ease-in-out infinite 2s alternate-reverse; }
@keyframes sweepDrift {
  0%,100% { transform: translateX(0); }
  50%      { transform: translateX(-20px); }
}

/* Floating particles */
.p1 { animation: floatUp 4.0s ease-in-out infinite; }
.p2 { animation: floatUp 5.0s ease-in-out infinite 0.7s; }
.p3 { animation: floatUp 4.5s ease-in-out infinite 1.2s; }
.p4 { animation: floatUp 5.5s ease-in-out infinite 0.3s; }
.p5 { animation: floatUp 4.2s ease-in-out infinite 0.9s; }
.p6 { animation: floatUp 5.2s ease-in-out infinite 1.5s; }
.p7 { animation: floatUp 3.8s ease-in-out infinite 0.5s; }
.p8 { animation: floatUp 4.8s ease-in-out infinite 1.8s; }
@keyframes floatUp {
  0%,100% { transform: translateY(0);     opacity: 0.5; }
  50%      { transform: translateY(-16px); opacity: 0.9; }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(143, 170, 139, 0.15);
  border: 1px solid rgba(143, 170, 139, 0.4);
  color: var(--sage-dark);
  padding: 0.42rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 1.4rem;
}

.hero-badge i {
  width: 7px; height: 7px;
  background: var(--sage); border-radius: 50%; display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 300; line-height: 1.1; color: var(--brown);
  margin-bottom: 1rem;
}

.hero h1 em { font-style: italic; color: var(--terra); }

.hero-lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--muted); line-height: 1.75;
  margin-bottom: 1rem; max-width: 500px;
}

.hero-tag {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300; font-style: italic;
  color: var(--muted); margin-bottom: 2rem; line-height: 1.55;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-p {
  background: var(--terra); color: white;
  padding: 0.9rem 2rem; border-radius: 50px;
  font-size: 0.95rem; font-weight: 500;
  text-decoration: none; transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(196,132,106,.35);
  display: inline-block;
}

.btn-p:hover { background: var(--brown); transform: translateY(-2px); }

.btn-s {
  background: transparent; color: var(--brown);
  padding: 0.9rem 2rem; border-radius: 50px;
  border: 1.5px solid rgba(74,55,40,.25);
  font-size: 0.95rem; font-weight: 500;
  text-decoration: none; transition: all 0.3s; display: inline-block;
}

.btn-s:hover { border-color: var(--terra); color: var(--terra); }

/* Hero card */
.hero-card {
  background: rgba(255,255,255,0.78); backdrop-filter: blur(10px);
  border-radius: 2.5rem 2.5rem 2.5rem 0.5rem;
  padding: 2.5rem 2.2rem;
  box-shadow: 0 20px 60px rgba(74,55,40,.12); position: relative; z-index: 1;
  border: 1px solid rgba(255,255,255,0.6);
}

.hero-card::before {
  content: '"'; font-family: var(--font-serif); font-size: 9rem;
  color: rgba(242,228,216,.8); position: absolute;
  top: -1.5rem; left: 1.5rem; line-height: 1; pointer-events: none;
}

.hcn { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 600; color: var(--brown); margin-bottom: 0.2rem; }
.hct { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.05em; margin-bottom: 1.4rem; }

.htags { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.tag { background: rgba(143,170,139,.12); color: var(--sage-dark); padding: 0.32rem 0.9rem; border-radius: 50px; font-size: 0.78rem; font-weight: 500; }

/* ─── SECTIONS ─── */
section { padding: 5.5rem 5%; }

.slabel {
  display: inline-block; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 0.75rem;
}

.stitle {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 300; color: var(--brown); line-height: 1.2; margin-bottom: 1rem;
}

.stitle em { font-style: italic; color: var(--terra); }

.ssub { font-size: 1rem; color: var(--muted); max-width: 560px; line-height: 1.75; }

/* ─── ABOUT ─── */
.about { background: white; }
.about-g { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: center; }

.photo-wrap { position: relative; aspect-ratio: 4/5; }
.photo-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: 60% 40% 55% 45%/50% 60% 40% 50%; display: block; }
.photo-wrap::before {
  content: ''; position: absolute; inset: -8px;
  border-radius: 60% 40% 55% 45%/50% 60% 40% 50%;
  background: linear-gradient(135deg, var(--terra-light), var(--sage)); opacity: 0.3; z-index: -1;
}

.blob-badge {
  position: absolute; bottom: -1rem; right: -1rem;
  background: var(--terra); color: white;
  padding: 1rem 1.3rem; border-radius: 1.2rem; text-align: center;
  box-shadow: 0 8px 24px rgba(196,132,106,.35);
}
.blob-badge strong { display: block; font-size: 1.5rem; font-family: var(--font-serif); }
.blob-badge span { font-size: 0.68rem; letter-spacing: 0.05em; }

.about-text p { color: var(--muted); line-height: 1.85; margin-bottom: 1.1rem; font-size: 1rem; }

.creds { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.cred { display: flex; align-items: center; gap: 0.9rem; padding: 0.9rem 1.1rem; background: var(--cream); border-radius: 0.9rem; border-left: 3px solid var(--sage); }
.ct { font-weight: 500; font-size: 0.92rem; color: var(--brown); }
.cs { font-size: 0.78rem; color: var(--muted); margin-top: 0.15rem; }

/* ─── SERVICES ─── */
.svc-hdr { text-align: center; margin-bottom: 3rem; }
.svc-hdr .ssub { margin: 0 auto; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }

.svc-card {
  background: white; border-radius: 1.4rem; padding: 2rem;
  border: 1px solid rgba(196,132,106,.1); transition: all 0.3s;
  position: relative; overflow: hidden;
}

.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--terra), var(--sage));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}

.svc-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(74,55,40,.1); }
.svc-card:hover::after { transform: scaleX(1); }

.svc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--cream); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 1rem;
}

.svc-card h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600; color: var(--brown); margin-bottom: 0.55rem; }
.svc-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; }

/* ─── APPROACH ─── */
.appr { background: white; }
.appr-g { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.appr-items { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.6rem; }

.appr-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.3rem; border-radius: 1rem;
  border: 1px solid rgba(196,132,106,.12); transition: all 0.3s;
}

.appr-item:hover { background: var(--cream); border-color: var(--terra-light); }
.appr-num { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 300; color: rgba(196,132,106,.3); line-height: 1; min-width: 2rem; }
.appr-item h4 { font-weight: 600; color: var(--brown); margin-bottom: 0.3rem; font-size: 0.95rem; }
.appr-item p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

.appr-quote {
  background: linear-gradient(135deg, var(--blush), rgba(143,170,139,.15));
  border-radius: 2rem; padding: 3rem;
}

.appr-quote blockquote {
  font-family: var(--font-serif); font-size: 1.55rem;
  font-weight: 300; font-style: italic; color: var(--brown); line-height: 1.55;
}

.appr-quote cite { display: block; margin-top: 1.1rem; font-size: 0.82rem; color: var(--muted); letter-spacing: 0.05em; font-style: normal; }

/* ─── BOOKING ─── */
.book-sec { background: var(--terra); position: relative; overflow: hidden; }
.book-sec::before { content: ''; position: absolute; top: -50%; right: -10%; width: 55vw; height: 55vw; background: rgba(255,255,255,.06); border-radius: 50%; }
.book-g { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }

.book-sec h2 { font-family: var(--font-serif); font-size: clamp(1.9rem, 3vw, 2.9rem); font-weight: 300; color: white; margin-bottom: 1rem; }
.bk-p { color: rgba(255,255,255,.9); font-size: 1rem; line-height: 1.75; margin-bottom: 2rem; }
.bk-steps { display: flex; flex-direction: column; gap: 1rem; }
.bk-step { display: flex; align-items: center; gap: 1rem; color: rgba(255,255,255,.92); font-size: 0.95rem; }
.bk-circle { width: 2rem; height: 2rem; border-radius: 50%; background: rgba(255,255,255,.2); color: white; display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 600; flex-shrink: 0; }

.bk-form { background: white; border-radius: 1.5rem; padding: 2.4rem; }
.bk-form h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: var(--brown); margin-bottom: 1.5rem; }

.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.fg { margin-bottom: 1rem; }
.fg label { display: block; font-size: 0.78rem; font-weight: 500; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.4rem; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 0.78rem 1rem; border: 1.5px solid rgba(196,132,106,.2); border-radius: 0.7rem; font-family: inherit; font-size: 0.92rem; color: var(--text); background: var(--cream); transition: border-color 0.3s; outline: none; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--terra); }
.fg textarea { min-height: 95px; resize: vertical; }

.btn-book { width: 100%; background: var(--terra); color: white; border: none; padding: 0.95rem; border-radius: 0.7rem; font-family: inherit; font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: all 0.3s; margin-top: 0.4rem; }
.btn-book:hover { background: var(--brown); }
.btn-book:disabled { opacity: 0.6; cursor: not-allowed; }
.form-msg { margin-top: 0.85rem; padding: 0.85rem 1rem; border-radius: 0.65rem; font-size: 0.88rem; display: none; }
.form-msg.ok { background: #e8f5e9; color: #2e7d32; display: block; }
.form-msg.err { background: #fce4e4; color: #c62828; display: block; }

/* ─── ASSESSMENTS ─── */
.assess { background: var(--cream); }
.assess-hdr { text-align: center; margin-bottom: 2rem; }
.assess-hdr .ssub { margin: 0 auto; }

.assess-tabs { display: flex; gap: 0.85rem; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; }
.atab { padding: 0.7rem 1.6rem; border-radius: 50px; border: 1.5px solid rgba(196,132,106,.25); background: white; font-family: inherit; font-size: 0.88rem; color: var(--muted); cursor: pointer; transition: all 0.3s; font-weight: 500; }
.atab.on { background: var(--terra); color: white; border-color: var(--terra); }

.apanel { display: none; max-width: 820px; margin: 0 auto; }
.apanel.on { display: block; }

.anote { background: rgba(143,170,139,.12); border: 1px solid rgba(143,170,139,.3); border-radius: 0.8rem; padding: 1.1rem 1.4rem; font-size: 0.9rem; color: var(--sage-dark); margin-bottom: 1.5rem; line-height: 1.65; }

.bdi-item { background: white; border-radius: 1rem; padding: 1.5rem; margin-bottom: 1rem; border: 1px solid rgba(196,132,106,.1); transition: all 0.3s; }
.bdi-item.bdi-locked { display: none; }
.bdi-item.bdi-active { border-color: var(--terra-light); box-shadow: 0 4px 16px rgba(196,132,106,.12); }
.bdi-item.bdi-done { opacity: 0.65; }
.bdi-ttl { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; color: var(--brown); margin-bottom: 0.95rem; display: flex; align-items: center; gap: 0.6rem; }
.bdi-n { background: var(--terra); color: white; width: 1.7rem; height: 1.7rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-family: var(--font-sans); font-weight: 500; flex-shrink: 0; }
.bdi-opt { margin-bottom: 0.55rem; }
.bdi-opt input { margin-right: 0.6rem; accent-color: var(--terra); }
.bdi-opt label { font-size: 0.95rem; color: var(--muted); cursor: pointer; }
.bdi-opt label strong { color: var(--terra); }
.bdi-opts { padding-left: 0.2rem; }

.bai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.bai-item { background: white; border-radius: 1rem; padding: 1.3rem; border: 1px solid rgba(196,132,106,.1); }
.bai-lbl { font-size: 0.92rem; font-weight: 500; color: var(--brown); margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.5rem; }
.bai-n { background: var(--sage); color: white; width: 1.5rem; height: 1.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; flex-shrink: 0; }
.bai-scale { display: flex; gap: 0.45rem; flex-wrap: wrap; }
.bai-opt { display: flex; align-items: center; gap: 0.35rem; }
.bai-opt input { accent-color: var(--terra); }
.bai-opt label { font-size: 0.9rem; color: var(--muted); cursor: pointer; }

.assess-submit { text-align: center; margin: 2rem 0 1rem; }
.btn-score { background: var(--sage-dark); color: white; border: none; padding: 0.9rem 2.4rem; border-radius: 50px; font-family: inherit; font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: all 0.3s; }
.btn-score:hover { background: var(--brown); }

.a-result { border-radius: 1.4rem; padding: 2.2rem; text-align: center; margin-top: 1.2rem; display: none; }
.r0 { background: linear-gradient(135deg, rgba(143,170,139,.15), rgba(143,170,139,.05)); border: 1.5px solid rgba(143,170,139,.4); }
.r1 { background: linear-gradient(135deg, rgba(255,235,200,.5), rgba(255,220,160,.2)); border: 1.5px solid rgba(240,180,80,.4); }
.r2 { background: linear-gradient(135deg, rgba(255,200,160,.4), rgba(255,180,130,.2)); border: 1.5px solid rgba(230,140,60,.4); }
.r3 { background: linear-gradient(135deg, rgba(255,180,180,.4), rgba(240,130,130,.2)); border: 1.5px solid rgba(200,60,60,.4); }
.r-score { font-family: var(--font-serif); font-size: 3.8rem; font-weight: 600; color: var(--brown); }
.r-level { font-size: 1.15rem; font-weight: 600; color: var(--brown); margin-bottom: 0.85rem; }
.r-desc, .r-advice { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-bottom: 0.5rem; }
.r-advice { color: var(--terra); font-weight: 500; }
.r-cta { display: inline-block; margin-top: 1rem; background: var(--terra); color: white; padding: 0.8rem 1.9rem; border-radius: 50px; font-size: 0.9rem; font-weight: 500; text-decoration: none; transition: all 0.3s; }
.r-cta:hover { background: var(--brown); }

/* ─── TESTIMONIALS ─── */
.testi { background: var(--blush); }
.testi-hdr { text-align: center; margin-bottom: 3rem; }
.testi-hdr .ssub { margin: 0 auto; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.testi-card {
  background: white; border-radius: 1.5rem; padding: 2rem;
  border: 1px solid rgba(196,132,106,.1); position: relative; transition: all 0.3s;
}

.testi-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(74,55,40,.1); }
.testi-card::before { content: '\201C'; font-family: var(--font-serif); font-size: 5rem; color: rgba(196,132,106,.2); position: absolute; top: 0.2rem; left: 1.2rem; line-height: 1; pointer-events: none; }
.testi-text { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.4rem; padding-top: 1.6rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.85rem; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--terra-light), var(--sage)); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.testi-name { font-weight: 500; font-size: 0.9rem; color: var(--brown); }
.testi-label { font-size: 0.76rem; color: var(--muted); }
.testi-stars { color: var(--terra); font-size: 0.9rem; margin-bottom: 0.65rem; letter-spacing: 0.05em; }

/* ─── CONTACT ─── */
.con-g { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.con-cards { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1.7rem; }

.con-card {
  display: flex; align-items: center; gap: 1.1rem;
  padding: 1.15rem 1.2rem; background: white; border-radius: 1rem;
  text-decoration: none; transition: all 0.3s;
  border: 1px solid rgba(196,132,106,.1);
}

.con-card:hover { transform: translateX(5px); box-shadow: 0 6px 20px rgba(74,55,40,.08); }
.con-icon { width: 46px; height: 46px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.con-card strong { display: block; font-size: 0.95rem; color: var(--brown); }
.con-card span { font-size: 0.8rem; color: var(--muted); }

.si-box { background: white; border-radius: 1.5rem; padding: 2.2rem; border: 1px solid rgba(196,132,106,.1); }
.si-box h3 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; color: var(--brown); margin-bottom: 1.3rem; }
.si-row { display: flex; justify-content: space-between; align-items: center; padding: 0.82rem 0; border-bottom: 1px solid rgba(196,132,106,.1); font-size: 0.92rem; }
.si-row:last-child { border-bottom: none; }
.si-row span:first-child { color: var(--muted); }
.si-row span:last-child { font-weight: 500; color: var(--brown); }

/* ─── SOCIAL ─── */
.soc { background: white; text-align: center; }
.slinks { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 2.2rem; }
.slink { display: flex; align-items: center; gap: 0.75rem; padding: 0.9rem 1.7rem; border-radius: 1rem; text-decoration: none; font-weight: 500; font-size: 0.92rem; transition: all 0.3s; border: 1.5px solid transparent; }
.slink svg { width: 20px; height: 20px; flex-shrink: 0; }
.sl-li { background: rgba(10,102,194,.08); color: #0a66c2; border-color: rgba(10,102,194,.15); }
.sl-li:hover { background: #0a66c2; color: white; }
.sl-ig { background: rgba(225,48,108,.08); color: #e1306c; border-color: rgba(225,48,108,.15); }
.sl-ig:hover { background: #e1306c; color: white; }
.sl-fb { background: rgba(24,119,242,.08); color: #1877f2; border-color: rgba(24,119,242,.15); }
.sl-fb:hover { background: #1877f2; color: white; }
.sl-wa { background: rgba(37,211,102,.08); color: #25d366; border-color: rgba(37,211,102,.15); }
.sl-wa:hover { background: #25d366; color: white; }

/* ─── FOOTER ─── */
footer { background: var(--brown); color: rgba(255,255,255,.75); padding: 2.5rem 5%; text-align: center; position: relative; overflow: hidden; }
.footer-logo-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); height: 260px; width: auto; opacity: 0.20; pointer-events: none; user-select: none; }
.fn { font-family: var(--font-serif); font-size: 1.3rem; color: white; margin-bottom: 0.5rem; }
footer p { font-size: 0.85rem; line-height: 2; }
footer a { color: rgba(255,255,255,.65); text-decoration: none; }
footer a:hover { color: white; }

/* ─── REVEAL ANIMATION ─── */
.rv { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.rv.vis { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 6rem; }
  .hero-bg-svg { opacity: 0.42; z-index: -1; }
  nav { min-height: 96px; }
  .nav-logo img { height: 88px; width: auto; }
  .about-g, .appr-g, .book-g, .con-g { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .bai-grid { grid-template-columns: 1fr; }
  /* SVG: shift brain to x=560 and heart to x=880 so both visible in single-column mobile layout */
  .brain-g-wrap { transform: translate(560px,390px) scale(0.78) translate(-340px,-390px); }
  .brain-folds  { transform: translate(220px, 0); }
  .heart-g-wrap { transform: translate(-180px, 0); }
  .heart-outer  { transform-origin: 880px 390px; }
  .heart-inner  { transform-origin: 880px 390px; }
  .heart-core   { transform-origin: 880px 390px; }
  /* Swap connection waves: hide desktop, show mobile */
  .cw1, .cw2, .cw3, .cw4   { display: none; }
  .cw1m, .cw2m, .cw3m, .cw4m { display: block; }
}

@media (max-width: 640px) {
  nav { min-height: 92px; padding: 0.4rem 4%; justify-content: space-between; }
  .nav-logo { gap: 0.3rem; }
  .nav-logo img { height: 82px; width: auto; }
  .nav-logo-name { font-size: 0.95rem; }
  .nav-logo-tagline { font-size: 0.58rem; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid rgba(196,132,106,.2); padding: 1rem 5%; gap: 0.6rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-bg-svg { opacity: 0.30; }
  .svc-grid, .testi-grid { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  section { padding: 4rem 5%; }
  .hero { padding: 5.5rem 5% 4rem; }
}
