:root {
    --primary: #3e4a3e;     /* Deep sage green */
    --primary-light: #3e4e3e;
    --primary-dark: #2a332a;
    --accent: #8da48d;      /* Light sage */
    --gold: #d4af37;        /* Premium gold accent */
    --text-dark: #1a1f1a;
    --text-light: #2c352c;
    --bg-color: #f5f7f5;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html { scroll-behavior: smooth; }

/* ---------------- KEYBOARD FOCUS (WCAG 2.1 AA) ---------------- */
:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}
a:focus-visible, button:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
    box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.2);
}

body {
    margin: 0; padding: 0;
    font-family: 'Source Sans 3', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-color);
    min-height: 100vh;
    display: flex; flex-direction: column;
    overflow-x: hidden;
}

/* ---------------- ACCESSIBILITY ---------------- */
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 0 0 8px 8px;
    font-weight: bold;
    font-size: 1rem;
    z-index: 10000;
    transition: top 0.2s ease;
    text-decoration: none;
}
.skip-link:focus {
    top: 0;
}

/* Screen-reader only — visually hidden but accessible */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    letter-spacing: 0.5px;
}

strong, b {
    font-weight: 700;
}

.text-content strong {
    font-weight: 700;
    color: var(--primary-dark);
}

/* ---------------- DYNAMIC BACKGROUND ---------------- */
.background-layer {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: linear-gradient(120deg, #f5f7f5 0%, #e2e8e2 50%, #f5f7f5 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    z-index: -2;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.background-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=25&w=800&auto=format&fit=crop');
    background-size: cover; background-position: center;
    filter: blur(8px) opacity(0.15); 
    z-index: -1;
}

/* ---------------- INTERSECTION OBSERVER ANIMATIONS ---------------- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-right.active { opacity: 1; transform: translateX(0); }

/* ---------------- NAVIGATION ---------------- */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    z-index: 1000; display: flex; justify-content: space-between; align-items: center;
    padding: 15px 50px; box-sizing: border-box; transition: var(--transition);
}
.nav-logo { height: 60px; cursor: pointer; transition: var(--transition); }
.nav-logo:hover { transform: scale(1.05); }

.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a {
    text-decoration: none; color: var(--text-dark);
    font-weight: 600; font-size: 1.0rem; text-transform: uppercase; letter-spacing: 1px;
    position: relative; transition: var(--transition);
}
.nav-links a::after {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: -5px; left: 0; background-color: var(--primary);
    transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white !important; padding: 12px 25px; border-radius: 30px;
    box-shadow: 0 4px 15px rgba(62,74,62,0.3);
}
.nav-cta::after { display: none; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(62,74,62,0.4); }

/* Hamburger button — hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}
.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}
/* Animated X when open */
.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-nav.open {
    display: flex;
    opacity: 1;
}
.mobile-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}
.mobile-nav a:hover { color: var(--gold); transform: scale(1.05); }
.mobile-nav .nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white !important;
    padding: 16px 40px;
    border-radius: 30px;
}

main { padding-top: 90px; flex: 1; }

/* ---------------- BUTTONS ---------------- */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white !important; padding: 18px 40px; font-size: 1.1rem; font-weight: bold;
    border: none; border-radius: 30px; cursor: pointer;
    box-shadow: 0 10px 20px rgba(62, 74, 62, 0.2); transition: var(--transition);
    text-transform: uppercase; letter-spacing: 1px; text-decoration: none;
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(62, 74, 62, 0.35);
}

.btn-secondary {
    display: inline-block; background: transparent; color: var(--primary) !important;
    padding: 16px 38px; font-size: 1.1rem; font-weight: bold;
    border: 2px solid var(--primary); border-radius: 30px; cursor: pointer;
    transition: var(--transition); text-transform: uppercase; letter-spacing: 1px;
    text-decoration: none; margin-left: 20px;
}
.btn-secondary:hover { background: var(--primary); color: white !important; }

/* ---------------- HERO SECTION ---------------- */
.hero-section {
    width: 100%; max-width: 1100px; margin: 0 auto; padding: 80px 20px;
    text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-height: 85vh;
}
img.hero-logo {
    width: 100%; max-width: 900px; height: auto; margin-bottom: 50px;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.08)); transition: transform 0.8s ease;
}
img.hero-logo:hover { transform: scale(1.02); }

