/* =========================================================
   RADHA NUTRITION — Premium Wellness Redesign
   Aesthetic: Luxury Ayurvedic Editorial — warm gold, deep
   forest green, soft cream — refined, memorable, alive.
   ========================================================= */

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

/* ── Tokens ─────────────────────────────────────────────── */
:root {
    --forest:   #1e3d2f;
    --forest-2: #2b5240;
    --forest-3: #3a6b54;
    --sage:     #6b9e7e;
    --sage-lt:  #a8c9b5;
    --gold:     #c9a84c;
    --gold-lt:  #e8d5a3;
    --gold-pale:#fdf6e3;
    --cream:    #faf6ee;
    --warm-white:#fffdf8;
    --earth:    #7a5c3a;
    --text:     #1c2d24;
    --muted:    #5c7060;
    --border:   #d4e0d8;
    --white:    #ffffff;
    --danger:   #b84f4f;
    --success:  #2f7a4b;

    --radius-sm: 8px;
    --radius:    16px;
    --radius-lg: 24px;
    --radius-xl: 40px;

    --shadow-sm: 0 2px 12px rgba(30,61,47,.07);
    --shadow:    0 8px 32px rgba(30,61,47,.12);
    --shadow-lg: 0 20px 60px rgba(30,61,47,.18);

    --ease: cubic-bezier(.4,0,.2,1);
    --spring: cubic-bezier(.34,1.56,.64,1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--warm-white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: 14px; }
h3 { font-size: 1.3rem; margin-bottom: 8px; }
p  { margin-top: 0; }

.eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

/* ── Layout ─────────────────────────────────────────────── */
.container {
    width: min(1300px, 94%);
    margin: 0 auto;
}

main { min-height: 60vh; }
.section { padding: 80px 0; }
.alt { background: var(--cream); }

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255,253,248,.94);
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    border-bottom: 1px solid rgba(201,168,76,.18);
    transition: box-shadow .3s var(--ease);
}

.site-header.scrolled { box-shadow: 0 4px 24px rgba(30,61,47,.1); }

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo-wide {
    height: 58px;
    width: auto;
    max-width: 300px;
    border-radius: 0;
    object-fit: contain;
    transition: opacity .3s;
}
.brand-logo-wide:hover { opacity: .85; }

.header-contact {
    text-align: right;
    margin-left: auto;
    margin-right: 16px;
}
.header-phone {
    font-weight: 600;
    color: var(--forest);
    font-size: 1.05rem;
    line-height: 1.2;
    letter-spacing: .01em;
}
.header-email { font-size: 0.78rem; color: var(--muted); }

/* ── NAV BAR ────────────────────────────────────────────── */
.site-nav-bar {
    background: var(--forest);
    border-top: 1px solid rgba(255,255,255,.06);
    position: relative;
    overflow: hidden;
}

.site-nav-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(201,168,76,.08) 0%, transparent 50%, rgba(201,168,76,.05) 100%);
    pointer-events: none;
}

#mainNav {
    display: none;
    flex-direction: column;
    padding: 10px 0;
    gap: 2px;
}
#mainNav.active { display: flex; }

#mainNav a {
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    color: rgba(240,248,244,.88);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: .02em;
    transition: background .2s, color .2s;
    position: relative;
}
#mainNav a:hover  { background: rgba(201,168,76,.14); color: var(--gold-lt); }
#mainNav a.active { background: rgba(201,168,76,.18); color: var(--gold); }

.menu-toggle {
    border: 1px solid var(--border);
    padding: 9px 13px;
    background: transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    line-height: 1;
    transition: background .2s;
}
.menu-toggle:hover { background: var(--gold-pale); }
.icon-toggle { font-size: 1.2rem; color: var(--forest); }
.nav-btn { display: none; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 100px;
    border: 1.5px solid transparent;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: .04em;
    cursor: pointer;
    transition: transform .22s var(--spring), box-shadow .22s, background .2s;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: linear-gradient(135deg, var(--forest-2), var(--forest));
    color: var(--white);
    box-shadow: 0 4px 18px rgba(30,61,47,.28);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--forest-3), var(--forest-2));
    box-shadow: 0 8px 28px rgba(30,61,47,.38);
    color: var(--white);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #b8922e);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(201,168,76,.35);
}
.btn-gold:hover {
    box-shadow: 0 8px 28px rgba(201,168,76,.5);
    color: var(--white);
}

.btn-outline {
    border-color: rgba(255,255,255,.5);
    color: var(--white);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
}
.btn-outline:hover {
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.8);
    color: var(--white);
}

.btn-outline-dark {
    border-color: var(--forest-3);
    color: var(--forest);
    background: transparent;
}
.btn-outline-dark:hover {
    background: var(--forest);
    color: var(--white);
}

.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
    background: linear-gradient(148deg, var(--forest) 0%, #1a3828 100%);
    overflow: hidden;
    width: 100%;
}

/* Hero shell — full width, no container max-width */
.hero > .hero-shell,
.hero-shell {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Left — copy panel */
.hero-copy {
    position: relative;
    padding: 48px 6% 44px 6%;
    background: transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-copy-inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}

.hero-brand-line {
    margin-bottom: 20px;
}
.hero-brand-line img {
    width: 240px;
    height: auto;
    border-radius: 0;
    filter: brightness(1.1);
}

.kicker {
    font-family: 'Cinzel', serif;
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
    opacity: .9;
}

.hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 18px;
    max-width: 680px;
}

.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--gold-lt);
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.35rem;
}

.hero-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(220,238,228,.8);
    max-width: 560px;
}

/* Gold divider line */
.hero-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 20px 0;
}

/* Trust badge row */
.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(200,230,212,.75);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: .02em;
}
.trust-badge .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* Right — photo panel — hidden on mobile, shown on desktop */
.hero-image-panel {
    display: none;
    position: relative;
    background: #162e22;
    overflow: hidden;
}

.hero-image-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(30,61,47,.35), transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 0;
    transition: transform 8s ease;
    display: block;
}
.hero-image-panel:hover img { transform: scale(1.03); }

/* Corner flourish */
.hero-image-panel::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 180px; height: 180px;
    background: linear-gradient(135deg, var(--forest) 0%, transparent 60%);
    z-index: 2;
    pointer-events: none;
}

/* Hero mini (inner pages) */
.hero-mini {
    background: linear-gradient(160deg, var(--cream), var(--warm-white));
    padding: 60px 0 40px;
    border-bottom: 1px solid var(--border);
}
.hero-mini h1 {
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    color: var(--forest);
}

/* ── ABOUT STRIP ────────────────────────────────────────── */
.about-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.about-text h2 { color: var(--forest); }

.about-text p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 0;
    margin-top: 28px;
    flex-wrap: wrap;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    width: fit-content;
    max-width: 100%;
}
.stat {
    text-align: center;
    padding: 20px 32px;
    position: relative;
}
.stat + .stat {
    border-left: 1px solid var(--border);
}
.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--forest);
    line-height: 1;
    display: block;
}
.stat-lbl {
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
    white-space: nowrap;
}

/* ── CARDS & GRID ───────────────────────────────────────── */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .32s var(--spring), box-shadow .32s var(--ease);
    position: relative;
    display: flex;
    flex-direction: column;
}
.card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
}

/* Image wrapper — fixed aspect ratio, no overflow/cutting */
.card-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    flex-shrink: 0;
    background: #e8e4dc;
    display: block;
    position: relative;
}
.card-img-wrap img,
.card > img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 0;
    transition: transform .55s ease;
    display: block;
    position: absolute;
    inset: 0;
    padding: 0;
}
.card:hover .card-img-wrap img,
.card:hover > img:first-child { transform: scale(1.07); }

/* card-body fills remaining height */
.card-body {
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
}

.card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.22rem;
    color: var(--forest);
    margin-bottom: 8px;
    line-height: 1.3;
}

/* Description — strictly 3 lines max, then ellipsis */
.card-desc {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    max-height: calc(0.875rem * 1.6 * 3);
}
.card p:not(.card-tag) {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: calc(0.875rem * 1.6 * 3);
}

/* Read More link inside card */
.card-read-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--forest);
    margin-top: 16px;
    padding: 8px 16px;
    border: 1.5px solid var(--forest-3);
    border-radius: 100px;
    transition: background .22s, color .22s, border-color .22s, transform .22s var(--spring);
    align-self: flex-start;
    text-decoration: none;
}
.card-read-more::after {
    content: '→';
    font-size: 0.9rem;
    transition: transform .22s var(--spring);
    display: inline-block;
}
.card-read-more:hover {
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
    transform: translateY(-1px);
}
.card-read-more:hover::after { transform: translateX(4px); }

/* Service tag */
.card-tag {
    display: inline-block;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201,168,76,.1);
    padding: 3px 9px;
    border-radius: 100px;
    margin-bottom: 10px;
}

/* ── SECTION HEADERS ────────────────────────────────────── */
.section-header {
    margin-bottom: 48px;
}
.section-header.center { text-align: center; }
.section-header h2 { color: var(--forest); }
.section-header p {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 580px;
    line-height: 1.7;
}
.section-header.center p { margin: 0 auto; }

/* Gold underline accent */
.section-header h2 span {
    position: relative;
    display: inline;
}
.section-header h2 span::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

/* ── CTA BLOCK ──────────────────────────────────────────── */
.cta-block {
    text-align: center;
    background: linear-gradient(148deg, var(--forest) 0%, #1a3828 100%);
    padding: 64px 40px;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}
.cta-block::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    right: -150px; top: -150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,.1), transparent 65%);
    pointer-events: none;
}
.cta-block h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
}
.cta-block p {
    color: rgba(220,238,228,.75);
    max-width: 500px;
    margin: 0 auto 24px;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}
.cta-block .btn-row { justify-content: center; position: relative; z-index: 1; }

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    transition: transform .3s var(--spring), box-shadow .3s;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.testimonial-card::before {
    content: '\201C';
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    line-height: .8;
    color: var(--gold);
    opacity: .25;
    position: absolute;
    top: 12px; left: 20px;
}
.testimonial-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--forest);
    margin-bottom: 6px;
}
.testimonial-card p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
    font-style: italic;
}
.stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: .05em;
    margin-bottom: 10px;
}

