/* ==========================================================================
   Counselling with Lana — Main Stylesheet
   Calming sage green + warm cream palette
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
    --color-sage: #7A9E7E;
    --color-sage-light: #A8C5AB;
    --color-sage-lighter: #D4E4D6;
    --color-sage-dark: #5C7E60;
    --color-sage-deep: #3E5E42;

    --color-cream: #FAF7F2;
    --color-cream-dark: #F0EBE3;
    --color-warm-white: #FDFCFA;
    --color-linen: #F5F0E8;

    --color-text: #3A3A3A;
    --color-text-light: #6B6B6B;
    --color-text-muted: #9A9A9A;
    --color-heading: #2D3B2E;

    --color-accent: #C4956A;
    --color-accent-light: #E0C4A8;

    --color-border: #E0D8CD;
    --color-border-light: #EDE8E0;
    --color-white: #FFFFFF;
    --color-overlay: rgba(45, 59, 46, 0.55);

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --container-max: 1200px;
    --container-narrow: 800px;
    --header-height: 80px;
    --section-spacing: 100px;
    --section-spacing-sm: 60px;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-soft: 0 2px 20px rgba(122,158,126,0.12);

    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-warm-white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-sage-dark); text-decoration: none; transition: color var(--transition); }
a:hover, a:focus { color: var(--color-sage); }
ul { list-style: none; }

/* ---------- Accessibility ---------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 12px 24px;
    background: var(--color-sage-deep);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    font-weight: 600;
}
.skip-link:focus { top: 16px; }
:focus-visible {
    outline: 3px solid var(--color-sage);
    outline-offset: 2px;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--container-narrow); }
.section { padding: var(--section-spacing) 0; }
.section--cream { background-color: var(--color-cream); }
.section--sage { background-color: var(--color-sage-lighter); }
.section--white { background-color: var(--color-white); }
.section--linen { background-color: var(--color-linen); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-heading);
    line-height: 1.25;
    font-weight: 500;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.15rem; line-height: 1.8; color: var(--color-text-light); }
.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-sage);
    margin-bottom: 0.75rem;
    display: block;
}
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
}
.btn--primary {
    background-color: var(--color-sage);
    color: var(--color-white);
    border-color: var(--color-sage);
}
.btn--primary:hover {
    background-color: var(--color-sage-dark);
    border-color: var(--color-sage-dark);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn--outline {
    background-color: transparent;
    color: var(--color-sage-dark);
    border-color: var(--color-sage);
}
.btn--outline:hover {
    background-color: var(--color-sage);
    color: var(--color-white);
    transform: translateY(-1px);
}
.btn--white {
    background-color: var(--color-white);
    color: var(--color-sage-deep);
    border-color: var(--color-white);
}
.btn--white:hover {
    background-color: var(--color-cream);
    border-color: var(--color-cream);
    color: var(--color-sage-deep);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn--sm { padding: 10px 22px; font-size: 0.85rem; }
.btn--lg { padding: 18px 40px; font-size: 1rem; }

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background-color: rgba(253, 252, 250, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border-light);
    transition: all var(--transition);
}
.site-header.scrolled {
    box-shadow: var(--shadow-sm);
    background-color: rgba(253, 252, 250, 0.97);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.logo { display: flex; align-items: center; z-index: 1001; }
.logo-img { height: 48px; width: auto; }
.nav-list { display: flex; align-items: center; gap: 8px; }
.nav-link {
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius-full);
    transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: var(--color-sage-dark);
    background-color: var(--color-sage-lighter);
}
.nav-link--cta {
    background-color: var(--color-sage);
    color: var(--color-white) !important;
    margin-left: 8px;
}
.nav-link--cta:hover, .nav-link--cta.active {
    background-color: var(--color-sage-dark) !important;
    color: var(--color-white) !important;
}

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-heading);
    margin: 5px 0;
    border-radius: 2px;
    transition: all var(--transition);
}
.nav-toggle.open .nav-toggle-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .nav-toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-sage-lighter) 0%, var(--color-cream) 50%, var(--color-linen) 100%);
    z-index: 0;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237A9E7E' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content { max-width: 560px; }
.hero-content .section-subtitle { margin-bottom: 1rem; }
.hero-content h1 { margin-bottom: 1.25rem; color: var(--color-heading); }
.hero-content h1 em {
    font-style: italic;
    color: var(--color-sage-dark);
}
.hero-content .lead { margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 500px;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, var(--color-sage-light) 0%, var(--color-sage-lighter) 100%);
    transform: rotate(3deg);
    z-index: 0;
    opacity: 0.5;
}
.hero-image-wrapper::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 500px;
    border-radius: var(--radius-lg);
    border: 2px dashed var(--color-sage-light);
    transform: rotate(-2deg) translate(8px, 8px);
    z-index: 0;
    opacity: 0.4;
}
.hero-image {
    width: 400px;
    height: 480px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    object-position: center top;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--color-white);
    position: relative;
    z-index: 1;
    filter: brightness(1.03) contrast(0.97) saturate(0.95);
}

/* ---------- Feature / Info Cards ---------- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition);
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}
.card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background-color: var(--color-sage-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-sage-dark);
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { color: var(--color-heading); }
.card p { color: var(--color-text-light); font-size: 0.95rem; }

/* ---------- About Preview (homepage) ---------- */
.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.about-preview-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.about-preview-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center top;
    filter: brightness(1.03) contrast(0.97) saturate(0.95);
}
.about-preview-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(122,158,126,0.2);
}
.about-preview-content h2 { margin-bottom: 1.25rem; }
.about-preview-content p { color: var(--color-text-light); margin-bottom: 1rem; }
.about-preview-content .btn { margin-top: 1rem; }

