/* ═══════════════════════════════════════════════════════════
   CREUYNNI WELLBEING CIC — SHARED DESIGN SYSTEM
   Teal-shifted palette. All pages link this file.
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --night:  #0d1a1a;
  --forest: #1a2d2c;
  --moss:   #2b4844;
  --sage:   #537a78;
  --mist:   #90b5b3;
  --aurora: #4dbfb8;
  --cream:  #f5f0e8;
  --gold:   #c4962a;
  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Jost', sans-serif;
  --ease:   all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }
body { background: var(--night); color: var(--cream); font-family: var(--font-b); font-weight: 300; font-size: 1rem; line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: var(--font-d); font-weight: 300; line-height: 1.2; color: var(--cream); }
h1 em,h2 em,h3 em { font-style: italic; color: var(--aurora); }
.display { font-family: var(--font-d); font-size: clamp(3rem,7vw,5.8rem); font-weight: 300; line-height: 1.05; color: var(--cream); letter-spacing: -.01em; }
.h2 { font-family: var(--font-d); font-size: clamp(2.1rem,4vw,3.1rem); font-weight: 300; color: var(--cream); line-height: 1.15; }
.h3 { font-family: var(--font-d); font-size: clamp(1.5rem,2.5vw,2rem); font-weight: 300; color: var(--cream); }
.lead { font-size: clamp(.88rem,2vw,1.05rem); font-weight: 300; letter-spacing: .06em; color: var(--mist); line-height: 1.85; }

/* Section label */
.overline { font-family: var(--font-b); font-size: .63rem; letter-spacing: .22em; text-transform: uppercase; color: var(--aurora); display: flex; align-items: center; gap: .7rem; margin-bottom: 1.4rem; }
.overline::before { content: ''; display: block; width: 28px; height: 1px; background: var(--aurora); flex-shrink: 0; }
.overline.centered { justify-content: center; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px,5vw,3rem); }
.container-mid { max-width: 960px; }
.container-text { max-width: 740px; }
section { position: relative; }
.section-header { margin-bottom: clamp(40px,5vw,64px); }
.section-header.centered { text-align: center; margin-left: auto; margin-right: auto; max-width: 640px; }
.section-header.centered .overline { justify-content: center; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { *,*::before,*::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } .reveal { opacity: 1; transform: none; } }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-b); font-size: .76rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; border-radius: 2px; cursor: pointer; border: 1px solid transparent; white-space: nowrap; transition: var(--ease); padding: .82rem 2.1rem; }
.btn-primary { background: var(--aurora); color: var(--forest); border-color: var(--aurora); }
.btn-primary:hover { background: transparent; color: var(--aurora); }
.btn-secondary { background: var(--forest); color: var(--cream); border-color: rgba(77,191,184,.4); }
.btn-secondary:hover { border-color: var(--aurora); background: rgba(77,191,184,.08); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(245,240,232,.3); }
.btn-ghost:hover { border-color: var(--cream); background: rgba(245,240,232,.05); }
.btn-outline { background: transparent; color: var(--aurora); border-color: rgba(77,191,184,.4); }
.btn-outline:hover { border-color: var(--aurora); background: rgba(77,191,184,.08); }
.btn-group { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-text { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--font-b); font-size: .73rem; letter-spacing: .1em; text-transform: uppercase; color: var(--aurora); text-decoration: none; background: none; border: none; cursor: pointer; transition: gap .3s; padding: 0; }
.btn-text::after { content: '→'; }
.btn-text:hover { gap: .85rem; }
.btn-text.white { color: var(--cream); }
.btn-text.white::after { color: var(--aurora); }

/* ── ANNOUNCEMENT BAR ── */
.ann-bar { background: rgba(196,150,42,.08); border-bottom: 1px solid rgba(196,150,42,.2); text-align: center; padding: .55rem 1rem; font-size: .7rem; letter-spacing: .08em; color: var(--gold); position: relative; z-index: 200; }
.ann-bar strong { font-weight: 500; }