/* ── CONTACT ────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

label {
    display: block;
    margin: 14px 0 6px;
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--forest);
    letter-spacing: .02em;
}

input, textarea, select {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    background: var(--warm-white);
    color: var(--text);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}
input:focus, textarea:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(107,158,126,.14);
}

/* ── ALERTS ─────────────────────────────────────────────── */
.alert {
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-bottom: 14px;
    font-size: 0.93rem;
}
.alert p { margin: 6px 0; }
.alert.error   { background: #fdecec; color: var(--danger); border: 1px solid #f3cccc; }
.alert.success { background: #e9f8ee; color: var(--success); border: 1px solid #bee4c9; }

/* ── MISC UTILS ─────────────────────────────────────────── */
.list    { padding-left: 20px; }
.list li { margin-bottom: 8px; }
.ordered { padding-left: 24px; }
.text-link { text-decoration: underline; text-underline-offset: 3px; }
.blog-single article { white-space: pre-wrap; }
.disclaimer { margin-top: 18px; color: var(--muted); font-size: 0.9rem; }
.thumb { width: 70px; height: 48px; object-fit: cover; border-radius: 6px; }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
    background: var(--forest);
    color: rgba(220,238,228,.85);
    padding: 64px 0 20px;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer-grid h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.footer-logo-wrap { margin-bottom: 14px; }
.footer-logo {
    width: min(280px, 100%);
    height: auto;
    border-radius: 0;
    opacity: .9;
}
.site-footer h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 6px;
}
.site-footer p { font-size: 0.88rem; line-height: 1.6; margin-bottom: 6px; }
.site-footer a {
    color: rgba(220,238,228,.75);
    display: block;
    margin-bottom: 10px;
    font-size: 0.88rem;
    transition: color .2s, padding-left .2s;
}
.site-footer a:hover { color: var(--gold-lt); padding-left: 4px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.footer-left-meta p { margin: 0 0 4px; font-size: 0.82rem; opacity: .7; }
.footer-policy-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-policy-links a {
    color: rgba(220,238,228,.6);
    font-size: 0.82rem;
    display: inline;
    margin: 0;
    padding: 0;
}
.footer-policy-links a:hover { color: var(--gold-lt); padding-left: 0; }

/* ── WHATSAPP FLOAT ─────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 90;
    background: linear-gradient(135deg, #25d366, #1aad53);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: .04em;
    box-shadow: 0 8px 24px rgba(37,211,102,.35);
    transition: transform .25s var(--spring), box-shadow .25s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 32px rgba(37,211,102,.5);
    color: var(--white);
}
.whatsapp-float::before {
    content: '💬';
    font-size: 1.1rem;
}

/* ── SCROLL ANIMATIONS ──────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ═══════════════════════════════════════════════════════════
   ADMIN PANEL
   ═══════════════════════════════════════════════════════════ */

.admin-body {
    background: #f0f4f2;
    font-family: 'DM Sans', sans-serif;
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 268px 1fr;
}

/* ── Sidebar ────────────────────────────────────────────── */
.admin-sidebar {
    background: linear-gradient(180deg, var(--forest) 0%, #162e22 100%);
    color: rgba(220,238,228,.85);
    padding: 24px 16px;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-right: 1px solid rgba(255,255,255,.05);
}

.admin-brand {
    margin-bottom: 8px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.admin-sidebar-logo {
    width: 100%;
    max-width: 180px;
    height: auto;
    border-radius: 0;
    margin-bottom: 10px;
    opacity: .92;
}
.admin-brand h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 2px;
}
.admin-brand p { font-size: 0.8rem; color: rgba(200,228,212,.55); margin: 0; }

.admin-side-nav {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.admin-side-nav a {
    color: rgba(220,238,228,.75);
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: .01em;
    transition: background .2s, color .2s, padding-left .2s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.admin-side-nav a:hover {
    background: rgba(255,255,255,.1);
    color: var(--white);
}
.admin-side-nav a.active {
    background: rgba(201,168,76,.2);
    color: var(--gold-lt);
    border-left: 2px solid var(--gold);
    padding-left: 12px;
}

/* Sidebar footer */
.admin-sidebar-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: 0.78rem;
    color: rgba(200,228,212,.4);
    text-align: center;
}

/* ── Admin Main ─────────────────────────────────────────── */
.admin-main {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* ── Topbar ─────────────────────────────────────────────── */
.admin-topbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(30,61,47,.05);
}

.admin-page-meta h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--forest);
    margin: 0;
    line-height: 1.1;
}
.admin-page-meta p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
}
.admin-user span { color: var(--muted); font-weight: 500; }
.admin-user a {
    background: var(--forest);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: .03em;
    transition: background .2s;
}
.admin-user a:hover { background: var(--forest-2); }

.admin-menu-toggle {
    display: none;
    border: 1px solid var(--border);
    background: transparent;
    padding: 9px 13px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--forest);
    transition: background .2s;
}
.admin-menu-toggle:hover { background: var(--cream); }

/* ── Admin Content ──────────────────────────────────────── */
.admin-content {
    padding: 24px 0 32px;
    flex: 1;
}

.admin-container { width: min(1160px, 95%); }

.admin-content h1 {
    font-family: 'Cormorant Garamond', serif;
    margin-top: 0;
    color: var(--forest);
}

/* ── Admin Cards (dashboard stats) ─────────────────────── */
.admin-cards { margin-bottom: 24px; }
.admin-cards .card {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 22px;
    background: var(--white);
}
.admin-cards .card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 10px;
}
.admin-cards .card p {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--forest);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
}
.admin-cards .card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* ── Table ──────────────────────────────────────────────── */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.table th, .table td {
    border-bottom: 1px solid var(--border);
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
    font-size: 0.88rem;
}
.table th {
    background: #f5faf7;
    font-weight: 600;
    color: var(--forest);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.table tr:last-child td { border-bottom: 0; }
.table tr:hover td { background: #fbfcfb; }
.table td a { color: var(--forest-2); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }

/* ── Admin Footer ───────────────────────────────────────── */
.admin-footer {
    border-top: 1px solid var(--border);
    background: var(--white);
    padding: 14px 0;
}
.admin-footer .admin-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.admin-footer p { margin: 0; font-size: 0.82rem; color: var(--muted); }

/* ── Admin Login ────────────────────────────────────────── */
.admin-login-body {
    background: linear-gradient(148deg, var(--cream) 0%, var(--warm-white) 100%);
}
.admin-login-wrap { min-height: 100vh; display: grid; align-items: center; padding: 40px 0; }
.admin-login-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    align-items: center;
    width: min(940px, 94%);
    margin: 0 auto;
}
.admin-login-brand {
    background: linear-gradient(148deg, var(--forest), #162e22);
    color: rgba(220,238,228,.85);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.admin-login-brand::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    right: -80px; top: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,.12), transparent 65%);
    pointer-events: none;
}
.admin-login-brand h1 {
    margin: 0 0 10px;
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}
.admin-login-brand p {
    margin: 0 0 8px;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}
.admin-login-logo {
    width: min(100%, 280px);
    height: auto;
    border-radius: 0;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.login-box {
    max-width: 480px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}
.login-box h2 { margin-bottom: 6px; color: var(--forest); }
.login-box p { color: var(--muted); font-size: 0.9rem; margin-bottom: 0; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */

@media (max-width: 1080px) {
    .admin-shell { grid-template-columns: 1fr; }
    .admin-sidebar {
        position: fixed;
        left: -300px;
        top: 0;
        z-index: 200;
        width: 268px;
        transition: left .28s var(--ease);
        box-shadow: var(--shadow-lg);
    }
    .admin-body.admin-sidebar-open .admin-sidebar { left: 0; }
    .admin-menu-toggle { display: inline-flex; }
    .admin-page-meta h1 { font-size: 1.3rem; }
    .admin-user span { display: none; }
}

@media (max-width: 900px) {
    .admin-login-grid { grid-template-columns: 1fr; }
    .admin-login-brand { display: none; }
}

@media (max-width: 700px) {
    .brand-logo-wide { height: 38px; max-width: 160px; }
    .header-contact { display: none; }

    .hero-copy { padding: 32px 22px 28px; }
    .hero h1 { font-size: clamp(1.9rem, 8vw, 2.5rem); }
    .hero-brand-line img { width: 160px; }
    .trust-badges { gap: 12px; }
    .trust-badge { font-size: 0.72rem; }

    .cta-block { padding: 40px 22px; border-radius: var(--radius-lg); }
    .section { padding: 52px 0; }

    .table { display: block; overflow-x: auto; }
    .admin-topbar { padding: 11px 14px; }
    .admin-content { padding-top: 14px; }
    .admin-footer .admin-container { flex-direction: column; }
    .login-box { padding: 26px 20px; }
}

@media (min-width: 860px) {
    .menu-toggle { display: none; }
    .nav-btn { display: inline-flex; }

    #mainNav {
        display: flex !important;
        flex-direction: row;
        border: 0;
        padding: 0 4px;
        background: transparent;
        gap: 0;
    }
    #mainNav a {
        padding: 12px 13px;
        border-radius: 0;
        border-bottom: 2px solid transparent;
        font-size: 0.88rem;
        letter-spacing: .025em;
    }
    #mainNav a.active, #mainNav a:hover {
        background: transparent;
        border-bottom-color: var(--gold);
        color: var(--gold-lt);
    }

    .hero-shell { grid-template-columns: 1.1fr 0.9fr; min-height: 600px; max-width: 100%; }
    .hero-copy { padding: 64px 4% 56px 8%; }
    .hero-copy-inner { max-width: 600px; margin-left: auto; margin-right: 0; padding-right: 0; }
    .hero-image-panel { display: block; }
    .card-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
    .about-strip { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 580px) and (max-width: 859px) {
    .card-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Blog image placeholder (no image posts) ─────────────── */
.card-img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--cream), var(--border));
    flex-shrink: 0;
}

/* ── Mobile card tweaks ──────────────────────────────────── */
@media (max-width: 579px) {
    .card-body        { padding: 16px 16px 18px; }
    .card h3          { font-size: 1.08rem; }
    .card-desc        { -webkit-line-clamp: 2; max-height: calc(0.875rem * 1.6 * 2); }
    .card-img-wrap    { aspect-ratio: 16 / 8; }
    .card-read-more   { font-size: 0.7rem; padding: 7px 13px; margin-top: 12px; }

    .about-stats      { width: 100%; }
    .stat             { padding: 16px 20px; flex: 1; min-width: 90px; }
    .stat-num         { font-size: 2rem; }
    .stat-lbl         { font-size: 0.66rem; white-space: normal; }
}

