/* =====================================================
   Terrapy — main stylesheet
   Palette sampled from the logo gradient
   ===================================================== */

:root {
    /* Brand colors */
    --green-bright: #67BB7D;
    --green-mid: #58B893;
    --teal: #4BB4A6;
    --teal-deep: #2F8578;
    --teal-darker: #1F5E54;

    /* Neutrals */
    --cream: #FAF7F0;
    --cream-warm: #F5F1E8;
    --cream-deep: #EFE9DC;
    --text-primary: #2D3A3A;
    --text-secondary: #4A5555;
    --text-muted: #6A7575;
    --border: rgba(47, 133, 120, 0.15);

    /* Typography */
    --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Layout */
    --container-max: 1140px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;

    /* Gradient */
    --brand-gradient: linear-gradient(115deg, #67BB7D 0%, #58B893 45%, #4BB4A6 100%);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-secondary);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-deep); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--teal-darker); }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; color: var(--text-primary); line-height: 1.2; margin: 0 0 0.5em; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.hidden-field { position: absolute; left: -9999px; }

/* =====================================================
   Navigation
   ===================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 247, 240, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 40px; width: auto; }
.nav-wordmark {
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: 400;
    color: var(--teal-deep);
    letter-spacing: -0.01em;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-menu a {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 400;
}
.nav-menu a:hover { color: var(--teal-deep); }
.nav-portal {
    color: var(--teal-deep) !important;
    font-weight: 500 !important;
}
.nav-cta {
    background: var(--teal-deep);
    color: white !important;
    padding: 10px 20px;
    border-radius: 24px;
    font-weight: 500 !important;
    transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover {
    background: var(--teal-darker);
    color: white !important;
    transform: translateY(-1px);
}

.nav-toggle { display: none; }

/* =====================================================
   Hero
   ===================================================== */
.hero {
    position: relative;
    background: var(--brand-gradient);
    overflow: hidden;
    color: white;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--brand-gradient);
    opacity: 1;
}
.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 560px;
    padding-top: 80px;
    padding-bottom: 80px;
}
.hero-content { max-width: 560px; }
.hero-kicker {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin: 0 0 20px;
}
.hero-title {
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 300;
    color: white;
    margin: 0 0 24px;
    line-height: 1.05;
}
.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0 0 36px;
    max-width: 480px;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
}
.hero-logo img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 26px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: white;
    color: var(--teal-deep);
}
.btn-primary:hover {
    background: var(--cream);
    color: var(--teal-darker);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.btn-ghost {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
}

/* Buttons on cream backgrounds (non-hero) */
.section .btn-primary {
    background: var(--teal-deep);
    color: white;
}
.section .btn-primary:hover {
    background: var(--teal-darker);
    color: white;
}
.section .btn-ghost {
    color: var(--teal-deep);
    border-color: var(--teal-deep);
}
.section .btn-ghost:hover {
    background: var(--teal-deep);
    color: white;
}

/* =====================================================
   Section basics
   ===================================================== */
.section {
    padding: 96px 0;
}
.section-kicker {
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--teal-deep);
    font-weight: 500;
    margin: 0 0 14px;
}
.section-title {
    font-size: clamp(30px, 4vw, 44px);
    margin: 0 0 16px;
}
.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* =====================================================
   About
   ===================================================== */
.about-section {
    background: var(--cream);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}
.about-photo {
    position: sticky;
    top: 100px;
}
.photo-frame {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--brand-gradient);
}
.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photo-placeholder {
    background: var(--brand-gradient);
    position: relative;
}
.photo-placeholder::after {
    content: 'Photo of Samantha';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-family: var(--font-sans);
}
.about-copy p { margin-bottom: 1.1em; font-size: 16px; }
.about-personal {
    font-style: italic;
    color: var(--text-muted);
    padding: 16px 20px;
    background: var(--cream-warm);
    border-left: 3px solid var(--teal);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.about-credentials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 32px 0;
    padding: 24px;
    background: var(--cream-warm);
    border-radius: var(--radius-md);
}
.credential {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.credential-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal-deep);
    font-weight: 500;
}
.credential-value {
    font-family: var(--font-serif);
    font-size: 15px;
    color: var(--text-primary);
}
.about-cta a {
    font-weight: 500;
    border-bottom: 1px solid var(--teal);
    padding-bottom: 2px;
}

