/* ═══════════════════════════════════════════
   SUSAN D. SMITH, PhD — PSYCHOLOGIST
   Editorial | Burgundy & Blush
   ═══════════════════════════════════════════ */

/* ── RESET & BASE ────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #2A1B1E;
    background-color: #FDF8F6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img, svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

address {
    font-style: normal;
}

/* ── CUSTOM PROPERTIES ───────────────────── */
:root {
    --burgundy: #781F2E;
    --burgundy-deep: #5A1521;
    --burgundy-light: #9E2B3F;
    --blush: #F5E6E0;
    --blush-light: #FDF8F6;
    --blush-mid: #F9EDE8;
    --cream: #FDF6F3;
    --text-dark: #2A1B1E;
    --text-mid: #5C4044;
    --text-light: #8A6B70;
    --white: #FFFFFF;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(120, 31, 46, 0.06);
    --shadow-md: 0 8px 30px rgba(120, 31, 46, 0.08);
    --shadow-lg: 0 20px 60px rgba(120, 31, 46, 0.1);
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── TYPOGRAPHY ──────────────────────────── */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-dark);
}

.eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
}

.section-eyebrow {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.section-heading {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.section-heading em,
.hero-headline em {
    font-style: italic;
    color: var(--burgundy);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 540px;
    line-height: 1.7;
}

/* ── LAYOUT ──────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container--narrow {
    max-width: 860px;
}

/* ── LOADER ──────────────────────────────── */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-line {
    width: 60px;
    height: 2px;
    background: var(--blush);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.loader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: var(--blush-light);
    animation: loaderSlide 1s ease-in-out infinite;
}

@keyframes loaderSlide {
    0% { left: -40%; }
    100% { left: 100%; }
}

/* ── HEADER ──────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: background var(--transition-base), padding var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
    background: rgba(253, 248, 246, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-mark {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--white);
    transition: color var(--transition-base);
}

.site-header.scrolled .logo-mark {
    color: var(--burgundy);
}

.logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.logo-text em {
    font-style: italic;
    font-weight: 400;
    opacity: 0.8;
}

.logo-mark--light {
    color: var(--white) !important;
}

/* ── NAV ─────────────────────────────────── */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-menu a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.site-header.scrolled .nav-menu a {
    color: var(--text-mid);
}

.site-header.scrolled .nav-menu a:hover,
.site-header.scrolled .nav-menu a:focus-visible {
    color: var(--burgundy);
    background: rgba(120, 31, 46, 0.06);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-fast);
}

.site-header.scrolled .hamburger-line {
    background: var(--burgundy);
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ── HERO ────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(90, 21, 33, 0.82) 0%,
        rgba(120, 31, 46, 0.72) 50%,
        rgba(42, 27, 30, 0.78) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
    padding: 2rem;
    padding-top: 5rem;
}

.hero-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 230, 224, 0.8);
    margin-bottom: 1.75rem;
    border: 1px solid rgba(245, 230, 224, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
}

.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-headline em {
    font-style: italic;
    color: var(--blush);
}

.accent-word {
    color: var(--blush);
    display: block;
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(253, 248, 246, 0.8);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(253, 248, 246, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ── BUTTONS ─────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn--full {
    width: 100%;
}

.btn-primary {
    background: var(--burgundy);
    color: var(--white);
    border: 1.5px solid var(--burgundy);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--burgundy-deep);
    border-color: var(--burgundy-deep);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

/* ── INTRO SECTION ───────────────────────── */
.intro-section {
    padding: 7rem 0;
    background: var(--blush-light);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.intro-text .section-heading {
    margin-bottom: 0;
}

.intro-body {
    padding-top: 0.5rem;
}

.intro-body p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.intro-credentials {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(120, 31, 46, 0.12);
    flex-wrap: wrap;
}

.credential-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.credential-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
}

.credential-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--burgundy);
}

/* ── SERVICES ────────────────────────────── */
.services-section {
    padding: 7rem 0;
    background: var(--white);
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header .section-desc {
    margin: 0 auto;
}

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

.service-card {
    padding: 2.25rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(120, 31, 46, 0.08);
    background: var(--blush-light);
    transition: all var(--transition-base);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(120, 31, 46, 0.15);
    background: var(--white);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(120, 31, 46, 0.08);
    color: var(--burgundy);
    margin-bottom: 1.5rem;
    transition: background var(--transition-fast);
}

.service-card:hover .service-icon {
    background: var(--burgundy);
    color: var(--white);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.75;
}

/* ── APPROACH ────────────────────────────── */
.approach-section {
    padding: 7rem 0;
    background: var(--blush);
}

.approach-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.approach-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.approach-content {
    padding: 1rem 0;
}

.approach-body {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 2.5rem;
}

.approach-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.975rem;
    color: var(--text-mid);
}

.list-marker {
    color: var(--burgundy);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    line-height: 1.4;
    flex-shrink: 0;
}