/* ═══════════════════════════════════════════════════════════
   TOP UTILITY BAR
   ═══════════════════════════════════════════════════════════ */
.top-bar {
    background: var(--forest);
    color: rgba(220,238,228,.82);
    font-size: 0.8rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    gap: 12px;
    flex-wrap: wrap;
}
.top-bar-left { display: flex; align-items: center; gap: 6px; }
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(220,238,228,.9);
    text-decoration: none;
    transition: color .2s;
    letter-spacing: .01em;
}
.top-bar-contact:hover { color: var(--gold-lt); }
.tb-icon { font-size: 0.82rem; }
.tb-divider { color: rgba(255,255,255,.2); font-size: 0.75rem; }

/* Hamburger icon upgrade */
.menu-toggle {
    border: 1.5px solid var(--border);
    padding: 9px 11px;
    background: transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    transition: background .2s, border-color .2s;
}
.menu-toggle:hover { background: var(--gold-pale); border-color: var(--gold); }
.hamburger {
    display: block;
    width: 18px; height: 2px;
    background: var(--forest);
    position: relative;
}
.hamburger::before, .hamburger::after {
    content: '';
    display: block;
    width: 18px; height: 2px;
    background: var(--forest);
    position: absolute;
    left: 0;
}
.hamburger::before { top: -5px; }
.hamburger::after  { top: 5px; }

/* header-actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

/* ═══════════════════════════════════════════════════════════
   BREADCRUMB BAR
   ═══════════════════════════════════════════════════════════ */
.breadcrumb-bar {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}
.breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--muted);
    flex-wrap: wrap;
}
.breadcrumb-inner a { color: var(--forest-2); transition: color .2s; }
.breadcrumb-inner a:hover { color: var(--gold); }
.breadcrumb-inner span:last-child { color: var(--text); font-weight: 500; }
.bc-sep { color: var(--sage-lt); font-size: 0.75rem; }

/* ═══════════════════════════════════════════════════════════
   SERVICE HERO (detail page)
   ═══════════════════════════════════════════════════════════ */
.service-hero {
    background: linear-gradient(148deg, var(--forest) 0%, #1a3828 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.service-hero::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    right: -100px; top: -150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,.1), transparent 65%);
    pointer-events: none;
}
.service-hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.service-hero-text .eyebrow { color: var(--gold); }
.service-hero-text h1 {
    color: var(--white);
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    margin-bottom: 16px;
}
.service-lead {
    font-size: 1.1rem;
    color: rgba(220,238,228,.8);
    line-height: 1.65;
    margin-bottom: 24px !important;
}
.service-hero-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-hero-img img {
    width: 100%;
    max-height: 420px;
    height: auto;
    object-fit: contain;
    object-position: center top;
    border-radius: var(--radius);
    display: block;
}

/* ═══════════════════════════════════════════════════════════
   SERVICE LAYOUT (detail page content + sidebar)
   ═══════════════════════════════════════════════════════════ */
.service-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

.service-main { display: flex; flex-direction: column; gap: 48px; }

/* Content block */
.service-content-block h2,
.service-benefits-block h2,
.service-who-block h2 {
    color: var(--forest);
    margin-bottom: 16px;
}
.service-content-block p {
    font-size: 1rem;
    color: #3a4e40;
    line-height: 1.75;
    margin-bottom: 14px !important;
}

/* Benefits list */
.benefit-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.97rem;
    color: var(--text);
    padding: 12px 16px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--gold);
}
.benefit-list li::before {
    content: '\2713';
    color: var(--success);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Who is it for chips */
.who-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}
.who-chip {
    background: var(--forest);
    color: rgba(220,238,228,.9);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: .01em;
}

/* ═══════════════════════════════════════════════════════════
   BOOKING FORM
   ═══════════════════════════════════════════════════════════ */
.booking-block {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 44px;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 100px;
}
.booking-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest), var(--gold), var(--forest));
}
.booking-header { margin-bottom: 32px; }
.booking-header h2 { color: var(--forest); margin-bottom: 8px; }
.booking-header p { color: var(--muted); font-size: 0.96rem; margin: 0 !important; }

.booking-form { display: flex; flex-direction: column; gap: 18px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--forest);
    letter-spacing: .02em;
    margin: 0;
}
.req { color: var(--danger); }
.opt { color: var(--muted); font-weight: 400; font-size: 0.78rem; }

.form-group input,
.form-group textarea,
.form-group select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.93rem;
    background: var(--warm-white);
    color: var(--text);
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(107,158,126,.14);
    outline: none;
}

/* Calendar date input */
.calendar-wrap {
    position: relative;
}
.cal-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    z-index: 1;
    pointer-events: none;
}
.calendar-wrap input[type="date"] {
    padding-left: 36px;
}

/* Time slots */
.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.time-slot {
    display: flex;
    align-items: center;
    gap: 0;
    cursor: pointer;
}
.time-slot input[type="radio"] { display: none; }
.time-slot {
    padding: 8px 14px;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--muted);
    background: var(--warm-white);
    transition: border-color .2s, background .2s, color .2s, transform .18s var(--spring);
    cursor: pointer;
    user-select: none;
}
.time-slot:hover {
    border-color: var(--sage);
    color: var(--forest);
    background: rgba(107,158,126,.07);
}
.time-slot.selected,
.time-slot:has(input:checked) {
    border-color: var(--forest);
    background: var(--forest);
    color: var(--white);
    transform: scale(1.04);
}

.booking-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 6px;
}
.btn-lg { padding: 14px 28px; font-size: 0.95rem; }

.booking-note {
    font-size: 0.82rem !important;
    color: var(--muted) !important;
    margin: 0 !important;
}

/* Booking success state */
.booking-success {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 22px;
    font-size: 1rem;
}
.success-icon {
    width: 36px; height: 36px;
    background: var(--success);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}
.booking-success strong { display: block; margin-bottom: 4px; font-size: 1.05rem; }
.booking-success p { margin: 0 !important; font-size: 0.9rem; }

/* ═══════════════════════════════════════════════════════════
   SERVICE SIDEBAR
   ═══════════════════════════════════════════════════════════ */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}
.sidebar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}
.sidebar-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--forest);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.sidebar-service-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.sidebar-service-list li a {
    display: block;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--muted);
    transition: background .2s, color .2s, padding-left .2s;
}
.sidebar-service-list li a:hover {
    background: var(--cream);
    color: var(--forest);
    padding-left: 16px;
}
.sidebar-service-list li.active a {
    background: rgba(201,168,76,.1);
    color: var(--forest);
    font-weight: 600;
    border-left: 2px solid var(--gold);
    padding-left: 14px;
}

/* Sidebar CTA card */
.sidebar-cta {
    background: linear-gradient(148deg, var(--forest), #1a3828);
    border: 0;
    text-align: center;
}
.sidebar-cta-icon { font-size: 2rem; margin-bottom: 10px; }
.sidebar-cta h4 {
    color: var(--white);
    border-color: rgba(255,255,255,.15);
}
.sidebar-cta p {
    color: rgba(220,238,228,.75);
    font-size: 0.88rem;
    margin-bottom: 16px !important;
}
.sidebar-cta .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 8px;
}
.sidebar-cta .btn:last-child { margin-bottom: 0; }

/* Sidebar info */
.info-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.info-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text);
}
.info-icon { font-size: 0.95rem; }

/* ═══════════════════════════════════════════════════════════
   FOOTER UPGRADES
   ═══════════════════════════════════════════════════════════ */
.footer-brand-col { display: flex; flex-direction: column; gap: 6px; }
.footer-tagline { font-size: 0.9rem; line-height: 1.55; opacity: .85; margin: 4px 0 0 !important; }
.footer-sub { font-size: 0.8rem; opacity: .6; margin: 0 !important; }
.footer-social { margin-top: 14px; }
.social-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform .2s var(--spring), opacity .2s;
}
.whatsapp-chip {
    background: rgba(37,211,102,.18);
    color: #7de8a8;
    border: 1px solid rgba(37,211,102,.25);
}
.whatsapp-chip:hover { transform: translateY(-2px); opacity: 1; }

.footer-nav { display: flex; flex-direction: column; gap: 1px; }
.footer-nav a {
    color: rgba(220,238,228,.7);
    display: block;
    padding: 5px 0;
    font-size: 0.88rem;
    transition: color .2s, padding-left .2s;
    margin-bottom: 0;
}
.footer-nav a:hover { color: var(--gold-lt); padding-left: 6px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.88rem;
}
.footer-contact-item a {
    color: rgba(220,238,228,.8);
    display: inline;
    margin: 0;
    transition: color .2s;
}
.footer-contact-item a:hover { color: var(--gold-lt); padding-left: 0; }
.fc-icon { font-size: 0.9rem; flex-shrink: 0; }

.footer-book-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.85rem;
    padding: 11px 18px;
}

.fp-sep { color: rgba(255,255,255,.25); font-size: 0.75rem; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — SERVICE DETAIL + BOOKING
   ═══════════════════════════════════════════════════════════ */
@media (min-width: 900px) {
    .service-hero-inner { grid-template-columns: 1.1fr 0.9fr; }
    .service-layout     { grid-template-columns: 1fr 320px; }
    .form-row           { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 899px) {
    .booking-block { padding: 28px 22px; }
    .service-sidebar { position: static; }
    .top-bar-left { display: none; }
    .service-hero-img img { max-height: 320px; }
}

@media (max-width: 599px) {
    .top-bar { display: none; }
    .booking-block { padding: 24px 16px; border-radius: var(--radius-lg); }
    .booking-block::before { height: 3px; }
    .time-slot { padding: 7px 10px; font-size: 0.74rem; }
    .booking-cta-row { flex-direction: column; }
    .booking-cta-row .btn { width: 100%; justify-content: center; }
    .service-hero { padding: 36px 0; }
    .service-hero-text h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE — v3 clean
   ═══════════════════════════════════════════════════════════ */

/* ── Hero ───────────────────────────────────────────────── */
.contact-hero-mini {
    background: linear-gradient(148deg, #1e3d2f 0%, #1a3828 100%);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}
.contact-hero-mini::before {
    content: '';
    position: absolute;
    width: 420px; height: 420px;
    right: -80px; top: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,.13), transparent 65%);
    pointer-events: none;
}
.contact-hero-mini .eyebrow { color: var(--gold); position: relative; z-index: 1; }
.contact-hero-mini h1 {
    color: #fff;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    margin: 0 0 12px;
    position: relative; z-index: 1;
}
.contact-hero-mini > .container > p {
    color: rgba(220,238,228,.78);
    font-size: 1rem;
    max-width: 580px;
    margin: 0;
    position: relative; z-index: 1;
}

/* ── Info Strip ─────────────────────────────────────────── */
.contact-info-strip {
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(30,61,47,.07);
}
.contact-info-inner {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}
.cis-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 30px;
    flex: 1 1 200px;
    color: var(--text);
    text-decoration: none;
    transition: background .2s;
    border-right: 1px solid var(--border);
}
.cis-item:last-child { border-right: 0; }
a.cis-item:hover { background: var(--cream); }
.cis-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; }
.cis-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cis-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}
.cis-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--forest);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* remove old cis-divider since we use border-right now */
.cis-divider { display: none; }

