/* ============================================================
   Weave the Path – v3
   Font: DM Sans — all elements
   Loaded via <link> in HTML only — no @import
   ============================================================ */

:root {
    --font-display: 'DM Sans', system-ui, sans-serif;
    --font-body:    'DM Sans', system-ui, sans-serif;

    --bg:               #ebe8e2;
    --surface:          #e4e0d9;
    --surface-elevated: #f0ede8;
    --text-backdrop:    rgba(255, 255, 255, 0.82);
    --text-box-radius:  4px;

    --sage:           #6b7b63;
    --sage-light:     rgba(107, 123, 99, 0.14);
    --sage-wash:      rgba(107, 123, 99, 0.06);
    --lavender:       #8b7d95;
    --lavender-light: rgba(139, 125, 149, 0.12);
    --lavender-wash:  rgba(139, 125, 149, 0.05);
    --dusk:           #5c5163;
    --rust:           #7d5c3a;
    --ochre:          #946b3d;
    --honey:          #b8926a;
    --mushroom:       #5c5549;
    --cream:          #2c2620;

    --radius-sm: 10px;
    --radius-md: 14px;

    --card-bg:      var(--surface-elevated);
    --text-light:   var(--cream);
    --text-muted:   var(--mushroom);
    --accent:       var(--rust);
    --accent-hover: var(--ochre);
    --border-color: rgba(107, 123, 99, 0.2);
    --shadow-sm:    rgba(92, 85, 73, 0.08);
    --shadow-md:    rgba(92, 85, 73, 0.16);
    --on-accent:    #fff;
}

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

html { font-size: 16px; }

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-light);
    background-color: transparent;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Fixed background — identical on every page, every scroll position */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-color: var(--bg);
    background-image: url('assets/path2.jpeg');
    background-size: 140%;
    background-position: center 55%;
    background-repeat: no-repeat;
    z-index: -2;
    pointer-events: none;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(235, 232, 226, 0.2);
    z-index: -1;
    pointer-events: none;
}

/* ── Skip link ── */
.skip-link {
    position: absolute; top: -100px; left: 1rem; z-index: 10000;
    padding: 0.75rem 1.25rem; background: var(--cream); color: #fff;
    font-weight: 600; text-decoration: none; border-radius: 4px;
    transition: top 0.2s ease;
}
.skip-link:focus { top: 5rem; outline: 3px solid var(--sage); }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(235, 232, 226, 0.94);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    z-index: 1000; padding: 0.9rem 0;
    transition: box-shadow 0.3s ease;
}

.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 2rem;
    display: flex; justify-content: flex-end; align-items: center;
    gap: 2rem;
}

.logo-link { text-decoration: none; display: flex; align-items: center; flex-shrink: 0; }
.logo-image { height: 44px; width: auto; object-fit: contain; display: block; }

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

.nav-link {
    color: var(--text-light); text-decoration: none;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.85rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 0.5rem 0.75rem; border-radius: 2px;
    position: relative; transition: color 0.2s ease;
    white-space: nowrap;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 2px; left: 0.75rem; right: 0.75rem;
    height: 1px; background: var(--sage);
    transform: scaleX(0); transition: transform 0.25s ease;
}
.nav-link:hover { color: var(--mushroom); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--cream); }

.nav-item-has-dropdown { position: relative; }
.nav-dropdown {
    position: absolute; top: 100%; left: 0;
    min-width: 230px; list-style: none; padding: 0.5rem 0; margin-top: 0;
    background: var(--surface-elevated);
    border: 1px solid var(--border-color); border-radius: 4px;
    box-shadow: 0 8px 32px var(--shadow-md);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateY(0);
}
.nav-item-has-dropdown:hover .nav-dropdown {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}

/* Keep dropdown accessible — no gap between trigger and menu */
.nav-item-has-dropdown .nav-dropdown {
    padding-top: 8px;
    top: calc(100% - 4px);
}
.nav-dropdown-link {
    display: block; padding: 0.6rem 1.25rem;
    color: var(--text-light); text-decoration: none;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
    transition: background 0.15s ease;
}
.nav-dropdown-link:hover { background: rgba(107,123,99,0.08); }

