/* ============================================================
   DAISY NYAWIRA — Design System
   daisynyawira.com
   ============================================================ */

/* ── TOKENS ── */
:root {
  --teal:        #1DBFBF;
  --teal-deep:   #148F8F;
  --teal-pale:   #E6F7F7;
  --teal-mid:    #A8E6E6;
  --orange:      #E8541A;
  --orange-deep: #C03E0C;
  --orange-pale: #FDF1EB;
  --orange-mid:  #F4A87A;
  --yellow:      #F5C518;
  --yellow-pale: #FEFAEB;
  --green:       #4CAF50;
  --ink:         #1A1A1A;
  --ink-soft:    #3D3D3D;
  --ink-muted:   #6B6B6B;
  --white:       #FFFFFF;
  --off-white:   #FDFCFA;
  --surface:     #F5F2EE;
  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Plus Jakarta Sans', system-ui, sans-serif;
  --r-sm:   6px;
  --r-md:   14px;
  --r-lg:   24px;
  --r-pill: 999px;
  --shadow:    0 2px 20px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.13);
  --nav-h: 68px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: var(--off-white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── FLASH MESSAGE ── */
.flash-success {
  background: var(--teal-pale); color: var(--teal-deep);
  border-left: 4px solid var(--teal); padding: 1rem 2rem;
  font-size: 0.95rem; font-weight: 500; text-align: center;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h); display: flex; align-items: center;
  justify-content: space-between; padding: 0 5vw;
  background: rgba(253,252,250,0.97); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.06); transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-logo img { height: 46px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; color: var(--ink-soft);
  letter-spacing: 0.02em; transition: color 0.2s; position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--teal); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform 0.22s;
}
.nav-links a:not(.nav-cta):hover,
.nav-links a.active { color: var(--teal-deep); }
.nav-links a.active::after,
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--orange) !important; color: white !important;
  padding: 0.55rem 1.4rem; border-radius: var(--r-pill);
  font-weight: 600 !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--orange-deep) !important; }