/* ── NAV ── */
.nav { position: sticky; top: 0; left: 0; right: 0; z-index: 150; padding: 1.2rem 3rem; display: flex; align-items: center; justify-content: space-between; transition: background .4s, padding .4s, box-shadow .4s; }
.nav.scrolled { background: rgba(13,26,26,.96); backdrop-filter: blur(20px); padding: .85rem 3rem; box-shadow: 0 1px 0 rgba(77,191,184,.1); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 16px; }
.nav-logo { display: flex; align-items: center; gap: .9rem; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 52px; width: auto; max-width: 180px; object-fit: contain; filter: brightness(0) invert(1); opacity: .94; transition: opacity .3s; }
.nav-logo:hover img { opacity: 1; }
.nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; flex: 1; justify-content: center; }
.nav-item { position: relative; }
.nav-link { color: var(--mist); text-decoration: none; font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 400; transition: color .3s; position: relative; padding: 8px 0; display: block; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--aurora); transition: width .4s; }
.nav-link:hover,.nav-link.active { color: var(--cream); }
.nav-link:hover::after,.nav-link.active::after { width: 100%; }
.nav-cta { display: flex; flex-shrink: 0; }
.nav-cta .btn { border: 1px solid rgba(77,191,184,.5) !important; color: var(--aurora) !important; background: transparent !important; padding: .5rem 1.3rem !important; }
.nav-cta .btn:hover { background: rgba(77,191,184,.1) !important; }
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; padding: 6px; flex-shrink: 0; }
.nav-hamburger span { display: block; height: 1px; background: var(--cream); transition: transform .3s ease, opacity .3s ease; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu { position: fixed; inset: 0; background: var(--night); z-index: 149; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 1.6rem; padding: clamp(96px,16vh,150px) 24px 48px; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-12px); transition: opacity .35s ease, transform .35s ease, visibility 0s linear .35s; overflow-y: auto; }
.mobile-menu.open { opacity: 1; visibility: visible; pointer-events: all; transform: translateY(0); transition: opacity .35s ease, transform .35s ease, visibility 0s linear 0s; }
.mobile-menu-link { display: block; font-family: var(--font-d); font-size: clamp(1.8rem,5vw,2.6rem); font-weight: 300; color: rgba(245,240,232,.85); text-decoration: none; padding: 8px 0; border-bottom: 1px solid rgba(77,191,184,.1); width: 100%; text-align: center; max-width: 400px; transition: color .3s; }
.mobile-menu-link:hover { color: var(--aurora); }
.mobile-menu-cta { margin-top: 20px; }

/* ── PAGE HERO ── */
.page-hero { position: relative; min-height: 56vh; display: flex; align-items: center; overflow: hidden; background: var(--night); }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .28; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg,rgba(13,26,26,.3) 0%,rgba(13,26,26,.1) 35%,rgba(13,26,26,.7) 78%,rgba(13,26,26,1) 100%); }
.page-hero-ripple { position: absolute; right: -80px; top: 50%; transform: translateY(-50%); width: 480px; height: 480px; opacity: .06; pointer-events: none; }
.page-hero-content { position: relative; z-index: 2; padding: clamp(80px,12vw,136px) 0 clamp(64px,10vw,104px); max-width: 680px; }
.page-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.page-breadcrumb a { font-size: .76rem; color: rgba(245,240,232,.5); text-decoration: none; letter-spacing: .08em; transition: color .3s; }
.page-breadcrumb a:hover { color: var(--mist); }
.page-breadcrumb span { font-size: .76rem; color: rgba(245,240,232,.3); }
.page-breadcrumb-current { font-size: .76rem; color: var(--mist); letter-spacing: .08em; }