.hamburger {
    display: none; flex-direction: column; cursor: pointer;
    gap: 5px; background: none; border: none; padding: 0.5rem;
    flex-shrink: 0; position: relative; z-index: 1002;
}
.hamburger span { width: 22px; height: 1.5px; background: var(--text-light); display: block; transition: all 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative;
    padding: 100px 2rem 4rem;
    background: transparent;
}

/* Vignette overlay — darkens edges, fades toward center, only on hero */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 70% 60% at 50% 50%,
        transparent 0%,
        transparent 40%,
        rgba(44, 38, 32, 0.18) 70%,
        rgba(44, 38, 32, 0.42) 100%
    );
    z-index: 0;
    pointer-events: none;
}

.hero-content { max-width: 700px; position: relative; z-index: 1; }

.hero-title { margin-bottom: 1.5rem; }
.hero-logo { display: block; width: 100%; max-width: 360px; height: auto; margin: 0 auto; }

.hero-subtitle {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.7rem);
    font-weight: 400; font-style: italic;
    color: #2c2620; margin-bottom: 2.5rem;
    letter-spacing: 0.03em;
    display: inline-block;
    background: rgba(255, 255, 255, 0.72);
    padding: 0.4em 1em;
    border-radius: var(--text-box-radius);
}

.decorative-line {
    width: 60px; height: 1px; margin: 0 auto 2.5rem;
    background: linear-gradient(90deg, transparent, var(--sage), var(--honey), transparent);
    opacity: 0.7;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
    display: inline-block; text-decoration: none; cursor: pointer;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    padding: 1rem 2.5rem; border-radius: 2px;
    transition: all 0.25s ease; border: 1.5px solid transparent;
}
.btn-primary {
    background: var(--accent); color: var(--on-accent); border-color: var(--accent);
}
.btn-primary:hover {
    background: var(--accent-hover); border-color: var(--accent-hover);
    transform: translateY(-2px); box-shadow: 0 6px 20px rgba(125,92,58,0.3);
}
.btn-secondary {
    background: transparent; color: var(--mushroom); border-color: var(--mushroom);
}
.btn-secondary:hover { background: rgba(92,85,73,0.08); transform: translateY(-1px); }

/* ══════════════════════════════════════════
   PAGE / SERVICE HEADER BANDS
══════════════════════════════════════════ */
.page-header, .service-page-header {
    padding: clamp(70px, 8vw, 90px) 2rem 20px;
    text-align: center; position: relative;
    background: none !important;
}

.service-page-header .container,
.page-header .container {
    background: rgba(255, 255, 255, 0.82);
    border-radius: var(--text-box-radius);
    padding: 1.5rem 2.5rem;
    display: inline-block;
    box-shadow: 0 2px 20px var(--shadow-sm);
}
.page-header .container, .service-page-header .container { position: relative; z-index: 1; }

.page-title, .service-page-header-title {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700; line-height: 1.2;
    color: var(--sage); letter-spacing: 0.02em;
}

.service-page-header-lead {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 400; font-style: italic;
    color: var(--mushroom); margin-top: 0.75rem;
}

/* ══════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════ */
.section { padding: clamp(3rem, 8vw, 7rem) 0; position: relative; }

body > .section:first-of-type { padding-top: clamp(6rem, 12vw, 9rem); }
.service-page-header + .section,
.page-header + .section { padding-top: 1.5rem; }
body .hero + .section { padding-top: clamp(3rem, 8vw, 7rem); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); }

.section-title {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; line-height: 1.15;
    color: var(--cream); text-align: center;
    letter-spacing: 0.05em; margin-bottom: 3rem; position: relative;
}
.section-title::after {
    content: ''; position: absolute; bottom: -12px; left: 50%;
    transform: translateX(-50%); width: 50px; height: 1px;
    background: linear-gradient(90deg, var(--sage), var(--honey), var(--lavender));
    opacity: 0.65;
}