.hero-tagline {
    font-family: 'Playfair Display', serif; font-style: italic; font-size: 3.2rem;
    font-weight: 600; margin-bottom: 40px; color: var(--primary-dark);
}

/* ---------------- CONTENT SECTIONS ---------------- */
.content-section {
    width: 100%; background: #ffffff; padding: 100px 20px;
    box-shadow: 0 -20px 40px rgba(0,0,0,0.03), 0 20px 40px rgba(0,0,0,0.03);
    position: relative; z-index: 10;
}
.container { max-width: 1100px; margin: 0 auto; }
.container-center { display: flex; flex-direction: column; align-items: center; text-align: center; }

.section-title {
    font-size: 3.6rem;
    font-weight: 700; margin-bottom: 50px; position: relative; padding-bottom: 20px; text-align: center;
}
.section-title::after {
    display: none;
}
.text-content { font-size: 1.25rem; line-height: 1.9; color: var(--text-light); margin-bottom: 25px; }

/* ---------------- SERVICES GRID (GLASSMORPHISM 2.0) ---------------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; margin-top: 60px; }
.service-card-link { text-decoration: none; color: inherit; display: block; }

.service-card {
    background: var(--glass-bg); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border); border-radius: 24px; padding: 50px 40px;
    text-align: left; transition: var(--transition); box-shadow: var(--glass-shadow);
    position: relative; overflow: hidden; height: 100%; box-sizing: border-box;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg); transition: 0.75s; z-index: 1;
}
.service-card:hover::before { left: 125%; }
.service-card:hover { transform: translateY(-15px); box-shadow: 0 30px 50px rgba(0,0,0,0.1); border-color: var(--accent); }

.service-icon { font-size: 3rem; margin-bottom: 25px; display: block; }
.service-card h3 { font-size: 1.8rem; margin-bottom: 20px; font-weight: 700; }
.read-more {
    display: inline-block; margin-top: 25px; color: var(--primary); font-weight: 700; font-size: 1.1rem;
    text-transform: uppercase; letter-spacing: 1px; transition: var(--transition);
}
.service-card:hover .read-more { color: var(--gold); transform: translateX(10px); }

/* ---------------- BADGES ---------------- */
.highlights-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 25px; width: 100%; margin-top: 40px; }
.badge {
    background: white; border: 1px solid rgba(141, 164, 141, 0.3); padding: 20px 35px; border-radius: 30px;
    display: flex; align-items: center; gap: 15px; font-weight: bold; color: var(--primary); font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04); transition: var(--transition);
}
.badge:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); border-color: var(--accent); }

/* ---------------- TESTIMONIAL CAROUSEL ---------------- */
.carousel-container {
    width: 100%; max-width: 900px; margin: 80px auto 0; overflow: hidden; position: relative;
    padding: 40px 0;
}
.carousel-track { display: flex; transition: transform 0.5s ease-in-out; }
.testimonial {
    min-width: 100%; box-sizing: border-box; padding: 40px; text-align: center;
    background: var(--glass-bg); backdrop-filter: blur(10px); border-radius: 20px; border: 1px solid var(--glass-border);
}
.quote-icon { font-size: 4rem; color: var(--accent); opacity: 0.5; margin-bottom: 10px; line-height: 1; }
.testimonial p { font-size: 1.5rem; font-style: italic; color: var(--text-dark); margin-bottom: 20px; }
.testimonial h4 { font-size: 1.1rem; color: var(--primary); letter-spacing: 1px; }
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: #ccc; cursor: pointer; transition: 0.3s; }
.dot.active { background: var(--primary); transform: scale(1.3); }