/* ── STRIP / MARQUEE ── */
.strip { background: var(--forest); padding: 3.5rem 0; border-top: 1px solid rgba(77,191,184,.1); border-bottom: 1px solid rgba(77,191,184,.1); overflow: hidden; }
.strip-inner { display: flex; animation: marquee 28s linear infinite; width: max-content; }
.strip-inner:hover { animation-play-state: paused; }
.strip-item { display: flex; align-items: center; gap: 1.3rem; padding: 0 2.8rem; white-space: nowrap; font-family: var(--font-d); font-size: 1.35rem; font-weight: 300; color: var(--mist); }
.strip-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--aurora); flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--forest); border-top: 1px solid rgba(77,191,184,.08); border-bottom: 1px solid rgba(77,191,184,.08); padding: clamp(64px,8vw,112px) 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card { background: var(--night); border-radius: 2px; padding: 2.5rem 2rem; border-left: 3px solid var(--gold); position: relative; }
.testimonial-quote { font-family: var(--font-d); font-size: 4rem; color: var(--gold); opacity: .22; position: absolute; top: 14px; left: 20px; line-height: 1; pointer-events: none; }
.testimonial-card p { font-size: .91rem; font-style: italic; color: var(--mist); line-height: 1.7; margin-bottom: 20px; position: relative; font-family: var(--font-d); }
.testimonial-author { font-size: .73rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; color: var(--sage); }

/* ── CTA SECTION ── */
.cta-sec { position: relative; padding: 8rem 3rem; text-align: center; overflow: hidden; }
.cta-sec-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: saturate(.45) brightness(.3); }
.cta-sec-ov { position: absolute; inset: 0; background: rgba(13,26,26,.72); }
.cta-sec-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }

/* ── VALUE CARDS ── */
.value-card { background: rgba(77,191,184,.04); border: 1px solid rgba(77,191,184,.12); border-radius: 2px; padding: 2rem 1.8rem; transition: background .3s; }
.value-card:hover { background: rgba(77,191,184,.09); }
.value-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(77,191,184,.12); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.value-icon svg { width: 22px; height: 22px; stroke: var(--aurora); fill: none; stroke-width: 1.5; }
.value-card h3 { color: var(--cream); font-size: 1.1rem; margin-bottom: 8px; }
.value-card p { color: var(--mist); font-size: .875rem; line-height: 1.65; }

/* ── COMMUNITY CARDS ── */
.community-card { background: rgba(77,191,184,.04); border: 1px solid rgba(77,191,184,.12); border-radius: 2px; padding: 2rem 1.8rem; transition: background .3s; }
.community-card:hover { background: rgba(77,191,184,.09); }
.community-card-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(77,191,184,.12); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.community-card-icon svg { width: 22px; height: 22px; stroke: var(--aurora); fill: none; stroke-width: 1.5; }
.community-card h3 { color: var(--cream); font-size: 1.2rem; margin-bottom: 10px; }
.community-card p { color: var(--mist); font-size: .9rem; line-height: 1.65; }

/* ── PULL QUOTE ── */
.philosophy-pull-quote { background: var(--forest); border-radius: 2px; padding: clamp(36px,5vw,56px); margin-top: 40px; position: relative; overflow: hidden; border: 1px solid rgba(77,191,184,.1); }
.philosophy-pull-quote::before { content: '\201C'; font-family: var(--font-d); font-size: 14rem; color: rgba(77,191,184,.06); position: absolute; top: -32px; left: 24px; line-height: 1; pointer-events: none; }
.philosophy-pull-quote p { font-family: var(--font-d); font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 300; font-style: italic; color: var(--cream); line-height: 1.55; max-width: 780px; position: relative; z-index: 1; }
.philosophy-pull-quote cite { display: block; font-family: var(--font-b); font-size: .76rem; font-style: normal; color: var(--aurora); margin-top: 18px; letter-spacing: .1em; text-transform: uppercase; position: relative; z-index: 1; }

/* ── CIC HIGHLIGHT ── */
.cic-highlight { background: var(--night); border-left: 4px solid var(--aurora); padding: 1.5rem 1.6rem; margin-top: 1.8rem; border-radius: 2px; }
.cic-highlight p { font-size: .91rem; color: var(--mist); line-height: 1.7; margin: 0; }