/* ── Page Layout ────────────────────────────────────────── */
.contact-main-section { background: var(--cream); }
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
}

/* ── Sidebar ────────────────────────────────────────────── */
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }

.contact-sidebar-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}
.contact-sidebar-card > h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--forest);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

/* Why consult */
.why-consult-card { position: relative; overflow: hidden; }
.wcc-accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--forest), var(--gold));
}
.why-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.why-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    list-style: none !important;
}
.why-list li::before { display: none !important; }
.why-icon {
    font-size: 1.15rem;
    flex-shrink: 0;
    line-height: 1.4;
}
.why-list strong {
    display: block;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 2px;
}
.why-list li > div > p {
    font-size: 0.8rem !important;
    color: var(--muted) !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    display: block !important;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;
    overflow: visible !important;
    max-height: none !important;
}

/* Specialisation chips */
.concern-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.concern-chip {
    background: rgba(30,61,47,.07);
    color: var(--forest-2);
    padding: 6px 13px;
    border-radius: 100px;
    font-size: 0.76rem;
    font-weight: 600;
}

/* Quick reach */
.quick-reach-card {
    background: linear-gradient(148deg, var(--forest), #162e22);
    border: 0;
}
.quick-reach-card > h3 {
    color: #fff;
    border-color: rgba(255,255,255,.12);
}
.qr-btn {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 0.86rem;
}
.qr-btn:last-of-type { margin-bottom: 0; }

/* ── Form Card ──────────────────────────────────────────── */
.contact-form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 44px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(30,61,47,.1);
}
.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest), var(--gold), var(--forest));
}

.contact-form-header { margin-bottom: 28px; }
.contact-form-header h2 { color: var(--forest); margin: 0 0 6px; }
.contact-form-header > p {
    color: var(--muted) !important;
    font-size: 0.93rem !important;
    margin: 0 !important;
    display: block !important;
    -webkit-line-clamp: unset !important;
    overflow: visible !important;
    max-height: none !important;
}

/* Form fields */
.cf-form { display: flex; flex-direction: column; gap: 20px; }
.cf-row  { display: grid; grid-template-columns: 1fr; gap: 20px; }
.cf-group { display: flex; flex-direction: column; gap: 7px; }

.cf-group label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--forest);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin: 0;
    display: block;
}
.req { color: var(--danger); }

.cf-group input,
.cf-group textarea {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 13px 15px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.93rem;
    background: var(--warm-white);
    color: var(--text);
    width: 100%;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    display: block;
    box-sizing: border-box;
}
.cf-group input:focus,
.cf-group textarea:focus {
    border-color: var(--sage);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(107,158,126,.14);
}
.cf-group textarea { resize: vertical; min-height: 130px; }
.cf-char-hint { font-size: 0.72rem; color: var(--muted); text-align: right; }

/* Concern select chips */
.cf-concern-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}
.concern-select-chip {
    padding: 7px 14px;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    background: var(--warm-white);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    line-height: 1;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}
.concern-select-chip:hover {
    border-color: #6b9e7e;
    color: #1e3d2f;
    background: rgba(107,158,126,.1);
}
.concern-select-chip.active,
.concern-select-chip:focus.active {
    border-color: #1e3d2f !important;
    background: #1e3d2f !important;
    color: #ffffff !important;
    box-shadow: 0 3px 10px rgba(30,61,47,.25);
}

.cf-alert { margin-bottom: 4px; }

.cf-submit {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
    font-size: 0.97rem;
    letter-spacing: .04em;
}
.cf-note {
    font-size: 0.77rem !important;
    color: var(--muted) !important;
    text-align: center;
    margin: 0 !important;
    display: block !important;
}

/* ── Success State ──────────────────────────────────────── */
.contact-success-state { text-align: center; padding: 16px 0 8px; }
.css-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--success), #3a9e60);
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(47,122,75,.28);
}
.contact-success-state h2 { color: var(--forest); margin-bottom: 10px; }
.contact-success-state > p {
    color: var(--muted) !important;
    font-size: 0.97rem !important;
    max-width: 420px;
    margin: 0 auto 24px !important;
    line-height: 1.65 !important;
    display: block !important;
    overflow: visible !important;
    max-height: none !important;
}
.css-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ── Responsive ─────────────────────────────────────────── */
@media (min-width: 960px) {
    .contact-page-grid    { grid-template-columns: 340px 1fr; }
    .cf-row               { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 959px) {
    .contact-sidebar  { order: 2; }
    .contact-form-col { order: 1; }
}
@media (max-width: 720px) {
    .contact-form-card { padding: 28px 20px; border-radius: var(--radius-lg); }
    .cis-item { padding: 16px 18px; flex-basis: calc(50% - 1px); border-right: 0; border-bottom: 1px solid var(--border); }
    .cis-item:nth-child(odd)  { border-right: 1px solid var(--border); }
    .cis-item:last-child      { border-bottom: 0; }
    .cis-value { font-size: 0.82rem; }
}
@media (max-width: 480px) {
    .cis-item { flex-basis: 100%; border-right: 0; }
    .cis-item:nth-child(odd) { border-right: 0; }
    .contact-form-card { padding: 22px 16px; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICES LIST PAGE
   ═══════════════════════════════════════════════════════════ */

/* Hero override */
.services-hero-mini {
    background: linear-gradient(148deg, #1e3d2f 0%, #1a3828 100%);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}
.services-hero-mini::before {
    content: '';
    position: absolute;
    width: 420px; height: 420px;
    right: -80px; top: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,.12), transparent 65%);
    pointer-events: none;
}
.services-hero-mini .eyebrow { color: var(--gold); position: relative; z-index: 1; }
.services-hero-mini h1 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 12px;
    position: relative; z-index: 1;
}
.services-hero-mini > .container > p {
    color: rgba(220,238,228,.8);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 0 24px;
    position: relative; z-index: 1;
}
.services-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative; z-index: 1;
}
.shb-item {
    background: rgba(255,255,255,.1);
    color: rgba(220,238,228,.9);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,.15);
    letter-spacing: .02em;
}

/* Stats strip */
.services-intro-strip {
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(30,61,47,.06);
}
.services-intro-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
}
.si-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 22px 40px;
    gap: 3px;
    flex: 1 1 120px;
}
.si-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--forest);
    line-height: 1;
}
.si-lbl {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
}
.si-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

/* ── Service Row Layout ─────────────────────────────────── */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .3s var(--spring), box-shadow .3s;
}
.service-row:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.sr-image { overflow: hidden; background: var(--cream); }
.sr-img-wrap {
    display: block;
    width: 100%;
    aspect-ratio: 16/8;
    overflow: hidden;
}
.sr-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform .6s ease;
    display: block;
}
.service-row:hover .sr-img-wrap img { transform: scale(1.05); }

.sr-content {
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.sr-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    color: var(--forest);
    margin: 0;
    line-height: 1.2;
}

.sr-desc {
    font-size: 0.97rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 !important;
    display: block !important;
    -webkit-line-clamp: unset !important;
    overflow: visible !important;
    max-height: none !important;
}

.sr-benefits {
    list-style: none !important;
    padding: 0 !important;
    margin: 4px 0 0 !important;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.sr-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text);
    list-style: none !important;
}
.sr-benefits li::before {
    content: '\2713';
    color: var(--success);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.sr-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* ── How It Works ───────────────────────────────────────── */
.how-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 48px;
}
.how-step {
    flex: 1 1 180px;
    max-width: 220px;
    text-align: center;
    padding: 0 16px;
}
.hs-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
    opacity: .8;
}
.how-step h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--forest);
    margin-bottom: 8px;
}
.how-step p {
    font-size: 0.86rem !important;
    color: var(--muted) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    display: block !important;
    overflow: visible !important;
    max-height: none !important;
}
.hs-arrow {
    font-size: 1.5rem;
    color: var(--gold);
    opacity: .5;
    align-self: center;
    padding-bottom: 32px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   SERVICE DETAIL — booking success state
   ═══════════════════════════════════════════════════════════ */
.booking-success-state {
    text-align: center;
    padding: 24px 0 8px;
}
.bss-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2f7a4b, #3a9e60);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 8px 24px rgba(47,122,75,.28);
}
.booking-success-state h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--forest);
    margin-bottom: 10px;
}
.booking-success-state > p {
    color: var(--muted) !important;
    font-size: 0.95rem !important;
    margin: 0 0 22px !important;
    display: block !important;
    overflow: visible !important;
    max-height: none !important;
}
.bss-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* datetime input icon wrap */
.datetime-wrap {
    position: relative;
}
.dt-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    pointer-events: none;
    z-index: 1;
}
.datetime-wrap input[type="datetime-local"] { padding-left: 36px; }
.field-hint {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 4px;
    display: block;
}
.opt { color: var(--muted); font-weight: 400; font-size: 0.76rem; }

/* ── Responsive ─────────────────────────────────────────── */
@media (min-width: 860px) {
    .service-row {
        grid-template-columns: 380px 1fr;
    }
    .service-row-alt {
        grid-template-columns: 1fr 380px;
    }
    .service-row-alt .sr-image { order: 2; }
    .service-row-alt .sr-content { order: 1; }
    .sr-img-wrap { aspect-ratio: unset; height: 100%; min-height: 260px; }
    .sr-img-wrap img { height: 100%; }
}
@media (max-width: 859px) {
    .sr-content { padding: 24px 22px; }
    .sr-content h3 { font-size: 1.4rem; }
    .hs-arrow { display: none; }
    .how-step { max-width: 180px; }
    .si-item { padding: 18px 20px; }
}
@media (max-width: 560px) {
    .si-divider { display: none; }
    .si-item { flex-basis: calc(50% - 1px); border-bottom: 1px solid var(--border); }
    .sr-actions { flex-direction: column; }
    .sr-actions .btn { width: 100%; justify-content: center; }
    .how-steps { gap: 24px; }
    .how-step { max-width: 100%; padding: 0; }
}