.nav-ham { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-ham span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ── DRAWER ── */
.drawer {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(253,252,250,0.99); z-index: 800;
  flex-direction: column; padding: 2rem 6vw; gap: 0.2rem; overflow-y: auto;
}
.drawer.open { display: flex; }
.drawer a { font-size: 1.1rem; font-weight: 500; color: var(--ink); padding: 0.9rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); transition: color 0.2s; }
.drawer a:hover { color: var(--teal-deep); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.75rem 1.7rem; border-radius: var(--r-pill);
  font-family: var(--sans); font-size: 0.92rem; font-weight: 600;
  cursor: pointer; border: none; transition: all 0.2s; white-space: nowrap;
}
.btn-orange      { background: var(--orange); color: white; }
.btn-orange:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(232,84,26,0.28); }
.btn-teal        { background: var(--teal); color: white; }
.btn-teal:hover  { background: var(--teal-deep); transform: translateY(-2px); }
.btn-outline     { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: white; transform: translateY(-2px); }
.btn-outline-teal { background: transparent; color: var(--teal-deep); border: 1.5px solid var(--teal); }
.btn-outline-teal:hover { background: var(--teal); color: white; transform: translateY(-2px); }
.btn-yellow      { background: var(--yellow); color: var(--ink); }
.btn-yellow:hover { background: #D4AA12; transform: translateY(-2px); }
.btn-white-o     { background: white; color: var(--orange); font-weight: 700; }
.btn-white-o:hover { background: var(--orange-pale); }

/* ── TYPOGRAPHY SYSTEM ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 0.9rem;
}
.eyebrow::before { content: ''; display: block; width: 22px; height: 2px; border-radius: 2px; }
.eyebrow.teal    { color: var(--teal-deep); }
.eyebrow.teal::before { background: var(--teal); }
.eyebrow.orange  { color: var(--orange); }
.eyebrow.orange::before { background: var(--orange); }
.eyebrow.white   { color: rgba(255,255,255,0.7); }
.eyebrow.white::before { background: rgba(255,255,255,0.5); }
.h2 { font-family: var(--serif); font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 400; line-height: 1.18; color: var(--ink); margin-bottom: 1.1rem; }
.h2 em     { font-style: italic; color: var(--orange); }
.h2 strong { color: var(--teal-deep); font-weight: 700; }
.h2.white  { color: white; }
.h2.white em { color: var(--teal-mid); }
.body-text { font-size: 1rem; font-weight: 300; line-height: 1.85; color: var(--ink-muted); }

/* ── HERO ── */
.hero { height: 100vh; max-height: 100vh; padding-top: var(--nav-h); display: grid; grid-template-columns: 52% 48%; overflow: hidden; }
.hero-l {
  display: flex; flex-direction: column; justify-content: center;
  padding: 2rem 3rem 2rem 8vw; overflow: visible;
  background: radial-gradient(ellipse 55% 45% at 110% -10%, rgba(29,191,191,0.10) 0%, transparent 70%), radial-gradient(ellipse 55% 45% at -10% 110%, rgba(232,84,26,0.08) 0%, transparent 70%), var(--off-white);
}
.hero-eyebrow { display: flex; align-items: center; gap: 0.55rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 1rem; flex-shrink: 0; }
.hero-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--teal); border-radius: 2px; flex-shrink: 0; }
.hero-headline { font-family: var(--serif); font-size: clamp(1.9rem, 3vw, 3.2rem); font-weight: 400; line-height: 1.13; color: var(--ink); margin-bottom: 0.9rem; }
.hero-headline em     { font-style: italic; color: var(--orange); display: block; }
.hero-headline strong { font-weight: 700; color: var(--teal-deep); }
.hero-sub  { font-size: 0.97rem; font-weight: 300; line-height: 1.75; color: var(--ink-muted); max-width: 400px; margin-bottom: 1.4rem; }
.hero-btns { display: flex; gap: 0.6rem; flex-wrap: nowrap; margin-bottom: 1.4rem; }
.hero-btns .btn { font-size: 0.82rem; padding: 0.68rem 1.2rem; }
.hero-trust { display: flex; align-items: center; gap: 1.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(0,0,0,0.08); }
.trust-stat { text-align: center; }
.trust-stat strong { display: block; font-family: var(--serif); font-size: 1.4rem; font-weight: 500; line-height: 1; }
.trust-stat strong.orange { color: var(--orange); }
.trust-stat strong.teal   { color: var(--teal-deep); }
.trust-stat strong.green  { color: var(--green); }
.trust-stat span { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); }
.trust-div { width: 1px; height: 28px; background: rgba(0,0,0,0.1); }
.hero-r { position: relative; overflow: hidden; }
.hero-r img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.hero-badge { position: absolute; bottom: 1.8rem; left: 1.5rem; z-index: 10; background: white; border-radius: var(--r-md); padding: 0.9rem 1.2rem; box-shadow: var(--shadow-lg); border-left: 4px solid var(--orange); }
.hero-badge-name { font-family: var(--serif); font-size: 1rem; font-weight: 500; color: var(--ink); line-height: 1.2; margin-bottom: 0.18rem; }
.hero-badge-role { font-size: 0.74rem; font-weight: 400; color: var(--ink-muted); line-height: 1.4; }
.hero-badge-dots { display: flex; gap: 5px; margin-top: 0.5rem; }
.hero-badge-dots span { width: 8px; height: 8px; border-radius: 50%; }

