/* ============================================
   CFS v4 — COMPLETE RETHINK
   Warm light · Confident · Layered · Premium
   No templates. No clichés. This is different.
   ============================================ */

:root {
    --bg: #FFFCF8;
    --bg2: #FBF6EF;
    --bg3: #F3ECE2;
    --dark: #18120E;
    --text: #2C241F;
    --dim: #7A6E65;
    --accent: #D4552A;
    --accent2: #B8421C;
    --teal: #1B5E50;
    --teal-light: #E6F2EF;
    --gold: #8B6914;
    --gold-light: #FDF6E8;
    --border: rgba(44, 36, 31, 0.09);

    --sans: 'DM Sans', system-ui, sans-serif;
    --serif: 'Fraunces', Georgia, serif;

    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 14px;
    --r-xl: 16px;
    --r-pill: 100px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
    .anim { opacity: 1 !important; transform: none !important; }
}

body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; }
strong { font-weight: 600; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* Skip Link — invisible until focused */
.skip-link {
    position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #FFF; padding: 0.8rem 1.5rem;
    border-radius: var(--r-pill); font-size: 0.85rem; font-weight: 600;
    z-index: 999999; transition: top 0.2s;
}
.skip-link:focus { top: 0.5rem; }

/* ======== CRISIS ======== */
.crisis {
    position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
    background: #991B1B; padding: 0.5rem 1rem; text-align: center;
}
.crisis a {
    color: #FFF; font-size: 0.78rem; font-weight: 400;
    display: inline-flex; align-items: center; gap: 0.6rem;
}
.crisis__pulse {
    width: 7px; height: 7px; background: #FFF; border-radius: 50%;
    animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ======== HEADER ======== */
.hdr {
    position: fixed; top: calc(2rem + var(--crisis-h, 2rem)); left: 0; right: 0; z-index: 1000;
    padding: 0 clamp(1rem, 4vw, 3rem);
}
.hdr__nav {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.75rem 1.2rem;
    background: rgba(255, 252, 248, 0.92); backdrop-filter: blur(16px);
    border: 1px solid var(--border); border-radius: var(--r-pill);
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.hdr__logo {
    display: flex; align-items: center;
}
.hdr__logo-img {
    height: 60px; width: auto;
}
.hdr__menu { display: flex; align-items: center; gap: 1.8rem; }
.hdr__link {
    font-size: 0.84rem; font-weight: 500; color: var(--dim);
    transition: color 0.3s var(--ease);
}
.hdr__link:hover, .hdr__link--active { color: var(--text); }
.hdr__link--btn {
    background: var(--accent); color: #FFF !important;
    padding: 0.55rem 1.3rem; border-radius: var(--r-pill); font-weight: 600;
}
.hdr__link--btn:hover { background: var(--accent2); }
.hdr__burger {
    display: none; background: none; border: none; cursor: pointer; color: var(--text); padding: 6px;
}

/* Nav Dropdown */
.hdr__dropdown { position: relative; }
.hdr__dropdown-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-md);
    padding: 0.6rem 0; min-width: 200px; box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    opacity: 0; visibility: hidden; transition: opacity 0.2s, visibility 0.2s;
    margin-top: 0.8rem;
}
.hdr__dropdown:hover .hdr__dropdown-menu,
.hdr__dropdown:focus-within .hdr__dropdown-menu {
    opacity: 1; visibility: visible;
}
.hdr__dropdown-link {
    display: block; padding: 0.5rem 1.2rem; font-size: 0.84rem; font-weight: 500;
    color: var(--dim); transition: background 0.2s, color 0.2s;
}
.hdr__dropdown-link:hover {
    background: var(--bg2); color: var(--text);
}

/* ======== BUTTONS ======== */
.btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.95rem 2rem; font-family: var(--sans); font-size: 0.88rem; font-weight: 600;
    border-radius: var(--r-pill); border: none; cursor: pointer;
    transition: all 0.4s var(--ease); white-space: nowrap;
}
.btn--solid {
    background: var(--accent); color: #FFF;
    box-shadow: 0 4px 16px rgba(212, 85, 42, 0.25);
}
.btn--solid:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212, 85, 42, 0.3); }
.btn--line {
    background: none; color: var(--text);
    border: 1.5px solid var(--border); padding: 0.9rem 1.8rem;
}
.btn--line:hover { border-color: var(--text); }
.btn--lg { padding: 1.15rem 2.6rem; font-size: 0.95rem; }