/* ══════════════════════════════════════════
   WELCOME (HOME)
══════════════════════════════════════════ */
.welcome-title {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 700; line-height: 1.2;
    color: var(--cream); margin-bottom: 2rem; text-align: center;
}
.welcome-title-box {
    display: inline-block; background: var(--text-backdrop);
    padding: 0.5em 1.2em; border: 1px solid rgba(107,123,99,0.4);
    box-shadow: 0 2px 16px rgba(92,85,73,0.1); border-radius: 2px;
}
.welcome-wrapper { max-width: 760px; margin: 0 auto; }
.welcome-content {
    font-size: clamp(0.95rem, 2vw, 1.05rem); line-height: 1.5;
    color: var(--text-light); background: var(--text-backdrop);
    padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
    border-radius: var(--text-box-radius);
    box-shadow: 0 2px 20px var(--shadow-sm);
}
.welcome-content p { margin-bottom: 0.85rem; }
.welcome-content p:last-of-type { margin-bottom: 0; }
.welcome-list { margin: 0.75rem 0 1.4rem 1.5rem; }
.welcome-list li { margin-bottom: 0.75rem; }
.welcome-list li::marker { color: var(--sage); }

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.about-section { padding-top: clamp(6rem, 12vw, 9rem); }

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
    max-width: 1100px; margin: 0 auto;
}

/* Stacked photo column */
.gallery-stack { display: flex; flex-direction: column; gap: 1rem; }

.stack-photo {
    display: block; width: 100%; object-fit: cover; border-radius: 3px;
    box-shadow: 0 8px 30px var(--shadow-md);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.stack-photo:hover {
    transform: scale(1.015);
    box-shadow: 0 14px 40px rgba(92,85,73,0.24);
}
.stack-a { aspect-ratio: 4/5; }
.stack-b { aspect-ratio: 16/9; }
.stack-c { aspect-ratio: 3/4; }
.stack-photo:hover { transform: scale(1.015); }

.about-bio-side { padding-top: 0.25rem; }

.text-content {
    font-size: clamp(0.95rem, 2vw, 1.05rem); line-height: 1.5;
    color: var(--text-muted); background: var(--text-backdrop);
    padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
    border-radius: var(--text-box-radius);
    box-shadow: 0 2px 20px var(--shadow-sm);
}
.about-copy p { margin-bottom: 0.9rem; }
.about-copy p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════
   FOCUS CARDS
══════════════════════════════════════════ */
.focus-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px; margin: 0 auto;
}
.focus-card { perspective: 1000px; cursor: pointer; aspect-ratio: 2 / 3; min-height: 0; }
.focus-card-inner {
    position: relative; width: 100%; height: 100%;
    transition: transform 0.6s ease; transform-style: preserve-3d;
}
.focus-card.flipped .focus-card-inner { transform: rotateY(180deg); }
.card-front, .card-back {
    position: absolute; inset: 0;
    backface-visibility: hidden; -webkit-backface-visibility: hidden;
    border-radius: 3px; overflow: hidden;
    background: var(--card-bg); border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px var(--shadow-sm); display: flex; flex-direction: column;
}
.card-back { transform: rotateY(180deg); }
.card-front .card-header {
    background: var(--sage-light); border-bottom: 1px solid rgba(107,123,99,0.2);
    padding: 1.25rem 1rem; text-align: center; flex-shrink: 0;
}
.card-front .card-title {
    font-family: 'DM Sans', system-ui, sans-serif; font-size: 1.2rem; font-weight: 700;
    color: var(--cream); letter-spacing: 0.04em; line-height: 1.3;
}
.card-front .card-image-area {
    flex: 1; min-height: 260px; padding: 1rem;
    background: rgba(107,123,99,0.06);
    display: flex; align-items: center; justify-content: center;
}
.card-header { background: var(--lavender-light); border-bottom: 1px solid rgba(139,125,149,0.2); padding: 1.25rem; text-align: center; }
.card-title { font-family: 'DM Sans', system-ui, sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--cream); letter-spacing: 0.04em; line-height: 1.2; }
.card-subtitle { font-family: 'DM Sans', system-ui, sans-serif; font-size: 1rem; color: var(--mushroom); margin-top: 0.4rem; font-style: italic; }
.card-image-area { display: flex; align-items: center; justify-content: center; }
.card-illustration { width: 100%; height: 100%; border-radius: 2px; overflow: hidden; background: var(--bg); }
.card-illustration img { width: 100%; height: 100%; object-fit: cover; }
.illustration-placeholder { width: 100%; height: 100%; min-height: 200px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; background: rgba(107,123,99,0.05); }
.placeholder-pattern { display: none; }
.card-placeholder-icon { font-size: 2.8rem; opacity: 0.2; }
.card-placeholder-hint { font-family: 'DM Sans', system-ui, sans-serif; font-size: 0.9rem; font-style: italic; color: var(--mushroom); opacity: 0.5; text-align: center; padding: 0 1rem; }
.card-back .card-text-box { padding: 1.75rem; flex: 1; overflow-y: auto; }
.text-box-content p { color: var(--text-light); font-size: 1rem; line-height: 1.85; margin-bottom: 0.75rem; }
.text-box-content p:last-child { margin-bottom: 0; }
.focus-card:hover .card-front { box-shadow: 0 10px 36px var(--shadow-md); }

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin-top: 3rem;
    max-width: 1100px; margin-left: auto; margin-right: auto;
}
.service-card {
    display: flex; flex-direction: column;
    background: var(--card-bg); border: 1px solid var(--border-color);
    border-radius: 3px; padding: clamp(1.5rem, 3vw, 2.5rem);
    position: relative; overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 20px var(--shadow-sm);
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--sage), var(--honey), var(--lavender));
    opacity: 0.6;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px var(--shadow-md); }