/* ── MARQUEE ── */
.marquee { background: var(--teal-deep); padding: 0.9rem 0; overflow: hidden; }
.marquee-track { display: flex; width: max-content; animation: mq 32s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; gap: 1.6rem; padding: 0 1.6rem; white-space: nowrap; }
.marquee-item span { font-size: 0.74rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.9); }
.marquee-item svg  { width: 12px; height: 12px; fill: var(--yellow); flex-shrink: 0; }
@keyframes mq { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── MEET DAISY ── */
.meet { height: 100vh; max-height: 100vh; display: grid; grid-template-columns: 44% 56%; overflow: hidden; }
.meet-photo { position: relative; overflow: hidden; background: var(--teal-pale); min-height: 400px; }
.meet-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.meet-photo::after { content: ''; position: absolute; top: 0; right: -1px; width: 80px; height: 100%; background: var(--off-white); clip-path: ellipse(100% 52% at 100% 50%); }
.meet-text { display: flex; flex-direction: column; justify-content: center; padding: 2.5rem 6vw 2.5rem 2.5rem; overflow: hidden; }
.meet-text .body-text { max-width: 460px; margin-bottom: 0.8rem; }
.creds { margin: 1.2rem 0 1.6rem; display: flex; flex-direction: column; gap: 0.5rem; }
.cred { display: flex; align-items: flex-start; gap: 0.75rem; }
.cred-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.cred-dot.o { background: var(--orange); }
.cred-dot.t { background: var(--teal); }
.cred-dot.y { background: var(--yellow); }
.cred-dot.g { background: var(--green); }
.cred p { font-size: 0.95rem; font-weight: 400; color: var(--ink-soft); line-height: 1.45; }
.cred p strong { font-weight: 600; color: var(--ink); }

/* ── PATHWAYS ── */
.pathways { min-height: 100vh; background: var(--surface); display: flex; flex-direction: column; justify-content: center; padding: 3rem 7vw; position: relative; overflow: hidden; }
.pathways-head { text-align: center; max-width: 560px; margin: 0 auto 2.2rem; }
.pathways-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.pw-card { background: white; border-radius: var(--r-lg); padding: 1.8rem 1.6rem; position: relative; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.25s, box-shadow 0.25s; display: flex; flex-direction: column; }
.pw-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pw-card::before { content: ''; position: absolute; top: -28px; right: -28px; width: 90px; height: 90px; border-radius: 50% 0 50% 50%; opacity: 0.13; transition: opacity 0.25s; }
.pw-card:hover::before { opacity: 0.22; }
.pw-card.o::before { background: var(--orange); }
.pw-card.t::before { background: var(--teal); }
.pw-card.y::before { background: var(--yellow); }
.pw-icon { width: 44px; height: 44px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.pw-card.o .pw-icon { background: var(--orange-pale); }
.pw-card.t .pw-icon { background: var(--teal-pale); }
.pw-card.y .pw-icon { background: var(--yellow-pale); }
.pw-icon svg { width: 22px; height: 22px; }
.pw-card.o .pw-icon svg { fill: var(--orange); }
.pw-card.t .pw-icon svg { fill: var(--teal-deep); }
.pw-card.y .pw-icon svg { fill: #8a6a00; }
.pw-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.4rem; display: block; }
.pw-card.o .pw-tag { color: var(--orange); }
.pw-card.t .pw-tag { color: var(--teal-deep); }
.pw-card.y .pw-tag { color: #8a6a00; }
.pw-card h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; color: var(--ink); margin-bottom: 0.55rem; line-height: 1.25; }
.pw-card p  { font-size: 0.93rem; font-weight: 300; line-height: 1.78; color: var(--ink-muted); flex: 1; margin-bottom: 1.3rem; }

/* ── QUOTE BREAK ── */
.quote-break { background: var(--ink); min-height: 40vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 4.5rem 10vw; text-align: center; position: relative; overflow: hidden; }
.qb-wave { margin-bottom: 1.1rem; }
.qb-wave svg { display: block; margin: 0 auto; }
.qb-petal { position: absolute; pointer-events: none; opacity: 0.05; width: 280px; }
.qb-petal.l { left: -60px; top: 50%; transform: translateY(-50%); }
.qb-petal.r { right: -60px; top: 50%; transform: translateY(-50%) scaleX(-1); }
.quote-break blockquote { font-family: var(--serif); font-size: clamp(1.4rem, 2.3vw, 2.2rem); font-style: italic; font-weight: 400; color: white; line-height: 1.55; max-width: 780px; margin-bottom: 1rem; position: relative; z-index: 1; }
.quote-break blockquote em { font-style: normal; color: var(--teal-mid); }
.quote-break cite { font-family: var(--sans); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.38); font-style: normal; position: relative; z-index: 1; }

/* ── WOUNDS / PILLS ── */
.wounds { min-height: 100vh; background: white; display: grid; grid-template-columns: 42% 58%; overflow: hidden; }
.wounds-photo { position: relative; overflow: hidden; min-height: 400px; }
.wounds-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.wounds-photo::after { content: ''; position: absolute; top: 0; right: -1px; width: 60px; height: 100%; background: white; clip-path: ellipse(100% 52% at 100% 50%); }
.wounds-photo-dot { position: absolute; top: 1.5rem; right: 1.5rem; z-index: 2; width: 46px; height: 46px; border-radius: 50%; background: var(--orange); opacity: 0.18; }
.wounds-text { display: flex; flex-direction: column; justify-content: center; padding: 3rem 6vw 3rem 3rem; overflow: hidden; }
.wounds-text .body-text { max-width: 460px; margin-bottom: 0.4rem; }
.pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.2rem 0 1.8rem; }
.pill { padding: 0.4rem 1rem; border-radius: var(--r-pill); font-size: 0.87rem; font-weight: 500; border: 1.5px solid; cursor: default; transition: all 0.18s; }
.pill:hover { transform: translateY(-2px); }
.pill.t { color: var(--teal-deep); border-color: var(--teal); background: var(--teal-pale); }
.pill.t:hover { background: var(--teal); color: white; }
.pill.o { color: var(--orange-deep); border-color: var(--orange-mid); background: var(--orange-pale); }
.pill.o:hover { background: var(--orange); color: white; }
.pill.y { color: #7a6200; border-color: var(--yellow); background: var(--yellow-pale); }
.pill.y:hover { background: var(--yellow); color: var(--ink); }

/* ── SILENT SCARS BANNER ── */
.scars { background: var(--orange); padding: 4.5rem 8vw; display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; position: relative; overflow: hidden; }
.scars-petal { position: absolute; right: -40px; top: 0; bottom: 0; width: 38%; pointer-events: none; opacity: 0.07; }
.scars-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 0.5rem; }
.scars h2 { font-family: var(--serif); font-size: clamp(1.7rem, 2.5vw, 2.6rem); font-weight: 500; color: white; line-height: 1.2; margin-bottom: 0.7rem; position: relative; z-index: 1; }
.scars h2 em { font-style: italic; font-weight: 400; }
.scars p  { font-size: 0.97rem; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.82); max-width: 520px; position: relative; z-index: 1; }
.scars-cta { position: relative; z-index: 1; flex-shrink: 0; }

