/* ============================================================
   GRACIE GRAY — Premium Design System
   Inspired by doulasarah.co.uk + mousesgarden.co.uk
   + Grace's original warm golden palette
   ============================================================ */

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

:root {
    /* Color Palette — Warm, Organic, Premium */
    --cream: #f7f4ef;
    --cream-dark: #ede8df;
    --gold: #c9a96e;
    --gold-light: #dfc89e;
    --gold-muted: #b8975a;
    --slate: #5a6b78;
    --slate-light: #7a8d9c;
    --charcoal: #2c2c2c;
    --text: #3d3a36;
    --text-light: #6b665e;
    --white: #ffffff;
    --burgundy: #4a1a1d;
    --blush: #e8d5c4;
    --sage: #8a9a7e;

    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --font-accent: 'Caveat', cursive;

    /* Spacing */
    --section-padding: 1.5rem;
    --container-width: 1180px;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text);
    background-color: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.15;
    color: var(--charcoal);
}

h1 {
    font-size: clamp(2.2rem, min(4.5vw, 7vh), 4.5rem);
    font-style: italic;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-style: italic;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.lead {
    font-size: 1.25rem;
    color: var(--slate);
    line-height: 1.9;
    font-weight: 300;
}

.accent-text {
    font-family: var(--font-accent);
    color: var(--gold);
    font-size: 1.4rem;
}

a {
    color: var(--gold-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--gold);
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* ============================================================
   HEADER — Large Centred Logo, Prominent Brand
   ============================================================ */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.5s ease;
    padding: 1.5rem 0 0.8rem 0;
    background-color: rgba(247, 244, 239, 0.97);
}

header.scrolled {
    background-color: rgba(247, 244, 239, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 30px rgba(0,0,0,0.04);
    padding: 0.5rem 0;
}

.nav-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    transition: all 0.5s ease;
}

header.scrolled .nav-container {
    justify-content: center;
}

/* Logo */
.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s ease;
}

.logo-img-wrap {
    width: 100px;
    height: auto;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    mix-blend-mode: multiply;
}

/* Hide text — the logo image already has the branding */
.logo-text {
    display: none;
}

/* Scrolled state — compact horizontal bar */
header.scrolled .logo {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

header.scrolled .logo-img-wrap {
    width: 52px;
}

/* Navigation */
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    margin-top: 0.8rem;
    transition: margin 0.5s ease;
}

header.scrolled .nav-links {
    margin-top: 0;
}

.nav-links a {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--slate);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--charcoal);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--charcoal);
    z-index: 1001;
}

/* ============================================================
   BUTTONS — Elegant Pill & Ghost Styles
   ============================================================ */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
}

.btn-primary {
    background-color: var(--charcoal);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--gold-muted);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(185, 151, 90, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--charcoal);
}

.btn-outline:hover {
    background-color: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--white);
}

.btn-gold:hover {
    background-color: var(--gold-muted);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(185, 151, 90, 0.3);
}

/* ============================================================
   HERO — Full-Viewport, Immersive, Editorial
   ============================================================ */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--cream-dark);
    overflow: hidden;
    padding-top: calc(75px + 2vh);
    padding-bottom: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    align-items: start;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-logo {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.hero-text {
    padding: 0 0 2rem 0;
}

.hero-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    align-items: center;
    margin-top: 1.5rem;
}

.hero-text .tagline {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 1.5rem;
    display: block;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.hero-text .lead {
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image .img-placeholder {
    width: 100%;
    height: 100%;
}

/* ============================================================
   IMAGE PLACEHOLDERS — Styled gaps for future images
   ============================================================ */
.img-placeholder {
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--blush) 50%, var(--cream-dark) 100%);
    background-size: 200% 200%;
    animation: shimmer 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-muted);
    font-family: var(--font-accent);
    font-size: 1.1rem;
    overflow: hidden;
    position: relative;
}

.img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.img-rounded {
    border-radius: 200px 200px 20px 20px;
}

.img-soft {
    border-radius: 20px;
}