/* ── PRACTITIONER / TEAM CARDS ── */
.practitioner-card,.team-card { text-align: center; text-decoration: none; display: block; padding: 2.4rem 1.5rem 2rem; border: 1px solid rgba(77,191,184,.1); border-radius: 2px; background: var(--forest); transition: transform .3s, border-color .3s; }
.practitioner-card:hover,.team-card:hover { transform: translateY(-4px); border-color: rgba(77,191,184,.3); }
.practitioner-img,.team-photo { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; object-position: top center; margin: 0 auto 16px; border: 2px solid rgba(77,191,184,.3); display: block; }
.team-photo-placeholder,.practitioner-photo-placeholder { width: 88px; height: 88px; border-radius: 50%; background: var(--moss); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: var(--font-d); font-size: 1.6rem; color: var(--aurora); border: 2px solid rgba(77,191,184,.2); }
.practitioner-card h3,.team-card h3 { font-size: 1.05rem; color: var(--cream); margin-bottom: 5px; font-family: var(--font-d); font-weight: 400; }
.practitioner-card span,.team-card-role { font-size: .76rem; color: var(--aurora); letter-spacing: .08em; text-transform: uppercase; display: block; margin-bottom: 8px; font-family: var(--font-b); }
.team-card-bio,.practitioner-card-bio { font-size: .84rem; color: var(--mist); line-height: 1.6; }