/* ═══════════════════════════════════════════════════════════
   PROGRAMS PAGE
   ═══════════════════════════════════════════════════════════ */
.programs-hero-mini {
    background: linear-gradient(148deg, #1e3d2f 0%, #1a3828 100%);
    padding: 56px 0 48px;
    position: relative; overflow: hidden;
}
.programs-hero-mini::before {
    content: '';
    position: absolute;
    width: 420px; height: 420px;
    right: -80px; top: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,.12), transparent 65%);
    pointer-events: none;
}
.programs-hero-mini .eyebrow { color: var(--gold); position: relative; z-index: 1; }
.programs-hero-mini h1 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 12px; position: relative; z-index: 1;
}
.programs-hero-mini > .container > p {
    color: rgba(220,238,228,.8);
    font-size: 1.05rem; max-width: 580px;
    margin: 0; position: relative; z-index: 1;
}

/* ── Program Steps Timeline ─────────────────────────────── */
.program-steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 52px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.program-step {
    display: grid;
    grid-template-columns: 28px 56px 1fr;
    gap: 0 20px;
    align-items: flex-start;
    padding-bottom: 44px;
}
.last-step { padding-bottom: 0; }

.ps-connector {
    grid-column: 1;
    grid-row: 1;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,.2));
    margin: 28px auto 0;
    height: 100%;
    min-height: 60px;
    align-self: stretch;
}
.last-step .ps-connector { display: none; }

.ps-marker {
    grid-column: 2;
    grid-row: 1;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--forest);
    border: 3px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(30,61,47,.25);
    position: relative; z-index: 2;
}
.ps-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.ps-card {
    grid-column: 3;
    grid-row: 1;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: flex;
    gap: 18px;
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--spring), box-shadow .3s;
    margin-top: 6px;
}
.ps-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.ps-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.ps-body { flex: 1; }
.ps-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: var(--forest);
    margin: 0 0 8px;
}
.ps-body > p {
    font-size: 0.93rem !important;
    color: var(--muted) !important;
    line-height: 1.7 !important;
    margin: 0 0 14px !important;
    display: block !important;
    overflow: visible !important;
    max-height: none !important;
}
.ps-points {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 16px !important;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ps-points li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: var(--text);
    list-style: none !important;
}
.ps-points li::before {
    content: '\2713';
    color: var(--success);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.ps-cta { font-size: 0.84rem; padding: 9px 18px; }

/* ── Pillars ────────────────────────────────────────────── */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.pillar-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    transition: transform .3s var(--spring), box-shadow .3s;
    position: relative; overflow: hidden;
}
.pillar-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--forest), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.pillar-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.pillar-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--forest);
    margin: 0 0 10px;
}
.pillar-card > p {
    font-size: 0.88rem !important;
    color: var(--muted) !important;
    line-height: 1.65 !important;
    margin: 0 !important;
    display: block !important;
    overflow: visible !important;
    max-height: none !important;
}

/* Programs responsive */
@media (max-width: 700px) {
    .program-step { grid-template-columns: 0 44px 1fr; gap: 0 12px; padding-bottom: 32px; }
    .ps-connector { display: none; }
    .ps-card { flex-direction: column; gap: 12px; padding: 22px 18px; }
    .ps-marker { width: 44px; height: 44px; }
    .ps-num { font-size: 1rem; }
}

/* ═══════════════════════════════════════════════════════════
   HOME PAGE — TRUST STRIP
   ═══════════════════════════════════════════════════════════ */
.home-trust-strip {
    background: var(--forest);
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.home-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
}
.hts-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    flex: 1 1 160px;
    justify-content: center;
}
.hts-icon { font-size: 1.3rem; line-height: 1; }
.hts-text {
    font-size: 0.84rem;
    font-weight: 600;
    color: rgba(220,238,228,.88);
    letter-spacing: .02em;
    white-space: nowrap;
}
.hts-sep {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,.12);
    flex-shrink: 0;
}
@media (max-width: 700px) {
    .hts-sep { display: none; }
    .hts-item { flex-basis: calc(50% - 2px); padding: 14px 16px; justify-content: flex-start; }
}

/* Home About — single column centered (no duplicate photo) */
.home-about-single {
    max-width: 820px;
    margin: 0 auto;
}
.home-about-single .home-about-text {
    display: flex;
    flex-direction: column;
}
.home-about-single .home-about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 24px;
}
@media (max-width: 560px) {
    .home-about-single .home-about-points { grid-template-columns: 1fr; }
}

/* HOME PAGE — ABOUT SECTION (with photo) */
.home-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
@media (min-width: 860px) {
    .home-about-grid { grid-template-columns: 420px 1fr; }
}

.home-about-img-col { position: relative; }
.home-about-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}
.home-about-img-wrap img {
    width: 100%;
    height: clamp(380px, 50vw, 520px);
    object-fit: cover;
    object-position: center top;
    display: block;
}
.home-about-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--gold);
    color: var(--forest);
    border-radius: var(--radius);
    padding: 14px 20px;
    box-shadow: 0 8px 24px rgba(201,168,76,.4);
    text-align: center;
    min-width: 90px;
}
.hab-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1;
}
.hab-lbl {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-top: 4px;
    line-height: 1.3;
}

.home-about-text { display: flex; flex-direction: column; gap: 0; }
.home-about-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--forest-2);
    margin-bottom: 14px !important;
    line-height: 1.5;
}
.home-about-points {
    list-style: none;
    padding: 0;
    margin: 16px 0 !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.home-about-points li {
    font-size: 0.93rem;
    color: var(--text);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   HOME PAGE — HOW IT WORKS STEPS
   ═══════════════════════════════════════════════════════════ */

/* Section background — subtle forest pattern */
.hiw-section {
    background: linear-gradient(180deg, var(--cream) 0%, #f0ede3 100%);
    position: relative;
    overflow: hidden;
}
.hiw-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    right: -200px; bottom: -200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30,61,47,.04), transparent 65%);
    pointer-events: none;
}

.home-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 52px;
    position: relative;
    padding-top: 20px;
}

/* Connecting line through icon centers */
.home-steps::before {
    content: '';
    position: absolute;
    top: 64px;
    left: calc(12.5% + 8px);
    right: calc(12.5% + 8px);
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(201,168,76,.5) 50%, rgba(201,168,76,.2) 100%);
    z-index: 0;
}

.home-step {
    text-align: center;
    padding: 0 16px 40px;
    position: relative;
    z-index: 1;
}

.hstep-num {
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: .22em;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hstep-icon-wrap {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(148deg, var(--forest) 0%, #1a3828 100%);
    border: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 28px rgba(30,61,47,.22);
    transition: transform .3s var(--spring), box-shadow .3s;
    position: relative;
    z-index: 2;
    background-color: var(--warm-white);
}

.home-step:hover .hstep-icon-wrap {
    transform: translateY(-5px) scale(1.06);
    box-shadow: 0 16px 36px rgba(30,61,47,.3);
    background: linear-gradient(148deg, var(--forest-2), var(--forest));
}
.home-step:hover .hstep-icon-wrap { background: linear-gradient(148deg, var(--forest-2), var(--forest)); }

.hstep-icon {
    font-size: 2rem;
    line-height: 1;
    display: block;
    transition: transform .3s var(--spring);
}
.home-step:hover .hstep-icon { transform: scale(1.15); }

.hstep-content { padding: 0 8px; }

.home-step h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--forest);
    margin: 0 0 8px;
    font-weight: 600;
}
.home-step p {
    font-size: 0.85rem !important;
    color: var(--muted) !important;
    line-height: 1.65 !important;
    margin: 0 !important;
    display: block !important;
    overflow: visible !important;
    max-height: none !important;
}

/* Step number badge on icon */
.hstep-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 26px;
    height: 26px;
    background: var(--gold);
    color: var(--forest);
    border-radius: 50%;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(201,168,76,.5);
    border: 2px solid var(--warm-white);
}

/* Arrow hidden — replaced by connecting line */
.hstep-arrow { display: none; }

@media (max-width: 860px) {
    .home-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .home-steps::before { display: none; }
    .home-step { padding: 28px 20px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); }
}
@media (max-width: 480px) {
    .home-steps { grid-template-columns: 1fr; gap: 16px; }
}

/* ═══════════════════════════════════════════════════════════
   BLOG LIST PAGE
   ═══════════════════════════════════════════════════════════ */

.blog-hero-mini {
    background: linear-gradient(148deg, #1e3d2f 0%, #1a3828 100%);
    padding: 52px 0 44px;
    position: relative; overflow: hidden;
}
.blog-hero-mini::before {
    content: '';
    position: absolute;
    width: 380px; height: 380px;
    right: -60px; top: -100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,.12), transparent 65%);
    pointer-events: none;
}
.blog-hero-mini .eyebrow { color: var(--gold); position: relative; z-index: 1; }
.blog-hero-mini h1 {
    color: #fff;
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    margin: 0 0 12px; position: relative; z-index: 1;
}
.blog-hero-mini > .container > p {
    color: rgba(220,238,228,.78);
    font-size: 1rem; max-width: 560px;
    margin: 0; position: relative; z-index: 1;
}

/* Blog card image — fill full card area */
.blog-card-img { display: block; }
.blog-list-grid .card-img-wrap {
    background: #f5f2ec !important;
}
.blog-list-grid .card-img-wrap img,
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center center !important;
    padding: 0;
}

/* Blog card meta (date + read time) */
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    margin-bottom: 4px;
}
.bcm-date, .bcm-read {
    font-size: 0.76rem;
    color: var(--muted);
    font-weight: 500;
}
.bcm-sep { color: var(--sage-lt); font-size: 0.7rem; }

/* ═══════════════════════════════════════════════════════════
   BLOG SINGLE POST
   ═══════════════════════════════════════════════════════════ */