.service-card:hover::before { opacity: 1; }
.service-card h3 {
    font-family: 'DM Sans', system-ui, sans-serif; font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700; color: var(--text-light); margin-bottom: 0.85rem; line-height: 1.2;
}
.service-card p { flex: 1; color: var(--text-muted); font-size: 1rem; line-height: 1.75; }
.btn-service {
    display: inline-block; margin-top: 1.5rem; align-self: flex-start;
    padding: 0.55rem 1.4rem;
    font-family: 'DM Sans', system-ui, sans-serif; font-size: 0.8rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--on-accent); background: var(--rust);
    border: 1.5px solid var(--rust); border-radius: 2px; text-decoration: none;
    transition: all 0.25s ease;
}
.btn-service:hover { background: var(--ochre); border-color: var(--ochre); transform: translateY(-1px); }

/* ══════════════════════════════════════════
   SERVICE DETAIL CONTENT
══════════════════════════════════════════ */
.service-page-content {
    max-width: 720px; margin: 0 auto;
    background: var(--text-backdrop);
    padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
    border-radius: var(--text-box-radius);
    box-shadow: 0 2px 20px var(--shadow-sm);
    font-size: clamp(1rem, 2vw, 1.1rem); line-height: 1.5;
}
.service-page-content p { margin-bottom: 0.85rem; }
.service-page-content p:last-child { margin-bottom: 0; }
.service-page-title {
    font-family: 'DM Sans', system-ui, sans-serif; font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700; color: var(--cream); margin-bottom: 1.5rem; line-height: 1.15;
}
.service-page-lead {
    font-family: 'DM Sans', system-ui, sans-serif; font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400; font-style: italic; color: var(--ochre); margin-bottom: 1.5rem;
}
.service-page-h2 {
    font-family: 'DM Sans', system-ui, sans-serif; font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 700; color: var(--cream); margin-top: 2rem; margin-bottom: 0.65rem;
}
.service-page-list { margin: 0 0 1.25rem 1.5rem; }
.service-page-list li { margin-bottom: 0.5rem; }
.service-page-list li::marker { color: var(--sage); }
.service-page-cost { font-weight: 700; color: var(--cream); }
.service-page-note { font-size: 0.95rem; color: var(--mushroom); font-style: italic; }
.text-link { color: var(--sage); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s ease; }
.text-link:hover { border-bottom-color: var(--lavender); }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-wrapper {
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: clamp(1.5rem, 4vw, 3rem); margin-top: 3rem;
}
.contact-info {
    background: var(--text-backdrop);
    padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
    border-radius: var(--text-box-radius);
    box-shadow: 0 2px 20px var(--shadow-sm);
}
.contact-info p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.contact-item h3 {
    font-family: 'DM Sans', system-ui, sans-serif; font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700; color: var(--cream); margin-bottom: 1rem;
}
.contact-details { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-color); }
.contact-details p { margin-bottom: 0.6rem; }
.contact-details strong { color: var(--mushroom); }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; }
.form-group label {
    color: var(--text-light); margin-bottom: 0.4rem;
    font-family: 'DM Sans', system-ui, sans-serif; font-size: 0.8rem;
    font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}