/* ======== HERO ======== */
.hero {
    min-height: 100svh; padding: 9rem clamp(1rem, 4vw, 3rem) 4rem;
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem;
    align-items: center; max-width: 1400px; margin: 0 auto;
}
.hero__badge {
    display: inline-block; font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal);
    background: var(--teal-light); padding: 0.4rem 1rem; border-radius: var(--r-pill);
    margin-bottom: 1.5rem; position: relative; z-index: 0;
}
.hero__h1 {
    font-family: var(--serif); font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700; line-height: 1; letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}
.hero__h1-em {
    font-family: var(--serif); font-style: italic; font-weight: 600;
    color: var(--accent);
}
.hero__p {
    font-size: 1.08rem; color: var(--dim); max-width: 460px;
    line-height: 1.75; margin-bottom: 2rem;
}
.hero__btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero__trust {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.78rem; color: var(--dim);
}

/* Hero mobile photo — only shown on mobile */
.hero__mobile-photo {
    display: none;
    justify-content: center;
    margin: 2rem 0 1.5rem;
}
.hero__mobile-img {
    width: 140px; height: 140px; object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Hero Logo Visual */
.hero__logo-visual {
    display: flex; align-items: center; justify-content: center;
    width: 100%; aspect-ratio: 1; max-width: 420px; margin: 0 auto;
    position: relative;
}
.hero__logo-visual::before {
    content: ''; position: absolute; inset: 10%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
    opacity: 0.6;
    animation: breathe 5s ease-in-out infinite;
}
@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.7; }
}
.hero__logo-visual .hero__logo-img {
    width: 65%; height: auto;
    position: relative; z-index: 1;
    filter: drop-shadow(0 8px 30px rgba(0,0,0,0.08));
}

/* Hero Mosaic - abstract warm shapes */
.hero__mosaic {
    position: relative; width: 100%; aspect-ratio: 1;
    max-width: 480px; margin: 0 auto;
}
.hero__tile {
    position: absolute; border-radius: var(--r-lg);
    transition: transform 6s var(--ease);
}
.hero__tile--1 {
    width: 55%; height: 65%; top: 5%; left: 10%;
    background: linear-gradient(160deg, var(--gold-light), var(--bg3));
    border: 1px solid var(--border);
    animation: float-a 8s ease-in-out infinite;
}
.hero__tile--2 {
    width: 45%; height: 50%; top: 25%; right: 5%;
    background: linear-gradient(140deg, var(--teal-light), #F0FAF7);
    border: 1px solid rgba(27, 94, 80, 0.1);
    animation: float-b 10s ease-in-out infinite;
}
.hero__tile--3 {
    width: 35%; height: 40%; bottom: 8%; left: 20%;
    background: linear-gradient(135deg, #FDE8E0, var(--bg2));
    border: 1px solid rgba(212, 85, 42, 0.08);
    animation: float-a 12s ease-in-out infinite reverse;
}
.hero__tile--4 {
    width: 25%; height: 25%; top: 15%; right: 20%;
    background: var(--accent);
    opacity: 0.08;
    border-radius: 50%;
    animation: float-b 7s ease-in-out infinite;
}
.hero__tile--5 {
    width: 60%; height: 1px; bottom: 35%; left: 15%;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 0;
    opacity: 0.4;
}
@keyframes float-a { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-8px,12px)} }
@keyframes float-b { 0%,100%{transform:translate(0,0)} 50%{transform:translate(10px,-8px)} }

/* ======== PROOF STRIP ======== */
.proof {
    padding: 2.5rem clamp(1rem, 4vw, 3rem);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
}
.proof__inner {
    max-width: 900px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
}
.proof__item { text-align: center; }
.proof__num {
    display: block; font-family: var(--serif); font-size: 1.6rem;
    font-weight: 600; color: var(--text); letter-spacing: -0.02em;
}
.proof__label { font-size: 0.75rem; color: var(--dim); font-weight: 500; letter-spacing: 0.03em; }
.proof__divider { width: 1px; height: 40px; background: var(--border); }

/* ======== SERVICES ======== */
.svc { padding: 6rem clamp(1rem, 4vw, 3rem) 5rem; background: var(--bg); scroll-margin-top: calc(var(--crisis-h, 2rem) + 5rem); }
.svc__inner { max-width: 1200px; margin: 0 auto; }
.svc__hdr { margin-bottom: 3.5rem; }
.svc__tag, .approach__tag, .bio__tag, .pricing__tag {
    display: inline-block; font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
    margin-bottom: 0.8rem;
}
.svc__h2, .approach__h2, .bio__h2, .pricing__h2 {
    font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600; line-height: 1.15; letter-spacing: -0.025em;
}