/* ---------- Approach Section ---------- */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 2rem;
}
.approach-item {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius-md);
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
}
.approach-item h4 { color: var(--color-sage-dark); margin-bottom: 0.5rem; }
.approach-item p { color: var(--color-text-light); font-size: 0.9rem; }

/* ---------- Services List ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.service-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    border: 1px solid var(--color-border-light);
    transition: all var(--transition);
    border-top: 4px solid var(--color-sage-light);
}
.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
    border-top-color: var(--color-sage);
}
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.25rem; }
.service-card p { color: var(--color-text-light); font-size: 0.95rem; }

/* ---------- CTA Band ---------- */
.cta-band {
    background: linear-gradient(135deg, var(--color-sage-deep) 0%, var(--color-sage-dark) 100%);
    color: var(--color-white);
    text-align: center;
    padding: 80px 24px;
}
.cta-band h2 { color: var(--color-white); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ---------- Testimonial / Quote ---------- */
.quote-section { text-align: center; }
.quote-block {
    max-width: 700px;
    margin: 0 auto;
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    color: var(--color-heading);
    line-height: 1.6;
    position: relative;
    padding: 0 40px;
}
.quote-block::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--color-sage-light);
    position: absolute;
    top: -20px;
    left: 0;
    line-height: 1;
}

/* ---------- Fees / Pricing ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.pricing-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    border: 1px solid var(--color-border-light);
    text-align: center;
    position: relative;
    transition: all var(--transition);
}
.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}
.pricing-card.featured {
    border-color: var(--color-sage);
    box-shadow: var(--shadow-soft);
}
.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-sage);
    color: var(--color-white);
    padding: 4px 20px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}
.pricing-card h3 { margin-bottom: 0.5rem; }
.pricing-price {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-sage-dark);
    font-family: var(--font-heading);
    margin: 1rem 0;
}
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--color-text-light); }
.pricing-details { color: var(--color-text-light); font-size: 0.9rem; }
.pricing-details li { padding: 8px 0; border-bottom: 1px solid var(--color-border-light); }
.pricing-details li:last-child { border-bottom: none; }

/* ---------- FAQ ---------- */
.faq-list { max-width: var(--container-narrow); margin: 0 auto; }
.faq-item {
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    background: var(--color-white);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-heading);
    text-align: left;
    transition: all var(--transition);
}
.faq-question:hover { color: var(--color-sage-dark); }
.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform var(--transition);
    color: var(--color-sage);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ---------- Contact Form ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--color-text-light); margin-bottom: 1.5rem; }
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 1.5rem;
}
.contact-detail-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    background: var(--color-sage-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-sage-dark);
}
.contact-detail-icon svg { width: 20px; height: 20px; }
.contact-detail-text h4 { font-family: var(--font-body); font-size: 0.95rem; margin-bottom: 2px; }
.contact-detail-text p { font-size: 0.9rem; color: var(--color-text-light); margin-bottom: 0; }
.contact-detail-text a { color: var(--color-sage-dark); }

.contact-form {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-heading);
    margin-bottom: 6px;
}
.form-group label .required { color: #c0392b; }
.form-control {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background-color: var(--color-cream);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--color-sage);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(122,158,126,0.15);
}
textarea.form-control { resize: vertical; min-height: 120px; }
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
}
.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--color-sage);
    flex-shrink: 0;
}
.form-check label {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Form messages */
.form-message {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}
.form-message--success {
    background-color: #E8F5E9;
    border: 1px solid #A5D6A7;
    color: #2E7D32;
}
.form-message--error {
    background-color: #FFEBEE;
    border: 1px solid #EF9A9A;
    color: #C62828;
}

/* ---------- About Page ---------- */
.about-hero-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
}
.about-photo {
    border-radius: var(--radius-lg);
    object-fit: cover;
    object-position: center top;
    width: 100%;
    height: 480px;
    box-shadow: var(--shadow-md);
    filter: brightness(1.03) contrast(0.97) saturate(0.95);
}
.about-content h1 { margin-bottom: 1rem; }
.about-content .lead { margin-bottom: 1.5rem; }
.about-content p { color: var(--color-text-light); }