/* ── SPECIALISMS CAROUSEL ── */
.specialisms { background: var(--ink); padding: 4rem 0 4.5rem 8vw; overflow: hidden; }
.spec-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.2rem; padding-right: 8vw; }
.spec-top .eyebrow.teal { color: var(--teal-mid); }
.spec-top .eyebrow.teal::before { background: var(--teal-mid); }
.car-controls { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.car-btn { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.2); background: transparent; color: white; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.car-btn:hover { background: var(--orange); border-color: var(--orange); }
.car-btn svg { width: 18px; height: 18px; fill: currentColor; }
.car-dots { display: flex; gap: 6px; align-items: center; }
.car-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.22); border: none; cursor: pointer; transition: all 0.22s; padding: 0; }
.car-dot.on { background: var(--orange); width: 22px; border-radius: 4px; }
.car-wrap { overflow: hidden; }
.car-track { display: flex; gap: 1.1rem; transition: transform 0.44s cubic-bezier(0.25,0.46,0.45,0.94); }
.sc { background: rgba(255,255,255,0.045); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-lg); padding: 2rem 1.7rem; flex: 0 0 calc(33.333% - 0.74rem); position: relative; overflow: hidden; transition: background 0.25s, border-color 0.25s, transform 0.25s; }
.sc:hover { background: rgba(255,255,255,0.085); border-color: rgba(255,255,255,0.16); transform: translateY(-3px); }
.sc::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: var(--r-lg) var(--r-lg) 0 0; }
.sc.c1::before,.sc.c4::before,.sc.c7::before { background: var(--orange); }
.sc.c2::before,.sc.c5::before,.sc.c8::before { background: var(--teal); }
.sc.c3::before,.sc.c6::before,.sc.c9::before { background: var(--yellow); }
.sc-num { font-family: var(--serif); font-size: 2.4rem; font-weight: 400; font-style: italic; line-height: 1; margin-bottom: 0.8rem; opacity: 0.16; }
.sc.c1 .sc-num,.sc.c4 .sc-num,.sc.c7 .sc-num { color: var(--orange); }
.sc.c2 .sc-num,.sc.c5 .sc-num,.sc.c8 .sc-num { color: var(--teal); }
.sc.c3 .sc-num,.sc.c6 .sc-num,.sc.c9 .sc-num { color: var(--yellow); }
.sc-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; display: block; margin-bottom: 0.45rem; }
.sc.c1 .sc-tag,.sc.c4 .sc-tag,.sc.c7 .sc-tag { color: var(--orange-mid); }
.sc.c2 .sc-tag,.sc.c5 .sc-tag,.sc.c8 .sc-tag { color: var(--teal-mid); }
.sc.c3 .sc-tag,.sc.c6 .sc-tag,.sc.c9 .sc-tag { color: var(--yellow); }
.sc h3 { font-family: var(--serif); font-size: 1.18rem; font-weight: 500; color: white; line-height: 1.3; margin-bottom: 0.75rem; }
.sc p  { font-size: 0.9rem; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.58); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--surface); padding: 5rem 7vw; }
.test-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.8rem; gap: 2rem; }
.test-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 1.2rem; }
.tc { background: white; border-radius: var(--r-lg); padding: 2rem; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.tc.feat { background: var(--teal); grid-row: span 2; padding: 2.4rem; }
.tc-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.tc-stars svg { width: 13px; height: 13px; fill: var(--yellow); }
.tc.feat .tc-stars svg { fill: rgba(255,255,255,0.65); }
.tc blockquote { font-family: var(--serif); font-size: 1.05rem; font-style: italic; font-weight: 400; line-height: 1.65; color: var(--ink); flex: 1; margin-bottom: 1.3rem; }
.tc.feat blockquote { font-size: 1.2rem; color: white; }
.tc-person { display: flex; align-items: center; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid rgba(0,0,0,0.07); margin-top: auto; }
.tc.feat .tc-person { border-top-color: rgba(255,255,255,0.18); }
.tc-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; background: var(--surface); flex-shrink: 0; display: flex; align-items: center; justify-content: center; border: 2px solid rgba(255,255,255,0.7); }
.tc-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tc-avatar svg { width: 20px; height: 20px; fill: var(--ink-muted); opacity: 0.35; }
.tc.feat .tc-avatar { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); }
.tc.feat .tc-avatar svg { fill: white; opacity: 0.55; }
.tc-name { font-size: 0.85rem; font-weight: 600; color: var(--ink); line-height: 1.2; }
.tc.feat .tc-name { color: white; }
.tc-loc  { font-size: 0.74rem; font-weight: 300; color: var(--ink-muted); }
.tc.feat .tc-loc  { color: rgba(255,255,255,0.58); }

