/* ================================================================
   Halyburton Legal — Emotional UX Redesign
   Warm, approachable community law firm feel
   PHONE PLACEHOLDER: (02) 4950 8190 — replace with real number
   ================================================================ */

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

:root {
    --ink: #2d2926;
    --warm: #faf7f3;
    --warm-dark: #f2ece4;
    --accent: #7a5c40;
    --accent-light: #a68a66;
    --accent-dark: #5e4230;
    --muted: #78716b;
    --border: #e8e1d8;
    --white: #fffdf9;
    --green: #4a7c5c;
    --nav-height: 80px;
}

/* === FONTS & BASE ============================================== */
body {
    font-family: 'Nunito', sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.75;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* === STICKY NAV =============================================== */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    height: var(--nav-height);
}

.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.nav-logo {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    color: var(--ink);
    letter-spacing: -0.01em;
    flex-shrink: 0;
    line-height: 1.2;
}

.nav-logo span { color: var(--accent); display: block; font-size: 0.65rem; font-family: 'Nunito', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-top: 2px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
    padding: 0.5rem 0.85rem;
    border-radius: 12px;
    transition: background 0.25s ease, color 0.25s ease;
    white-space: nowrap;
}

.nav-links a:hover, .nav-links a.active {
    background: var(--warm);
    color: var(--accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.nav-phone {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.85rem;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    transition: border-color 0.25s ease, background 0.25s ease;
    white-space: nowrap;
}

.nav-phone:hover {
    border-color: var(--accent-light);
    background: rgba(122, 92, 64, 0.04);
}

.nav-phone svg { flex-shrink: 0; }

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--accent);
    color: var(--white) !important;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.15s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(122, 92, 64, 0.2);
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 14px;
    border: 1.5px solid var(--accent-light);
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-lg {
    font-size: 1.05rem;
    padding: 0.85rem 2rem;
    border-radius: 16px;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--ink);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    overflow-y: auto;
    padding: 1.75rem 2rem 8rem;
    flex-direction: column;
    gap: 0.35rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    font-size: 1.15rem;
    font-weight: 600;
    padding: 1rem 1.15rem;
    border-radius: 14px;
    color: var(--ink);
    transition: background 0.25s;
}

.mobile-menu a:hover { background: var(--warm); }

.mobile-menu-divider {
    height: 1px;
    background: var(--border);
    margin: 0.75rem 0;
}

.mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.25rem;
}

/* === MOBILE STICKY CTA BAR ==================================== */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 0.85rem 1.15rem;
    gap: 0.85rem;
    box-shadow: 0 -6px 24px rgba(0,0,0,0.06);
}

.mobile-sticky-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.mobile-sticky-call {
    background: var(--warm);
    color: var(--accent);
    border: 1.5px solid var(--border);
}

.mobile-sticky-call:hover { background: var(--warm-dark); }

.mobile-sticky-book {
    background: var(--accent);
    color: var(--white);
}

.mobile-sticky-book:hover { background: var(--accent-dark); }

/* === HERO ===================================================== */
.hero {
    background: linear-gradient(170deg, var(--warm) 0%, var(--white) 70%);
    padding: 6rem 2rem 5rem;
}

.hero-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent);
    background: rgba(122, 92, 64, 0.08);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.75rem;
}

.hero h1 {
    font-family: 'Lora', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero h1 em {
    font-style: italic;
    color: var(--accent);
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.85;
    max-width: 520px;
    margin-bottom: 2.5rem;
}

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

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.hero-trust-item {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-trust-item .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-light);
    flex-shrink: 0;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.hero-card-badge {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--accent);
    margin-bottom: 0.85rem;
}

.hero-stat-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-num {
    font-family: 'Lora', serif;
    font-size: 2.2rem;
    color: var(--ink);
    line-height: 1;
    font-weight: 600;
}

.hero-stat-lbl {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.35rem;
    font-weight: 500;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.stars { color: #e8a838; font-size: 1rem; letter-spacing: 1px; }

.rating-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink);
}

.rating-sub { font-size: 0.8rem; color: var(--muted); }

/* === TRUST BAR ================================================ */
.trust-bar {
    background: var(--ink);
    padding: 1.5rem 2rem;
}

.trust-bar-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.trust-item svg { color: var(--accent-light); flex-shrink: 0; }

.trust-sep {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.12);
}

/* === SECTION HEADERS ========================================== */
.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-family: 'Lora', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    letter-spacing: -0.015em;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 580px;
    line-height: 1.8;
}

