/* ============================================================
   Family Life Resources — Shared Design System
   Used by all pages. pay.html keeps its own payment styles.
   ============================================================ */

:root {
    --sage: #4A6FA5;
    --sage-light: #B8CBE0;
    --sage-pale: #EDF2F8;
    --sage-deep: #2B4C7E;
    --cream: #FDFEFF;
    --warm-white: #FFFFFF;
    --sand: #D4AF37;
    --sand-light: #FBF6E7;
    --text-dark: #1C2B45;
    --text-medium: #3E5270;
    --text-light: #3E5268;
    --gold: #C9A84E;
    --gold-light: #D4B97A;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.page-wrapper {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(44, 48, 40, 0.06);
    padding: 0.8rem 2rem;
}

/* On interior pages the nav sits over a light hero, so give it a base bg */
nav.solid {
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-logo {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.nav-logo span { color: var(--sage); }

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

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--sage);
    transition: width 0.3s ease;
}

.nav-links > li > a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--sage-deep); }

/* Services dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::before {
    content: '';
}
.nav-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 250px;
    background: var(--warm-white);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(44, 48, 40, 0.12);
    padding: 0.6rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    margin-top: 0.6rem;
}
.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-menu li a {
    display: block;
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 0.9rem;
    color: var(--text-medium);
}
.nav-menu li a::after { display: none; }
.nav-menu li a:hover { background: var(--sage-pale); color: var(--sage-deep); }

.nav-cta {
    background: var(--sage);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    font-size: 0.8rem !important;
    letter-spacing: 0.1em !important;
    transition: all 0.3s !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--sage-deep) !important;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
}

.hamburger span {
    width: 24px;
    height: 1.5px;
    background: var(--text-dark);
    transition: all 0.3s;
}

/* ─── BUTTONS ─── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--sage);
    color: white;
    padding: 1rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--sage-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(94, 114, 88, 0.25);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text-medium);
    padding: 1rem 1.5rem;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    transition: color 0.3s;
}

.btn-secondary:hover { color: var(--sage-deep); }

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--sage-deep);
    padding: 1rem 2.2rem;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.4s;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ─── SECTIONS COMMON ─── */
section { padding: 6rem 2rem; }

.section-container {
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}

.section-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 620px;
}

/* ─── INTERIOR PAGE HERO ─── */
.page-hero {
    padding: 9rem 2rem 4rem;
    background: linear-gradient(135deg, var(--sage-pale) 0%, var(--cream) 45%, var(--sand-light) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 130%;
    background: radial-gradient(ellipse, rgba(74, 111, 165, 0.10) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 400;
    line-height: 1.18;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    max-width: 880px;
}

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

.page-hero .lead {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    max-width: 680px;
    margin-bottom: 2rem;
}

.page-hero .hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

/* ─── BREADCRUMBS ─── */
.breadcrumbs {
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}
.breadcrumbs a { color: var(--sage); text-decoration: none; }
.breadcrumbs a:hover { color: var(--sage-deep); text-decoration: underline; }
.breadcrumbs span { color: var(--text-light); margin: 0 0.4rem; }

/* ─── PROSE CONTENT ─── */
.prose { max-width: 760px; }
.prose h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 400;
    color: var(--text-dark);
    margin: 2.6rem 0 1rem;
    line-height: 1.3;
}
.prose h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 1.8rem 0 0.6rem;
}
.prose p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.85;
    margin-bottom: 1.1rem;
}
.prose ul, .prose ol {
    margin: 0 0 1.3rem 1.2rem;
    color: var(--text-medium);
}
.prose li { margin-bottom: 0.6rem; line-height: 1.75; }
.prose a { color: var(--sage); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--sage-deep); }
.prose strong { color: var(--text-dark); font-weight: 600; }

.content-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3.5rem;
    align-items: start;
}

