/*================================================================
  ZANE WEEKS LAW — Complete Design System
  Built from scratch. No template overrides.

  Typography: Cormorant Garamond (display) + Libre Franklin (body)
  Brand: Navy #1b2a4a · Gold #c89d66
================================================================*/

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
    --navy: #1b2a4a;
    --navy-deep: #0f1a2e;
    --navy-light: #243554;
    --gold: #c89d66;
    --gold-light: #d4b07e;
    --gold-dark: #a8814e;
    --gold-accessible: #7a5f33;
    --cream: #faf8f5;
    --warm-gray: #f2efe9;
    --text: #333;
    --text-light: #666;
    --text-lighter: #999;
    --white: #fff;
    --border: #e8e4de;
    --shadow-sm: 0 2px 8px rgba(27,42,74,0.06);
    --shadow-md: 0 8px 30px rgba(27,42,74,0.1);
    --shadow-lg: 0 20px 60px rgba(27,42,74,0.15);
    --radius: 4px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Libre Franklin', -apple-system, sans-serif;
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--navy);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--gold);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--navy);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* ── UTILITIES ─────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 99999;
    width: auto;
    height: auto;
    padding: 12px 24px;
    margin: 0;
    clip: auto;
    white-space: normal;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.section {
    padding: 100px 0;
}

.section--cream {
    background: var(--cream);
}

.section--gray {
    background: var(--warm-gray);
}

.section--navy {
    background: var(--navy);
}

.section--navy-deep {
    background: var(--navy-deep);
}

.label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-accessible);
    margin-bottom: 14px;
}

.label--light {
    color: var(--gold-light);
}

.section-heading {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 20px;
}

.section-subtext {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.8;
}

.text-center {
    text-align: center;
}