/* ---------------- FAQ ACCORDION ---------------- */
.faq-container { max-width: 800px; margin: 60px auto 0; }
.faq-item {
    background: white; border-radius: 12px; margin-bottom: 15px; border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02); overflow: hidden; transition: var(--transition);
}
.faq-question {
    padding: 25px 30px; font-size: 1.2rem; font-weight: bold; color: var(--primary-dark);
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.faq-icon { font-size: 1.5rem; transition: transform 0.3s ease; color: var(--accent); }
.faq-answer {
    padding: 0 30px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
    font-size: 1.1rem; color: var(--text-light); line-height: 1.7;
}
.faq-item.active { box-shadow: 0 10px 25px rgba(0,0,0,0.08); border-color: var(--accent); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-item.active .faq-answer { padding: 0 30px 25px; max-height: 500px; }

/* ---------------- MAGAZINE BLOG LAYOUT ---------------- */
.article-header { text-align: center; margin-bottom: 60px; }
.magazine-meta { display: flex; justify-content: center; gap: 20px; margin-top: 20px; font-weight: bold; font-size: 1.0rem; text-transform: uppercase; letter-spacing: 1px; }
.meta-tag { background: var(--bg-color); padding: 8px 15px; border-radius: 20px; color: var(--primary); }
.read-time { color: var(--gold); }
.article-content {
    max-width: 850px; margin: 0 auto; background: #ffffff; padding: 80px;
    border-radius: 24px; box-shadow: 0 20px 50px rgba(0,0,0,0.05); border: 1px solid #f0f0f0;
}
.drop-cap::first-letter {
    font-family: 'Cormorant Garamond', serif; font-size: 5rem; float: left; margin: 10px 15px 0 0;
    line-height: 0.8; color: var(--primary); text-shadow: 2px 2px 0px rgba(141,164,141,0.3);
    font-weight: 600;
}
.article-content h2 { font-size: 2.5rem; font-weight: 700; margin-top: 50px; margin-bottom: 25px; border-bottom: 2px solid var(--bg-color); padding-bottom: 10px; }
.article-content p { font-size: 1.15rem; line-height: 1.9; color: var(--text-dark); margin-bottom: 30px; }
.article-content ul { font-size: 1.2rem; line-height: 1.9; margin-bottom: 30px; padding-left: 25px; }
.article-content li { margin-bottom: 15px; }
.author-box {
    margin-top: 60px; padding: 30px; background: var(--bg-color); border-radius: 16px;
    display: flex; align-items: center; gap: 20px; border-left: 5px solid var(--primary);
}
.author-box h4 { margin-bottom: 5px; }
.author-box p { margin: 0; font-size: 1rem; color: var(--text-light); }

/* ---------------- CONTACT FORM ---------------- */
.contact-section {
    width: 100%;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0,0,0,0.05);
    box-sizing: border-box;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 { font-size: 2.5rem;
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Floating Label Inputs */
.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 18px 20px;
    font-size: 1.05rem;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(141, 164, 141, 0.3);
    border-radius: 12px;
    outline: none;
    box-sizing: border-box;
    transition: var(--transition);
}

.input-group textarea {
    resize: vertical;
    min-height: 140px;
}

.input-group label {
    position: absolute;
    left: 20px;
    top: 20px;
    color: #778877;
    font-size: 1.05rem;
    pointer-events: none;
    transition: var(--transition);
}

.input-group input:focus,
.input-group textarea:focus {
    background: #ffffff;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(141, 164, 141, 0.15);
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
    top: -12px;
    left: 15px;
    font-size: 0.85rem;
    background: #ffffff;
    padding: 0 8px;
    color: var(--primary);
    font-weight: bold;
    border-radius: 4px;
    border: 1px solid var(--accent);
}

.status-msg {
    margin-top: 15px;
    text-align: center;
    font-size: 1rem;
    color: var(--primary);
    font-weight: bold;
    display: none;
}

.contact-alt {
    text-align: center;
    margin-top: 30px;
    font-size: 1.05rem;
    color: var(--text-light);
}

.contact-alt a {
    color: var(--primary);
    font-weight: bold;
    text-decoration: none;
}

/* ---------------- PHILOSOPHY PAGE ---------------- */
.philosophy-quote {
    max-width: 750px;
    margin: 0 auto 20px;
    padding: 45px 55px 45px 60px;
    border-left: 7px solid var(--gold);
    border-top: 1px solid rgba(212,175,55,0.25);
    border-bottom: 1px solid rgba(212,175,55,0.25);
    background: linear-gradient(135deg, rgba(212,175,55,0.12) 0%, rgba(141,164,141,0.10) 100%);
    border-radius: 0 20px 20px 0;
    text-align: left;
    box-shadow: 0 8px 30px rgba(212,175,55,0.12), inset 0 0 0 1px rgba(255,255,255,0.6);
    position: relative;
}
.philosophy-quote::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: 15px;
    line-height: 1;
    pointer-events: none;
}
.philosophy-quote-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.85rem;
    line-height: 1.85;
    color: var(--primary-dark);
    margin: 0;
    position: relative;
    z-index: 1;
}
.philosophy-mission {
    margin-top: 60px;
    max-width: 820px;
    width: 100%;
    padding: 55px 65px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(42,51,42,0.3), 0 1px 0 rgba(255,255,255,0.1) inset;
    border: 1px solid rgba(212,175,55,0.2);
    position: relative;
    overflow: hidden;
}
.philosophy-mission::before {
    display: none;
}
.philosophy-mission p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.45rem;
    line-height: 1.9;
    margin: 0;
    color: rgba(255,255,255,0.95);
    position: relative;
    z-index: 1;
}