.svc__grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem; margin-bottom: 2.5rem;
}
.svc__card {
    padding: 2.2rem 1.8rem; border-radius: var(--r-lg);
    border: 1px solid var(--border); background: var(--bg);
    transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.svc__card-img {
    position: absolute; top: 0; left: 0; right: 0; height: 120px;
    background-size: cover; background-position: center;
    opacity: 0.08; transition: opacity 0.4s var(--ease);
    pointer-events: none;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}
.svc__card:hover .svc__card-img { opacity: 0.15; }
.svc__card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--accent); transform: scaleX(0);
    transform-origin: left; transition: transform 0.4s var(--ease);
}
.svc__card:hover::after { transform: scaleX(1); }
.svc__card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.svc__card--accent { background: var(--gold-light); border-color: rgba(196, 154, 60, 0.15); }
.svc__card-link {
    position: absolute; inset: 0; z-index: 1;
}
.svc__card-icon { font-size: 1.4rem; color: var(--accent); display: block; margin-bottom: 1rem; position: relative; z-index: 0; }
.svc__card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.svc__card p { font-size: 0.9rem; color: var(--dim); line-height: 1.65; margin-bottom: 1rem; }
.svc__card-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.svc__card-tags li {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em;
    text-transform: uppercase; color: var(--teal);
    background: var(--teal-light); padding: 0.25rem 0.65rem; border-radius: var(--r-pill);
}

.svc__footer {
    display: flex; gap: 1rem; flex-wrap: wrap;
}
.svc__pill {
    font-size: 0.8rem; font-weight: 500; color: var(--dim);
    background: var(--bg2); border: 1px solid var(--border);
    padding: 0.5rem 1.1rem; border-radius: var(--r-pill);
}
.svc__cta {
    margin-top: 2rem;
    text-align: center;
}

/* ======== SECTION BREAKS ======== */
.break {
    position: relative; width: 100%; height: 140px; overflow: hidden;
}
.break__img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(0.2);
}
.break__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(255,252,248,0.3) 30%, rgba(255,252,248,0.3) 70%, var(--bg2) 100%);
}

/* ======== APPROACH ======== */
.approach {
    padding: 6rem clamp(1rem, 4vw, 3rem);
    background: var(--bg2);
}
.approach__inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.approach__p { font-size: 1rem; color: var(--dim); line-height: 1.8; margin-top: 1rem; }
.approach__methods { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.approach__method {
    font-size: 0.8rem; font-weight: 500; color: var(--text);
    background: var(--bg); border: 1px solid var(--border);
    padding: 0.5rem 1rem; border-radius: var(--r-pill);
    transition: all 0.3s var(--ease);
}
.approach__method:hover { background: var(--accent); color: #FFF; border-color: var(--accent); }

/* ======== BIO ======== */
.bio { padding: 6rem clamp(1rem, 4vw, 3rem); background: var(--bg); scroll-margin-top: calc(var(--crisis-h, 2rem) + 5rem); }
.bio__inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 0.4fr 0.6fr; gap: 4rem; align-items: center;
}
.bio__frame {
    aspect-ratio: 3/4; border-radius: var(--r-xl);
    background: linear-gradient(160deg, var(--bg3), var(--gold-light));
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.bio__img {
    width: 100%; height: 100%; object-fit: cover;
}
.bio__h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: 1rem; }
.bio__p { font-size: 0.95rem; color: var(--dim); line-height: 1.8; margin-bottom: 0.8rem; }
.bio__credentials {
    display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.2rem;
}
.bio__credentials span {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--teal);
    background: var(--teal-light); padding: 0.35rem 0.8rem; border-radius: var(--r-pill);
}
.bio__readmore {
    display: inline-block; margin-top: 1.2rem;
    font-size: 0.9rem; font-weight: 600; color: var(--accent);
    transition: letter-spacing 0.3s var(--ease);
}
.bio__readmore:hover { letter-spacing: 0.02em; }

/* ======== ENDORSEMENT ======== */
.endorse {
    padding: 5rem clamp(1rem, 4vw, 3rem);
    background: var(--teal); color: #FFF;
}
.endorse__inner { max-width: 750px; margin: 0 auto; text-align: center; }
.endorse__quote {
    font-family: var(--serif); font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-style: italic; line-height: 1.5; font-weight: 300;
}
.endorse__cite {
    display: block; margin-top: 1.5rem;
    font-family: var(--sans); font-style: normal;
    font-size: 0.85rem; font-weight: 500; opacity: 0.8;
}