.text-center .section-subtext {
    margin-left: auto;
    margin-right: auto;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 36px;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--primary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn--primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(168,129,78,0.3);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn--outline:hover {
    background: var(--white);
    color: var(--navy);
}

.btn--gold {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
    font-weight: 700;
}

.btn--gold:hover {
    background: var(--white);
    color: var(--navy-deep);
    border-color: var(--white);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn--white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.btn--white:hover {
    background: var(--gold-dark);
    color: var(--white);
    border-color: var(--gold-dark);
}

/* ── GRID ──────────────────────────────────────────────────── */
.grid {
    display: grid;
    gap: 30px;
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.grid--sidebar {
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

@media (max-width: 991px) {
    .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .grid--sidebar { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
    .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
    .section { padding: 70px 0; }
}

/* ── TOP BAR ───────────────────────────────────────────────── */
.top-bar {
    background: var(--navy-deep);
    padding: 10px 0;
    border-bottom: 1px solid rgba(200,157,102,0.12);
}

.top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar__info {
    display: flex;
    gap: 28px;
}

.top-bar__item {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar__item i {
    color: var(--gold);
    font-size: 12px;
}

.top-bar__cta {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 7px 20px;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.top-bar__cta:hover {
    background: var(--gold);
    color: var(--white);
}

@media (max-width: 767px) {
    .top-bar__info { gap: 16px; flex-wrap: wrap; }
    .top-bar__cta { display: none; }
    .top-bar__item { font-size: 12px; }
}

/* ── NAVBAR ────────────────────────────────────────────────── */
.navbar {
    background: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.navbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.navbar__logo img {
    height: 52px;
    width: auto;
}

.navbar__menu {
    display: flex;
    gap: 6px;
    align-items: center;
}

.navbar__link {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    padding: 8px 16px;
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
}

.navbar__link:hover,
.navbar__link--active {
    color: var(--gold-accessible);
}

/* Dropdown */
.navbar__dropdown {
    position: relative;
}

.navbar__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-top: 2px solid var(--gold);
    box-shadow: var(--shadow-md);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 100;
}

.navbar__dropdown:hover .navbar__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar__dropdown-link {
    display: block;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: all 0.2s ease;
}

.navbar__dropdown-link:hover {
    background: var(--cream);
    color: var(--gold);
    padding-left: 28px;
}

/* Mobile toggle */
.navbar__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.navbar__toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 991px) {
    .navbar__toggle { display: flex; }
    .navbar__menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        gap: 0;
    }
    .navbar__menu.active { display: flex; }
    .navbar__link { padding: 14px 16px; width: 100%; text-align: left; display: block; }
    .navbar__dropdown { width: 100%; }
    .navbar__dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        padding: 0 0 0 16px;
        display: none;
    }
    .navbar__dropdown.active .navbar__dropdown-menu {
        display: block;
    }
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 65vh;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15,26,46,0.92) 0%,
        rgba(27,42,74,0.80) 50%,
        rgba(27,42,74,0.65) 100%
    );
}

.hero__split {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 40px;
    min-height: 65vh;
}

.hero__content {
    padding: 0 0 60px;
    align-self: center;
}

.hero__label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
    display: block;
}

.hero__title {
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.hero__subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__portrait {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: end;
    min-height: 100%;
    overflow: hidden;
}

.hero__portrait img {
    display: block;
    max-height: 90vh;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(0,0,0,0.3));
}

.hero__portrait-mobile {
    display: none;
}

@media (max-width: 991px) {
    .hero {
        height: auto;
    }
    .hero__split {
        grid-template-columns: 1fr;
        height: auto;
        gap: 0;
    }
    .hero__content {
        padding: 36px 0 40px;
        align-self: start;
    }
    .hero__portrait {
        display: none;
    }
    .hero__portrait-mobile {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        margin: 0;
        overflow: hidden;
        line-height: 0;
    }
    .hero__portrait-mobile img {
        display: block;
        width: min(100%, 340px);
        height: auto;
        filter: drop-shadow(0 8px 30px rgba(0,0,0,0.3));
    }
    .hero__subtitle {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .hero__content {
        padding: 28px 0 36px;
    }
    .hero__buttons {
        flex-direction: column;
    }
    .hero__buttons .btn {
        text-align: center;
    }
    .hero__portrait-mobile {
        margin: 0;
    }
    .hero__portrait-mobile img {
        width: min(100%, 310px);
    }
}

/* ── PAGE HEADER (inner pages) ─────────────────────────────── */
.page-header {
    position: relative;
    padding: 80px 0 70px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15,26,46,0.92) 0%,
        rgba(27,42,74,0.82) 100%
    );
}

.page-header__content {
    position: relative;
    z-index: 2;
}

.page-header__title {
    font-size: clamp(36px, 5vw, 52px);
    color: var(--white);
    margin-bottom: 12px;
}

.page-header__breadcrumb {
    display: flex;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.page-header__breadcrumb a {
    color: var(--gold-light);
}

.page-header__breadcrumb a:hover {
    color: var(--white);
}

/* ── SERVICE CARDS (homepage 3-up) ─────────────────────────── */
.service-cards {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.service-card {
    background: var(--white);
    padding: 36px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all var(--transition);
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--gold);
    color: inherit;
}

.service-card__icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card__icon i {
    font-size: 24px;
    color: var(--white);
}

.service-card__label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-accessible);
    margin-bottom: 4px;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
}

/* ── ABOUT / WHY CHOOSE ───────────────────────────────────── */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__image {
    position: relative;
}

.about__image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about__image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100px;
    height: 100px;
    border-top: 3px solid var(--gold);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius) 0 0 0;
    z-index: -1;
}

.about__text p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.8;
}

.about__text p strong {
    color: var(--text);
}

.about__cta {
    margin-top: 28px;
}

@media (max-width: 991px) {
    .about {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about__image { order: -1; }
    .about__image::before { display: none; }
}

/* ── PRACTICE AREA CARDS ───────────────────────────────────── */
.practice-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/5;
    display: flex;
    align-items: flex-end;
}

.practice-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}