/* Post hero */
.post-hero {
    background: linear-gradient(148deg, #1e3d2f 0%, #1a3828 100%);
    padding: 52px 0 48px;
    position: relative; overflow: hidden;
}
.post-hero::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    right: -80px; top: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,.1), transparent 65%);
    pointer-events: none;
}
.post-hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
    position: relative; z-index: 1;
}
.post-hero-text .card-tag { margin-bottom: 16px; }
.post-hero-text h1 {
    color: #fff;
    font-size: clamp(1.7rem, 3.5vw, 2.8rem);
    margin: 0 0 18px;
    line-height: 1.2;
}
.post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.pm-item { font-size: 0.83rem; color: rgba(220,238,228,.75); }
.pm-sep  { color: rgba(220,238,228,.3); font-size: 0.8rem; }
.post-hero-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    max-height: 400px;
}
.post-hero-img img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Post layout */
.post-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

/* Article content */
.post-article { display: flex; flex-direction: column; gap: 32px; }
.post-content {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--text);
}
.post-content p { margin-bottom: 18px; }

/* Share strip */
.post-share-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 18px 22px;
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.pss-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-right: 4px;
}
.pss-btn {
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
    cursor: pointer;
    border: none;
}
.pss-btn.whatsapp {
    background: rgba(37,211,102,.12);
    color: #1a7a3e;
    border: 1px solid rgba(37,211,102,.25);
}
.pss-btn.whatsapp:hover { background: rgba(37,211,102,.22); }
.pss-btn.copy-link {
    background: var(--cream);
    color: var(--forest);
    border: 1px solid var(--border);
}
.pss-btn.copy-link:hover { background: var(--gold-pale); border-color: var(--gold); }

/* Author card */
.post-author-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 24px 26px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--gold);
}
.pac-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--forest), var(--forest-2));
    color: var(--gold-lt);
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(30,61,47,.2);
}
.pac-info { flex: 1; }
.pac-info strong { display: block; font-size: 1rem; color: var(--forest); margin-bottom: 2px; }
.pac-info > span { display: block; font-size: 0.78rem; color: var(--gold); margin-bottom: 8px; font-weight: 500; }
.pac-info > p {
    font-size: 0.85rem !important;
    color: var(--muted) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    display: block !important;
    overflow: visible !important;
    max-height: none !important;
}

/* Post sidebar */
.post-sidebar { display: flex; flex-direction: column; gap: 20px; }
.post-sidebar-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}
.post-sidebar-card > h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--forest);
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.psc-cta {
    background: linear-gradient(148deg, var(--forest), #162e22);
    border: 0;
    text-align: center;
}
.psc-cta-icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.psc-cta > h4 { color: #fff; border-color: rgba(255,255,255,.12); }
.psc-cta > p {
    color: rgba(220,238,228,.75) !important;
    font-size: 0.85rem !important;
    margin: 0 0 14px !important;
    display: block !important;
    overflow: visible !important;
    max-height: none !important;
}
.psc-cta .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.psc-cta .btn:last-of-type { margin-bottom: 0; }

.psc-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex; flex-direction: column; gap: 2px;
}
.psc-links li { list-style: none !important; }
.psc-links a {
    display: block;
    padding: 8px 10px;
    font-size: 0.86rem;
    color: var(--muted);
    border-radius: var(--radius-sm);
    transition: background .2s, color .2s, padding-left .2s;
    text-decoration: none;
}
.psc-links a:hover { background: var(--cream); color: var(--forest); padding-left: 14px; }

.psc-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.87rem;
    color: var(--forest);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: color .2s;
}
.psc-contact-row:last-child { border-bottom: 0; }
.psc-contact-row:hover { color: var(--gold); }
.psc-contact-row span:first-child { font-size: 0.95rem; flex-shrink: 0; }

/* Post responsive */
@media (min-width: 940px) {
    .post-hero-inner { grid-template-columns: 1.1fr 0.9fr; }
    .post-layout     { grid-template-columns: 1fr 300px; }
    .post-sidebar    { position: sticky; top: 100px; }
}
@media (max-width: 939px) {
    .post-sidebar { order: -1; }
    .post-hero { padding: 36px 0 32px; }
}
@media (max-width: 599px) {
    .post-hero-img { max-height: 200px; }
    .post-hero-img img { height: 200px; }
    .pac-avatar { width: 44px; height: 44px; font-size: 0.9rem; }
    .post-author-card { padding: 18px; gap: 14px; }
    .post-share-strip { gap: 8px; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER UPGRADES
   ═══════════════════════════════════════════════════════════ */
.footer-top-line {
    height: 3px;
    background: linear-gradient(90deg, var(--forest-2), var(--gold), var(--forest-2));
}
.footer-col { display: flex; flex-direction: column; }
.footer-col > h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-accordion {
    width: 100%;
}
.footer-accordion-toggle {
    list-style: none;
}
.footer-accordion-toggle::-webkit-details-marker {
    display: none;
}
.footer-accordion-body {
    display: contents;
}
.footer-accordion-icon {
    display: none;
}
.footer-nav { display: flex; flex-direction: column; gap: 2px; }
.footer-nav a {
    color: rgba(220,238,228,.68);
    font-size: 0.87rem;
    padding: 5px 0;
    transition: color .2s, padding-left .2s;
    text-decoration: none;
}
.footer-nav a:hover { color: var(--gold-lt); padding-left: 5px; }

.footer-brand-col .footer-logo-link { display: inline-block; margin-bottom: 12px; }
.footer-brand-col .footer-logo { height: 52px; width: auto; }
.footer-tagline {
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(220,238,228,.75);
    margin: 0 0 4px !important;
}
.footer-sub {
    font-size: 0.78rem;
    color: rgba(220,238,228,.45);
    margin: 0 0 14px !important;
}
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.f-badge {
    background: rgba(201,168,76,.12);
    color: var(--gold-lt);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    border: 1px solid rgba(201,168,76,.18);
}
.footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    background: rgba(37,211,102,.14);
    color: #7de8a8;
    border: 1px solid rgba(37,211,102,.22);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, transform .2s var(--spring);
    width: fit-content;
}
.footer-whatsapp-btn:hover { background: rgba(37,211,102,.22); transform: translateY(-2px); }

.footer-contact-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.footer-contact-item { display: flex; align-items: center; gap: 9px; font-size: 0.86rem; }
.footer-contact-item a {
    color: rgba(220,238,228,.75);
    text-decoration: none;
    transition: color .2s;
}
.footer-contact-item a:hover { color: var(--gold-lt); }
.fc-icon { font-size: 0.9rem; flex-shrink: 0; }
.footer-book-btn { font-size: 0.84rem; padding: 11px 18px; width: 100%; justify-content: center; }

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    margin-top: 48px;
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-left-meta p {
    font-size: 0.78rem !important;
    color: rgba(220,238,228,.45) !important;
    margin: 0 0 2px !important;
    line-height: 1.5 !important;
    display: block !important;
    overflow: visible !important;
    max-height: none !important;
}
.footer-left-meta strong { color: rgba(220,238,228,.6); }
.footer-policy-links { display: flex; align-items: center; gap: 8px; }
.footer-policy-links a {
    font-size: 0.78rem;
    color: rgba(220,238,228,.45);
    text-decoration: none;
    transition: color .2s;
}
.footer-policy-links a:hover { color: var(--gold-lt); }
.fp-sep { color: rgba(255,255,255,.15); font-size: 0.7rem; }

/* WhatsApp float button upgrade */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #25D366;
    color: #fff !important;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 6px 24px rgba(37,211,102,.4);
    transition: transform .3s var(--spring), box-shadow .3s;
}
.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 32px rgba(37,211,102,.5);
}
.wf-icon { font-size: 1.1rem; line-height: 1; }
.wf-label { letter-spacing: .02em; }

@media (max-width: 580px) {
    .wf-label { display: none; }
    .whatsapp-float { padding: 13px; border-radius: 50%; width: 50px; height: 50px; justify-content: center; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .footer-brand-col {
        padding-bottom: 10px;
    }
    .footer-accordion {
        border-top: 1px solid rgba(255,255,255,.08);
        padding-top: 4px;
    }
    .footer-accordion-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        cursor: pointer;
        padding: 14px 0;
    }
    .footer-col > h4,
    .footer-accordion-toggle h4 {
        margin: 0;
        padding: 0;
        border-bottom: 0;
    }
    .footer-accordion-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,.14);
        color: var(--gold-lt);
        position: relative;
        flex-shrink: 0;
    }
    .footer-accordion-icon::before,
    .footer-accordion-icon::after {
        content: "";
        position: absolute;
        background: currentColor;
        border-radius: 2px;
        transition: transform .2s ease;
    }
    .footer-accordion-icon::before {
        width: 10px;
        height: 1.5px;
    }
    .footer-accordion-icon::after {
        width: 1.5px;
        height: 10px;
    }
    .footer-accordion[open] .footer-accordion-icon::after {
        transform: scaleY(0);
    }
    .footer-accordion-body {
        display: none;
        padding: 0 0 14px;
    }
    .footer-accordion[open] .footer-accordion-body {
        display: block;
    }
    .footer-contact-list,
    .footer-nav {
        gap: 6px;
    }
}

/* ═══════════════════════════════════════════════════════════
   PROGRAMS TIMELINE v2 — clean rebuild
   ═══════════════════════════════════════════════════════════ */
.prog-timeline {
    max-width: 780px;
    margin: 52px auto 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.prog-step {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 0 24px;
    align-items: flex-start;
}

/* Left column: badge + line */
.pst-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.pst-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--forest);
    border: 2.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gold);
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(30,61,47,.25);
    position: relative;
    z-index: 2;
}

.pst-badge-gold {
    background: linear-gradient(135deg, var(--gold), #a8893e);
    border-color: #fff5d6;
    color: #fff;
    box-shadow: 0 4px 20px rgba(201,168,76,.4);
}

.pst-line {
    width: 2px;
    flex: 1;
    min-height: 48px;
    background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,.15));
    margin: 0 auto;
}
.prog-step-last .pst-left { padding-bottom: 0; }

/* Card */
.pst-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 30px;
    margin-bottom: 24px;
    display: flex;
    gap: 18px;
    box-shadow: 0 4px 20px rgba(30,61,47,.06);
    transition: transform .3s var(--spring), box-shadow .3s;
}
.pst-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(30,61,47,.12);
}
.prog-step-last .pst-card { margin-bottom: 0; }