/* ─── SIDEBAR CARD ─── */
.sidebar-card {
    background: var(--warm-white);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 8px 40px rgba(44, 48, 40, 0.06);
    position: sticky;
    top: 6rem;
}
.sidebar-card h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}
.sidebar-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1rem; }
.sidebar-card .btn-primary { width: 100%; justify-content: center; margin-bottom: 0.8rem; }
.sidebar-contact { font-size: 0.92rem; color: var(--text-medium); line-height: 1.9; }
.sidebar-contact a { color: var(--sage-deep); text-decoration: none; font-weight: 500; }
.sidebar-contact a:hover { text-decoration: underline; }

/* ─── CHECK LIST ─── */
.check-list { list-style: none; margin: 1.2rem 0 1.5rem; padding: 0; }
.check-list li {
    position: relative;
    padding-left: 1.9rem;
    margin-bottom: 0.8rem;
    color: var(--text-medium);
    line-height: 1.7;
}
.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 1.1rem;
    height: 1.1rem;
    background: var(--sage-pale);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232B4C7E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
    background-size: 0.7rem;
    background-repeat: no-repeat;
    background-position: center;
}

/* ─── SERVICE CARDS (shared with hub) ─── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    text-decoration: none;
    display: block;
}
.service-card:hover {
    border-color: var(--sage-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(94, 114, 88, 0.08);
}
.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--sage-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}
.service-icon svg { width: 22px; height: 22px; color: var(--sage-deep); }
.service-card h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }
.service-card .card-link {
    display: inline-block;
    margin-top: 0.9rem;
    color: var(--sage);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ─── FAQ ─── */
.faq-list { max-width: 760px; margin: 2.5rem 0 0; }
.faq-item { border-bottom: 1px solid var(--sage-pale); }
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    gap: 1rem;
}
.faq-question:hover { color: var(--sage-deep); }
.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--sage-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}
.faq-item.open .faq-icon { background: var(--sage); transform: rotate(45deg); }
.faq-icon svg { width: 14px; height: 14px; color: var(--sage-deep); transition: color 0.3s; }
.faq-item.open .faq-icon svg { color: white; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-answer-inner { padding: 0 0 1.5rem; font-size: 0.92rem; color: var(--text-light); line-height: 1.8; }

/* ─── CTA BANNER ─── */
.cta-banner {
    background: linear-gradient(135deg, var(--sage-deep) 0%, var(--sage) 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.cta-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-banner h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 300;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 2rem; line-height: 1.7; }

/* ─── RELATED LINKS STRIP ─── */
.related {
    background: var(--sage-pale);
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
}
.related-card {
    background: var(--warm-white);
    border-radius: 14px;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid transparent;
}
.related-card:hover { transform: translateY(-3px); border-color: var(--sage-light); box-shadow: 0 10px 30px rgba(94,114,88,0.08); }
.related-card h3 { font-family: 'Libre Baskerville', serif; font-size: 1.05rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.3rem; }
.related-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ─── FOOTER ─── */
footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.6);
    padding: 3.5rem 2rem 2rem;
    position: relative;
}
.footer-top {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.7rem;
}
.footer-brand span { color: var(--sage-light); }
footer p { font-size: 0.82rem; line-height: 1.7; }
footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
footer a:hover { color: white; }
.footer-col h4 {
    color: white;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { font-size: 0.85rem; }
.footer-verse {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    margin-top: 1rem;
}
.footer-bottom {
    max-width: 1100px;
    margin: 1.5rem auto 0;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.78rem;
}
.footer-dev-link { display: inline-block; margin-top: 0.8rem; opacity: 0.5; transition: opacity 0.3s; }
.footer-dev-link:hover { opacity: 0.8; }
.footer-dev-logo { height: 17px; width: 17px; object-fit: contain; filter: brightness(0) invert(1); }

/* ─── BACK TO TOP ─── */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--sage);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(94, 114, 88, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--sage-deep); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(94, 114, 88, 0.35); }
.back-to-top svg { width: 20px; height: 20px; }