.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* === PRACTICE AREAS =========================================== */
.practice-areas {
    padding: 6rem 2rem;
    max-width: 1140px;
    margin: 0 auto;
}

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

.practice-card {
    background: var(--warm);
    border-radius: 20px;
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.practice-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(122,92,64,0.08);
}

.practice-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(122,92,64,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.practice-card h3 {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    margin-bottom: 0.65rem;
    color: var(--ink);
    font-weight: 600;
}

.practice-card p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 1.5rem;
}

.practice-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.25s;
}

.practice-card:hover .practice-card-link { gap: 0.7rem; }

/* === TESTIMONIALS ============================================= */
.testimonials-section {
    background: var(--warm);
    padding: 6rem 2rem;
}

.testimonials-inner {
    max-width: 1140px;
    margin: 0 auto;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.25rem;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.05);
}

.testimonial-stars { color: #e8a838; font-size: 1rem; letter-spacing: 2px; }

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--ink);
    font-style: italic;
    flex: 1;
}

.testimonial-text::before { content: '\201C'; }
.testimonial-text::after { content: '\201D'; }

.testimonial-author {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink);
}

.testimonial-location {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 0.15rem;
}

/* === OFFICE CARDS ============================================= */
.offices-section {
    padding: 6rem 2rem;
    max-width: 1140px;
    margin: 0 auto;
}

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

.office-card {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.25rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.office-card:hover {
    border-color: var(--accent-light);
    box-shadow: 0 10px 30px rgba(122,92,64,0.07);
}

.office-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--accent);
    background: rgba(122,92,64,0.07);
    padding: 0.35rem 0.8rem;
    border-radius: 100px;
    width: fit-content;
}

.office-name {
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    color: var(--ink);
    font-weight: 600;
}

.office-address {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
}

.office-phone {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.office-hours {
    font-size: 0.85rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.office-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.office-card-actions a {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.25s;
}

.office-card-actions a:hover { gap: 0.7rem; }

/* === CTA BANNER =============================================== */
.cta-banner {
    background: linear-gradient(145deg, var(--ink) 0%, #3a322c 100%);
    padding: 6rem 2rem;
    text-align: center;
}

.cta-banner-inner {
    max-width: 640px;
    margin: 0 auto;
}

.cta-banner h2 {
    font-family: 'Lora', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--white);
    letter-spacing: -0.015em;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.cta-banner p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

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

.btn-light {
    background: var(--white);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 16px;
    transition: background 0.3s ease, transform 0.15s ease, box-shadow 0.3s ease;
}

.btn-light:hover {
    background: var(--warm);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 1.5px solid rgba(255,255,255,0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    border-color: rgba(255,255,255,0.6);
    color: white;
    background: rgba(255,255,255,0.08);
}

.cta-banner-trust {
    margin-top: 2rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    letter-spacing: 0.03em;
}

/* === FOOTER =================================================== */
.site-footer {
    background: var(--ink);
    color: rgba(255,255,255,0.8);
    padding: 5rem 2rem 2.5rem;
}

.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
    max-width: 300px;
    margin-bottom: 1.5rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--accent-light);
    background: rgba(166,138,102,0.1);
    padding: 0.4rem 0.85rem;
    border-radius: 100px;
    width: fit-content;
}

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--accent-light);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul li a {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.25s;
}

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

.footer-col address {
    font-style: normal;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-col .footer-phone {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-light);
}

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
}

.footer-bottom a {
    color: rgba(255,255,255,0.3);
    transition: color 0.25s;
}

.footer-bottom a:hover { color: rgba(255,255,255,0.65); }

/* === INNER PAGE HERO =========================================== */
.inner-hero {
    background: linear-gradient(170deg, var(--warm) 0%, var(--white) 70%);
    padding: 5rem 2rem 4rem;
}

.inner-hero-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--muted); }

.inner-hero h1 {
    font-family: 'Lora', serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--ink);
    max-width: 700px;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.inner-hero h1 em {
    font-style: italic;
    color: var(--accent);
}

.inner-hero-sub {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 600px;
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

.inner-hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

/* === CONTENT BLOCKS =========================================== */
.content-section {
    padding: 6rem 2rem;
    max-width: 1140px;
    margin: 0 auto;
}

.content-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.content-block h3 {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--ink);
    font-weight: 600;
}