/* ── BOOKING ── */
.booking { background: var(--ink); padding: 5.5rem 8vw; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.booking-text h2 { font-family: var(--serif); font-size: clamp(2rem, 2.8vw, 2.8rem); font-weight: 400; color: white; line-height: 1.18; margin-bottom: 1rem; }
.booking-text h2 em { font-style: italic; color: var(--teal-mid); }
.booking-text p { font-size: 0.97rem; font-weight: 300; line-height: 1.82; color: rgba(255,255,255,0.62); max-width: 400px; margin-bottom: 1.8rem; }
.booking-opts { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cal-box { background: white; border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.25); }

/* ── EMAIL ── */
.email-sec { background: var(--teal-pale); padding: 5rem 8vw; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.email-card { background: white; border-radius: var(--r-lg); padding: 2.2rem; box-shadow: var(--shadow-lg); position: relative; }
.email-card-top { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--surface); }
.email-avatar { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.email-avatar img { width: 100%; height: 100%; object-fit: cover; }
.email-from    { font-size: 0.87rem; font-weight: 600; color: var(--ink); }
.email-sub2    { font-size: 0.75rem; color: var(--ink-muted); }
.email-subject { font-family: var(--serif); font-size: 1rem; font-weight: 500; color: var(--ink); margin-bottom: 0.5rem; }
.email-preview { font-size: 0.85rem; font-weight: 300; line-height: 1.7; color: var(--ink-muted); }
.email-badge { position: absolute; bottom: -1rem; right: -1rem; background: var(--orange); color: white; border-radius: var(--r-md); padding: 0.65rem 1rem; font-size: 0.8rem; font-weight: 600; box-shadow: var(--shadow-lg); }
.email-form-col .body-text { margin-bottom: 1.8rem; max-width: 400px; }
.email-inputs { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 0.8rem; }
.email-inputs input { padding: 0.82rem 1.2rem; border: 1.5px solid rgba(29,191,191,0.28); border-radius: var(--r-pill); font-family: var(--sans); font-size: 0.95rem; color: var(--ink); background: white; outline: none; transition: border-color 0.2s; }
.email-inputs input:focus { border-color: var(--teal); }
.email-inputs input::placeholder { color: var(--ink-muted); }
.email-fine { font-size: 0.76rem; color: var(--ink-muted); font-weight: 300; }

/* ── MANTRAS ── */
.mantras-wrap { background: var(--off-white); padding: 3.5rem 7vw; }
.mantras-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 1.2rem; display: block; }
.mantras-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.mantra-card { border-radius: var(--r-md); padding: 1.6rem 1.8rem; border: 1.5px solid; }
.mantra-card.one { background: var(--orange-pale); border-color: var(--orange); border-left: 4px solid var(--orange); }
.mantra-card.two { background: var(--teal-pale); border-color: var(--teal); border-left: 4px solid var(--teal); }
.mantra-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; display: block; margin-bottom: 0.6rem; }
.mantra-card.one .mantra-tag { color: var(--orange); }
.mantra-card.two .mantra-tag { color: var(--teal-deep); }
.mantra-card blockquote { font-family: var(--serif); font-size: 1.1rem; font-style: italic; font-weight: 400; line-height: 1.6; color: var(--ink); }