.form-group input, .form-group textarea {
    background: var(--card-bg); border: 1px solid var(--border-color);
    border-radius: 2px; padding: 0.8rem 1rem; color: var(--text-light);
    font-family: 'DM Sans', system-ui, sans-serif; font-size: 1rem; transition: border-color 0.2s ease;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--sage); outline: 2px solid rgba(107,123,99,0.3); outline-offset: 2px;
}
.submit-btn {
    background: var(--accent); border: 1.5px solid var(--accent); border-radius: 2px;
    padding: 0.9rem 2rem; color: var(--on-accent);
    font-family: 'DM Sans', system-ui, sans-serif; font-size: 0.85rem; font-weight: 700;
    cursor: pointer; transition: all 0.25s ease;
    text-transform: uppercase; letter-spacing: 0.15em;
}
.submit-btn:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-1px); }
.form-status { font-size: 0.95rem; margin-top: 0.5rem; }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--card-bg); border: 1px solid var(--border-color);
    border-radius: 3px; margin-bottom: 0.75rem; overflow: hidden;
    transition: border-color 0.2s ease;
}
.faq-item:hover { border-color: rgba(107,123,99,0.4); }
.faq-question { padding: 1.25rem 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-question h3 { font-family: 'DM Sans', system-ui, sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--text-light); }
.faq-toggle { font-size: 1.4rem; color: var(--mushroom); font-weight: 300; transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 600px; }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; }
.faq-answer p { color: var(--text-muted); line-height: 1.8; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer { border-top: 1px solid var(--border-color); padding: 2rem 0; }
.footer .container {
    background: var(--text-backdrop); padding: 1.5rem 2rem;
    border-radius: var(--text-box-radius); text-align: center;
}
.footer p {
    font-family: 'DM Sans', system-ui, sans-serif; font-size: 0.8rem;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--mushroom);
}

/* ══════════════════════════════════════════
   QUICK LINK CARDS
══════════════════════════════════════════ */
.quick-links {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem; margin-top: 3rem;
    max-width: 860px; margin-left: auto; margin-right: auto;
}
.quick-link-card {
    background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 3px;
    padding: 2rem 1.5rem; text-align: center; text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative; overflow: hidden; display: block;
    box-shadow: 0 4px 20px var(--shadow-sm);
}
.quick-link-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--lavender), var(--honey), var(--sage)); opacity: 0.6; }
.quick-link-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px var(--shadow-md); }
.quick-link-card h3 { font-family: 'DM Sans', system-ui, sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--cream); margin-bottom: 0.75rem; }
.quick-link-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-title { animation: fadeInUp 0.9s ease both; }
.hero-subtitle { animation: fadeInUp 0.9s ease 0.15s both; }
.decorative-line { animation: fadeInUp 0.9s ease 0.25s both; }
.hero-cta { animation: fadeInUp 0.9s ease 0.4s both; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; } }