.content-block p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.95rem;
    color: var(--ink);
    line-height: 1.6;
}

.checklist li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: rgba(122,92,64,0.1);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 3px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%237a5c40' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.info-box {
    background: var(--warm);
    border-radius: 20px;
    padding: 2.25rem;
    border-left: 4px solid var(--accent-light);
}

.info-box h4 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.65rem;
    color: var(--ink);
}

.info-box p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.8;
}

/* === FAQ SECTION ============================================== */
.faq-section {
    background: var(--warm);
    padding: 6rem 2rem;
}

.faq-inner {
    max-width: 780px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.faq-item {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
}

.faq-item:first-child { border-radius: 16px 16px 0 0; }
.faq-item:last-child { border-radius: 0 0 16px 16px; }
.faq-item:only-child { border-radius: 16px; }

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.4rem 1.75rem;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: background 0.25s;
}

.faq-question:hover { background: var(--warm); }

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--accent);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
    padding: 0 1.75rem 1.5rem;
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.85;
}

/* === PROCESS STEPS ============================================ */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    counter-reset: steps;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: flex-start;
    counter-increment: steps;
}

.step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(122,92,64,0.08);
    border: 2px solid rgba(122,92,64,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: var(--accent);
    flex-shrink: 0;
    font-weight: 600;
}

.step-num::after { content: counter(steps); }

.step-content h4 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.45rem;
    color: var(--ink);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.75;
}

/* === STATS STRIP ============================================== */
.stats-strip {
    padding: 4rem 2rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-strip-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.25rem;
}

.stat-num {
    font-family: 'Lora', serif;
    font-size: 2.8rem;
    color: var(--accent);
    line-height: 1;
    font-weight: 600;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* === DIVIDER ================================================== */
.divider { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.divider-line { height: 1px; background: var(--border); }

/* === RESPONSIVE =============================================== */
@media (max-width: 1024px) {
    .practice-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    :root { --nav-height: 72px; }

    .nav-links { display: none; }
    .nav-phone { display: none; }
    .nav-hamburger { display: flex; }

    .mobile-sticky-bar { display: flex; }

    .hero { padding: 3.5rem 1.5rem 3rem; }
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-visual { display: none; }

    .practice-grid { grid-template-columns: 1fr; }
    .practice-areas { padding: 4rem 1.5rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonials-section { padding: 4rem 1.5rem; }
    .offices-grid { grid-template-columns: 1fr; }
    .offices-section { padding: 4rem 1.5rem; }
    .content-two-col { grid-template-columns: 1fr; gap: 2.5rem; }
    .content-section { padding: 4rem 1.5rem; }
    .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
    .stats-strip { padding: 3rem 1.5rem; }
    .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }

    .trust-bar-inner { gap: 1.25rem; }
    .trust-sep { display: none; }
    .trust-item { font-size: 0.8rem; }

    .cta-banner { padding: 4rem 1.5rem; }
    .inner-hero { padding: 3.5rem 1.5rem 3rem; }
    .faq-section { padding: 4rem 1.5rem; }

    .inner-hero-ctas { flex-direction: column; align-items: flex-start; }
    .hero-ctas { flex-direction: column; align-items: flex-start; }

    /* Add padding to account for mobile sticky bar */
    body { padding-bottom: 90px; }
}

@media (max-width: 480px) {
    .trust-bar-inner { flex-direction: column; gap: 0.85rem; align-items: flex-start; }
    .trust-sep { display: none; }
}

/* === UTILITY ================================================= */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.gap-sm { gap: 0.5rem; }

/* === ACCESSIBILITY ============================================ */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
    border-radius: 6px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Skip to content */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.6rem 1.25rem;
    border-radius: 0 0 12px 12px;
    font-weight: 600;
    z-index: 9999;
    transition: top 0.2s;
}

.skip-link:focus { top: 0; }

/* === LOGO IMAGE =============================================== */
.nav-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
    background: var(--ink);
    border-radius: 8px;
    padding: 5px 10px;
}

.nav-logo-text {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1.2;
    align-items: flex-start;
    flex-direction: column;
    font-weight: 600;
}

.nav-logo-text span {
    color: var(--muted);
    display: block;
    font-size: 0.68rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2px;
}

.footer-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-logo-text {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* === NAV DROPDOWN ============================================= */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
    padding: 0.5rem 0.85rem;
    border-radius: 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
    white-space: nowrap;
    font-family: 'Nunito', sans-serif;
}