/* ── RESOURCE ITEMS ── */
.ri { background: var(--night); padding: 2.4rem 1.9rem; transition: background .4s; border: 1px solid rgba(77,191,184,.06); border-radius: 2px; }
.ri:hover { background: var(--forest); }
.ri-ico,.resource-icon { width: 42px; height: 42px; border: 1px solid rgba(77,191,184,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.4rem; transition: border-color .4s; flex-shrink: 0; }
.ri:hover .ri-ico { border-color: var(--aurora); }
.ri-ico svg,.resource-icon svg { width: 17px; height: 17px; stroke: var(--aurora); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.ri h4,.resource-card h3 { font-family: var(--font-d); font-size: 1.15rem; font-weight: 400; color: var(--cream); margin-bottom: .55rem; }
.ri p,.resource-card p { color: var(--mist); font-size: .81rem; line-height: 1.7; }

/* ── RESOURCE CARD ── */
.resource-card { background: rgba(77,191,184,.04); border: 1px solid rgba(77,191,184,.12); border-radius: 2px; padding: 2rem 1.8rem; text-decoration: none; transition: background .3s; display: flex; gap: 20px; align-items: flex-start; }
.resource-card:hover { background: rgba(77,191,184,.09); }

/* ── CONTACT ── */
.ci { display: flex; align-items: flex-start; gap: .9rem; margin-bottom: 1.1rem; }
.ci-ico { width: 34px; height: 34px; border: 1px solid rgba(77,191,184,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.ci-ico svg { width: 14px; height: 14px; stroke: var(--aurora); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.ci-t { font-size: .87rem; color: var(--mist); line-height: 1.6; }
.ci-t strong { color: var(--cream); font-weight: 400; display: block; margin-bottom: .12rem; }

/* ── FORMS ── */
.form-field,.fg { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.1rem; }
.form-label,.fg label { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sage); }
.form-input,.form-select,.fg input,.fg textarea,.fg select { background: rgba(255,255,255,.03); border: 1px solid rgba(77,191,184,.15); color: var(--cream); padding: .82rem .95rem; font-family: var(--font-b); font-size: .87rem; border-radius: 2px; outline: none; transition: border-color .3s; resize: none; width: 100%; }
.form-input::placeholder,.fg input::placeholder,.fg textarea::placeholder { color: var(--sage); }
.form-input:focus,.form-select:focus,.fg input:focus,.fg textarea:focus,.fg select:focus { border-color: rgba(77,191,184,.5); }
.form-select,.fg select { appearance: none; }
.fg textarea { height: 125px; }
.form-textarea { background: rgba(255,255,255,.03); border: 1px solid rgba(77,191,184,.15); color: var(--cream); padding: .82rem .95rem; font-family: var(--font-b); font-size: .87rem; border-radius: 2px; outline: none; transition: border-color .3s; width: 100%; min-height: 110px; resize: vertical; }
.form-textarea:focus { border-color: rgba(77,191,184,.5); }
.form-textarea::placeholder { color: var(--sage); }

/* ── SEARCH ── */
.search-bar-wrap { display: flex; align-items: center; background: var(--forest); border: 1px solid rgba(77,191,184,.2); border-radius: 2px; padding: 6px 6px 6px 24px; transition: border-color .3s; margin-bottom: 28px; }
.search-bar-wrap:focus-within { border-color: rgba(77,191,184,.5); }
.search-bar-input { flex: 1; background: none; border: none; outline: none; font-family: var(--font-b); font-size: 1rem; color: var(--cream); min-width: 0; padding: 6px 0; }
.search-bar-input::placeholder { color: var(--sage); }
.search-bar-btn { flex-shrink: 0; padding: 11px 26px; background: var(--aurora); color: var(--forest); border: none; border-radius: 2px; font-family: var(--font-b); font-size: .76rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: background .3s; }
.search-bar-btn:hover { background: var(--mist); }
.search-hints { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.search-hint { font-family: var(--font-b); font-size: .76rem; color: var(--mist); background: var(--forest); border: 1px solid rgba(77,191,184,.15); border-radius: 2px; padding: .4rem 1rem; text-decoration: none; transition: border-color .3s,color .3s; cursor: pointer; }
.search-hint:hover { border-color: var(--aurora); color: var(--aurora); }
.search-note { font-size: .78rem; color: var(--sage); margin-top: 20px; }
.search-results-wrap { position: relative; text-align: left; }
.search-results { position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 40; background: var(--forest); border: 1px solid rgba(77,191,184,.25); border-radius: 2px; padding: 8px; display: none; max-height: 360px; overflow-y: auto; box-shadow: 0 16px 48px rgba(0,0,0,.4); }
.search-results.open { display: block; }
.search-result-item { display: flex; flex-direction: column; gap: 2px; padding: 12px 16px; border-radius: 2px; text-decoration: none; transition: background .2s; }
.search-result-item:hover, .search-result-item.active { background: rgba(77,191,184,.1); }
.search-result-title { font-family: var(--font-b); font-size: .88rem; font-weight: 500; color: var(--cream); }
.search-result-title mark { background: none; color: var(--aurora); font-weight: 500; }
.search-result-meta { font-size: .74rem; color: var(--mist); display: flex; flex-wrap: wrap; align-items: center; gap: 4px 8px; }
.search-result-category { font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--aurora); flex-shrink: 0; }
.search-results-empty { padding: 16px; font-size: .82rem; color: var(--sage); text-align: center; }
.search-result-see-all { display: block; width: 100%; text-align: center; font-family: var(--font-b); font-size: .76rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--aurora); background: rgba(77,191,184,.06); border: none; border-top: 1px solid rgba(77,191,184,.12); border-radius: 2px; padding: 13px 16px; margin-top: 6px; cursor: pointer; transition: background .2s, color .2s; }
.search-result-see-all:hover { background: rgba(77,191,184,.14); color: var(--mist); }
@media (max-width: 600px) {
  .search-results { left: -8px; right: -8px; max-height: 320px; }
  .search-result-item { padding: 10px 12px; }
}

/* ── PATHWAY CARDS ── */
.pathway-card { position: relative; overflow: hidden; min-height: 440px; display: flex; align-items: flex-end; text-decoration: none; }
.pathway-card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.pathway-card:hover .pathway-card-img { transform: scale(1.04); }
.pathway-card-overlay { position: absolute; inset: 0; transition: opacity .3s; }
.pathway-card-body { position: relative; z-index: 2; padding: clamp(32px,4vw,56px); width: 100%; }
.pathway-label { display: inline-block; font-family: var(--font-b); font-size: .63rem; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; color: var(--aurora); margin-bottom: 12px; border: 1px solid rgba(77,191,184,.3); padding: .2rem .7rem; border-radius: 1px; }
.pathway-card-body h2 { font-family: var(--font-d); font-size: clamp(2rem,3.5vw,2.8rem); font-weight: 300; color: var(--cream); line-height: 1.15; margin-bottom: 16px; }
.pathway-card-body p { font-size: .9375rem; color: rgba(245,240,232,.75); line-height: 1.65; max-width: 380px; margin-bottom: 24px; }
.pathway-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.pathway-tag { font-family: var(--font-b); font-size: .63rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; color: rgba(245,240,232,.7); background: rgba(255,255,255,.08); border: 1px solid rgba(77,191,184,.2); border-radius: 1px; padding: .22rem .55rem; }

/* ── HERO SCROLL ── */
.hero-scroll { position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .45rem; }
.scroll-line { width: 1px; height: 46px; background: linear-gradient(to bottom,var(--aurora),transparent); animation: scrollPulse 2s ease-in-out infinite; }
.hero-scroll span { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--mist); }
@keyframes scrollPulse { 0%,100% { opacity: .35; } 50% { opacity: 1; } }

/* ── FOOTER ── */
.footer { background: var(--night); border-top: 1px solid rgba(77,191,184,.1); padding: 5rem 3rem 2rem; }
.footer-inner,.ft-in { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(77,191,184,.08); margin-bottom: 2rem; }
.footer-logo { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.4rem; text-decoration: none; }
.footer-logo img { height: 44px; width: auto; max-width: 160px; object-fit: contain; }
.footer-tagline { font-family: var(--font-d); font-size: 1rem; font-style: italic; color: rgba(245,240,232,.55); line-height: 1.65; max-width: 280px; margin-bottom: 24px; }
.footer-cic-info { font-size: .75rem; color: var(--sage); opacity: .7; line-height: 1.6; }
.footer-heading { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--aurora); margin-bottom: 1.4rem; font-weight: 400; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-link { display: block; color: var(--sage); text-decoration: none; font-size: .84rem; transition: color .3s; padding: 0; }
.footer-link:hover { color: var(--cream); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: .875rem; color: var(--sage); }
.footer-contact-item a { color: var(--sage); text-decoration: none; transition: color .3s; }
.footer-contact-item a:hover { color: var(--cream); }
.footer-social { display: flex; gap: .7rem; margin-top: 20px; flex-wrap: wrap; }
.footer-social-link { width: 34px; height: 34px; border: 1px solid rgba(77,191,184,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: var(--ease); }
.footer-social-link:hover { border-color: var(--aurora); background: rgba(77,191,184,.1); }
.footer-social-link svg { width: 13px; height: 13px; stroke: var(--mist); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke .3s; }
.footer-social-link:hover svg { stroke: var(--aurora); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; color: var(--sage); font-size: .76rem; opacity: .7; padding: 1.5rem 0 0; }
.footer-bottom a { color: var(--aurora); text-decoration: none; transition: color .3s; opacity: 1; }
.footer-bottom a:hover { color: var(--cream); }
.cic-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(77,191,184,.06); border: 1px solid rgba(77,191,184,.15); padding: .38rem .85rem; border-radius: 20px; font-size: .7rem; color: var(--aurora); letter-spacing: .05em; }
.cic-dot { width: 5px; height: 5px; background: var(--aurora); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.55); } }

/* ── WHATSAPP ── */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 190; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.45); text-decoration: none; transition: transform .3s, box-shadow .3s; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.55); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav { padding: 1rem 1.4rem; }
  .nav.scrolled { padding: .75rem 1.4rem; }
  .nav-logo img { height: 42px; max-width: 140px; }
  .footer-logo img { height: 38px; max-width: 130px; }
  .nav-links,.nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .footer { padding: 4rem 1.4rem 1.5rem; }
}