/* ---------------- MEGA FOOTER ---------------- */
footer {
    background-color: var(--primary-dark); color: white; padding: 80px 50px 40px; margin-top: auto;
}
.footer-grid {
    max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px;
}
.footer-col h3 { color: var(--gold); font-size: 1.4rem; margin-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
.footer-col p, .footer-col a { color: #e5ebe5; font-size: 1.05rem; line-height: 1.8; text-decoration: none; transition: 0.3s; display: block; margin-bottom: 10px; }
.footer-col a:hover { color: white; transform: translateX(5px); }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; font-size: 0.95rem; color: #aab5aa; }

/* ---------------- FLOATING ACTION BUTTON (FAB) ---------------- */
.fab {
    position: fixed; bottom: 40px; right: 40px;
    background: linear-gradient(135deg, var(--gold) 0%, #b8962e 100%);
    color: white;
    /* Pill shape to fit icon + label */
    height: 52px; padding: 0 22px;
    border-radius: 30px;
    display: flex; justify-content: center; align-items: center; gap: 9px;
    font-family: 'Source Sans 3', sans-serif, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.92rem; font-weight: 700; letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4); z-index: 9999; text-decoration: none;
    transition: var(--transition); animation: pulse 2s infinite;
    white-space: nowrap;
}
.fab svg { flex-shrink: 0; }
.fab:hover { transform: scale(1.06) translateY(-2px); animation: none; box-shadow: 0 15px 30px rgba(212, 175, 55, 0.55); }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}
/* Mobile: slightly smaller */
@media (max-width: 768px) {
    .fab { bottom: 20px; right: 20px; height: 46px; padding: 0 18px; font-size: 0.86rem; }
}
@media (max-width: 480px) {
    .fab { bottom: 15px; right: 15px; height: 44px; padding: 0 16px; font-size: 0.83rem; }
}

/* ---------------- RESPONSIVE — TABLET (≤1024px) ---------------- */
@media (max-width: 1024px) {
    .navbar { padding: 15px 30px; }
    .services-grid { gap: 25px; }
    .section-title { font-size: 3.0rem; }
    footer { padding: 60px 30px 35px; }
}

/* ---------------- RESPONSIVE — TABLET / LARGE MOBILE (≤900px) ---------------- */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    footer { padding: 55px 25px 30px; }
    .footer-col h4 { border-bottom: none; }
    .footer-col a:hover { transform: none; }
    .hero-tagline { font-size: 2.2rem; }
    .section-title { font-size: 2.5rem; }
    .content-section { padding: 70px 20px; }
    .services-grid { grid-template-columns: 1fr; gap: 20px; }
    .service-card { padding: 35px 28px; }
    .hero-section { padding: 60px 20px; min-height: 80vh; }
    img.hero-logo { max-width: 100%; margin-bottom: 30px; }
    .text-content { font-size: 1.1rem; }
    .highlights-grid { gap: 15px; }
    .badge { padding: 15px 20px; font-size: 1rem; }
    .faq-container { max-width: 100%; }
    .article-content { padding: 40px 25px; }
    .carousel-container { padding: 20px 0; }
    .testimonial p { font-size: 1.15rem; }
    .philosophy-quote { padding: 32px 26px 32px 30px; }
    .philosophy-quote-text { font-size: 1.3rem; }
    .philosophy-mission { padding: 40px 30px; }  /* P1: confirmed — covers 768–900px gap */
    .philosophy-mission p { font-size: 1.1rem; }
}