/* ─── ANIMATIONS ─── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger > * { transition-delay: calc(var(--i, 0) * 0.1s); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .content-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .sidebar-card { position: static; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .services-grid { grid-template-columns: 1fr; gap: 1rem; }
    .cta-banner { padding: 3.5rem 1.5rem; }
    .cta-banner h2 { font-size: 1.6rem; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--warm-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        box-shadow: -10px 0 40px rgba(0,0,0,0.08);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 1.2rem;
        overflow-y: auto;
    }
    .nav-links.open { right: 0; }
    .hamburger { display: flex; }
    /* Dropdown becomes inline on mobile */
    .nav-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 0.3rem 0 0 0.8rem;
        min-width: 0;
        margin-top: 0.4rem;
    }
    .nav-dropdown { width: 100%; }
}

@media (max-width: 600px) {
    section { padding: 3.5rem 1.5rem; }
    .page-hero { padding: 7.5rem 1.5rem 3rem; }
    .page-hero h1 { font-size: 2rem; }
    .page-hero .lead { font-size: 1.05rem; }
    .section-title { font-size: 1.8rem; }
    .prose h2 { font-size: 1.5rem; }
    .nav-logo { font-size: 1.2rem; }
    .back-to-top { bottom: 1.2rem; right: 1.2rem; width: 38px; height: 38px; }
    .back-to-top svg { width: 17px; height: 17px; }
}

/* ============================================================
   HOMEPAGE-SPECIFIC COMPONENTS (index.html)
   ============================================================ */

/* ─── HERO ─── */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--sage-pale) 0%, var(--cream) 40%, var(--sand-light) 100%);
    z-index: 0; overflow: hidden;
}
.hero-bg::before {
    content: ''; position: absolute; top: -30%; right: -10%; width: 70%; height: 130%;
    background: radial-gradient(ellipse, rgba(139, 158, 132, 0.12) 0%, transparent 70%); border-radius: 50%;
}
.hero-bg::after {
    content: ''; position: absolute; bottom: -20%; left: -15%; width: 60%; height: 80%;
    background: radial-gradient(ellipse, rgba(212, 197, 178, 0.15) 0%, transparent 70%); border-radius: 50%;
}
.hero-content {
    max-width: 1200px; margin: 0 auto; padding: 8rem 2rem 4rem; position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center;
}
.hero-text h1 {
    font-family: 'Libre Baskerville', serif; font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 400;
    line-height: 1.15; color: var(--text-dark); margin-bottom: 1.5rem;
}
.hero-text h1 em { font-style: italic; color: var(--sage); }
.hero-text .subtitle { font-size: 1.05rem; color: var(--text-light); line-height: 1.8; margin-bottom: 2.5rem; max-width: 520px; }
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.hero-visual { position: relative; overflow: hidden; }
.hero-card {
    background: var(--warm-white); border-radius: 24px; padding: 3rem;
    box-shadow: 0 20px 60px rgba(44, 48, 40, 0.06), 0 1px 3px rgba(44, 48, 40, 0.04); position: relative;
}
.hero-card-label { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage); font-weight: 600; margin-bottom: 1.2rem; }
.hero-card-quote { font-family: 'Libre Baskerville', serif; font-size: 1.5rem; font-weight: 400; font-style: italic; line-height: 1.6; color: var(--text-dark); margin-bottom: 1.5rem; }
.hero-card-verse { font-size: 0.85rem; color: var(--text-light); font-weight: 400; }
.hero-accent { position: absolute; top: -20px; right: -20px; width: 80px; height: 80px; border-radius: 50%; background: var(--sage-pale); opacity: 0.6; }
.hero-accent-2 { position: absolute; bottom: -15px; left: -15px; width: 50px; height: 50px; border-radius: 50%; background: var(--sand-light); }