.nav-dropdown-trigger:hover,
.nav-dropdown-trigger[aria-expanded="true"] {
    background: var(--warm);
    color: var(--accent);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0.6rem;
    min-width: 170px;
    box-shadow: 0 10px 32px rgba(0,0,0,0.08);
    z-index: 200;
    display: none;
    flex-direction: column;
    gap: 0.15rem;
}

.nav-dropdown-menu[aria-expanded="true"],
.nav-dropdown-menu.open {
    display: flex;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
    border-radius: 10px;
    transition: background 0.25s ease, color 0.25s ease;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: var(--warm);
    color: var(--accent);
}

/* Nav enquiry button — smaller secondary style */
.nav-enquiry-btn {
    font-size: 0.82rem !important;
    padding: 0.55rem 1rem !important;
}

/* Hide enquiry button on narrower screens (already accessible via mobile menu) */
@media (max-width: 1100px) {
    .nav-enquiry-btn { display: none; }
    .nav-phone { display: none; }
}

/* === TEAM PAGE ================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.team-card-photo {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: var(--warm-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card-photo-placeholder {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, var(--warm-dark) 0%, var(--warm) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--accent-light);
}

.team-card-body {
    padding: 1.75rem;
}

.team-card-name {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    color: var(--ink);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.team-card-role {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.04em;
    margin-bottom: 0.85rem;
}

.team-card-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
}

.team-card-area-tag {
    font-size: 0.78rem;
    background: var(--warm);
    color: var(--ink);
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    font-weight: 600;
}

.team-card-bio {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.75;
}

/* === TESTIMONIALS PAGE ======================================== */
.testimonials-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.testimonial-card-full {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    transition: box-shadow 0.3s ease;
}

.testimonial-card-full:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.05);
}

.testimonial-area-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    background: var(--warm-dark);
    color: var(--accent);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    letter-spacing: 0.04em;
}

.testimonial-source-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    background: #e8f5e9;
    color: var(--green);
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    letter-spacing: 0.03em;
    margin-left: 0.4rem;
}

/* === PRACTICE AREA STOCK IMAGE ================================ */
.practice-area-image {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/10;
    object-fit: cover;
    width: 100%;
}

/* === FAQ PAGE ================================================= */
.faq-page-group { margin-bottom: 3.5rem; }

.faq-page-group-title {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    color: var(--ink);
    margin-bottom: 1.25rem;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid var(--warm-dark);
    font-weight: 600;
}

/* === ABOUT PAGE =============================================== */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.about-timeline-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.about-timeline-year {
    font-family: 'Lora', serif;
    font-size: 1.15rem;
    color: var(--accent);
    font-weight: 600;
    min-width: 56px;
    flex-shrink: 0;
}

.about-timeline-content h4 {
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
}

.about-timeline-content p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.75;
}

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

.value-card {
    background: var(--warm);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.value-card-icon {
    width: 52px;
    height: 52px;
    background: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--accent);
}

.value-card h4 {
    font-family: 'Lora', serif;
    font-size: 1.15rem;
    color: var(--ink);
    margin-bottom: 0.65rem;
    font-weight: 600;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.75;
}

@media (max-width: 768px) {
    .about-story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .values-grid { grid-template-columns: 1fr; }
}

/* === PRIVACY PAGE ============================================= */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    color: var(--ink);
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-top: 2rem;
    margin-bottom: 0.65rem;
}

.legal-content p, .legal-content li {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.85;
}

.legal-content ul {
    padding-left: 1.75rem;
    margin-bottom: 1.25rem;
}

.legal-content li { margin-bottom: 0.4rem; }

.legal-disclaimer-box {
    background: var(--warm);
    border-left: 4px solid var(--accent-light);
    border-radius: 0 12px 12px 0;
    padding: 1.5rem 1.75rem;
    margin: 2.5rem 0;
    font-size: 0.95rem;
    color: var(--muted);
}

/* === CONTACT FORM ============================================= */
.contact-form-wrapper {
    max-width: 640px;
}

.contact-form-wrapper label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.35rem;
    display: block;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea,
.contact-form-wrapper select {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    color: var(--ink);
    width: 100%;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    line-height: 1.5;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus,
.contact-form-wrapper select:focus {
    outline: none;
    border-color: var(--accent-light);
    box-shadow: 0 0 0 3px rgba(122, 92, 64, 0.08);
}

.contact-form-wrapper textarea {
    min-height: 140px;
    resize: vertical;
}