/* P2 — Explicitly collapse services grid at 640px.                           */
/* auto-fit(minmax(320px,1fr)) naturally collapses ~680px but on some phones  */
/* in the 640–680px zone two very narrow columns can appear. Force 1fr here.  */
@media (max-width: 640px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* ---------------- RESPONSIVE — MOBILE (≤768px) ---------------- */
@media (max-width: 768px) {
    .navbar { padding: 12px 20px; }
    .nav-links { display: none; } /* hidden — hamburger takes over */
    .hamburger { display: flex; }
    main { padding-top: 76px; }
    .section-title { font-size: 2.2rem; margin-bottom: 30px; }
    .hero-tagline { font-size: 1.9rem; }
    .hero-section { min-height: 75vh; padding: 40px 20px; }
    .content-section { padding: 50px 16px; }
    .services-grid { gap: 16px; }
    .service-card { padding: 28px 20px; }
    .btn-primary, .btn-secondary {
        display: block;
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-top: 14px;
        box-sizing: border-box;
    }
    .article-content { padding: 30px 20px; }
    .glass-panel { padding: 35px 18px; }
    /* .fab mobile sizing: handled in the FAB section above */
    .faq-question { padding: 20px; font-size: 1.05rem; }
    .faq-answer { padding: 0 20px; }
    .faq-item.active .faq-answer { padding: 0 20px 20px; }
    .author-box { flex-direction: column; text-align: center; }
    footer { padding: 45px 18px 25px; }
    .footer-grid { gap: 22px; }
    .testimonial { padding: 28px 20px; }
    .testimonial p { font-size: 1.05rem; }
    .philosophy-quote { padding: 26px 20px 26px 24px; border-left-width: 5px; }
    .philosophy-quote-text { font-size: 1.2rem; }
    .philosophy-mission { padding: 32px 22px; }
    .philosophy-mission p { font-size: 1rem; }
}

/* ---------------- RESPONSIVE — SMALL MOBILE (≤480px) ---------------- */
@media (max-width: 480px) {
    .section-title { font-size: 1.85rem; }
    .text-content { font-size: 1.1rem; }
    .service-card h3 { font-size: 1.3rem; }
    .hero-section { min-height: 65vh; }
    .btn-primary { padding: 15px 24px; font-size: 1rem; }
    .btn-secondary { padding: 13px 24px; font-size: 1rem; }
    .badge { flex-direction: column; text-align: center; gap: 8px; padding: 14px; }
    /* .fab small mobile sizing: handled in the FAB section above */
    .philosophy-quote { padding: 22px 16px 22px 20px; }
    .philosophy-quote-text { font-size: 1.1rem; }
    .philosophy-mission { padding: 26px 16px; }
    .philosophy-mission p { font-size: 0.95rem; }
    /* C3: drop-cap shrunk so it does not overflow float on small screens */
    .drop-cap::first-letter { font-size: 3rem; }
    /* P3: extra bottom padding so the fixed FAB does not obscure footer copy */
    footer { padding-bottom: 80px; }
}

/* ---------------- ORIENTATION: LANDSCAPE PHONE ---------------- */
/* Triggered when a phone is rotated sideways: wide but very short viewport */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section { min-height: auto; padding: 24px 20px; }
    .navbar { padding: 8px 20px; }
    main { padding-top: 65px; }
    .content-section { padding: 36px 20px; }
    img.hero-logo { margin-bottom: 16px; }
    /* P5: mobile nav overlay scrollable + compact in landscape so links don't clip */
    .mobile-nav { gap: 20px; overflow-y: auto; padding: 60px 20px 20px; }
    .mobile-nav a { font-size: 1.3rem; }
}

/* ======================================================================
   HOMEPAGE SECTIONS — added during redesign
   ====================================================================== */

/* Hero value statement */
.hero-value {
    font-family: 'Source Sans 3', sans-serif, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto 36px;
    text-align: center;
}

/* Hero CTA row */
.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.hero-cta-row .btn-secondary { margin-left: 0; }