/* ======== PRICING ======== */
.pricing { padding: 6rem clamp(1rem, 4vw, 3rem); background: var(--bg2); }
.pricing__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.pricing__hdr { margin-bottom: 2.5rem; }
.pricing__cards { display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 2.5rem; flex-wrap: wrap; }
.pricing__card {
    flex: 1; min-width: 200px; max-width: 280px;
    background: var(--bg); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 2rem 1.5rem; text-align: center;
}
.pricing__card-type { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dim); margin-bottom: 0.5rem; }
.pricing__card-price {
    font-family: var(--serif); font-size: 2.4rem; font-weight: 600; color: var(--text);
}
.pricing__card-price small { font-size: 0.9rem; font-weight: 400; color: var(--dim); }
.pricing__insurance { text-align: center; }
.pricing__insurance-title { font-size: 0.8rem; font-weight: 600; color: var(--dim); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.8rem; }
.pricing__logos { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1rem; }
.pricing__logos span {
    font-size: 0.82rem; font-weight: 500; color: var(--text);
    background: var(--bg); border: 1px solid var(--border);
    padding: 0.4rem 1rem; border-radius: var(--r-pill);
}
.pricing__note { font-size: 0.82rem; color: var(--dim); }

/* ======== FINAL CTA ======== */
.cta-final {
    padding: 7rem clamp(1rem, 4vw, 3rem);
    background: var(--dark); color: var(--bg); text-align: center;
    scroll-margin-top: calc(var(--crisis-h, 2rem) + 5rem);
}
.cta-final__inner { max-width: 600px; margin: 0 auto; }
.cta-final__h2 {
    font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700;
    letter-spacing: -0.03em; margin-bottom: 1rem;
}
.cta-final__p { font-size: 1rem; color: rgba(255,252,248,0.7); margin-bottom: 2.5rem; line-height: 1.7; }
.cta-final__actions { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.cta-final .btn--line {
    color: #FFF;
    border-color: rgba(255, 255, 255, 0.4);
}
.cta-final .btn--line:hover {
    border-color: #FFF;
    background: rgba(255, 255, 255, 0.1);
}

/* ======== FOOTER ======== */
.ftr {
    background: var(--dark); color: rgba(255,252,248,0.6);
    padding: 3rem clamp(1rem, 4vw, 3rem) 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.ftr__inner { max-width: 1100px; margin: 0 auto; }
.ftr__top {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ftr__logo { display: inline-block; margin-bottom: 0.3rem; }
.ftr__logo-img { height: 48px; width: auto; }
.ftr__brand p { font-size: 0.78rem; opacity: 0.5; }
.ftr__nav { display: flex; flex-direction: column; gap: 0.5rem; }
.ftr__nav a { font-size: 0.84rem; transition: color 0.3s; }
.ftr__nav a:hover { color: var(--bg); }
.ftr__contact { display: flex; flex-direction: column; gap: 0.4rem; text-align: right; font-size: 0.84rem; }
.ftr__contact a { transition: color 0.3s; }
.ftr__contact a:hover { color: var(--bg); }
.ftr__bot { display: flex; justify-content: space-between; padding-top: 1.5rem; font-size: 0.72rem; opacity: 0.4; }

/* ======== 404 ERROR PAGE ======== */
.error-page {
    min-height: 80vh; display: flex; align-items: center; justify-content: center;
    padding: 12rem clamp(1rem, 4vw, 3rem) 6rem; text-align: center;
    background: var(--bg);
}
.error-page__inner { max-width: 500px; }
.error-page__code {
    display: block; font-family: var(--serif); font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 700; color: var(--accent); opacity: 0.15; line-height: 1;
    letter-spacing: -0.05em; margin-bottom: -1rem;
}
.error-page__h1 {
    font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700; margin-bottom: 1rem;
}
.error-page__p { font-size: 1rem; color: var(--dim); line-height: 1.7; margin-bottom: 2rem; }
.error-page__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ======== PAGE TRANSITIONS ======== */
body {
    animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ======== ANIMATIONS ======== */
.anim { opacity: 0; transform: translateY(28px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.anim.visible { opacity: 1; transform: translateY(0); }

/* ======== RESPONSIVE ======== */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; text-align: center; padding-top: 8rem; }
    .hero__p { margin-left: auto; margin-right: auto; }
    .hero__btns { justify-content: center; }
    .hero__trust { justify-content: center; }
    .hero__col--visual { display: none; }
    .hero__mobile-photo { display: flex; }
    .approach__inner { grid-template-columns: 1fr; gap: 2rem; }
    .bio__inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .bio__frame { max-width: 280px; margin: 0 auto; }
    .bio__credentials { justify-content: center; }
}

@media (max-width: 768px) {
    .hdr__burger { display: block; }
    .hdr__menu {
        display: none;
    }
    .hdr__menu.open {
        display: flex;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        width: 100%; height: 100%;
        flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
        background: #FFFCF8;
        z-index: 999999;
    }
    .hdr__menu .hdr__link {
        font-size: 2rem; font-family: var(--serif); color: var(--text);
        padding: 0.5rem 0; border-bottom: 1px solid var(--border);
        width: 60%; text-align: center;
        background: none; border-radius: 0;
    }
    .hdr__menu .hdr__link:last-child { border-bottom: none; }
    .hdr__menu .hdr__link--active { border: none; outline: none; }
    .hdr__menu .hdr__link--btn {
        font-family: var(--sans); font-size: 1.1rem;
        border-bottom: none; width: auto;
        margin-top: 1rem;
        background: var(--accent); color: #FFF !important;
        padding: 1rem 2.5rem; border-radius: var(--r-pill);
    }

    .svc__grid { grid-template-columns: 1fr; }
    .proof__inner { justify-content: center; }
    .proof__divider { display: none; }
    .ftr__top { grid-template-columns: 1fr; text-align: center; }
    .ftr__contact { text-align: center; }
    .ftr__bot { flex-direction: column; text-align: center; gap: 0.3rem; }
}

@media (max-width: 480px) {
    .hero__h1 { font-size: 2.5rem; }
    .hero__btns { flex-direction: column; }
    .hero { padding-top: 11rem; }
    .btn { width: 100%; justify-content: center; }
    .cta-final__actions { flex-direction: column; }
    .pricing__cards { flex-direction: column; align-items: center; }
}


/* ============================================
   INDIVIDUAL COUNSELING PAGE
   Page-specific styles for individual-counseling.html
   ============================================ */

/* ======== PAGE HERO (shorter than homepage) ======== */
.pg-hero {
    min-height: 50vh; padding: 10rem clamp(1rem, 4vw, 3rem) 5rem;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
    position: relative; overflow: hidden;
}
.pg-hero::before {
    content: ''; position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=1600&q=80') center/cover no-repeat;
    opacity: 0.06;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 75%);
    pointer-events: none;
}
.pg-hero__inner { max-width: 800px; margin: 0 auto; }
.pg-hero__badge {
    display: inline-block; font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal);
    background: var(--teal-light); padding: 0.4rem 1rem; border-radius: var(--r-pill);
    margin-bottom: 1.5rem;
}
.pg-hero__h1 {
    font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 700; line-height: 1.1; letter-spacing: -0.035em;
    margin-bottom: 1.5rem;
}
.pg-hero__h1-em {
    font-family: var(--serif); font-style: italic; font-weight: 600;
    color: var(--accent);
}
.pg-hero__p {
    font-size: 1.1rem; color: var(--dim); max-width: 580px;
    line-height: 1.75; margin: 0 auto 2rem;
}
.pg-hero__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.pg-hero__tags { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.pg-hero__tag {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
    text-transform: uppercase; color: var(--teal);
    background: var(--teal-light); padding: 0.3rem 0.7rem; border-radius: var(--r-pill);
}

/* ======== IC INTRO SECTION ======== */
.ic-intro {
    padding: 6rem clamp(1rem, 4vw, 3rem);
    background: var(--bg);
}
.ic-intro__inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: center;
}
.ic-intro__h2 {
    font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 600; line-height: 1.15; letter-spacing: -0.025em;
    margin-bottom: 1rem;
}
.ic-intro__p {
    font-size: 1rem; color: var(--dim); line-height: 1.8; margin-bottom: 1rem;
}
.ic-intro__methods {
    display: flex; flex-wrap: wrap; gap: 0.6rem;
    align-content: center;
}

/* ======== IC SERVICES GRID (Adults) ======== */
.ic-services {
    padding: 6rem clamp(1rem, 4vw, 3rem) 5rem;
    background: var(--bg2);
}
.ic-services__inner { max-width: 1200px; margin: 0 auto; }
.ic-services__hdr { margin-bottom: 3rem; }
.ic-services__sub {
    font-size: 1rem; color: var(--dim); margin-top: 0.8rem; max-width: 500px;
    line-height: 1.7;
}

.ic-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}
.ic-card {
    padding: 2rem 1.6rem; border-radius: var(--r-lg);
    border: 1px solid var(--border); background: var(--bg);
    transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.ic-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--accent); transform: scaleX(0);
    transform-origin: left; transition: transform 0.4s var(--ease);
}
.ic-card:hover::after { transform: scaleX(1); }
.ic-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.ic-card__icon {
    font-size: 1.3rem; color: var(--accent); display: block; margin-bottom: 0.8rem;
}
.ic-card__title {
    font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.01em;
}
.ic-card__desc {
    font-size: 0.85rem; color: var(--dim); line-height: 1.65;
}