.img-circle {
    border-radius: 50%;
}

/* ============================================================
   WAVE DIVIDERS — Organic Section Separators
   ============================================================ */
.wave-divider {
    position: relative;
    height: 40px;
    overflow: hidden;
    margin-top: -1px;
}

.wave-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;
}

.wave-divider.flip svg {
    top: 0;
    bottom: auto;
    transform: rotate(180deg);
}

/* ============================================================
   SECTIONS — Spacious, Organic Flow
   ============================================================ */

/* Intro / Problem Section */
.intro-section {
    background-color: var(--cream);
    padding-top: 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.intro-grid .intro-text {
    max-width: 520px;
}

.intro-grid .intro-image {
    position: relative;
}

.intro-grid .intro-image .img-placeholder {
    height: 400px;
}

/* Three Pillars */
.pillars {
    background-color: var(--white);
    text-align: center;
}

.pillars-header {
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pillar {
    padding: 2.5rem 1.5rem;
    transition: transform 0.4s ease;
}

.pillar:hover {
    transform: translateY(-8px);
}

.pillar-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--gold-muted);
}

.pillar h3 {
    font-family: var(--font-serif);
    font-style: italic;
    margin-bottom: 1rem;
}

.pillar p {
    font-size: 0.95rem;
}

/* Pull Quote / Testimonial */
.pull-quote {
    background-color: var(--cream-dark);
    text-align: center;
    padding: 4rem 2rem 1.5rem 2rem;
}

.pull-quote blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    color: var(--charcoal);
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.4;
}

.pull-quote cite {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-muted);
    font-style: normal;
}

/* About Preview */
.about-preview {
    background-color: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 6rem;
    align-items: center;
}

.about-image .img-placeholder {
    height: 600px;
}

.about-text .credentials-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
    display: block;
    line-height: 2;
}

.credentials-list li {
    display: inline;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--charcoal);
}

.credentials-list li:not(:last-child)::after {
    content: ' \2022 '; /* bullet character */
    color: var(--gold);
    margin: 0 0.6rem;
    font-size: 0.9rem;
}

/* CTA Band */
.cta-band {
    background-color: var(--charcoal);
    text-align: center;
    padding: 1.5rem 2rem;
}

.cta-band h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-band p {
    color: var(--slate-light);
    max-width: 600px;
    margin: 0 auto 1rem auto;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
    padding-top: calc(80px + 1.5rem);
    padding-bottom: 1.5rem;
    text-align: center;
    background-color: var(--cream-dark);
}

.page-hero .accent-text {
    display: block;
    margin-bottom: 1rem;
}

.story-section .story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.story-section .story-grid.reverse {
    direction: rtl;
}

.story-section .story-grid.reverse > * {
    direction: ltr;
}

.story-image .img-placeholder {
    height: 500px;
}

/* Norland Section */
.norland-section {
    background-color: var(--charcoal);
    color: var(--white);
    text-align: center;
}

.norland-section h2 {
    color: var(--gold-light);
}

.norland-section p {
    color: rgba(255,255,255,0.7);
    max-width: 750px;
    margin: 0 auto 1.5rem auto;
}

.norland-badge {
    display: inline-block;
    border: 1px solid var(--gold);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    color: var(--gold-light);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 1rem;
}

/* Credentials Grid */
.credentials-section {
    background-color: var(--cream);
}

.image-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.strip-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 3rem auto 0 auto;
}

.credential-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(201, 169, 110, 0.15);
    transition: all 0.3s ease;
}

.credential-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.credential-card .year {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
}

.credential-card h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.credential-card p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    padding: 1.5rem 0;
}

.service-block + .service-block {
    border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.service-block.reverse {
    direction: rtl;
}

.service-block.reverse > * {
    direction: ltr;
}

.service-image .img-placeholder {
    height: 420px;
}

.service-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 1rem;
    display: block;
}