/* ══════════════════════════════════════════
   RESPONSIVE – TABLET
══════════════════════════════════════════ */
@media (max-width: 900px) {
    .about-split { grid-template-columns: 1fr; }
    .gallery-stack { max-width: 500px; margin: 0 auto; }
    .focus-list { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; max-width: 420px; }
    .contact-wrapper { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   RESPONSIVE – MOBILE
══════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Show hamburger, hide desktop nav */
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: 100vh;
        min-height: -webkit-fill-available;
        flex-direction: column;
        background: #ebe8e2;
        background-color: #ebe8e2 !important;
        padding: 5rem 2rem 2rem;
        gap: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 1001;
        isolation: isolate;
        transform: translateY(-100%);
        -webkit-transform: translateY(-100%);
        transition: transform 0.35s ease;
        -webkit-transition: -webkit-transform 0.35s ease;
        align-items: center;
        justify-content: flex-start;
    }
    .nav-menu.active { transform: translateY(0) translateZ(0); -webkit-transform: translateY(0) translateZ(0); }
    .nav-menu li { width: 100%; max-width: 320px; }
    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem 0;
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }
    .nav-link::after { display: none; }
    .nav-item-has-dropdown { position: static; }
    .nav-dropdown {
        position: static; opacity: 1; visibility: visible; pointer-events: auto;
        transform: none; box-shadow: none; border: none;
        background: rgba(107,123,99,0.08); border-radius: 4px;
        padding: 0.25rem 0; margin: 0.25rem 0;
    }
    .nav-dropdown-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        text-align: center;
        border-bottom: none;
    }
    .logo-image { height: 36px; }
    .nav-container { padding: 0 1rem; }

    /* Background on mobile: cover the full screen */
    body::after {
        background-size: cover;
        background-position: center center;
    }
    .page-header, .service-page-header { background-attachment: scroll; }

    /* Hero */
    .hero-logo { max-width: 240px; }

    /* Focus cards: single column on mobile */
    .focus-list { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
    .focus-card { aspect-ratio: 2 / 3; min-height: 0; }
    .focus-card-inner { min-height: 0; }

    /* Quick links */
    .quick-links { grid-template-columns: 1fr; max-width: 400px; }

    /* Gallery */
    .stack-a, .stack-b, .stack-c { transform: none; }
}

@media (max-width: 480px) {
    .logo-image { height: 30px; }
    .hero-logo { max-width: 200px; }
    .btn { width: 100%; text-align: center; }
    .gallery-stack { max-width: 100%; }
}

/* ══════════════════════════════════════════
   ABOUT PAGE – Dog gallery
══════════════════════════════════════════ */
.dog-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 1.5rem;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.dog-card {
    margin: 0;
    display: flex;
    flex-direction: column;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 6px 24px var(--shadow-md);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.dog-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 32px var(--shadow-md);
}

.dog-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.dog-caption {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--cream);
    text-align: center;
    padding: 0.55rem 0.75rem;
    background: var(--sage);
    font-style: normal;
    line-height: 1.3;
}