/* ======== CHILDREN'S SERVICES ======== */
.ic-children {
    padding: 6rem clamp(1rem, 4vw, 3rem) 5rem;
    background: var(--bg);
}
.ic-children__inner { max-width: 1200px; margin: 0 auto; }
.ic-children__hdr { margin-bottom: 3rem; }

.ic-children__grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.ic-child-card {
    padding: 1.8rem 1.4rem; border-radius: var(--r-lg);
    background: var(--teal-light); border: 1px solid rgba(27, 94, 80, 0.1);
    transition: all 0.4s var(--ease);
}
.ic-child-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27, 94, 80, 0.08); }
.ic-child-card__title {
    font-size: 0.95rem; font-weight: 700; color: var(--teal);
    margin-bottom: 0.5rem;
}
.ic-child-card__desc {
    font-size: 0.82rem; color: var(--dim); line-height: 1.6;
}

/* ======== WHAT TO EXPECT ======== */
.ic-expect {
    padding: 6rem clamp(1rem, 4vw, 3rem);
    background: var(--bg2);
}
.ic-expect__inner { max-width: 1000px; margin: 0 auto; }
.ic-expect__steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem; margin-top: 3rem;
}
.ic-expect__step {
    position: relative; padding: 1.5rem 0;
}
.ic-expect__num {
    display: block; font-family: var(--serif); font-size: 2.2rem;
    font-weight: 700; color: var(--accent); opacity: 0.3;
    letter-spacing: -0.04em; margin-bottom: 0.8rem;
}
.ic-expect__step-title {
    font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.ic-expect__step-desc {
    font-size: 0.82rem; color: var(--dim); line-height: 1.65;
}

/* ======== IC PRICING STRIP ======== */
.ic-pricing {
    padding: 4rem clamp(1rem, 4vw, 3rem);
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.ic-pricing__inner {
    max-width: 1000px; margin: 0 auto;
    display: grid; grid-template-columns: auto 1fr; gap: 3rem; align-items: center;
}
.ic-pricing__rate { text-align: center; }
.ic-pricing__label {
    display: block; font-size: 0.8rem; font-weight: 600; color: var(--dim);
    letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.3rem;
}
.ic-pricing__amount {
    font-family: var(--serif); font-size: 2.8rem; font-weight: 600; color: var(--text);
}
.ic-pricing__amount small { font-size: 0.9rem; font-weight: 400; color: var(--dim); }
.ic-pricing__details { }
.ic-pricing__info { margin-bottom: 1.2rem; }
.ic-pricing__info-title {
    font-size: 0.8rem; font-weight: 600; color: var(--dim);
    letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.6rem;
}
.ic-pricing__meta { display: flex; gap: 0.6rem; flex-wrap: wrap; }

/* ======== IC PAGE RESPONSIVE ======== */
@media (max-width: 1024px) {
    .ic-intro__inner { grid-template-columns: 1fr; gap: 2rem; }
    .ic-grid { grid-template-columns: repeat(2, 1fr); }
    .ic-children__grid { grid-template-columns: repeat(2, 1fr); }
    .ic-expect__steps { grid-template-columns: repeat(2, 1fr); }
    .ic-pricing__inner { grid-template-columns: 1fr; text-align: center; }
    .ic-pricing__meta { justify-content: center; }
    .pricing__logos { justify-content: center; }
}

@media (max-width: 768px) {
    .pg-hero { min-height: 45vh; padding-top: 8rem; }
    .ic-grid { grid-template-columns: 1fr; }
    .ic-children__grid { grid-template-columns: 1fr; }
    .ic-expect__steps { grid-template-columns: 1fr; gap: 2rem; }
    .ic-pricing__meta { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .pg-hero__h1 { font-size: 2rem; }
    .pg-hero__btns { flex-direction: column; }
}