.practice-card:hover .practice-card__bg {
    transform: scale(1.08);
}

.practice-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(15,26,46,0.95) 0%,
        rgba(27,42,74,0.6) 50%,
        transparent 100%
    );
}

.practice-card__content {
    position: relative;
    z-index: 2;
    padding: 30px;
    width: 100%;
}

.practice-card__label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.practice-card__title {
    font-size: 26px;
    color: var(--white);
    margin-bottom: 10px;
}

.practice-card__desc {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 16px;
}

.practice-card__link {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.practice-card__link:hover {
    gap: 12px;
    color: var(--white);
}

/* ── STATS ─────────────────────────────────────────────────── */
.stats {
    position: relative;
    background: url('../images/zweeks/testimonial-1.jpg') center/cover no-repeat fixed;
    padding: 80px 0;
}

.stats::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,26,46,0.93), rgba(27,42,74,0.88));
}

.stats__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 30px 20px;
    background: rgba(200,157,102,0.08);
    border: 1px solid rgba(200,157,102,0.12);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.stat:hover {
    background: rgba(200,157,102,0.15);
    border-color: rgba(200,157,102,0.25);
    transform: translateY(-4px);
}

.stat__number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat__label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

@media (max-width: 767px) {
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── HIGHLIGHT / FEATURED ─────────────────────────────────── */
.highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.highlight__image {
    position: relative;
}

.highlight__image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.highlight__badge {
    position: absolute;
    bottom: 24px;
    left: -24px;
    background: var(--navy-deep);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.25);
    border-left: 3px solid var(--gold);
}

.highlight__badge i {
    font-size: 28px;
    color: var(--gold);
}

.highlight__badge span {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
}

.highlight__text p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 15px;
}

.highlight__list {
    margin: 24px 0;
}

.highlight__list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--text);
}

.highlight__list li::before {
    content: '\f105';
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.highlight__list li strong {
    font-weight: 600;
}

@media (max-width: 991px) {
    .highlight { grid-template-columns: 1fr; gap: 40px; }
    .highlight__image { order: -1; }
    .highlight__badge { left: 16px; }
}

@media (max-width: 767px) {
    .highlight__badge {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 16px;
        display: inline-flex;
    }
}

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.testimonial-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.testimonial-slider {
    display: grid;
}

.testimonial-slide {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-light);
    position: relative;
    padding-left: 30px;
    border-left: 3px solid var(--gold);
    margin-bottom: 24px;
}

.testimonial-author {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    color: var(--navy);
}

.testimonial-role {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-accessible);
    font-weight: 600;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

@media (max-width: 991px) {
    .testimonial-grid { grid-template-columns: 1fr; }
    .testimonial-image { display: none; }
}

/* ── CONTACT / CTA SECTION ─────────────────────────────────── */
.contact-section {
    position: relative;
    background: url('../images/zweeks/testimonial-2.jpg') center/cover no-repeat fixed;
    padding: 100px 0;
}

.contact-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,26,46,0.94), rgba(27,42,74,0.9));
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    color: var(--white);
    font-size: 38px;
    margin-bottom: 16px;
}

.contact-info p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 15px;
}