/* ─── OFFERINGS STRIP ─── */
.offerings-strip {
    background: var(--warm-white); padding: 1.5rem 2rem; display: flex; justify-content: center; gap: 3rem;
    flex-wrap: wrap; border-top: 1px solid var(--sage-pale); border-bottom: 1px solid var(--sage-pale);
}
.offering-chip { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: var(--text-medium); letter-spacing: 0.04em; }
.offering-chip svg { width: 18px; height: 18px; color: var(--sage); }

/* ─── ABOUT ─── */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 3rem; }
.about-person {
    background: var(--warm-white); border-radius: 20px; padding: 2.5rem;
    box-shadow: 0 4px 30px rgba(44, 48, 40, 0.04); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-person:hover { transform: translateY(-4px); }
.about-person-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.about-avatar-img {
    width: 120px; height: 120px; border-radius: 50%; object-fit: cover; object-position: top center;
    border: 3px solid var(--sage-light); box-shadow: 0 4px 15px rgba(44, 48, 40, 0.1);
}
.about-person h3 { font-family: 'Libre Baskerville', serif; font-size: 1.4rem; font-weight: 500; color: var(--text-dark); }
.about-person .credentials { font-size: 0.78rem; color: var(--sage); letter-spacing: 0.04em; font-weight: 500; }
.about-person p { font-size: 0.92rem; color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }
.about-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }
.about-tag { background: var(--sage-pale); color: var(--sage-deep); padding: 0.35rem 0.85rem; border-radius: 100px; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.03em; }

/* ─── SERVICES HEADER ─── */
.services { background: var(--warm-white); }
.services-header { text-align: center; margin-bottom: 3.5rem; }
.services-header .section-desc { margin: 0 auto; }

/* ─── WHY CHOOSE ─── */
.why { background: var(--sage-pale); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.why-item { text-align: center; padding: 2rem 1.5rem; }
.why-number { font-family: 'Libre Baskerville', serif; font-size: 3rem; font-weight: 300; color: var(--sage); line-height: 1; margin-bottom: 0.8rem; }
.why-item h3 { font-family: 'Libre Baskerville', serif; font-size: 1.2rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.6rem; }
.why-item p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* ─── CONTACT ─── */
.contact { background: var(--warm-white); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; }
.contact-info-block { margin-bottom: 2rem; }
.contact-info-block h3 { font-family: 'Libre Baskerville', serif; font-size: 1.15rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.4rem; }
.contact-info-block p, .contact-info-block a { font-size: 0.92rem; color: var(--text-light); text-decoration: none; line-height: 1.7; }
.contact-info-block a:hover { color: var(--sage-deep); }
.contact-form { background: var(--cream); border-radius: 20px; padding: 2.5rem; overflow: hidden; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-medium); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--sage-light); border-radius: 10px;
    background: var(--warm-white); font-family: 'Source Sans 3', sans-serif; font-size: 0.92rem;
    color: var(--text-dark); transition: border-color 0.3s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--sage); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { width: 100%; margin-top: 0.5rem; }

@media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; gap: 2.5rem; padding: 7rem 1.5rem 3rem; }
    .hero-accent { top: -10px; right: -10px; width: 50px; height: 50px; }
    .hero-accent-2 { bottom: -8px; left: -8px; width: 35px; height: 35px; }
    .about-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .why-grid { grid-template-columns: 1fr; gap: 0; }
    .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
    .contact-form { padding: 1.5rem; border-radius: 16px; }
    .offerings-strip { gap: 1.5rem; padding: 1.2rem 1rem; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .hero-card { padding: 2rem; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero-text .subtitle { font-size: 1.1rem; }
    .offerings-strip { flex-direction: column; align-items: center; gap: 0.8rem; padding: 1.2rem 1.5rem; }
    .offering-chip { font-size: 0.9rem; }
    .about-person { padding: 2rem; }
    .why-number { font-size: 2.8rem; }
}