/* ── Trust strip (4 inline items) ──────────────────────────────────── */
.trust-strip {
    background: var(--primary-dark);
    padding: 28px 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
}
.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.88);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 10px 28px;
    border-right: 1px solid rgba(255,255,255,0.12);
}
.trust-strip-item:last-child { border-right: none; }
.trust-strip-icon {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.3);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.trust-strip-icon svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 900px) {
    .trust-strip { gap: 0; padding: 16px 20px; }
    .trust-strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); width: 100%; padding: 12px 16px; }
    .trust-strip-item:last-child { border-bottom: none; }
}

/* ── Section alternating background ───────────────────────────────── */
.content-section.alt-bg { background: var(--bg-color); }

/* ── Credential badge row ──────────────────────────────────────────── */
.cred-badge-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 40px;
}
.cred-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1.5px solid rgba(141,164,141,0.35);
    border-radius: 30px;
    padding: 10px 20px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: var(--transition);
}
.cred-badge:hover { transform: translateY(-4px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); border-color: var(--accent); }
.cred-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ── Testimonial placeholder cards ────────────────────────────────── */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 50px;
}
.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--glass-shadow);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.testimonial-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 8px;
}
.testimonial-body {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 24px;
}
.testimonial-attribution {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    color: var(--primary);
    opacity: 0.6;
}
.testimonial-placeholder-badge {
    display: inline-block;
    margin-top: 10px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    background: rgba(141,164,141,0.12);
    padding: 3px 10px;
    border-radius: 20px;
}

/* ── Section CTA strip ─────────────────────────────────────────────── */
.section-cta-strip {
    text-align: center;
    margin-top: 60px;
}

/* ── Approach pillars (reuse service-card, add top label) ──────────── */
.pillar-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.0rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 10px;
    display: block;
}

/* ======================================================================
   GROUNDED AND SPACIOUS — Homepage redesign (2026-05)
   Scoped classes used only in index.html. Safe to update independently.
   ====================================================================== */

/* ── Hero: full-viewport, vertically centered ──────────────────────────
   Override the shared .hero-section rule for the homepage layout.
   max-width removed so the background fills edge-to-edge;
   the inner wrapper constrains the content. */
.hero-gs {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;   /* top clears the fixed navbar */
    box-sizing: border-box;
    text-align: center;
}
.hero-gs img.hero-logo {
    width: 100%;
    max-width: 850px;
    height: auto;
    margin-bottom: 36px;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.08));
    transition: transform 0.8s ease;
}
.hero-gs img.hero-logo:hover { transform: scale(1.02); }

.hero-gs .hero-value {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.05rem;
    color: var(--text-light);
    letter-spacing: 0.04em;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 48px;
}

/* Scroll hint — animated chevron at hero bottom */
.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.45;
    animation: gs-bounce 2.2s ease-in-out infinite;
    pointer-events: none;
}
.hero-scroll-hint svg { stroke: var(--primary); }
@keyframes gs-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Section A: Who We Are ─────────────────────────────────────────────
   Prose-only. No headings, no cards, no dividers.
   Background: pure white. Space does the visual work. */
.gs-who {
    background: #ffffff;
    padding: 110px 24px;
    text-align: center;
}
.gs-who p {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.2rem;
    line-height: 1.95;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ── Section B: Services ───────────────────────────────────────────────
   Pale sage tint separates without a dark strip. Cards use Cinzel
   headings with a gold rule instead of emoji icons. */
.gs-services {
    background: hsl(120, 14%, 96.5%);
    padding: 110px 24px;
}
.gs-services-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.gs-services-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 14px;
    display: block;
}

.gs-services h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-dark);
    text-align: center;
    margin: 0 0 64px;
    font-weight: 600;
}
.gs-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.gs-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.gs-card {
    background: #ffffff;
    border: 1px solid rgba(141,164,141,0.2);
    border-radius: 20px;
    padding: 44px 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}
.gs-card::before {
    content: '';
    position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: 0.7s;
}
.gs-card:hover::before { left: 130%; }
.gs-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(62,74,62,0.10);
    border-color: rgba(212,175,55,0.45);
}
.gs-card-rule {
    display: none;
}
.gs-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 14px;
    letter-spacing: 0.02em;
}
.gs-card p {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0 0 24px;
}
.gs-card-learn {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}
.gs-card:hover .gs-card-learn {
    color: var(--primary);
    text-decoration: underline;
    transform: translateX(6px);
}

