/* =========================================================
   ZIHANX LAW FIRM
   Global Styles + Home Page
========================================================= */

:root {
    --navy: #101c2b;
    --navy-dark: #0b1521;
    --navy-light: #17283a;

    --ivory: #f7f5f0;
    --ivory-dark: #eeece6;
    --white: #ffffff;

    --gold: #b99a61;
    --gold-light: #d1b883;

    --text: #252a30;
    --text-light: #68717a;
    --border: #ddd9d0;

    --serif: "Playfair Display", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;

    --container: 1180px;
    --transition: 0.3s ease;
}

/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--ivory);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
}

/* =========================================================
   GLOBAL CONTAINER
========================================================= */

.container {
    width: min(100% - 48px, var(--container));
    margin-inline: auto;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    color: var(--white);
    transition:
        background var(--transition),
        padding var(--transition),
        box-shadow var(--transition);
}

.site-header.scrolled {
    position: fixed;
    background: rgba(11, 21, 33, 0.96);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* =========================================================
   BRAND
========================================================= */

.brand {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
    flex-shrink: 0;
}

.brand-name {
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.brand-subtitle {
    margin-top: 5px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.32em;
    color: var(--gold-light);
}

/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {
    display: flex;
    align-items: center;
    gap: 27px;
    margin-left: auto;
}

.main-nav a {
    position: relative;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.86);
    transition: color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background: var(--gold);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 19px;
    border: 1px solid rgba(207, 185, 135, 0.65);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition);
}

.header-cta:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
}

/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.menu-toggle span {
    width: 22px;
    height: 1px;
    background: var(--white);
    transition: transform var(--transition);
}

/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(7, 18, 30, 0.92) 0%,
            rgba(11, 25, 40, 0.78) 45%,
            rgba(11, 25, 40, 0.54) 100%
        ),
        url("../assets/images/hero-law.jpg") center / cover no-repeat;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(5, 15, 25, 0.22),
            rgba(5, 15, 25, 0.10)
        );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding-top: 55px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.eyebrow.dark {
    color: #8f7748;
}

.hero h1 {
    max-width: 760px;
    font-family: var(--serif);
    font-size: clamp(48px, 6vw, 78px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.hero p {
    max-width: 590px;
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-wrap: wrap;
    margin-top: 34px;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 25px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition),
        transform var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
}

.btn-primary:hover {
    background: var(--gold-light);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.52);
    color: var(--white);
}

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

.btn-light {
    background: var(--ivory);
    color: var(--navy);
}

.btn-light:hover {
    background: var(--white);
}

/* =========================================================
   GENERAL SECTION
========================================================= */

.section {
    padding: 110px 0;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 58px;
}

.section-header > p {
    max-width: 430px;
    color: var(--text-light);
    font-size: 15px;
}

.section-header.centered {
    display: block;
    max-width: 720px;
    margin: 0 auto 58px;
    text-align: center;
}

.section-header.centered p {
    max-width: 610px;
    margin: 20px auto 0;
}

.section-header.light {
    color: var(--white);
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.7);
}

.section h2 {
    font-family: var(--serif);
    font-size: clamp(38px, 4.5vw, 58px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.section h2 span {
    color: #8e7445;
}

/* =========================================================
   INTRO / ABOUT
========================================================= */

.intro-section {
    background: var(--ivory);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: start;
}

.section-heading h2 {
    max-width: 500px;
}

.intro-copy {
    max-width: 540px;
}

.intro-copy p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

.intro-copy p + p {
    margin-top: 18px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 28px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.text-link span {
    color: var(--gold);
    transition: transform var(--transition);
}

.text-link:hover span {
    transform: translateX(4px);
}

/* =========================================================
   INTRO IMAGE + CONTENT
========================================================= */

.intro-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 85px;
    align-items: center;
}

.intro-image-wrap {
    position: relative;
}

.intro-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 4.8;
    background: #ddd9d0;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.intro-badge {
    position: absolute;
    right: -18px;
    bottom: 28px;

    display: flex;
    align-items: center;
    gap: 13px;

    min-width: 185px;
    padding: 18px 20px;

    background: var(--navy);
    color: var(--white);

    box-shadow: 0 15px 35px rgba(8, 18, 30, 0.18);
}

.intro-badge strong {
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 27px;
    font-weight: 500;
}

.intro-badge span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    line-height: 1.45;
}