/* ── WAVE DIVIDER ── */
.wave-divider { display: block; width: 100%; line-height: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; }
.wave-divider.into-surface svg path { fill: var(--surface); }
.wave-divider.into-white svg path   { fill: var(--white); }
.wave-divider.into-ink svg path     { fill: var(--ink); }
.wave-divider.into-off svg path     { fill: var(--off-white); }
.wave-divider.from-surface { background: var(--surface); }
.wave-divider.from-white   { background: var(--white); }
.wave-divider.from-ink     { background: var(--ink); }

/* ── FOOTER ── */
footer { background: #111; padding: 5rem 7vw 2.5rem; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 1.8rem; }
.foot-logo img { height: 52px; width: auto; margin-bottom: 1rem; background: white; padding: 0.4rem 0.9rem; border-radius: var(--r-pill); box-shadow: 0 2px 12px rgba(0,0,0,0.2); }
.foot-tag  { font-family: var(--serif); font-style: italic; font-size: 0.95rem; color: rgba(255,255,255,0.45); line-height: 1.55; margin-bottom: 0.7rem; }
.foot-loc  { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 1.3rem; }
.foot-socials { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.foot-soc { font-size: 0.74rem; font-weight: 500; color: rgba(255,255,255,0.5); padding: 0.32rem 0.8rem; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-pill); transition: all 0.2s; }
.foot-soc:hover { color: var(--teal-mid); border-color: var(--teal-deep); }
.foot-col h4 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1.1rem; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.foot-col ul a { font-size: 0.9rem; font-weight: 300; color: rgba(255,255,255,0.52); transition: color 0.2s; }
.foot-col ul a:hover { color: white; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.foot-copy { font-size: 0.75rem; font-weight: 300; color: rgba(255,255,255,0.25); }
.pandiz { font-family: 'Courier New', monospace; font-size: 0.68rem; color: #39ff14; letter-spacing: 0.05em; opacity: 0.65; transition: opacity 0.2s; }
.pandiz:hover { opacity: 1; }

/* ── WHATSAPP ── */
.wa { position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 999; width: 54px; height: 54px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 22px rgba(37,211,102,0.38); transition: transform 0.2s; }
.wa:hover { transform: scale(1.09); }
.wa svg { width: 28px; height: 28px; fill: white; }

/* ── INTERIOR PAGE SHARED ── */
.page-hero { background: var(--ink); padding: var(--nav-h) 0 0; min-height: 40vh; display: flex; align-items: flex-end; position: relative; overflow: hidden; }
.page-hero-inner { padding: 4rem 8vw 4rem; position: relative; z-index: 2; max-width: 760px; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.6rem); font-weight: 400; color: white; line-height: 1.18; margin-bottom: 0.8rem; }
.page-hero h1 em { font-style: italic; color: var(--teal-mid); display: block; }
.page-hero p { font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.7); max-width: 560px; line-height: 1.75; }
.page-hero-petal { position: absolute; right: -60px; top: 50%; transform: translateY(-50%); width: 40%; opacity: 0.05; pointer-events: none; }
.int-section { padding: 5.5rem 8vw; }
.int-section.surface  { background: var(--surface); }
.int-section.white    { background: var(--white); }
.int-section.off      { background: var(--off-white); }
.int-section.ink      { background: var(--ink); }
.int-section.teal-bg  { background: var(--teal-pale); }
.int-section.orange-bg { background: var(--orange); }
.int-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.int-2col.center { align-items: center; }

/* ── FOCUS LIST ── */
.focus-list { display: flex; flex-direction: column; gap: 0.55rem; margin: 1.5rem 0 2rem; }
.focus-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.7rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.focus-item:last-child { border-bottom: none; }
.focus-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.focus-dot.o { background: var(--orange); }
.focus-dot.t { background: var(--teal); }
.focus-dot.y { background: #8a6a00; }
.focus-item p { font-size: 0.97rem; font-weight: 400; color: var(--ink-soft); line-height: 1.55; }
.focus-item p strong { color: var(--ink); font-weight: 600; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.09); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 1.3rem 0; text-align: left; gap: 1rem; }
.faq-q-text { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; color: var(--ink); line-height: 1.3; }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--surface); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s; }
.faq-icon svg { width: 14px; height: 14px; fill: var(--ink-muted); transition: transform 0.25s; }
.faq-item.open .faq-icon { background: var(--orange); }
.faq-item.open .faq-icon svg { fill: white; transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 1.4rem; }
.faq-a p { font-size: 0.97rem; font-weight: 300; line-height: 1.82; color: var(--ink-muted); max-width: 640px; }
.faq-item.open .faq-a { display: block; }