.contact-info p strong {
    color: var(--white);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

.contact-detail i {
    color: var(--gold);
    margin-top: 4px;
    width: 16px;
    text-align: center;
}

.contact-detail strong {
    color: var(--white);
}

/* Form */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form .full-width {
    grid-column: 1 / -1;
}

.form-input {
    font-family: var(--font-body);
    width: 100%;
    padding: 15px 18px;
    font-size: 14px;
    color: var(--white);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(200,157,102,0.2);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder {
    color: rgba(255,255,255,0.4);
}

.form-input:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 2px rgba(200,157,102,0.15);
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

select.form-input {
    appearance: auto;
    cursor: pointer;
}

select.form-input option {
    background: var(--navy);
    color: var(--white);
}

@media (max-width: 991px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 767px) {
    .contact-form { grid-template-columns: 1fr; }
    .contact-section { padding: 70px 0; }
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
    background: var(--navy-deep);
    padding-top: 70px;
    border-top: 3px solid var(--gold);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer__about p {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
}

.footer__logo img {
    height: 42px;
    width: auto;
}

.footer__heading {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer__links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer__contact li {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.8;
}

.footer__contact strong {
    color: rgba(255,255,255,0.85);
}

.footer__bottom {
    background: rgba(0,0,0,0.2);
    padding: 18px 0;
    text-align: center;
}

.footer__bottom span {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}

@media (max-width: 991px) {
    .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
    .footer__grid { grid-template-columns: 1fr; }
}

/* ── PRACTICE DETAIL PAGES ─────────────────────────────────── */
.practice-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
}

@media (max-width: 991px) {
    .practice-layout { grid-template-columns: 1fr; }
}

/* Sidebar */
.sidebar-cta {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.sidebar-cta__image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.sidebar-cta__content {
    background: var(--navy);
    padding: 24px;
}

.sidebar-cta__title {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.sidebar-cta__title span {
    color: var(--gold);
}

.sidebar-nav {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.sidebar-nav__heading {
    background: var(--navy);
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
}

.sidebar-nav__list li {
    border-bottom: 1px solid var(--border);
}

.sidebar-nav__list li:last-child {
    border-bottom: none;
}

.sidebar-nav__list a {
    display: block;
    padding: 14px 20px;
    font-size: 14px;
    color: var(--text);
    transition: all 0.2s ease;
}

.sidebar-nav__list a:hover {
    background: var(--cream);
    color: var(--gold);
    padding-left: 24px;
}

.sidebar-nav__list .active a {
    color: var(--gold-accessible);
    font-weight: 700;
    border-left: 3px solid var(--gold);
}

/* Main content area */
.practice-content .badge {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    padding: 7px 20px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 18px;
}

.practice-content h2 {
    font-size: 34px;
    margin-bottom: 18px;
}

.practice-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 16px;
}

.practice-content h3 {
    font-size: 26px;
    margin: 36px 0 16px;
}

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--cream);
    border-radius: var(--radius);
    border-left: 3px solid var(--gold);
    transition: all var(--transition);
}

.service-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
    border-left-color: var(--navy);
}

.service-item i {
    font-size: 18px;
    color: var(--gold);
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.service-item span {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
}

@media (max-width: 767px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* Info box / callout */
.info-box {
    background: linear-gradient(135deg, var(--navy), var(--navy-deep));
    color: var(--white);
    padding: 36px;
    border-radius: var(--radius);
    margin: 32px 0;
    border-left: 4px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(200,157,102,0.1), transparent 70%);
    pointer-events: none;
}

.info-box h3 {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 12px;
}

.info-box p {
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
    font-size: 15px;
    margin-bottom: 0;
}

.info-box .btn {
    margin-top: 20px;
}

/* Process steps */
.process-steps {
    margin-top: 20px;
}

.step {
    display: flex;
    gap: 22px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateX(4px);
}

.step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step__number {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(27,42,74,0.2);
}

.step__title {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 6px;
}

.step__text {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 14px;
    margin: 0;
}

/* Expungement checklist */
.checklist {
    margin-top: 20px;
}

.checklist__item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--text);
}

.checklist__item i {
    color: var(--gold);
}

/* ── FAQ ACCORDION ─────────────────────────────────────────── */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 22px 28px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    background: none;
    border: none;
    border-left: 3px solid transparent;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question.active {
    border-left-color: var(--gold);
}

.faq-question .faq-icon {
    color: var(--gold);
    font-size: 14px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer__inner {
    padding: 0 28px 22px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

.faq-answer a {
    color: var(--gold-dark);
    font-weight: 600;
}

/* ── TESTIMONIALS PAGE ─────────────────────────────────────── */
.testimonial-block {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 50px;
    align-items: center;
    padding: 50px 0;
    border-bottom: 1px solid var(--border);
}

.testimonial-block:last-child {
    border-bottom: none;
}

.testimonial-block:nth-child(even) {
    direction: rtl;
}

.testimonial-block:nth-child(even) > * {
    direction: ltr;
}

.testimonial-block__image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.testimonial-block__quote {
    font-family: var(--font-display);
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-light);
    position: relative;
    padding-left: 24px;
    border-left: 3px solid var(--gold);
    margin-bottom: 20px;
}

.testimonial-block__name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    color: var(--navy);
}

@media (max-width: 767px) {
    .testimonial-block,
    .testimonial-block:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 24px;
    }
}