/* =====================================================
   How it works
   ===================================================== */
.how-section {
    background: var(--cream-warm);
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.step {
    text-align: center;
    padding: 32px 24px;
}
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: white;
    color: var(--teal-deep);
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    margin: 0 auto 20px;
    border: 1px solid var(--border);
}
.step h3 {
    font-size: 22px;
    margin: 0 0 12px;
}
.step p {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
}

/* =====================================================
   Locations
   ===================================================== */
.locations-section {
    background: var(--cream);
}
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.location-card {
    display: block;
    text-decoration: none;
    color: var(--text-primary);
}
.location-image-wrap {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 12px;
    cursor: pointer;
    background-color: var(--teal);
}
.location-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}
.location-actions {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    gap: 8px;
    padding: 14px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    background: var(--teal-deep);
}
.location-image-wrap:hover .location-image,
.location-image-wrap.is-active .location-image {
    transform: translateY(calc(-1 * (28px + 36px)));
}
.location-image-wrap:hover .location-actions,
.location-image-wrap.is-active .location-actions {
    transform: translateY(0);
}
.location-btn {
    flex: 1;
    padding: 10px 8px;
    font-size: 13px;
    text-align: center;
}
.btn-text-short { display: none !important; }
.location-actions .btn-ghost {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.7);
}
.location-actions .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
    transform: none;
}
.location-actions .btn-primary {
    background: white;
    color: var(--teal-deep);
}
.location-actions .btn-primary:hover {
    background: var(--cream);
    color: var(--teal-darker);
    transform: none;
}
.location-name {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 17px;
    color: var(--text-primary);
}

/* =====================================================
   Fees
   ===================================================== */
.fees-section {
    background: var(--cream-deep);
}
.fees-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    align-items: start;
}
.fees-content p { font-size: 16px; }
.fees-consult {
    background: white;
    padding: 18px 22px;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--teal);
    margin-top: 24px;
}
.fees-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(47, 133, 120, 0.08);
}
.fees-card h3 {
    font-size: 20px;
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.fees-card dl {
    margin: 0;
    display: grid;
    gap: 16px;
}
.fees-card dt {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal-deep);
    font-weight: 500;
    margin-bottom: 2px;
}
.fees-card dd {
    margin: 0 0 12px;
    font-family: var(--font-serif);
    font-size: 17px;
    color: var(--text-primary);
}
.fees-card dd:last-child { margin-bottom: 0; }

/* =====================================================
   Testimonials
   ===================================================== */
.testimonials-section {
    background: var(--cream);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}
.testimonial {
    background: var(--cream-warm);
    padding: 32px;
    border-radius: var(--radius-md);
    margin: 0;
    border-left: 3px solid var(--teal);
}
.testimonial p {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--text-primary);
    font-style: italic;
    line-height: 1.55;
    margin: 0 0 16px;
}
.testimonial cite {
    font-style: normal;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq-section {
    background: var(--cream-warm);
}
.faq-list {
    max-width: 780px;
    margin: 0 auto;
}
.faq-item {
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: box-shadow 0.2s ease;
}
.faq-item[open] {
    box-shadow: 0 4px 20px rgba(47, 133, 120, 0.08);
}
.faq-item summary {
    padding: 20px 24px;
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 52px;
    transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--teal-deep); }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--teal-deep);
    font-weight: 300;
    transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
    content: '';
    width: 14px;
    height: 2px;
    background: var(--teal-deep);
    right: 24px;
    top: calc(50% - 1px);
    transform: none;
}
.faq-answer {
    padding: 0 24px 20px;
}
.faq-answer p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* =====================================================
   Contact
   ===================================================== */
.contact-section {
    background: var(--cream-deep);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: start;
}
.contact-intro p { font-size: 16px; }
.contact-actions { margin-top: 28px; }
.contact-form {
    background: white;
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px rgba(47, 133, 120, 0.08);
}
.form-field {
    margin-bottom: 20px;
}
.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--text-primary);
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color 0.2s ease, background 0.2s ease;
}
.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--teal);
    background: white;
    box-shadow: 0 0 0 3px rgba(75, 180, 166, 0.15);
}
.form-field textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form .btn {
    width: 100%;
}