.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.qual-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--color-border-light);
}
.qual-card h3 { color: var(--color-sage-dark); margin-bottom: 1rem; font-size: 1.15rem; }
.qual-card ul { list-style: none; }
.qual-card li {
    padding: 6px 0 6px 20px;
    position: relative;
    font-size: 0.95rem;
    color: var(--color-text-light);
}
.qual-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-sage-light);
}

/* ---------- Session Types ---------- */
.session-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.session-type {
    text-align: center;
    padding: 40px 24px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition);
}
.session-type:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}
.session-type-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--color-sage-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-sage-dark);
}
.session-type-icon svg { width: 32px; height: 32px; }
.session-type h3 { margin-bottom: 0.5rem; }
.session-type p { font-size: 0.9rem; color: var(--color-text-light); }

/* ---------- Page Header ---------- */
.page-header {
    background: linear-gradient(135deg, var(--color-sage-lighter) 0%, var(--color-cream) 100%);
    padding: calc(var(--header-height) + 60px) 0 60px;
    text-align: center;
}
.page-header h1 { margin-bottom: 0.5rem; }
.page-header .lead { max-width: 600px; margin: 0 auto; }

/* ---------- Legal Pages ---------- */
.legal-content { max-width: var(--container-narrow); margin: 0 auto; }
.legal-content h2 { margin-top: 2.5rem; margin-bottom: 0.75rem; font-size: 1.5rem; }
.legal-content h3 { margin-top: 1.5rem; }
.legal-content p, .legal-content li { color: var(--color-text-light); font-size: 0.95rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { margin-bottom: 0.5rem; }
.legal-content a { text-decoration: underline; }

/* ---------- Cookie Banner ---------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 20px 0;
}
.cookie-banner-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.cookie-banner-text { flex: 1; }
.cookie-banner-text p { font-size: 0.85rem; color: var(--color-text-light); margin-bottom: 4px; }
.cookie-banner-text a { text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ---------- Footer ---------- */
.site-footer {
    background-color: var(--color-heading);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { height: 40px; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-tagline { font-family: var(--font-heading); font-style: italic; color: var(--color-sage-light); font-size: 1rem; margin-bottom: 0.25rem; }
.footer-location { font-size: 0.85rem; }
.footer-heading {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}
.footer-nav ul li, .footer-legal ul li, .footer-contact ul li { margin-bottom: 0.5rem; }
.site-footer a { color: rgba(255,255,255,0.7); }
.site-footer a:hover { color: var(--color-sage-light); }
.footer-bacp { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bacp p { font-size: 0.85rem; color: var(--color-sage-light); font-weight: 500; }
.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.82rem;
}
.footer-disclaimer {
    margin-top: 8px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
}
.footer-disclaimer a { color: rgba(255,255,255,0.6); text-decoration: underline; }

/* ---------- Utilities ---------- */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    :root { --section-spacing: 70px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-image-wrapper { order: -1; }
    .hero-image-wrapper::before { width: 320px; height: 380px; }
    .hero-image-wrapper::after { width: 320px; height: 380px; }
    .hero-image { width: 300px; height: 360px; }
    .about-preview-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-preview-image img { height: 350px; }
    .about-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-photo { height: 380px; max-width: 350px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .approach-grid { grid-template-columns: 1fr; }
    .session-types-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --section-spacing: 50px; --header-height: 65px; }
    .nav-toggle { display: block; }
    .primary-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--color-warm-white);
        padding: 100px 32px 40px;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition);
        overflow-y: auto;
    }
    .primary-nav.open { right: 0; }
    .nav-list { flex-direction: column; align-items: stretch; gap: 4px; }
    .nav-link { padding: 14px 16px; border-radius: var(--radius-sm); }
    .nav-link--cta { margin-left: 0; margin-top: 8px; text-align: center; }
    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }
    .mobile-overlay.active { opacity: 1; visibility: visible; }

    .hero { min-height: auto; padding-top: calc(var(--header-height) + 40px); padding-bottom: 40px; }
    .hero-image-wrapper::before { width: 260px; height: 320px; }
    .hero-image-wrapper::after { width: 260px; height: 320px; }
    .hero-image { width: 240px; height: 300px; }
    .cards-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cookie-banner-inner { flex-direction: column; text-align: center; }
    .contact-form { padding: 24px; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; }
    .hero-image-wrapper::before { width: 220px; height: 280px; }
    .hero-image-wrapper::after { width: 220px; height: 280px; }
    .hero-image { width: 200px; height: 260px; }
}