.services-additional {
    background-color: var(--white);
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.additional-card {
    background-color: var(--cream);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.additional-card:hover {
    border-color: var(--gold-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.04);
}

.additional-card h3 {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-info {
    padding-top: 1rem;
}

.contact-info h1 {
    margin-bottom: 1.5rem;
}

.contact-methods {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.contact-method .method-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--blush));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-method h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 0.3rem;
}

.contact-method a,
.contact-method p {
    font-size: 1.05rem;
    color: var(--charcoal);
    margin-bottom: 0;
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid var(--cream-dark);
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--charcoal);
    background-color: var(--cream);
    transition: all 0.3s ease;
    outline: none;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ============================================================
   FOOTER — Elegant, Warm
   ============================================================ */
footer {
    background-color: var(--charcoal);
    color: rgba(255,255,255,0.6);
    padding: 2rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    display: block;
}

.footer-brand-sub {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 1.5rem;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.stagger-children .fade-up:nth-child(1) { transition-delay: 0s; }
.stagger-children .fade-up:nth-child(2) { transition-delay: 0.15s; }
.stagger-children .fade-up:nth-child(3) { transition-delay: 0.3s; }
.stagger-children .fade-up:nth-child(4) { transition-delay: 0.45s; }

/* Floating decoration dots */
.decoration-dot {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--blush));
    opacity: 0.15;
    pointer-events: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 968px) {
    :root {
        --section-padding: 1.5rem;
    }

    /* ── Header compact on mobile ── */
    header {
        padding: 0.5rem 0;
    }

    header.scrolled {
        padding: 0.4rem 0;
    }

    .logo-img-wrap {
        width: 72px !important;
    }

    /* ── HERO: strip the huge desktop padding, drive spacing from inner ── */
    .hero {
        padding-top: 70px;
        padding-bottom: 2rem;
        min-height: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding: 0 1.5rem 2rem;
        gap: 0;
    }

    .hero-image {
        height: auto;
        border-radius: 0;
        margin-top: 0;
    }

    .hero-logo {
        height: auto;
        max-height: 60vh;
    }

    .hero-text {
        padding: 0;
    }

    .hero-text .lead {
        margin: 0 auto 2.5rem auto;
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }



    /* ── INNER PAGE HEROES: strip the massive 32rem desktop padding ── */
    .page-hero {
        padding-top: 6rem;
        padding-bottom: 2rem;
    }

    /* ── All other two-col grids stack ── */
    .intro-grid,
    .about-grid,
    .story-section .story-grid,
    .service-block,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .story-section .story-grid.reverse,
    .service-block.reverse {
        direction: ltr;
    }

    .intro-grid .intro-image img,
    .about-image img,
    .story-image img,
    .service-image img {
        height: 260px !important;
        width: 100%;
        object-fit: cover;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
        gap: 0;
    }

    .pillars-header {
        margin-bottom: 1rem;
    }

    .pillar {
        padding: 0.5rem 1rem;
    }

    .pillar-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 0.5rem;
    }

    .pillar h3 {
        margin-bottom: 0.4rem;
    }

    .pillar p {
        margin-bottom: 0;
    }

    .credentials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .additional-grid {
        grid-template-columns: 1fr;
    }

    /* ── Footer ── */
    .footer-grid {
        gap: 2rem;
    }

    /* ── Contact form ── */
    .contact-form-wrapper {
        padding: 2rem 1.25rem;
    }

    /* ── Buttons: full-width on small screens ── */
    .btn {
        padding: 0.9rem 2rem;
    }

    /* ── Image strip: 2-col grid on mobile ── */
    .image-strip-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .image-strip-grid img {
        height: 180px !important;
    }

    /* ── Mobile nav overlay ── */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 0.9rem;
        right: 1.5rem;
    }
}

@media (max-width: 600px) {
    .credentials-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .pull-quote blockquote {
        font-size: 1.3rem;
    }



    .cta-band {
        padding: 3.5rem 1.5rem;
    }



    .contact-methods {
        gap: 1.5rem;
    }

    /* Stack image strip to 1 col on very small screens */
    .image-strip-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}