/* ── Section C: CTA Block ──────────────────────────────────────────────
   Sage green field with gold button.
   Trust signals embedded in supporting copy — not bullets. */
.gs-cta {
    background: var(--primary);
    padding: 110px 24px;
    text-align: center;
}
.gs-cta-inner { max-width: 720px; margin: 0 auto; }
.gs-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: #ffffff;
    font-weight: 600;
    margin: 0 0 20px;
    letter-spacing: 0.02em;
}
.gs-cta p {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.80);
    line-height: 1.75;
    margin: 0 0 44px;
}
.btn-gold {
    display: inline-block;
    background: var(--gold);
    color: var(--primary-dark) !important;
    padding: 18px 44px;
    border-radius: 30px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 8px 24px rgba(212,175,55,0.35);
}
.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 36px rgba(212,175,55,0.50);
    background: hsl(43, 62%, 62%);
}

/* ── Responsive overrides ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-gs img.hero-logo { max-width: 550px; }
}
@media (max-width: 820px) {
    .gs-cards { grid-template-columns: 1fr; }
    .gs-services h2 { font-size: 1.8rem; }
    .gs-cta h2 { font-size: 1.6rem; }
}
@media (max-width: 600px) {
    .hero-gs { padding: 100px 20px 60px; min-height: 90vh; }
    .hero-gs img.hero-logo { max-width: 380px; }
    .gs-who { padding: 80px 20px; }
    .gs-services { padding: 80px 20px; }
    .gs-card { padding: 32px 28px; }
    .gs-cta { padding: 80px 20px; }
}

/* C1 — Very small phones (375px iPhone SE / 390px iPhone 14).               */
/* Tighten hero padding so the CTA button stays above the fold: reduce top    */
/* from 100px to 72px, drop logo margin, shrink value statement font/margin. */
@media (max-width: 390px) {
    .hero-gs { padding: 72px 16px 36px; min-height: 90vh; }
    .hero-gs img.hero-logo { margin-bottom: 18px; }
    .hero-gs .hero-value { font-size: 0.92rem; margin-bottom: 24px; }
}

/* ======================================================================
   CAREGIVER RESOURCES (parent-resources.html) — minimal additions
   ====================================================================== */

/* Tips Grid (2-column on desktop, centered 5th card) */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 40px auto 0;
}
.tips-grid .tip-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.tips-grid .tip-card:last-child {
    grid-column: 1 / span 2;
    justify-self: center;
    max-width: calc(50% - 15px); /* Matches width of other columns */
    width: 100%;
}
.tip-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

/* External Resources disclaimer */
.disclaimer {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-light);
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(141, 164, 141, 0.15);
    padding: 16px 24px;
    border-radius: 12px;
}