/* ── CONTACT PAGE ──────────────────────────────────────────── */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-page-info h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.contact-page-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.contact-page-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.contact-page-info .detail {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-page-form {
    background: var(--navy);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.contact-page-form h2 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 24px;
}

.contact-page-form .contact-form .form-input {
    background: rgba(255,255,255,0.06);
    border-color: rgba(200,157,102,0.2);
}

.contact-map {
    margin-top: 50px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

@media (max-width: 991px) {
    .contact-page-grid { grid-template-columns: 1fr; }
}

/* ── CTA BAND ──────────────────────────────────────────────── */
.cta-band {
    padding: 70px 0;
    text-align: center;
}

.cta-band h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.cta-band p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 28px;
}

/* ── PRELOADER ─────────────────────────────────────────────── */
html.js .preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}

html.js .preloader--done {
    transform: translateY(-100%);
    pointer-events: none;
}

html.js .preloader--skip {
    display: none;
}

.preloader__content {
    text-align: center;
}

.preloader__logo {
    height: 48px;
    width: auto;
    opacity: 0;
    transform: scale(0.85);
    filter: brightness(0) invert(1);
    animation: preloader-fade-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.preloader__line {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px auto 0;
    animation: preloader-line 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

@keyframes preloader-fade-in {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes preloader-line {
    to {
        width: 120px;
    }
}

/* ── HERO ENTRANCE ANIMATION ──────────────────────────────── */
html.js .hero-anim {
    opacity: 0;
    transform: translateY(30px);
}

html.js .hero-anim--portrait {
    transform: translateX(40px);
}

body.loaded .hero-anim {
    animation: hero-fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body.loaded .hero-anim--portrait {
    animation: hero-slide-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body.loaded .hero-anim[data-delay="1"] { animation-delay: 0s; }
body.loaded .hero-anim[data-delay="2"] { animation-delay: 0.12s; }
body.loaded .hero-anim[data-delay="3"] { animation-delay: 0.24s; }
body.loaded .hero-anim[data-delay="4"] { animation-delay: 0.36s; }

@keyframes hero-fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-slide-in {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ── SCROLL REVEAL ────────────────────────────────────────── */
html.js .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

html.js .reveal--left {
    transform: translateX(-40px);
}

html.js .reveal--right {
    transform: translateX(40px);
}

html.js .reveal.visible {
    opacity: 1;
    transform: translate(0, 0);
}

html.js .reveal[data-delay="1"] { transition-delay: 0s; }
html.js .reveal[data-delay="2"] { transition-delay: 0.12s; }
html.js .reveal[data-delay="3"] { transition-delay: 0.24s; }
html.js .reveal[data-delay="4"] { transition-delay: 0.36s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    html.js .preloader { transition: opacity 0.3s ease; }
    html.js .preloader--done { transform: none; opacity: 0; }
    .preloader__logo { animation: none; opacity: 1; transform: none; }
    .preloader__line { animation: none; width: 120px; }
    html.js .hero-anim,
    html.js .hero-anim--portrait { opacity: 1; transform: none; animation: none !important; }
    html.js .reveal,
    html.js .reveal--left,
    html.js .reveal--right { opacity: 1; transform: none; transition: none; }
    .testimonial-slide { transition: none; }
}