/* ── SESSION CARDS ── */
.sessions-grid { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.session-card { display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; background: white; border-radius: var(--r-md); padding: 1.4rem 1.6rem; box-shadow: var(--shadow); align-items: start; }
.session-num { font-family: var(--serif); font-size: 2rem; font-weight: 400; font-style: italic; color: var(--orange); line-height: 1; opacity: 0.5; min-width: 2.5rem; }
.session-date { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 0.3rem; }
.session-card h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; color: var(--ink); margin-bottom: 0.4rem; }
.session-card p { font-size: 0.9rem; font-weight: 300; color: var(--ink-muted); line-height: 1.7; }

/* ── SPEAKING TOPICS ── */
.topics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.topic-card { background: white; border-radius: var(--r-md); padding: 1.5rem 1.6rem; border-left: 4px solid var(--teal); box-shadow: var(--shadow); }
.topic-card h3 { font-family: var(--serif); font-size: 1rem; font-weight: 500; color: var(--ink); line-height: 1.35; }

/* ── FORMS ── */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; color: var(--ink-soft); text-transform: uppercase; }
.form-field input,
.form-field select,
.form-field textarea { padding: 0.82rem 1.1rem; border: 1.5px solid rgba(0,0,0,0.12); border-radius: var(--r-md); font-family: var(--sans); font-size: 0.95rem; color: var(--ink); background: white; outline: none; transition: border-color 0.2s; width: 100%; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--teal); }
.form-field textarea { resize: vertical; min-height: 120px; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2rem; }
.blog-card { background: white; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 200px; background: var(--surface); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-img-placeholder { font-size: 2.5rem; opacity: 0.3; }
.blog-card-body { padding: 1.4rem 1.5rem; }
.blog-cat { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 0.5rem; display: block; }
.blog-card h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; color: var(--ink); line-height: 1.35; margin-bottom: 0.6rem; }
.blog-card p { font-size: 0.87rem; font-weight: 300; color: var(--ink-muted); line-height: 1.7; margin-bottom: 1rem; }
.blog-read { font-size: 0.82rem; font-weight: 600; color: var(--orange); }
.blog-read:hover { color: var(--orange-deep); }

/* ── COUNTDOWN ── */
.countdown { display: flex; gap: 1.5rem; justify-content: center; margin: 1.5rem 0; }
.countdown-unit { text-align: center; }
.countdown-num { display: block; font-family: var(--serif); font-size: 2.8rem; font-weight: 500; color: var(--orange); line-height: 1; }
.countdown-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-muted); }