/* ── QUOTE ───────────────────────────────── */
.quote-section {
    padding: 6rem 0;
    background: var(--burgundy);
    text-align: center;
}

.quote {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.quote-mark {
    color: rgba(245, 230, 224, 0.25);
    margin-bottom: 1.5rem;
}

.quote p {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    font-style: italic;
    color: var(--blush);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.quote-attr {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-style: normal;
    font-weight: 500;
    color: rgba(245, 230, 224, 0.6);
    letter-spacing: 0.05em;
}

/* ── FAQ ─────────────────────────────────── */
.faq-section {
    padding: 7rem 0;
    background: var(--blush-light);
}

.faq-section .section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    border-bottom: 1px solid rgba(120, 31, 46, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.5rem 0;
    text-align: left;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--burgundy);
}

.faq-toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    position: relative;
}

.faq-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 1.5px;
    background: var(--burgundy);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-fast);
}

.faq-toggle span:first-child {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-toggle span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-toggle span:first-child {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-question[aria-expanded="true"] .faq-toggle span:last-child {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-answer p {
    padding-bottom: 1.5rem;
    font-size: 0.975rem;
    color: var(--text-mid);
    line-height: 1.8;
}

/* ── CONTACT ─────────────────────────────── */
.contact-section {
    padding: 7rem 0;
    background: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info .section-heading {
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.contact-detail-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.contact-detail-label svg {
    color: var(--burgundy);
    flex-shrink: 0;
}

.contact-link {
    font-size: 1.05rem;
    color: var(--burgundy);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.contact-link:hover {
    color: var(--burgundy-deep);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.contact-address {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ── FORM ────────────────────────────────── */
.contact-form-wrap {
    background: var(--blush-light);
    border: 1px solid rgba(120, 31, 46, 0.08);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.form-heading {
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
    color: var(--text-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-mid);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    border: 1.5px solid rgba(120, 31, 46, 0.15);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(120, 31, 46, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(120, 31, 46, 0.06);
    border: 1px solid rgba(120, 31, 46, 0.12);
    border-radius: var(--radius-sm);
    color: var(--burgundy);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
}

.form-success svg {
    flex-shrink: 0;
    color: var(--burgundy);
}

.form-privacy {
    font-size: 0.775rem;
    color: var(--text-light);
    margin-top: 1rem;
    text-align: center;
}

/* ── FOOTER ──────────────────────────────── */
.site-footer {
    background: var(--text-dark);
    color: rgba(253, 248, 246, 0.7);
    padding: 4rem 0 0;
}

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

.footer-brand .logo-mark {
    color: var(--white) !important;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 260px;
    opacity: 0.7;
}

.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(253, 248, 246, 0.4);
    margin-bottom: 1.25rem;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav a {
    font-size: 0.9rem;
    color: rgba(253, 248, 246, 0.7);
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--blush);
}

.footer-contact address {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.footer-contact a {
    color: rgba(253, 248, 246, 0.7);
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--blush);
}

.footer-bottom {
    border-top: 1px solid rgba(253, 248, 246, 0.08);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.5;
}

.footer-privacy {
    font-size: 0.75rem !important;
    max-width: 400px;
    text-align: right;
}

/* ── SCROLL ANIMATIONS ───────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── MOBILE NAV OVERLAY ──────────────────── */
.nav-menu.mobile-open {
    position: fixed;
    inset: 0;
    background: rgba(42, 27, 30, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

.nav-menu.mobile-open.open {
    opacity: 1;
    visibility: visible;
}

.nav-menu.mobile-open a {
    font-size: 1.5rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    color: var(--blush);
    padding: 0.75rem 1.5rem;
}

.nav-menu.mobile-open a:hover {
    color: var(--white);
    background: transparent;
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .intro-grid,
    .approach-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .approach-image {
        order: -1;
    }

    .approach-image img {
        height: 400px;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        inset: 0;
        background: rgba(42, 27, 30, 0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition-base), visibility var(--transition-base);
    }

    .nav-menu.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu a {
        font-size: 1.5rem;
        font-family: 'Playfair Display', Georgia, serif;
        font-weight: 600;
        color: var(--blush);
        padding: 0.75rem 1.5rem;
    }

    .nav-menu a:hover {
        color: var(--white);
        background: transparent;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-privacy {
        text-align: center;
    }

    .contact-form-wrap {
        padding: 1.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .header-inner {
        padding: 0 1.25rem;
    }

    .intro-section,
    .services-section,
    .approach-section,
    .faq-section,
    .contact-section {
        padding: 4.5rem 0;
    }

    .quote-section {
        padding: 4rem 0;
    }

    .service-card {
        padding: 1.75rem;
    }

    .hero-content {
        padding-top: 3rem;
    }
}

/* ── REDUCED MOTION ──────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .hero-scroll-indicator {
        animation: none;
    }
}

/* ── FOCUS VISIBLE ───────────────────────── */
:focus-visible {
    outline: 2px solid var(--burgundy);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--burgundy);
    outline-offset: 2px;
}