/* =====================================================
   Thank you page
   ===================================================== */
.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: var(--cream);
}
.thank-you-container {
    text-align: center;
    max-width: 560px;
}
.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* =====================================================
   Footer
   ===================================================== */
.site-footer {
    background: var(--teal-darker);
    color: rgba(255, 255, 255, 0.85);
    padding: 64px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand img {
    width: 140px;
    height: auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.footer-tagline {
    font-family: var(--font-serif);
    font-size: 18px;
    color: white;
    margin: 0 0 12px;
}
.footer-meta {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}
.footer-links h3 {
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    font-weight: 500;
    margin: 0 0 16px;
}
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}
.footer-links a:hover { color: white; }
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom p {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}
.footer-disclaimer {
    max-width: 540px;
    text-align: right;
}

/* =====================================================
   Referrals
   ===================================================== */
.referrals-section {
    background: var(--cream);
}
.referrals-wrapper {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}
.referrals-content p {
    font-size: 16px;
}
.referrals-list {
    list-style: none;
    padding: 0;
    margin: 28px auto;
    display: inline-block;
    text-align: left;
}
.referrals-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 15px;
    color: var(--text-secondary);
}
.referrals-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--teal);
    opacity: 0.25;
}
.referrals-list li::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 21px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal-deep);
}
.referrals-cta {
    margin-top: 16px;
    font-size: 15px;
}
.referrals-actions {
    margin-top: 24px;
}

.hero-referral-wrapper {
    display: flex;
    justify-content: flex-start;
    margin-top: 28px;
}
.hero-referral-wrapper .hero-referral-link {
    display: inline-block;
    text-align: center;
    color: var(--cream);
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 4px;
    opacity: 0.85;
    transition: opacity 0.2s ease;
    padding: 0 26px;
}
.hero-referral-wrapper .hero-referral-link:hover {
    color: var(--cream);
    opacity: 1;
}

.why-section {
    background: var(--cream-warm);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}
.why-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}
.why-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-deep);
    margin-bottom: 18px;
}
.why-icon svg {
    width: 22px;
    height: 22px;
}
.why-card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--text-primary);
    margin: 0 0 10px;
}
.why-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}
.why-footnote {
    text-align: center;
    margin-top: 36px;
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 900px) {
    .btn-text-full { display: none !important; }
    .btn-text-short { display: inline !important; }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .why-card {
        padding: 24px;
    }
    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }
    .nav-toggle span {
        width: 24px;
        height: 2px;
        background: var(--text-primary);
        transition: transform 0.2s ease, opacity 0.2s ease;
    }
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px 24px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }
    .nav-menu.is-open { transform: translateY(0); }
    .nav-menu a {
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
    }
    .nav-menu a:last-child { border-bottom: none; }
    .nav-cta {
        margin-top: 12px;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        gap: 0;
        padding-top: 40px;
        padding-bottom: 56px;
        flex-direction: column;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero-actions { justify-content: center; }

    .hero-referral-wrapper {
        margin-top: 20px;
    }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-logo {
        order: -1;
        max-width: 180px;
        margin: 0 auto 8px;
    }
    .hero-logo img {
        padding: 0;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .hero-title { font-size: 36px; }

    .section { padding: 72px 0; }

    .about-grid,
    .fees-wrapper,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-photo {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .step { padding: 24px; }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-credentials {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
    }
    .footer-disclaimer { text-align: left; }
}

@media (max-width: 560px) {
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 16px; }
    .section-title { font-size: 28px; }
    .locations-grid { grid-template-columns: 1fr 1fr; }
    .contact-form { padding: 24px; }
    .fees-card { padding: 24px; }
}



/* Print */
@media print {
    .site-header, .site-footer, .hero-actions, .contact-form, .nav-cta { display: none; }
    .hero { background: white; color: black; }
    .hero-title, .section-title { color: black; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
}

:focus-visible {
    outline: 2px solid var(--teal-deep);
    outline-offset: 2px;
}