/* ── WHO LIST ── */
.who-item { display: flex; align-items: flex-start; gap: 0.8rem; padding: 0.85rem 1.1rem; background: white; border-radius: var(--r-md); box-shadow: var(--shadow); }
.who-item-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; margin-top: 6px; }
.who-item p { font-size: 0.95rem; font-weight: 400; color: var(--ink); line-height: 1.55; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { height: auto; max-height: none; grid-template-columns: 1fr; }
  .hero-r { height: 60vw; }
  .hero-l { padding: 2.5rem 5vw; }
  .hero-badge { left: 1rem; bottom: 1.2rem; }
  .meet { height: auto; max-height: none; grid-template-columns: 1fr; }
  .meet-photo { height: 56vw; }
  .meet-photo::after { display: none; }
  .meet-text { padding: 2.5rem 5vw; }
  .pathways { min-height: auto; padding: 3rem 5vw; }
  .pathways-grid { grid-template-columns: 1fr; gap: 1rem; }
  .wounds { min-height: auto; grid-template-columns: 1fr; }
  .wounds-photo { height: 56vw; }
  .wounds-photo::after { display: none; }
  .wounds-text { padding: 2.5rem 5vw; }
  .sc { flex: 0 0 calc(50% - 0.55rem); }
  .spec-top { flex-direction: column; align-items: flex-start; gap: 1.2rem; padding-right: 6vw; }
  .test-grid { grid-template-columns: 1fr; }
  .tc.feat { grid-row: span 1; }
  .test-head { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .booking { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 5vw; }
  .email-sec { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 5vw; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .scars { grid-template-columns: 1fr; }
  .mantras-grid { grid-template-columns: 1fr; }
  .int-2col { grid-template-columns: 1fr; gap: 3rem; }
  .topics-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .int-section { padding: 4rem 6vw; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-ham   { display: flex; }
  .nav { padding: 0 5vw; }
  .hero-l { padding: 2.5rem 5vw 2rem; }
  .hero-headline { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-btns { flex-wrap: wrap; gap: 0.6rem; }
  .hero-r { height: auto; max-height: none; }
  .hero-r img { position: relative; inset: auto; width: 100%; height: auto; max-height: 90vw; }
  .meet-photo { height: auto; }
  .meet-photo img { position: relative; inset: auto; width: 100%; height: auto; max-height: 90vw; }
  .wounds-photo { height: auto; }
  .wounds-photo img { position: relative; inset: auto; width: 100%; height: auto; max-height: 90vw; border-radius: var(--r-lg); }
  .sc { flex: 0 0 84vw; }
  .specialisms { padding: 3.5rem 0 3.5rem 5vw; }
  .foot-grid { grid-template-columns: 1fr; gap: 2rem; padding: 0 5vw 2.5rem; }
  footer { padding: 3.5rem 0 2rem; }
  .foot-bottom { flex-direction: column; text-align: center; gap: 0.8rem; padding: 0 5vw; }
  .email-badge { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .int-section { padding: 3.5rem 5vw; }
  .page-hero-inner { padding: 3rem 5vw; }
  .page-hero h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .mantras-wrap { padding: 2.5rem 5vw; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; width: 100%; }
  .sc { flex: 0 0 90vw; }
  .pills { gap: 0.4rem; }
  .countdown { gap: 1rem; }
  .countdown-num { font-size: 2rem; }
}
/* ── MARQUEE SPACING FIX ── */
.marquee {
  background: var(--teal-deep);
  padding: 0.7rem 0;
  overflow: hidden;
  margin: 2.5rem 0;
}
.marquee-item span {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  opacity: 0.85;
}

/* ── NAV RESPONSIVE FIX — prevent button distortion on tablet widths ── */
@media (max-width: 1180px) and (min-width: 769px) {
  .nav-links { gap: 1.1rem; }
  .nav-links a { font-size: 0.78rem; }
  .nav-cta { padding: 0.5rem 1.1rem; font-size: 0.78rem !important; white-space: nowrap; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-ham { display: flex; }
}

/* ── ABOUT HERO RESPONSIVE — split layout stacks on mobile ── */
@media (max-width: 900px) {
  section[aria-label="About Daisy"] {
    grid-template-columns: 1fr !important;
    height: auto !important;
    max-height: none !important;
  }
  section[aria-label="About Daisy"] > div:first-child {
    padding: 3rem 6vw 2rem !important;
  }
  section[aria-label="About Daisy"] > div:last-child {
    height: 60vh !important;
    min-height: 0 !important;
  }
}

/* ── HERO CONTAINMENT FIX ── */
.hero { overflow: hidden; }
.hero-trust { flex-wrap: wrap; row-gap: 0.8rem; }
.hero-l { min-height: 0; }

/* ── HERO BADGE — prevent overflow on mobile ── */
@media (max-width: 768px) {
  .hero-badge { max-width: 220px; }
  .hero-badge-role { font-size: 0.68rem; }
}