.pst-card-highlight {
    border-color: rgba(201,168,76,.35);
    background: linear-gradient(to bottom right, #fff, #fffdf5);
    box-shadow: 0 6px 28px rgba(201,168,76,.12);
}

.pst-icon-wrap {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}
.pst-icon { font-size: 1.4rem; line-height: 1; }

.pst-content { flex: 1; }
.pst-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--forest);
    margin: 0 0 8px;
    line-height: 1.25;
}
.pst-content > p {
    font-size: 0.92rem !important;
    color: var(--muted) !important;
    line-height: 1.7 !important;
    margin: 0 0 14px !important;
    display: block !important;
    overflow: visible !important;
    max-height: none !important;
}

/* Checklist inside step */
.pst-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 16px !important;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 24px;
}
.pst-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.83rem;
    color: var(--text);
    list-style: none !important;
    min-width: 180px;
}
.pst-list li::before {
    content: '\2713';
    color: var(--success);
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.pst-cta {
    font-size: 0.84rem;
    padding: 9px 20px;
    display: inline-flex;
}

/* Responsive */
@media (max-width: 640px) {
    .prog-step { grid-template-columns: 52px 1fr; gap: 0 14px; }
    .pst-badge { width: 44px; height: 44px; font-size: 0.9rem; }
    .pst-card { flex-direction: column; gap: 12px; padding: 20px 18px; }
    .pst-list { flex-direction: column; }
    .pst-list li { min-width: unset; }
}
/* HOME PAGE QUICK FIX - layout stability */
.page-home.hero {
    background: linear-gradient(148deg, var(--forest) 0%, #1a3828 100%);
}
.page-home.hero > .hero-shell {
    width: min(1320px, 96%);
    margin: 0 auto;
    min-height: clamp(520px, 74vh, 740px);
    grid-template-columns: 1fr;
}
.page-home .hero-copy {
    padding: clamp(30px, 5vw, 60px) clamp(20px, 4vw, 52px) clamp(24px, 4vw, 46px);
}
.page-home .hero-copy-inner {
    max-width: 640px;
    margin: 0;
}
.page-home .hero h1 {
    font-size: clamp(2rem, 4.2vw, 3.7rem);
    max-width: 16ch;
    line-height: 1.12;
}
.page-home .hero-offer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}
.page-home .hero-price-pill,
.page-home .hero-paid-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.page-home .hero-price-pill {
    background: linear-gradient(135deg, #f7d77b, #c9a84c);
    color: #1e2a20;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}
.page-home .hero-paid-pill {
    background: rgba(34, 197, 94, 0.16);
    color: #d6f5df;
    border: 1px solid rgba(92, 214, 138, 0.42);
}
.page-home .hero-price-pill:hover,
.page-home .hero-paid-pill:hover {
    transform: translateY(-1px);
}
.page-home .hero-price-pill:hover {
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.22);
}
.page-home .hero-paid-pill:hover {
    background: rgba(34, 197, 94, 0.22);
    border-color: rgba(132, 233, 169, 0.55);
}
.page-home .hero-desc {
    max-width: 60ch;
    line-height: 1.72;
}
.page-home .hero-desc strong,
.page-home .hero-paid-pill strong,
.page-home .hero-price-pill strong,
.page-home .hero-warning strong {
    font-weight: 800;
}
.page-home .hero-points {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
}
.page-home .hero-points li {
    position: relative;
    padding: 14px 16px 14px 44px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.18);
    color: rgba(244, 248, 245, 0.96);
    font-weight: 600;
}
.page-home .hero-points li::before {
    content: '\2713';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(34, 197, 94, 0.18);
    color: #85efac;
    font-size: 0.82rem;
    font-weight: 800;
}
.page-home .hero-warning {
    margin: 18px 0 0;
    padding: 12px 14px;
    border-left: 4px solid #ff6b57;
    border-radius: 12px;
    background: rgba(255, 107, 87, 0.12);
    color: #ffd6d0;
    font-size: 0.95rem;
}
.page-home .hero-urgency {
    margin: 12px 0 0;
    color: #8ef0b0;
    font-weight: 700;
    font-size: 0.95rem;
}
.page-home .hero-primary-cta {
    box-shadow: 0 18px 40px rgba(201, 168, 76, 0.24);
}
.page-home .hero-whatsapp-cta {
    border-color: rgba(134, 239, 172, 0.42);
    color: #e7fff0;
}
.page-home .hero-whatsapp-cta:hover {
    background: rgba(34, 197, 94, 0.16);
    border-color: rgba(134, 239, 172, 0.55);
}
.page-home .hero-image-panel {
    min-height: clamp(340px, 42vw, 700px);
}
.page-home .hero-image-panel img {
    height: 100%;
    min-height: clamp(340px, 42vw, 700px);
    object-position: center 12%;
}

.page-home + .home-trust-strip .home-trust-inner {
    width: min(1320px, 96%);
    margin: 0 auto;
}

@media (min-width: 980px) {
    .page-home.hero > .hero-shell {
        grid-template-columns: 1.02fr 0.98fr;
        align-items: stretch;
    }
}

@media (max-width: 980px) {
    .page-home .hero-copy-inner { margin: 0 auto; }
    .page-home .hero-copy,
    .page-home .hero-image-panel { width: 100%; }
}

@media (max-width: 700px) {
    .page-home.hero > .hero-shell { width: 100%; }
    .page-home .hero-copy { padding: 26px 16px 22px; }
    .page-home .hero h1 { font-size: clamp(1.72rem, 8vw, 2.3rem); }
    .page-home .hero-offer-row { gap: 10px; }
    .page-home .hero-price-pill,
    .page-home .hero-paid-pill {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .page-home .hero-points li {
        padding: 13px 14px 13px 42px;
        border-radius: 16px;
    }
    .page-home .btn-row .btn { width: 100%; justify-content: center; }
    .home-trust-inner { padding: 8px 0; }
    .hts-item { flex-basis: 100%; justify-content: center; padding: 10px 12px; }
    .hts-text { white-space: normal; text-align: center; }
}
/* HOME HERO PHOTO COLOR FIX - remove green cast on banner image */
.page-home .hero-image-panel {
    background: #e9e5df;
}
.page-home .hero-image-panel::before,
.page-home .hero-image-panel::after {
    display: none !important;
}
.page-home .hero-image-panel img {
    filter: none !important;
}
/* WHATSAPP BUTTON - PROFESSIONAL FINAL LOOK */
.whatsapp-float {
    right: 22px;
    bottom: 22px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.22);
    background: linear-gradient(135deg, #1fbf63 0%, #17a851 100%);
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: .015em;
    box-shadow: 0 10px 28px rgba(18,120,57,.36), 0 2px 10px rgba(0,0,0,.12);
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.whatsapp-float::before {
    content: none !important;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow: 0 14px 34px rgba(18,120,57,.42), 0 4px 14px rgba(0,0,0,.16);
}

.whatsapp-float .wf-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    line-height: 1;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.24);
}

.whatsapp-float .wf-label {
    line-height: 1;
    font-weight: 700;
}

@media (max-width: 580px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 50px;
        height: 50px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
        gap: 0;
    }
    .whatsapp-float .wf-label {
        display: none;
    }
    .whatsapp-float .wf-icon {
        width: 24px;
        height: 24px;
        background: transparent;
        border: 0;
        font-size: 1rem;
    }
}
/* =========================================================
   ADMIN UI POLISH - Missing component styles
   ========================================================= */
.admin-page-meta h1 {
    margin: 0;
}

.nav-icon {
    width: 18px;
    text-align: center;
    opacity: .9;
    flex-shrink: 0;
}

.nav-logout {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 12px !important;
    color: #ffd9d9 !important;
}

.admin-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    color: var(--forest);
    background: linear-gradient(135deg, #f4e7b8, #d7b55a);
    border: 1px solid rgba(201,168,76,.5);
}

.admin-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.admin-stat-card {
    display: block;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 3px 14px rgba(30,61,47,.06);
    transition: transform .2s ease, box-shadow .2s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.admin-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(30,61,47,.12);
}

.asc-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: .95rem;
    border: 1px solid transparent;
}