/* Resource Link Cards */
.links-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.link-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-sizing: border-box;
}
.link-info {
    flex: 1;
}
.link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--bg-color);
    color: var(--primary) !important;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 20px;
    border: 1.5px solid rgba(141, 164, 141, 0.3);
    transition: var(--transition);
    white-space: nowrap;
}
.link-card:hover .link-btn {
    background: var(--gold);
    color: var(--primary-dark) !important;
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

/* Closing CTA styling */
.cta-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--primary-dark);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 820px) {
    .link-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .link-btn {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .tips-grid {
        grid-template-columns: 1fr;
    }
    .tips-grid .tip-card:last-child {
        grid-column: auto;
        justify-self: stretch;
        max-width: 100%;
    }
}

/* Scope of Practice Disclosure style (aba-applications.html) */
.scope-disclosure {
    border: 1px solid rgba(90, 107, 90, 0.35);
    border-radius: 16px;
    padding: 32px;
    margin: 60px auto;
    max-width: 840px;
    color: var(--primary-light);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.98rem;
    line-height: 1.75;
    background: rgba(255, 255, 255, 0.45);
    text-align: center;
    box-sizing: border-box;
}

/* ======================================================================
   DROPDOWN NAVIGATION SYSTEM
   ====================================================================== */

/* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
    height: 100%;
}

/* Dropdown Trigger Button */
.dropdown-trigger {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.dropdown-trigger::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}
.dropdown-trigger:hover::after,
.dropdown-trigger[aria-expanded="true"]::after {
    width: 100%;
}

/* Chevron Icon Styling */
.chevron-icon {
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Rotate Chevron when Open */
.dropdown-trigger[aria-expanded="true"] .chevron-icon,
.mobile-dropdown-trigger[aria-expanded="true"] .chevron-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu (Glassmorphism 2.0) */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 12px;
    min-width: 220px;
    box-shadow: var(--glass-shadow);
    z-index: 2000;
}
.dropdown-menu.show {
    display: block;
}

/* Dropdown Menu Links */
.dropdown-menu a {
    padding: 10px 20px;
    font-family: inherit;
    font-size: 0.88rem !important; /* Slightly smaller for sub-items */
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    position: relative;
    transition: background 0.25s ease, color 0.25s ease;
    display: block;
    text-align: left;
}

/* Redefine underline animation specifically for dropdown items to match padding */
.dropdown-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 4px;
    left: 20px;
    background-color: var(--primary);
    transition: var(--transition);
}
.dropdown-menu a:hover::after {
    width: calc(100% - 40px);
}

.dropdown-menu a:hover {
    background: rgba(141, 164, 141, 0.12);
    color: var(--primary-dark);
}

/* MOBILE ACCORDIONS */
.mobile-dropdown {
    width: 100%;
}
.mobile-dropdown-trigger {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 0;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.mobile-dropdown-trigger:hover {
    color: var(--gold);
    transform: scale(1.05);
}
.mobile-dropdown-menu {
    display: none;
    gap: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}
.mobile-dropdown-menu.show {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    margin-bottom: 10px;
}
.mobile-dropdown-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem !important;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 0;
    display: block;
    text-align: center;
    transition: var(--transition);
}
.mobile-dropdown-menu a:hover {
    color: var(--gold);
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .mobile-dropdown-trigger {
        font-size: 1.3rem;
    }
    .mobile-dropdown-menu a {
        font-size: 1.05rem !important;
    }
}

/* ======================================================================
   DYNAMIC CONTENT STYLES (GOOGLE SHEETS SYNC)
   ====================================================================== */

.magazine-article {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px dashed rgba(90, 107, 90, 0.25);
    text-align: left;
}
.magazine-article h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-dark);
    font-size: 2.0rem;
    margin-top: 15px;
    margin-bottom: 15px;
}
.magazine-article .summary-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}
.magazine-article .article-body p {
    margin-bottom: 15px;
    line-height: 1.7;
}
.magazine-article .learn-more-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}
.magazine-article .learn-more-link:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.resource-link-card {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    text-align: left;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.resource-link-card h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-dark);
    font-size: 1.6rem;
    margin-bottom: 10px;
}
.resource-link-card p {
    margin-bottom: 20px;
    line-height: 1.6;
}


/* Nav Font System Update */
.nav-links a,
.dropdown-trigger,
.mobile-dropdown-trigger {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}

h1, h2, h3, h4, .section-title, .gs-card h3, .article-content h2, .gs-services h2, .gs-cta h2, .magazine-article h2, .resource-link-card h3 {
    font-variant: normal;
    font-variant-caps: normal;
    text-transform: none;
}

em, i {
    font-style: italic;
    font-weight: 600;
}

.gs-card h3,
.service-card h3,
.tip-card h3,
.link-card h3,
.resource-link-card h3 {
    font-weight: 700;
    color: var(--primary-dark);
}

.read-more,
.gs-card-learn {
    display: inline-block;
    white-space: nowrap;
}



/* Heading overrides to Cormorant Garamond 700 */
.gs-card h3,
.service-card h3,
.tip-card h3,
.link-card h3,
.resource-link-card h3,
.article-content h2,
.magazine-article h2,
.gs-services h2,
.gs-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: var(--primary-dark);
}

/* Homepage Hero Header Style */
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: 24px;
    margin-bottom: 24px;
    line-height: 1.2;
    text-align: center;
    max-width: 850px;
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.4rem; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 1.9rem; }
}