@media (max-width: 480px) {
    .dog-gallery { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
}

/* ══════════════════════════════════════════
   ABOUT PAGE – Full left column layout
══════════════════════════════════════════ */

.about-section { padding-top: clamp(6rem, 12vw, 9rem); }

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left column wraps scatter + credentials + dogs */
.about-left {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

/* ── Scatter gallery ── */
.gallery-scatter-side {
    position: relative;
    width: 100%;
    height: 620px;
}

.scatter-photo {
    position: absolute;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 6px 28px var(--shadow-md);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.scatter-photo:hover {
    transform: scale(1.02) !important;
    box-shadow: 0 12px 40px rgba(92,85,73,0.28);
    z-index: 10;
}

.scatter-a {
    width: 58%;
    aspect-ratio: 3 / 4;
    top: 0; left: 0;
    transform: rotate(-1.8deg);
    z-index: 2;
}

.scatter-b {
    width: 48%;
    aspect-ratio: 3 / 4;
    top: 60px; right: 0;
    transform: rotate(1.5deg);
    z-index: 3;
}

.scatter-c {
    width: 72%;
    aspect-ratio: 4 / 3;
    bottom: 5%; left: 5%;
    transform: rotate(-0.8deg);
    z-index: 1;
}

/* ── Credentials box ── */
.credentials-box {
    background: var(--text-backdrop);
    border-radius: var(--text-box-radius);
    padding: 1.5rem 1.75rem;
    box-shadow: 0 2px 16px var(--shadow-sm);
}

.credentials-heading {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--cream);
    margin-bottom: 1.1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border-color);
}

.credentials-section {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.credentials-section--last {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.credentials-sublabel {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.credentials-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.credentials-item:last-child { margin-bottom: 0; }

.credentials-label {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--cream);
}

.credentials-school {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.84rem;
    font-weight: 400;
    color: var(--cream);
}

/* ── Dog gallery ── */
.dog-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 1.5rem;
    gap: 1rem;
}

.dog-card {
    margin: 0;
    display: flex;
    flex-direction: column;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dog-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 28px var(--shadow-md);
}

.dog-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.dog-caption {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--cream);
    text-align: center;
    padding: 0.6rem 0.75rem 0.65rem;
    background: var(--text-backdrop);
    border-top: 1px solid var(--border-color);
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.dog-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 0.08em;
}

.dog-title {
    font-size: 0.68rem;
    font-weight: 400;
    color: var(--mushroom);
    letter-spacing: 0.06em;
}

/* ── Bio column ── */
.about-bio-side { padding-top: 0.25rem; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .about-split { grid-template-columns: 1fr; }

    .gallery-scatter-side {
        height: 400px;
        max-width: 520px;
        margin: 0 auto;
    }

    .scatter-a { width: 52%; }
    .scatter-b { width: 44%; }
    .scatter-c { width: 68%; }
}

@media (max-width: 480px) {
    .gallery-scatter-side { height: 320px; }
    .scatter-a { width: 55%; }
    .scatter-b { width: 46%; }
    .scatter-c { width: 75%; }
    .dog-gallery { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
}

/* Dog gallery full-width below about columns */
.dog-gallery-full {
    grid-template-columns: 280px 280px;
    justify-content: center;
    margin-top: 2.5rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* ══════════════════════════════════════════
   FOCUS PAGE – Backdrop behind all cards
══════════════════════════════════════════ */
.focus-backdrop {
    background: rgba(255, 255, 255, 0.82);
    border-radius: var(--text-box-radius);
    padding: 2.5rem;
    box-shadow: 0 2px 20px var(--shadow-sm);
}

/* ══════════════════════════════════════════
   HOME PAGE – New welcome copy styles
══════════════════════════════════════════ */
.home-opening-line {
    font-size: clamp(1.15rem, 2.5vw, 1.35rem);
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 1.75rem;
    display: block;
    line-height: 1.6;
}

.home-section-heading {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sage);
    margin-top: 2rem;
    margin-bottom: 0.85rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.home-section-heading:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.home-approach-block {
    background: rgba(107, 123, 99, 0.07);
    border-left: 3px solid var(--sage);
    border-radius: 0 var(--text-box-radius) var(--text-box-radius) 0;
    padding: 1rem 1.25rem;
    margin: 1rem 0;
}

.home-approach-title {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.home-approach-sub {
    font-weight: 400;
    color: var(--mushroom);
}

.home-approach-block p {
    margin-bottom: 0.5rem;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.home-approach-block p:last-child { margin-bottom: 0; }

.home-approach-method {
    color: var(--mushroom) !important;
    font-style: italic;
}

/* ══════════════════════════════════════════
   CONTACT PAGE – SimplePractice widget layout
══════════════════════════════════════════ */
.contact-page-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
    margin-top: 0;
}

.contact-widget-wrapper {
    background: var(--text-backdrop);
    border-radius: var(--text-box-radius);
    padding: 2.5rem 2rem;
    box-shadow: 0 2px 20px var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

@media (max-width: 768px) {
    .contact-page-layout {
        grid-template-columns: 1fr;
    }
}

.contact-widget-btn {
    margin: 1.25rem 0;
    display: inline-block;
}

.contact-widget-intro {
    font-size: 0.95rem;
    color: var(--mushroom);
    text-align: center;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-widget-note {
    font-size: 0.78rem;
    color: var(--mushroom);
    text-align: center;
    margin-top: 0;
    font-style: italic;
    line-height: 1.5;
}

/* ══════════════════════════════════════════
   FOOTER CREDITS
══════════════════════════════════════════ */
.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.footer-credits {
    font-size: 0.72rem;
    color: var(--mushroom);
    opacity: 0.75;
    font-style: italic;
    letter-spacing: 0.02em;
}

.footer-credit-link {
    color: var(--mushroom);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.footer-credit-link:hover {
    border-bottom-color: var(--mushroom);
}

/* Contact form char counter */
.form-char-count {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--mushroom);
    float: right;
}

.form-char-count.near-limit {
    color: var(--ochre);
}

.form-char-count.at-limit {
    color: var(--rust);
    font-weight: 600;
}