.asc-icon.green  { background: rgba(47,122,75,.12); color: #2f7a4b; border-color: rgba(47,122,75,.22); }
.asc-icon.gold   { background: rgba(201,168,76,.14); color: #9b7a23; border-color: rgba(201,168,76,.24); }
.asc-icon.blue   { background: rgba(59,130,246,.12); color: #1d4ed8; border-color: rgba(59,130,246,.22); }
.asc-icon.purple { background: rgba(168,85,247,.12); color: #7e22ce; border-color: rgba(168,85,247,.22); }
.asc-icon.teal   { background: rgba(13,148,136,.12); color: #0f766e; border-color: rgba(13,148,136,.22); }

.asc-label {
    font-size: .74rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
    margin-bottom: 6px;
}

.asc-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    line-height: 1;
    color: var(--forest);
    font-weight: 700;
}

.admin-panel,
.admin-table-wrap {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(30,61,47,.06);
    margin-top: 16px;
}

.admin-panel-header,
.admin-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: linear-gradient(180deg, #fbfdfc, #f6faf8);
    border-bottom: 1px solid var(--border);
}

.admin-panel-header h2,
.admin-table-header h3 {
    margin: 0;
    font-size: 1.05rem;
    color: var(--forest);
}

.admin-table-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--forest-2);
    background: rgba(30,61,47,.08);
    border: 1px solid rgba(30,61,47,.14);
}

.admin-panel-body {
    padding: 16px;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.admin-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.admin-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.admin-field label {
    margin: 0;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--forest);
}

.admin-field input,
.admin-field textarea,
.admin-field select,
.admin-panel select,
.admin-panel input,
.admin-panel textarea {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 11px 12px;
    font-size: .9rem;
    color: var(--text);
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.admin-field input:focus,
.admin-field textarea:focus,
.admin-field select:focus,
.admin-panel select:focus,
.admin-panel input:focus,
.admin-panel textarea:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(107,158,126,.14);
}

.admin-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.tbl-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tbl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .03em;
    padding: 6px 10px;
    border: 1px solid transparent;
    text-decoration: none !important;
    line-height: 1;
}

.tbl-btn-edit {
    color: #1f5f4a;
    background: rgba(47,122,75,.12);
    border-color: rgba(47,122,75,.2);
}

.tbl-btn-delete {
    color: #9f2d2d;
    background: rgba(184,79,79,.12);
    border-color: rgba(184,79,79,.22);
}

.table {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #fff;
}

.table th,
.table td {
    padding: 12px 12px;
}

.table th {
    position: sticky;
    top: 0;
    z-index: 1;
}

.table td code {
    background: #f4f8f6;
    border: 1px solid #e3ece7;
    border-radius: 6px;
    padding: 2px 6px;
}

@media (min-width: 800px) {
    .admin-form-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1080px) {
    .admin-topbar {
        padding: 12px 14px;
    }
    .admin-page-meta h1 {
        font-size: 1.2rem;
    }
}

@media (max-width: 640px) {
    .admin-panel-header,
    .admin-table-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-cards {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .admin-stat-card {
        padding: 12px;
    }

    .asc-value {
        font-size: 1.55rem;
    }

    .admin-form-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================================
   ADMIN LOGIN PAGE - complete styling
   ========================================================= */
.admin-login-wrap {
    min-height: 100vh;
    display: grid;
    align-items: center;
    padding: 30px 0;
}

.admin-login-grid {
    width: min(1020px, 94%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.admin-login-brand {
    border-radius: 20px;
    padding: 30px 28px 22px;
    background: linear-gradient(155deg, #173427 0%, #1e3d2f 48%, #234a38 100%);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 18px 44px rgba(22,46,34,.22);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.admin-login-brand::before {
    content: '';
    position: absolute;
    right: -90px;
    top: -90px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,.18), transparent 68%);
    pointer-events: none;
}

.admin-login-logo {
    width: min(100%, 230px);
    height: auto;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.admin-login-brand-content {
    position: relative;
    z-index: 1;
}

.admin-login-brand h1 {
    margin: 0 0 8px;
    font-size: 2rem;
    color: #fff;
}

.login-tagline {
    margin: 0 0 18px !important;
    font-size: .9rem !important;
    line-height: 1.7 !important;
    color: rgba(220,238,228,.85) !important;
}

.login-features {
    display: grid;
    gap: 10px;
}

.login-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .86rem;
    font-weight: 600;
    color: rgba(232,245,237,.9);
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 10px;
    padding: 10px 12px;
}

.login-feature-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,168,76,.2);
    color: #f5dea0;
    font-size: .85rem;
    border: 1px solid rgba(201,168,76,.28);
    flex-shrink: 0;
}

.admin-login-brand-footer {
    margin-top: auto;
    padding-top: 14px;
    font-size: .75rem;
    color: rgba(220,238,228,.55);
    border-top: 1px solid rgba(255,255,255,.1);
    position: relative;
    z-index: 1;
}

.login-box {
    border-radius: 18px;
    padding: 30px 26px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 44px rgba(30,61,47,.12);
    display: flex;
    flex-direction: column;
}

.login-box-header {
    text-align: center;
    margin-bottom: 16px;
}

.login-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    margin: 0 auto 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--forest);
    background: rgba(30,61,47,.08);
    border: 1px solid rgba(30,61,47,.14);
}

.login-box h2 {
    margin: 0 0 4px;
    color: var(--forest);
    font-size: 1.75rem;
}

.login-sub {
    margin: 0;
    color: var(--muted);
    font-size: .88rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.login-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.login-field label {
    margin: 0;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--forest);
}

.login-field input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 11px 12px;
    font-size: .92rem;
    color: var(--text);
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.login-field input:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(107,158,126,.14);
}

.login-submit {
    margin-top: 4px;
    width: 100%;
    border: 0;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .03em;
    color: #fff;
    background: linear-gradient(135deg, var(--forest-2), var(--forest));
    box-shadow: 0 8px 18px rgba(30,61,47,.26);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.login-submit:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
    box-shadow: 0 12px 24px rgba(30,61,47,.34);
}

.login-box-footer {
    margin-top: 12px;
    text-align: center;
}

.login-box-footer a {
    font-size: .84rem;
    color: var(--forest-2);
    font-weight: 600;
}

.login-box .alert {
    margin-bottom: 14px;
}

@media (max-width: 960px) {
    .admin-login-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .admin-login-brand {
        display: none;
    }
}

@media (max-width: 560px) {
    .login-box {
        padding: 22px 16px;
        border-radius: 14px;
    }
}

/* Admin login balance fix: both panels same visual size */
.admin-login-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 980px;
}

.admin-login-brand,
.login-box {
    min-height: 470px;
    height: 100%;
}

.login-box {
    width: 100%;
    max-width: none;
    margin: 0;
    justify-content: center;
}

@media (max-width: 960px) {
    .admin-login-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }
    .admin-login-brand,
    .login-box {
        min-height: auto;
        height: auto;
    }
}

/* =========================================================
   PAGE POLISH FIXES (About, Results, Header Responsiveness)
   ========================================================= */
.about-side-card {
    padding: 28px 26px;
    gap: 10px;
}

.about-side-card p,
.about-side-card .list {
    color: var(--muted);
}

.about-side-card h3 {
    margin: 0 0 10px;
    color: var(--forest);
}

/* Cancel global .card paragraph clamp for About sidebar card */
.about-side-card p,
.about-side-card .list li {
    display: block !important;
    overflow: visible !important;
    max-height: none !important;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;
    line-height: 1.7 !important;
    margin: 0 0 10px !important;
}

.about-side-card .list {
    margin: 0 0 12px !important;
    padding-left: 20px;
}

.about-side-card .btn-row {
    margin-top: 14px !important;
}

.results-wrap .section-header {
    margin-bottom: 26px;
}

.results-grid .testimonial-card {
    height: 100%;
}

/* Keep testimonial text fully visible on results page */
.page-results .testimonial-card p {
    display: block !important;
    overflow: visible !important;
    max-height: none !important;
    -webkit-line-clamp: unset !important;
}

/* Desktop: hide mobile menu button */
@media (min-width: 992px) {
    .menu-toggle {
        display: none !important;
    }
    .nav-btn {
        display: inline-flex !important;
    }
    #mainNav {
        display: flex !important;
        flex-direction: row !important;
    }
}

/* Mobile + tablet: show menu button, collapse nav until toggled */
@media (max-width: 991px) {
    .menu-toggle {
        display: inline-flex !important;
    }
    .nav-btn {
        display: none !important;
    }
    #mainNav {
        display: none;
    }
    #mainNav.active {
        display: flex;
    }
}

@media (max-width: 680px) {
    .about-side-card {
        padding: 22px 18px;
    }
}

/* Final safety: never show mobile toggle above 992px */
@media (min-width: 992px) {
    button#menuToggle.menu-toggle {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

.ai-chat-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 24px;
    background: rgba(13, 21, 17, 0.48);
    backdrop-filter: blur(6px);
}

.ai-chat-overlay[hidden] {
    display: none !important;
}

.ai-chat-modal {
    position: relative;
    width: min(420px, 100%);
    max-height: min(82vh, 760px);
    display: flex;
    flex-direction: column;
    background: #f7f2e9;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(14, 31, 23, 0.28);
    border: 1px solid rgba(30, 61, 47, 0.12);
}

.ai-chat-head {
    padding: 22px 22px 18px;
    background: linear-gradient(145deg, #17382a 0%, #10261d 100%);
    color: #fff;
}

.ai-chat-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(216, 181, 91, 0.16);
    color: #f5d992;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ai-chat-head h3 {
    margin: 12px 0 8px;
    color: #fff;
    font-size: 1.45rem;
    line-height: 1.2;
}

.ai-chat-head p {
    margin: 0;
    color: rgba(236, 243, 239, 0.84);
    font-size: 0.92rem;
    line-height: 1.6;
}

.ai-chat-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    min-width: 88px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.92rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.ai-chat-close:hover {
    background: rgba(255, 255, 255, 0.18);
}

.ai-chat-close-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.ai-chat-close-text {
    line-height: 1;
}

.ai-chat-body {
    padding: 18px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background:
        radial-gradient(circle at top right, rgba(216, 181, 91, 0.12), transparent 38%),
        linear-gradient(180deg, #f7f2e9 0%, #fffdf8 100%);
}

.ai-chat-msg {
    max-width: 85%;
    padding: 12px 14px;
    border-radius: 18px;
    font-size: 0.92rem;
    line-height: 1.55;
    white-space: pre-line;
}

.ai-chat-msg.bot {
    align-self: flex-start;
    background: #fff;
    color: #22352a;
    border: 1px solid rgba(30, 61, 47, 0.1);
    border-top-left-radius: 8px;
}

.ai-chat-msg.user {
    align-self: flex-end;
    background: linear-gradient(145deg, #1fbf63 0%, #169f4d 100%);
    color: #fff;
    border-top-right-radius: 8px;
    box-shadow: 0 10px 24px rgba(31, 191, 99, 0.18);
}

.ai-chat-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.ai-chat-chip {
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(30, 61, 47, 0.14);
    background: #fff;
    color: #17382a;
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
}

.ai-chat-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 14px 16px 12px;
    border-top: 1px solid rgba(30, 61, 47, 0.1);
    background: #fff;
}

.ai-chat-form input {
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(30, 61, 47, 0.14);
    background: #fbfaf7;
    font: inherit;
    color: #22352a;
}

.ai-chat-form input:focus {
    outline: none;
    border-color: rgba(30, 61, 47, 0.38);
    box-shadow: 0 0 0 3px rgba(30, 61, 47, 0.08);
}

.ai-chat-form button {
    min-width: 88px;
    min-height: 48px;
    padding: 0 18px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #d8b55b, #c39b3a);
    color: #1e2a20;
    font-weight: 800;
    cursor: pointer;
}

.ai-chat-note {
    padding: 0 16px 16px;
    background: #fff;
    color: #6e786f;
    font-size: 0.8rem;
    line-height: 1.5;
}

body.ai-chat-open {
    overflow: hidden;
}

@media (max-width: 640px) {
    .ai-chat-overlay {
        padding: 0;
        align-items: stretch;
        justify-content: stretch;
    }

    .ai-chat-modal {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .ai-chat-close {
        min-width: 40px;
        width: 40px;
        padding: 0;
        border-radius: 50%;
    }

    .ai-chat-close-text {
        display: none;
    }

    .ai-chat-body {
        flex: 1;
    }

    .ai-chat-form {
        grid-template-columns: 1fr;
    }

    .ai-chat-form button {
        width: 100%;
    }
}