.intro-copy h2 {
    max-width: 540px;
    margin-top: 3px;

    font-family: var(--serif);
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.intro-copy > p {
    max-width: 590px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

.intro-copy > p:first-of-type {
    margin-top: 24px;
}

.intro-copy > p + p {
    margin-top: 15px;
}

.intro-points {
    margin-top: 27px;
}

.intro-point {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 13px;

    padding: 12px 0;
    border-top: 1px solid var(--border);
}

.intro-point:last-child {
    border-bottom: 1px solid var(--border);
}

.intro-point > span {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 12px;
}

.intro-point strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
}

.intro-point p {
    margin-top: 3px;
    color: var(--text-light);
    font-size: 11px;
    line-height: 1.55;
}

/* =========================================================
   PRACTICE AREAS
========================================================= */

.practice-section {
    background: #efede7;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.practice-card {
    position: relative;
    min-height: 310px;
    padding: 38px 34px;
    background: var(--ivory);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.practice-card:hover {
    z-index: 2;
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(12, 23, 35, 0.08);
}

.practice-number {
    position: absolute;
    top: 27px;
    right: 28px;
    color: #aaa394;
    font-family: var(--serif);
    font-size: 13px;
}

.practice-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border: 1px solid #c9c2b4;
    color: var(--gold);
    font-size: 18px;
}

.practice-card h3 {
    max-width: 260px;
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 500;
    line-height: 1.2;
}

.practice-card p {
    max-width: 310px;
    margin-top: 13px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

.card-link {
    display: inline-flex;
    gap: 7px;
    margin-top: 24px;
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
}

.card-link span {
    color: var(--gold);
}

/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-section {
    background: var(--navy);
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.why-item {
    padding: 35px 27px 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.why-item:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.why-number {
    display: block;
    margin-bottom: 28px;
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 15px;
}

.why-item h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
}

.why-item p {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.7;
}

/* =========================================================
   ATTORNEYS
========================================================= */

.attorneys-section {
    background: var(--ivory);
}

.attorneys-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.attorney-card {
    background: var(--white);
    border: 1px solid var(--border);
}

.attorney-image {
    aspect-ratio: 4 / 4.8;
    overflow: hidden;
    background: #d8d5ce;
}

.attorney-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.attorney-card:hover .attorney-image img {
    transform: scale(1.035);
}

.attorney-content {
    padding: 26px 25px 30px;
}

.attorney-content > span {
    color: #8e7445;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.attorney-content h3 {
    margin-top: 8px;
    font-family: var(--serif);
    font-size: 27px;
    font-weight: 500;
}

.attorney-content p {
    margin-top: 5px;
    color: var(--text-light);
    font-size: 13px;
}

/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials-section {
    background: #efede7;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testimonial-card {
    position: relative;
    padding: 42px 34px 34px;
    background: var(--ivory);
    border: 1px solid var(--border);
}

.quote-mark {
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 58px;
    line-height: 0.7;
}

.testimonial-card > p {
    margin-top: 20px;
    color: #4f5860;
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.65;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    margin-top: 28px;
}

.testimonial-author strong {
    font-size: 12px;
}

.testimonial-author span {
    margin-top: 3px;
    color: var(--text-light);
    font-size: 11px;
}

/* =========================================================
   CONSULTATION CTA
========================================================= */

.consultation-section {
    padding: 95px 0;
    background: var(--navy-dark);
    color: var(--white);
}

.consultation-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.consultation-inner h2 {
    max-width: 620px;
    font-family: var(--serif);
    font-size: clamp(40px, 4.5vw, 60px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.consultation-inner p {
    max-width: 600px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 15px;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 75px 0 28px;
    background: #09121c;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 0.8fr 1.1fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-logo .brand-name {
    font-size: 28px;
}

.footer-brand > p {
    max-width: 280px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 13px;
    line-height: 1.7;
}

.footer-cta {
    display: inline-block;
    margin-top: 22px;
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h4 {
    margin-bottom: 18px;
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-column a,
.footer-column p {
    margin-bottom: 9px;
    color: rgba(255, 255, 255, 0.57);
    font-size: 12px;
    line-height: 1.6;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-bottom > p {
    color: rgba(255, 255, 255, 0.42);
    font-size: 10px;
}

.legal-disclaimer {
    max-width: 480px;
    text-align: right;
    line-height: 1.6;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .main-nav {
        gap: 18px;
    }

    .header-cta {
        padding-inline: 14px;
    }

    .intro-grid {
        gap: 50px;
    }

    .practice-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-item:nth-child(3) {
        border-left: 1px solid rgba(255, 255, 255, 0.15);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 780px) {

    .container {
        width: min(100% - 36px, var(--container));
    }

    .site-header {
        padding: 19px 0;
    }

    /* -------------------------
       Mobile Navigation
    ------------------------- */

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;

        gap: 26px;
        margin: 0;
        padding: 40px;

        background: var(--navy-dark);
        box-shadow: -15px 0 40px rgba(0, 0, 0, 0.18);

        transition: right 0.35s ease;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav a {
        font-size: 15px;
    }

    .main-nav a.active::after {
        bottom: -6px;
    }

    .header-cta {
        display: none;
    }

    /* -------------------------
       Hamburger
    ------------------------- */

    .menu-toggle {
        display: flex;
        margin-left: auto;
        position: relative;
        z-index: 1100;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    /* -------------------------
       Hero
    ------------------------- */

    .hero {
        min-height: 650px;
        background-position: 62% center;
    }

    .hero-content {
        padding-top: 45px;
    }

    .hero h1 {
        font-size: clamp(43px, 11vw, 58px);
    }

    .hero p {
        font-size: 15px;
    }

    /* -------------------------
       General Sections
    ------------------------- */

    .section {
        padding: 80px 0;
    }

    .section-header {
        display: block;
        margin-bottom: 40px;
    }

    .section-header > p {
        margin-top: 20px;
    }

    /* -------------------------
       About / Intro
    ------------------------- */

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .intro-image {
        aspect-ratio: 4 / 4.6;
    }

    .intro-badge {
        right: 12px;
        bottom: 20px;
        min-width: 175px;
        padding: 16px 18px;
    }

    .intro-badge strong {
        font-size: 25px;
    }

    .intro-copy h2 {
        font-size: 40px;
    }

    .intro-copy > p {
        font-size: 14px;
    }

    .intro-point {
        grid-template-columns: 30px 1fr;
    }

    /* -------------------------
       Practice Areas
    ------------------------- */

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

    /* -------------------------
       Why Choose Us
    ------------------------- */

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

    .why-item,
    .why-item:first-child,
    .why-item:nth-child(3) {
        border-left: 1px solid rgba(255, 255, 255, 0.15);
    }

    /* -------------------------
       Attorneys
    ------------------------- */

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

    .attorney-image {
        aspect-ratio: 4 / 4.4;
    }

    /* -------------------------
       Testimonials
    ------------------------- */

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

    /* -------------------------
       Consultation
    ------------------------- */

    .consultation-inner {
        display: block;
    }

    .consultation-inner .btn {
        margin-top: 30px;
    }

    /* -------------------------
       Footer
    ------------------------- */

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

    .footer-bottom {
        display: block;
    }

    .legal-disclaimer {
        margin-top: 15px;
        text-align: left;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .container {
        width: min(100% - 28px, var(--container));
    }

    .brand-name {
        font-size: 22px;
    }

    /* -------------------------
       Hero
    ------------------------- */

    .hero {
        min-height: 680px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

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

    /* -------------------------
       Sections
    ------------------------- */

    .section {
        padding: 70px 0;
    }

    .section h2 {
        font-size: 38px;
    }

    /* -------------------------
       About
    ------------------------- */

    .intro-grid {
        gap: 38px;
    }

    .intro-image {
        aspect-ratio: 4 / 4.8;
    }

    .intro-badge {
        right: 8px;
        bottom: 15px;
        min-width: 165px;
        padding: 14px 15px;
    }

    .intro-badge strong {
        font-size: 23px;
    }

    .intro-badge span {
        font-size: 9px;
    }

    .intro-copy h2 {
        font-size: 38px;
    }

    /* -------------------------
       Practice
    ------------------------- */

    .practice-card {
        min-height: 285px;
        padding: 32px 25px;
    }

    /* -------------------------
       Why
    ------------------------- */

    .why-item {
        padding: 30px 22px;
    }

    /* -------------------------
       Consultation
    ------------------------- */

    .consultation-section {
        padding: 75px 0;
    }

    .consultation-inner h2 {
        font-size: 42px;
    }

    /* -------------------------
       Footer
    ------------------------- */

    .footer-bottom > p {
        font-size: 9px;
    }
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

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

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

/* =========================================================
   ABOUT PAGE
========================================================= */

/* ---------------------------------------------------------
   INNER PAGE HERO
--------------------------------------------------------- */

.inner-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(8, 20, 34, 0.94) 0%,
            rgba(12, 28, 45, 0.78) 55%,
            rgba(12, 28, 45, 0.62) 100%
        ),
        url("../assets/images/about-firm.jpg") center / cover no-repeat;

    color: var(--white);
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(5, 15, 25, 0.15),
            rgba(5, 15, 25, 0.08)
        );
}

.inner-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding-top: 65px;
}

.inner-hero h1 {
    max-width: 720px;

    font-family: var(--serif);
    font-size: clamp(48px, 5.5vw, 70px);
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: -0.035em;
}

.inner-hero p {
    max-width: 620px;
    margin-top: 22px;

    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   OUR STORY
--------------------------------------------------------- */

.story-section {
    background: var(--ivory);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 85px;
    align-items: center;
}

.story-content {
    max-width: 570px;
}

.story-content h2 {
    max-width: 540px;
    margin-top: 4px;

    font-family: var(--serif);
    font-size: clamp(40px, 4.2vw, 57px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.story-content > p {
    max-width: 550px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

.story-content > p:first-of-type {
    margin-top: 25px;
}

.story-content > p + p {
    margin-top: 16px;
}

.story-image-wrap {
    position: relative;
}

.story-image {
    overflow: hidden;
    aspect-ratio: 4 / 4.5;
    background: #ddd9d0;
}

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

.story-badge {
    position: absolute;
    left: -18px;
    bottom: 25px;

    display: flex;
    align-items: center;
    gap: 13px;

    min-width: 185px;
    padding: 18px 20px;

    background: var(--navy);
    color: var(--white);

    box-shadow: 0 15px 35px rgba(8, 18, 30, 0.18);
}

.story-badge strong {
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 27px;
    font-weight: 500;
}

.story-badge span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    line-height: 1.45;
}


/* ---------------------------------------------------------
   OUR APPROACH
--------------------------------------------------------- */

.approach-section {
    background: #efede7;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.approach-card {
    position: relative;
    min-height: 270px;
    padding: 35px 28px;

    background: var(--ivory);

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.approach-card:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(12, 23, 35, 0.07);
}

.approach-number {
    position: absolute;
    top: 22px;
    right: 24px;

    color: #aaa394;
    font-family: var(--serif);
    font-size: 12px;
}

.approach-icon {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    margin-bottom: 25px;

    border: 1px solid #c9c2b4;
    color: var(--gold);

    font-size: 17px;
}

.approach-card h3 {
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 500;
    line-height: 1.2;
}

.approach-card p {
    margin-top: 12px;

    color: var(--text-light);
    font-size: 13px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   MISSION & VALUES
--------------------------------------------------------- */

.mission-section {
    background: var(--ivory);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 100px;
    align-items: start;
}

.mission-content {
    padding-right: 35px;
    border-right: 1px solid var(--border);
}

.mission-content blockquote {
    max-width: 600px;
    margin-top: 15px;
    padding-left: 28px;

    border-left: 2px solid var(--gold);

    color: var(--navy);
    font-family: var(--serif);
    font-size: clamp(30px, 3.2vw, 44px);
    line-height: 1.25;
    font-weight: 500;
}

.values-content {
    max-width: 500px;
}

.value-list {
    margin-top: 12px;
}

.value-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;

    padding: 13px 0;

    border-top: 1px solid var(--border);
}

.value-item:last-child {
    border-bottom: 1px solid var(--border);
}

.value-number {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 12px;
}

.value-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
}

.value-item p {
    margin-top: 3px;
    color: var(--text-light);
    font-size: 11px;
    line-height: 1.55;
}


/* ---------------------------------------------------------
   ABOUT ATTORNEYS
--------------------------------------------------------- */

.about-attorneys-section {
    background: #efede7;
}


/* ---------------------------------------------------------
   ABOUT WHY SECTION
--------------------------------------------------------- */

.about-why-section {
    background: var(--navy);
    color: var(--white);
}

.about-why-section .why-grid {
    margin-top: 10px;
}


/* ---------------------------------------------------------
   ABOUT CTA
--------------------------------------------------------- */

.about-cta-section {
    background: var(--ivory);
}

.centered-cta {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}

.centered-cta h2 {
    margin-top: 3px;

    font-family: var(--serif);
    font-size: clamp(40px, 4.5vw, 58px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.centered-cta > p {
    max-width: 610px;
    margin: 20px auto 0;

    color: var(--text-light);
    font-size: 14px;
    line-height: 1.75;
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;

    margin-top: 30px;
}

.btn-outline-dark {
    border: 1px solid var(--navy);
    color: var(--navy);
}

.btn-outline-dark:hover {
    background: var(--navy);
    color: var(--white);
}

.centered-cta small {
    display: block;
    margin-top: 16px;

    color: #8a8c89;
    font-size: 10px;
}


/* =========================================================
   ABOUT PAGE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .story-grid {
        gap: 55px;
    }

    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-grid {
        gap: 55px;
    }

}


/* =========================================================
   ABOUT PAGE — MOBILE
========================================================= */

@media (max-width: 780px) {

    .inner-hero {
        min-height: 500px;
    }

    .inner-hero-content {
        padding-top: 50px;
    }

    .inner-hero h1 {
        font-size: clamp(42px, 10vw, 58px);
    }

    .inner-hero p {
        font-size: 14px;
    }


    /* Story */

    .story-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .story-content {
        max-width: none;
    }

    .story-content h2 {
        font-size: 40px;
    }

    .story-image {
        aspect-ratio: 4 / 4.7;
    }

    .story-badge {
        left: 12px;
        bottom: 18px;
    }


    /* Approach */

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

    .approach-card {
        min-height: 245px;
    }


    /* Mission */

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .mission-content {
        padding-right: 0;
        padding-bottom: 40px;

        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .mission-content blockquote {
        padding-left: 20px;
        font-size: 34px;
    }


    /* CTA */

    .centered-cta h2 {
        font-size: 40px;
    }

}


/* =========================================================
   ABOUT PAGE — SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .inner-hero {
        min-height: 520px;
    }

    .inner-hero h1 {
        font-size: 41px;
    }

    .inner-hero p {
        font-size: 13px;
    }

    .story-content h2 {
        font-size: 38px;
    }

    .story-badge {
        left: 8px;
        bottom: 14px;
        min-width: 165px;
        padding: 14px 15px;
    }

    .story-badge strong {
        font-size: 23px;
    }

    .story-badge span {
        font-size: 9px;
    }

    .approach-card {
        min-height: 235px;
        padding: 30px 24px;
    }

    .mission-content blockquote {
        font-size: 31px;
    }

    .centered-cta h2 {
        font-size: 38px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

/* =========================================================
   PRACTICE AREAS PAGE
========================================================= */

/* ---------------------------------------------------------
   PRACTICE HERO
--------------------------------------------------------- */

.practice-hero {
    background:
        linear-gradient(
            90deg,
            rgba(8, 20, 34, 0.94) 0%,
            rgba(12, 28, 45, 0.80) 55%,
            rgba(12, 28, 45, 0.62) 100%
        ),
        url("../assets/images/hero-law.jpg") center / cover no-repeat;
}

.practice-hero .inner-hero-content {
    max-width: 800px;
}

.practice-hero h1 {
    max-width: 760px;
}


/* ---------------------------------------------------------
   PRACTICE DETAIL SECTIONS
--------------------------------------------------------- */

.practice-detail-section {
    padding: 88px 0;

    background: var(--ivory);
}

.practice-detail-section.alternate {
    background: #efede7;
}

.practice-detail-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 90px;
    align-items: center;
}

.practice-detail-content {
    position: relative;
    max-width: 610px;
}

.practice-detail-number {
    position: absolute;
    top: -4px;
    left: -42px;

    color: #c4bfb4;
    font-family: var(--serif);
    font-size: 22px;
}

.practice-detail-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    margin-bottom: 22px;

    border: 1px solid #cfc8bb;
    color: var(--gold);

    font-size: 17px;
}

.practice-detail-content h2 {
    margin-top: 4px;

    font-family: var(--serif);
    font-size: clamp(38px, 4vw, 54px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.practice-detail-content > p {
    max-width: 560px;

    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

.practice-detail-content > p:first-of-type {
    margin-top: 22px;
}

.practice-detail-content > p + h4 {
    margin-top: 23px;
}

.practice-detail-content h4 {
    font-size: 12px;
    font-weight: 700;
}

.practice-detail-content h4 + p {
    margin-top: 5px;
}

.practice-detail-content .text-link {
    display: inline-flex;
    margin-top: 18px;
}


/* ---------------------------------------------------------
   WHAT WE HANDLE BOX
--------------------------------------------------------- */

.practice-detail-box {
    padding: 35px 38px;

    background: rgba(255, 255, 255, 0.72);

    border: 1px solid var(--border);

    box-shadow: 0 12px 30px rgba(12, 23, 35, 0.035);
}

.practice-detail-section.alternate .practice-detail-box {
    background: rgba(255, 255, 255, 0.78);
}

.practice-detail-box ul {
    margin-top: 18px;
}

.practice-detail-box li {
    position: relative;

    padding: 12px 0 12px 24px;

    border-top: 1px solid var(--border);

    color: var(--text-light);
    font-size: 12px;
    line-height: 1.5;
}

.practice-detail-box li:last-child {
    border-bottom: 1px solid var(--border);
}

.practice-detail-box li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 11px;

    width: 15px;
    height: 15px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #eee8dc;
    color: var(--gold);

    font-size: 8px;
    font-weight: 700;
}


/* ---------------------------------------------------------
   FEATURE IMAGE
--------------------------------------------------------- */

.practice-feature-image {
    margin-top: 70px;

    overflow: hidden;

    aspect-ratio: 16 / 6.2;

    background: #ddd9d0;
}

.practice-feature-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* ---------------------------------------------------------
   PRACTICE APPROACH
--------------------------------------------------------- */

.practice-approach-section {
    background: var(--navy);
    color: var(--white);
}

.practice-approach-section .section-header h2 {
    color: var(--white);
}

.practice-approach-section .section-header > p {
    color: rgba(255, 255, 255, 0.65);
}

.practice-approach-section .why-grid {
    margin-top: 10px;
}

.practice-approach-section .why-item {
    border-color: rgba(255, 255, 255, 0.12);
}

.practice-approach-section .why-item h3 {
    color: var(--white);
}

.practice-approach-section .why-item p {
    color: rgba(255, 255, 255, 0.62);
}

.practice-approach-section .why-number {
    color: var(--gold-light);
}


/* ---------------------------------------------------------
   PRACTICE CTA
--------------------------------------------------------- */

.practice-cta-section {
    background: var(--ivory);
}


/* =========================================================
   PRACTICE AREAS — TABLET
========================================================= */

@media (max-width: 1000px) {

    .practice-detail-grid {
        gap: 55px;
    }

    .practice-detail-number {
        position: static;
        margin-bottom: 8px;

        font-size: 14px;
    }

    .practice-feature-image {
        margin-top: 55px;
    }

}


/* =========================================================
   PRACTICE AREAS — MOBILE
========================================================= */

@media (max-width: 780px) {

    .practice-hero {
        min-height: 500px;
        background-position: center;
    }

    .practice-detail-section {
        padding: 75px 0;
    }

    .practice-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .practice-detail-content {
        max-width: none;
    }

    .practice-detail-number {
        position: static;

        margin-bottom: 12px;

        font-size: 15px;
    }

    .practice-detail-icon {
        margin-bottom: 20px;
    }

    .practice-detail-content h2 {
        font-size: 40px;
    }

    .practice-detail-content > p {
        font-size: 14px;
    }

    .practice-detail-box {
        padding: 30px 25px;
    }

    .practice-feature-image {
        margin-top: 45px;
        aspect-ratio: 16 / 8;
    }

}


/* =========================================================
   PRACTICE AREAS — SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .practice-hero {
        min-height: 520px;
    }

    .practice-detail-section {
        padding: 70px 0;
    }

    .practice-detail-content h2 {
        font-size: 37px;
    }

    .practice-detail-box {
        padding: 27px 22px;
    }

    .practice-detail-box li {
        padding-left: 22px;
    }

    .practice-feature-image {
        aspect-ratio: 4 / 2.5;
    }
}

/* =========================================================
   INSIGHTS PAGE
========================================================= */

/* ---------------------------------------------------------
   INSIGHTS HERO
--------------------------------------------------------- */

.insights-hero {
    background:
        linear-gradient(
            90deg,
            rgba(8, 20, 34, 0.95) 0%,
            rgba(12, 28, 45, 0.88) 55%,
            rgba(12, 28, 45, 0.72) 100%
        ),
        url("../assets/images/hero-law.jpg") center / cover no-repeat;
}

.insights-hero .inner-hero-content {
    max-width: 780px;
}

.insights-hero h1 {
    max-width: 720px;
}


/* ---------------------------------------------------------
   FEATURED ARTICLE
--------------------------------------------------------- */

.featured-insight-section {
    background: var(--ivory);
}

.featured-insight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: center;
}

.featured-image {
    overflow: hidden;
    aspect-ratio: 1.15 / 0.9;
    background: #ddd9d0;
}

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

.featured-content {
    max-width: 570px;
}

.featured-content h2 {
    margin-top: 5px;

    font-family: var(--serif);
    font-size: clamp(38px, 4vw, 54px);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.featured-content > p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.75;
}

.featured-content > p:first-of-type {
    margin-top: 22px;
}

.featured-content > p + p {
    margin-top: 10px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-top: 18px;

    color: #85877f;
    font-size: 10px;
}

.article-meta::before {
    content: "□";
    color: var(--gold);
    font-size: 9px;
}

.featured-content .btn {
    margin-top: 22px;
}


/* ---------------------------------------------------------
   CATEGORY NAVIGATION
--------------------------------------------------------- */

.insight-category-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    background: var(--white);
}

.insight-categories {
    min-height: 62px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

    overflow-x: auto;
    scrollbar-width: none;
}

.insight-categories::-webkit-scrollbar {
    display: none;
}

.insight-categories a {
    flex: 0 0 auto;

    padding: 8px 14px;

    color: var(--text-light);
    font-size: 10px;
    font-weight: 500;

    border-radius: 30px;

    transition:
        background var(--transition),
        color var(--transition);
}

.insight-categories a:hover {
    color: var(--navy);
    background: #f0ede6;
}

.insight-categories a.active {
    background: var(--navy);
    color: var(--white);
}


/* ---------------------------------------------------------
   ARTICLE GRID
--------------------------------------------------------- */

.article-grid-section {
    background: #efede7;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.article-card {
    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: var(--white);
    border: 1px solid var(--border);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(12, 23, 35, 0.08);
}

.article-image {
    overflow: hidden;
    aspect-ratio: 1.45 / 1;
    background: #ddd9d0;
}

.article-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.035);
}

.article-content {
    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 24px 24px 20px;
}

.article-category {
    color: var(--gold);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.article-content h3 {
    margin-top: 10px;

    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.25;
}

.article-content > p {
    margin-top: 12px;

    color: var(--text-light);
    font-size: 11px;
    line-height: 1.7;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;

    margin-top: auto;
    padding-top: 20px;

    border-top: 1px solid var(--border);

    color: #85877f;
    font-size: 9px;
}

.article-footer a {
    color: var(--navy);
    font-weight: 600;
    white-space: nowrap;
}

.article-footer a:hover {
    color: var(--gold);
}


/* ---------------------------------------------------------
   INFORMATION / PERSPECTIVE
--------------------------------------------------------- */

.insight-perspective-section {
    background: var(--white);
}

.insight-perspective-section .centered-cta {
    max-width: 720px;
}

.insight-perspective-section h2 {
    margin-top: 5px;

    font-family: var(--serif);
    font-size: clamp(38px, 4vw, 54px);
    font-weight: 500;
    line-height: 1.12;
}

.insight-perspective-section p {
    max-width: 620px;
    margin: 20px auto 0;

    color: var(--text-light);
    font-size: 13px;
    line-height: 1.75;
}

.insight-perspective-section .text-link {
    display: inline-flex;
    margin-top: 20px;
}


/* ---------------------------------------------------------
   INSIGHTS CTA
--------------------------------------------------------- */

.insights-cta-section {
    background: #efede7;
}

.insights-cta-section .centered-cta {
    max-width: 720px;
}

.insights-cta-section h2 {
    margin-top: 5px;

    font-family: var(--serif);
    font-size: clamp(40px, 4.3vw, 57px);
    font-weight: 500;
    line-height: 1.1;
}

.insights-cta-section p {
    max-width: 600px;
    margin: 18px auto 0;

    color: var(--text-light);
    font-size: 13px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   LEGAL DISCLAIMER
--------------------------------------------------------- */

.insight-disclaimer {
    padding: 22px 0;

    background: var(--white);

    border-top: 1px solid var(--border);
}

.insight-disclaimer p {
    max-width: 850px;
    margin-inline: auto;

    text-align: center;

    color: #85877f;
    font-size: 9px;
    line-height: 1.65;
}


/* =========================================================
   INSIGHTS — TABLET
========================================================= */

@media (max-width: 1000px) {

    .featured-insight {
        gap: 45px;
    }

    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-content h3 {
        font-size: 20px;
    }

}


/* =========================================================
   INSIGHTS — MOBILE
========================================================= */

@media (max-width: 780px) {

    .insights-hero {
        min-height: 500px;
        background-position: center;
    }

    /* Featured */

    .featured-insight {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .featured-image {
        aspect-ratio: 1.2 / 0.9;
    }

    .featured-content {
        max-width: none;
    }

    .featured-content h2 {
        font-size: 40px;
    }

    .featured-content > p {
        font-size: 14px;
    }

    /* Categories */

    .insight-category-section {
        overflow: hidden;
    }

    .insight-categories {
        justify-content: flex-start;
        padding: 8px 0;
    }

    /* Articles */

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

    .article-image {
        aspect-ratio: 1.5 / 1;
    }

    .article-content {
        padding: 25px 24px 22px;
    }

    .article-content h3 {
        font-size: 23px;
    }

    .article-content > p {
        font-size: 12px;
    }

    /* Perspective */

    .insight-perspective-section h2 {
        font-size: 40px;
    }

    /* CTA */

    .insights-cta-section h2 {
        font-size: 40px;
    }

}


/* =========================================================
   INSIGHTS — SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .insights-hero {
        min-height: 520px;
    }

    .featured-content h2 {
        font-size: 37px;
    }

    .featured-content .btn {
        width: 100%;
    }

    .article-image {
        aspect-ratio: 1.45 / 1;
    }

    .article-content {
        padding: 23px 21px 20px;
    }

    .article-content h3 {
        font-size: 21px;
    }

    .insight-perspective-section h2 {
        font-size: 37px;
    }

    .insights-cta-section h2 {
        font-size: 37px;
    }

    .insight-disclaimer p {
        font-size: 8px;
    }

}

/* =========================================================
   CONTACT PAGE
========================================================= */

/* ---------------------------------------------------------
   CONTACT HERO
--------------------------------------------------------- */

.contact-hero {
    background:
        linear-gradient(
            90deg,
            rgba(8, 20, 34, 0.96) 0%,
            rgba(12, 28, 45, 0.90) 55%,
            rgba(12, 28, 45, 0.78) 100%
        ),
        url("../assets/images/hero-law.jpg") center / cover no-repeat;
}

.contact-hero .inner-hero-content {
    max-width: 760px;
}


/* ---------------------------------------------------------
   CONSULTATION
--------------------------------------------------------- */

.contact-consultation {
    background: var(--ivory);
}

.consultation-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: start;
}

.consultation-intro {
    max-width: 500px;
    padding-top: 20px;
}

.consultation-intro h2 {
    margin-top: 5px;

    font-family: var(--serif);
    font-size: clamp(40px, 4vw, 54px);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.consultation-intro > p {
    margin-top: 20px;

    color: var(--text-light);
    font-size: 13px;
    line-height: 1.8;
}

.contact-benefits {
    margin-top: 28px;
}

.contact-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 13px;

    color: var(--text-light);
    font-size: 11px;
}

.contact-benefits li span {
    width: 18px;
    height: 18px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border-radius: 50%;
    background: #eee8dc;

    color: var(--gold);
    font-size: 8px;
}


/* ---------------------------------------------------------
   FORM CARD
--------------------------------------------------------- */

.consultation-form-card {
    padding: 32px;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 5px;

    box-shadow: 0 15px 35px rgba(12, 23, 35, 0.06);
}

.form-heading h3 {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
}

.form-heading p {
    margin-top: 5px;

    color: #85877f;
    font-size: 10px;
}

#consultationForm {
    margin-top: 25px;
}

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

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;

    color: var(--navy);

    font-size: 9px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 12px 13px;

    border: 1px solid #d8dce0;
    border-radius: 3px;

    background: #fff;

    color: var(--navy);

    font-family: var(--sans);
    font-size: 11px;

    outline: none;

    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a5a7a4;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);

    box-shadow: 0 0 0 3px rgba(185, 148, 76, 0.10);
}

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

.form-note {
    display: flex;
    align-items: center;
    gap: 8px;

    margin: 2px 0 18px;

    color: #85877f;
    font-size: 9px;
}

.form-check {
    width: 18px;
    height: 18px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border-radius: 50%;

    background: #e9f4e9;
    color: #299447;

    font-size: 9px;
    font-weight: 700;
}

.form-submit {
    width: 100%;
}


/* ---------------------------------------------------------
   CONTACT INFORMATION
--------------------------------------------------------- */

.contact-information-section {
    background: #efede7;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.contact-info-card {
    min-height: 145px;

    padding: 22px 20px;

    background: var(--white);

    border: 1px solid var(--border);
}

.contact-info-icon {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    margin-bottom: 15px;

    background: var(--navy);
    color: var(--gold);

    font-size: 11px;
}

.contact-info-label {
    display: block;

    margin-bottom: 8px;

    color: var(--navy);

    font-family: var(--serif);
    font-size: 15px;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text-light);

    font-size: 10px;
    line-height: 1.65;
}

.contact-info-card a:hover {
    color: var(--gold);
}


/* ---------------------------------------------------------
   OFFICE MAP
--------------------------------------------------------- */

.office-map-section {
    background: var(--white);
}

.office-map {
    position: relative;

    min-height: 310px;

    display: grid;
    place-items: center;

    overflow: hidden;

    background: var(--navy);

    border-radius: 6px;
}

.map-grid {
    position: absolute;
    inset: 0;

    opacity: 0.18;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        );

    background-size: 42px 42px;
}

.map-content {
    position: relative;
    z-index: 2;

    text-align: center;

    color: var(--white);
}

.map-marker {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    margin: 0 auto 18px;

    border-radius: 50%;

    background: rgba(185, 148, 76, 0.16);
    color: var(--gold-light);

    font-size: 17px;
}

.map-content .eyebrow {
    color: var(--gold-light);
}

.map-content p {
    margin-top: 7px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 10px;
}


/* ---------------------------------------------------------
   CONTACT CONFIDENCE
--------------------------------------------------------- */

.contact-confidence-section {
    background: var(--navy);
    color: var(--white);
}

.contact-confidence-section .section-header h2 {
    color: var(--white);
}

.contact-confidence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;

    margin-top: 45px;
}

.confidence-item {
    padding: 0 32px;

    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.confidence-item:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.confidence-icon {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    margin-bottom: 18px;

    border: 1px solid rgba(255, 255, 255, 0.13);

    color: var(--gold-light);

    font-size: 12px;
}

.confidence-item h3 {
    color: var(--white);

    font-family: var(--serif);
    font-size: 19px;
    font-weight: 500;
}

.confidence-item p {
    margin-top: 9px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 10px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   FAQ
--------------------------------------------------------- */

.faq-section {
    background: var(--white);
}

.faq-container {
    max-width: 820px;
}

.faq-list {
    margin-top: 40px;
}

.faq-item {
    border: 1px solid var(--border);
    border-bottom: 0;
}

.faq-item:last-child {
    border-bottom: 1px solid var(--border);
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 25px;

    padding: 18px 20px;

    cursor: pointer;

    color: var(--navy);

    font-size: 11px;
    font-weight: 600;

    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary span {
    color: var(--gold);

    font-size: 15px;

    transition: transform var(--transition);
}

.faq-item[open] summary span {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 20px;
}

.faq-answer p {
    max-width: 700px;

    color: var(--text-light);

    font-size: 10px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   FINAL CTA
--------------------------------------------------------- */

.contact-final-cta {
    background: #efede7;
}

.contact-final-cta .centered-cta {
    max-width: 720px;
}

.contact-final-cta h2 {
    margin-top: 5px;

    font-family: var(--serif);
    font-size: clamp(40px, 4vw, 56px);
    font-weight: 500;
    line-height: 1.1;
}

.contact-final-cta p {
    max-width: 600px;
    margin: 18px auto 0;

    color: var(--text-light);

    font-size: 13px;
    line-height: 1.75;
}

.contact-final-cta .btn {
    margin-top: 24px;
}

.contact-final-cta small {
    display: block;

    margin-top: 12px;

    color: #85877f;

    font-size: 9px;
}


/* ---------------------------------------------------------
   DISCLAIMER
--------------------------------------------------------- */

.contact-disclaimer {
    padding: 22px 0;

    background: var(--white);

    border-top: 1px solid var(--border);
}

.contact-disclaimer p {
    max-width: 850px;
    margin: auto;

    text-align: center;

    color: #85877f;

    font-size: 9px;
    line-height: 1.65;
}


/* =========================================================
   CONTACT — TABLET
========================================================= */

@media (max-width: 1000px) {

    .consultation-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .consultation-intro {
        max-width: 700px;
        padding-top: 0;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   CONTACT — MOBILE
========================================================= */

@media (max-width: 780px) {

    .contact-hero {
        min-height: 500px;
        background-position: center;
    }

    .consultation-grid {
        gap: 40px;
    }

    .consultation-intro h2 {
        font-size: 40px;
    }

    .consultation-form-card {
        padding: 25px 22px;
    }

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

    .contact-info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-info-card {
        min-height: 150px;
    }

    .office-map {
        min-height: 270px;
    }

    .contact-confidence-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .confidence-item,
    .confidence-item:last-child {
        padding: 28px 0;

        border-left: 0;
        border-right: 0;

        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .confidence-item:first-child {
        border-top: 0;
    }

    .faq-item summary {
        padding: 17px;
    }

    .contact-final-cta h2 {
        font-size: 40px;
    }

}


/* =========================================================
   CONTACT — SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .contact-hero {
        min-height: 520px;
    }

    .consultation-intro h2 {
        font-size: 37px;
    }

    .consultation-form-card {
        padding: 23px 18px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        min-height: auto;
    }

    .office-map {
        min-height: 240px;
    }

    .contact-final-cta h2 {
        font-size: 37px;
    }

    .contact-final-cta .btn {
        width: 100%;
    }

    .faq-item summary {
        font-size: 10px;
    }

    .contact-disclaimer p {
        font-size: 8px;
    }

}
/* =========================================================
   CONTACT PAGE — TYPOGRAPHY READABILITY FIX
========================================================= */

/* Main consultation text */

.consultation-intro > p {
    font-size: 15px;
    line-height: 1.8;
}

.contact-benefits li {
    font-size: 12px;
    line-height: 1.6;
}


/* Form */

.form-heading p {
    font-size: 11px;
    line-height: 1.6;
}

.form-group label {
    font-size: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-size: 12px;
}

.form-note {
    font-size: 10px;
}


/* Contact information */

.contact-info-card p,
.contact-info-card a {
    font-size: 12px;
    line-height: 1.7;
}


/* Map */

.map-content p {
    font-size: 11px;
}


/* Why contact us */

.confidence-item p {
    font-size: 12px;
    line-height: 1.7;
}


/* FAQ */

.faq-item summary {
    font-size: 12px;
}

.faq-answer p {
    font-size: 11px;
    line-height: 1.75;
}


/* Final CTA */

.contact-final-cta p {
    font-size: 14px;
    line-height: 1.75;
}

.contact-final-cta small {
    font-size: 10px;
}


/* Disclaimer */

.contact-disclaimer p {
    font-size: 10px;
    line-height: 1.7;
}


/* Footer readability */

.site-footer p,
.site-footer a {
    font-size: 11px;
}

/* =========================================================
   CONTACT PAGE — FINAL READABILITY PASS
========================================================= */

/* ---------------------------------------------------------
   CONSULTATION INTRO
--------------------------------------------------------- */

.consultation-intro > p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-light);
}

.contact-benefits li {
    font-size: 12px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   FORM
--------------------------------------------------------- */

.form-heading p {
    font-size: 11px;
    line-height: 1.65;
}

.form-group label {
    font-size: 10px;
    line-height: 1.4;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-size: 12px;
    line-height: 1.5;
}

.form-note {
    font-size: 10px;
    line-height: 1.5;
}


/* ---------------------------------------------------------
   CONTACT INFORMATION
--------------------------------------------------------- */

.contact-info-label {
    font-size: 16px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 12px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   MAP
--------------------------------------------------------- */

.map-content p {
    font-size: 11px;
    line-height: 1.6;
}


/* ---------------------------------------------------------
   WHY CONTACT US
--------------------------------------------------------- */

.confidence-item h3 {
    font-size: 20px;
}

.confidence-item p {
    font-size: 12px;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   FAQ
--------------------------------------------------------- */

.faq-item summary {
    font-size: 12px;
    line-height: 1.5;
}

.faq-answer p {
    font-size: 12px;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   FINAL CTA
--------------------------------------------------------- */

.contact-final-cta p {
    font-size: 14px;
    line-height: 1.8;
}

.contact-final-cta small {
    font-size: 10px;
    line-height: 1.5;
}


/* ---------------------------------------------------------
   DISCLAIMER
--------------------------------------------------------- */

.contact-disclaimer p {
    font-size: 10px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */

.site-footer p,
.site-footer a {
    font-size: 11px;
    line-height: 1.7;
}

.site-footer h4 {
    font-size: 10px;
}


/* =========================================================
   CONTACT PAGE — MOBILE READABILITY
========================================================= */

@media (max-width: 780px) {

    .consultation-intro > p {
        font-size: 15px;
    }

    .contact-benefits li {
        font-size: 12px;
    }

    .contact-info-card p,
    .contact-info-card a {
        font-size: 12px;
    }

    .confidence-item p {
        font-size: 12px;
    }

    .faq-item summary {
        font-size: 12px;
    }

    .faq-answer p {
        font-size: 12px;
    }

    .contact-final-cta p {
        font-size: 14px;
    }

    .site-footer p,
    .site-footer a {
        font-size: 11px;
    }
}
/* =========================================================
   CONTACT — FINAL CONTRAST FIX
========================================================= */

.contact-consultation .consultation-intro h2 {
    color: var(--navy);
}

.contact-consultation .consultation-intro > p {
    color: var(--text-light);
}

.contact-consultation .contact-benefits li {
    color: var(--text-light);
}


/* Slightly improve small supporting text */

.contact-info-card p,
.contact-info-card a {
    font-size: 12px;
    line-height: 1.75;
}

.map-content p {
    font-size: 11px;
    line-height: 1.7;
}

.faq-item summary {
    font-size: 12px;
}

.site-footer p,
.site-footer a {
    font-size: 11px;
    line-height: 1.7;
}


/* =========================================================
   GLOBAL TYPOGRAPHY — READABILITY & CONTRAST PASS
========================================================= */

:root {
    --text-light: #59636d;
}

/* Home / About intro copy */
.intro-copy > p,
.story-content > p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-light);
}

.intro-point strong {
    font-size: 13px;
}

.intro-point p,
.value-item p {
    font-size: 12px;
    line-height: 1.7;
}

.intro-point > span,
.value-number {
    font-size: 13px;
}

/* Practice cards */
.practice-number {
    top: 25px;
    right: 25px;
    color: #958e81;
    font-size: 15px;
    font-weight: 500;
}

.practice-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 27px;
    border-color: #bdb5a6;
    color: #a17e3f;
    font-size: 20px;
}

.practice-card p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-light);
}

.card-link {
    font-size: 12px;
}

/* Why / approach */
.why-number {
    font-size: 14px;
}

.why-item p,
.approach-card p {
    font-size: 14px;
    line-height: 1.75;
}

/* Attorney / testimonial supporting text */
.attorney-content p {
    font-size: 14px;
}

.testimonial-author strong {
    font-size: 13px;
}

.testimonial-author span {
    font-size: 12px;
}

/* Practice detail page */
.practice-detail-number {
    color: #9a9284;
    font-size: 18px;
}

.practice-detail-content > p {
    font-size: 15px;
    line-height: 1.85;
}

.practice-detail-content h4 {
    font-size: 13px;
}

.practice-detail-box li {
    font-size: 13px;
    line-height: 1.65;
}

/* Insights page */
.featured-content > p {
    font-size: 15px;
    line-height: 1.8;
}

.insight-categories a {
    font-size: 11px;
}

.article-content > p {
    font-size: 13px;
    line-height: 1.75;
}

.article-footer {
    font-size: 10px;
}

/* Contact / form */
.contact-benefits li {
    font-size: 13px;
}

.form-heading p {
    font-size: 12px;
}

.form-group label {
    font-size: 11px;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-size: 13px;
}

.form-note {
    font-size: 11px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 13px;
}

.faq-item summary {
    font-size: 13px;
}

.faq-answer p {
    font-size: 13px;
}

/* =========================================================
   FOOTER — STRONGER READABILITY
========================================================= */

.footer-brand > p {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.70);
}

.footer-cta {
    font-size: 12px;
}

.footer-column h4 {
    font-size: 11px;
    margin-bottom: 20px;
}

.footer-column a,
.footer-column p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.70);
}

.footer-bottom > p {
    font-size: 11px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.52);
}

/* Mobile */
@media (max-width: 780px) {
    .intro-copy > p,
    .story-content > p,
    .practice-detail-content > p,
    .featured-content > p {
        font-size: 15px;
    }

    .practice-card p {
        font-size: 14px;
    }

    .why-item p,
    .approach-card p,
    .article-content > p {
        font-size: 13px;
    }

    .footer-brand > p {
        font-size: 13px;
    }

    .footer-column a,
    .footer-column p {
        font-size: 13px;
    }

    .footer-column h4 {
        font-size: 11px;
    }

    .footer-bottom > p {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .intro-copy > p,
    .story-content > p,
    .practice-detail-content > p,
    .featured-content > p {
        font-size: 15px;
    }

    .practice-icon {
        width: 46px;
        height: 46px;
    }

    .practice-number {
        font-size: 14px;
    }

    .footer-brand > p {
        font-size: 13px;
    }

    .footer-column a,
    .footer-column p {
        font-size: 13px;
    }
}

/* =========================================================
   PREMIUM CONSULTATION FORM
========================================================= */

.consultation-form-card {
    position: relative;

    padding: 38px 40px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fbfaf7 100%
        );

    border: 1px solid rgba(20, 38, 55, 0.10);
    border-radius: 6px;

    box-shadow:
        0 20px 55px rgba(12, 23, 35, 0.08),
        0 2px 8px rgba(12, 23, 35, 0.03);
}


/* ---------------------------------------------------------
   FORM HEADER
--------------------------------------------------------- */

.form-heading {
    padding-bottom: 22px;

    border-bottom: 1px solid rgba(20, 38, 55, 0.09);
}

.form-heading h3 {
    color: var(--navy);

    font-family: var(--serif);
    font-size: 29px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.form-heading p {
    max-width: 470px;

    margin-top: 8px;

    color: #72766f;

    font-size: 11px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   FORM SPACING
--------------------------------------------------------- */

#consultationForm {
    margin-top: 26px;
}

.form-row {
    gap: 17px;
}

.form-group {
    margin-bottom: 19px;
}


/* ---------------------------------------------------------
   LABELS
--------------------------------------------------------- */

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #273848;

    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.035em;
}


/* ---------------------------------------------------------
   INPUTS
--------------------------------------------------------- */

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding: 14px 15px;

    border: 1px solid #d9d8d2;
    border-radius: 4px;

    background: rgba(255, 255, 255, 0.82);

    color: var(--navy);

    font-family: var(--sans);
    font-size: 12px;
    line-height: 1.5;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


/* Placeholder */

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9a9b96;
}


/* Focus */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: var(--gold);

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(185, 148, 76, 0.09),
        0 4px 12px rgba(12, 23, 35, 0.035);
}


/* ---------------------------------------------------------
   SELECT
--------------------------------------------------------- */

.form-group select {
    cursor: pointer;

    appearance: none;

    padding-right: 42px;

    background-image:
        linear-gradient(45deg, transparent 50%, #7d8079 50%),
        linear-gradient(135deg, #7d8079 50%, transparent 50%);

    background-position:
        calc(100% - 17px) 50%,
        calc(100% - 12px) 50%;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;
}


/* ---------------------------------------------------------
   TEXTAREA
--------------------------------------------------------- */

.form-group textarea {
    min-height: 145px;

    resize: vertical;

    line-height: 1.65;
}


/* ---------------------------------------------------------
   CONFIDENTIALITY NOTE
--------------------------------------------------------- */

.form-note {

    display: flex;
    align-items: center;
    gap: 9px;

    margin: 2px 0 20px;

    padding: 10px 12px;

    border: 1px solid rgba(41, 148, 71, 0.10);
    border-radius: 4px;

    background: rgba(233, 244, 233, 0.55);

    color: #626b63;

    font-size: 10px;
    line-height: 1.5;
}

.form-check {
    width: 20px;
    height: 20px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border-radius: 50%;

    background: #e3f0e4;

    color: #299447;

    font-size: 9px;
    font-weight: 700;
}


/* ---------------------------------------------------------
   SUBMIT BUTTON
--------------------------------------------------------- */

.form-submit {
    position: relative;

    width: 100%;

    min-height: 51px;

    border-radius: 3px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.015em;

    box-shadow:
        0 8px 18px rgba(12, 23, 35, 0.10);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.form-submit:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(12, 23, 35, 0.15);
}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 780px) {

    .consultation-form-card {
        padding: 30px 25px;
    }

    .form-heading h3 {
        font-size: 27px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 13px 14px;
    }

    .form-group textarea {
        min-height: 135px;
    }

    .form-submit {
        min-height: 50px;
    }
}


@media (max-width: 480px) {

    .consultation-form-card {
        padding: 26px 20px;
    }

    .form-heading h3 {
        font-size: 25px;
    }

    .form-heading p {
        font-size: 10px;
    }

    .form-group label {
        font-size: 10px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 12px;
    }

    .form-note {
        align-items: flex-start;

        font-size: 9px;
    }
}
