/* =========================================================
   FLETCHER, LOWE & CHENEVERT
   MAIN STYLESHEET
   ========================================================= */

:root {
    --navy: #101820;
    --navy-light: #17242f;
    --blue: #233f5c;
    --gold: #b79a64;
    --gold-light: #d2bd92;
    --cream: #f2efe8;
    --white: #ffffff;
    --text: #17191b;
    --gray: #73777c;
    --border: rgba(20, 30, 38, 0.15);
}


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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

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

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

button {
    font: inherit;
}


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

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 4.5vw;

    z-index: 1000;

    color: white;

    transition:
        background 0.4s ease,
        height 0.4s ease,
        box-shadow 0.4s ease;
}

.site-header.scrolled {
    height: 76px;

    background: rgba(16, 24, 32, 0.96);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   LOGO
   ========================================================= */

.logo {
    display: flex;
    align-items: center;
    gap: 16px;

    position: relative;
    z-index: 1001;
}

.logo-mark {
    font-family: 'Libre Caslon Display', serif;
    font-size: 32px;
    letter-spacing: -3px;
}

.logo-text {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}

.logo-text small {
    display: block;
    margin-top: 4px;
    font-size: 10px;
    font-weight: 400;
    opacity: 0.75;
}


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

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.desktop-nav a {
    position: relative;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--gold-light);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}


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

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.header-phone i {
    color: var(--gold-light);
}


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

.menu-button {
    display: none;
    width: 38px;
    height: 38px;
    background: none;
    border: 0;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.menu-button span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 6px auto;
    background: white;
    transition: 0.3s ease;
}


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

.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}

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

.mobile-menu-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 8vw;
}

.mobile-menu a {
    font-family: 'Libre Caslon Display', serif;
    font-size: clamp(36px, 8vw, 64px);
    color: white;
    margin: 6px 0;
}

.mobile-phone {
    margin-top: 40px !important;
    color: var(--gold-light) !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 22px !important;
}


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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

.hero-image {
    position: absolute;
    inset: 0;

    background-image: url("hero-attorneys.jpg");
    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;

    transform: scale(1.06);

    animation: heroZoom 12s ease forwards;
}

@keyframes heroZoom {
    to {
        transform: scale(1);
    }
}

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

    background:
        linear-gradient(
            90deg,
            rgba(9, 16, 22, 0.94) 0%,
            rgba(9, 16, 22, 0.78) 35%,
            rgba(9, 16, 22, 0.35) 70%,
            rgba(9, 16, 22, 0.15) 100%
        );
}

.hero-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 7px;
    height: 100%;
    background: var(--gold);
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 1500px;
    margin: auto;
    padding: 150px 7vw 100px;
    color: white;
    z-index: 3;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.hero-eyebrow span {
    width: 45px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    max-width: 880px;
    font-family: 'Libre Caslon Display', serif;
    font-size: clamp(56px, 6.8vw, 110px);
    line-height: 0.94;
    letter-spacing: -3px;
    font-weight: 400;
}

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

.hero-description {
    max-width: 600px;
    margin-top: 35px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 42px;
}


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

.primary-button {
    min-width: 190px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 22px;
    background: var(--gold);
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.primary-button:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.secondary-button {
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 6px;
    transition:
        border-color 0.3s ease,
        color 0.3s ease;
}

.secondary-button:hover {
    color: var(--gold-light);
    border-color: var(--gold-light);
}


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

.hero-contact-panel {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 5;
    width: min(420px, 34vw);
    padding: 30px 38px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--navy);
}

.hero-contact-panel span {
    display: block;
    margin-bottom: 5px;
    color: var(--gray);
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.hero-contact-panel a {
    display: block;
    font-family: 'Libre Caslon Display', serif;
    font-size: clamp(28px, 3vw, 42px);
}

.hero-contact-panel small {
    display: block;
    margin-top: 7px;
    color: var(--gray);
}


/* =========================================================
   SCROLL INDICATOR
   ========================================================= */

.scroll-indicator {
    position: absolute;
    left: 4vw;
    bottom: 45px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    position: relative;
    width: 70px;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.25);
}

.scroll-line div {
    position: absolute;
    width: 40%;
    height: 100%;
    background: white;
    animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
    0% {
        left: -40%;
    }

    100% {
        left: 110%;
    }
}


/* =========================================================
   GLOBAL SECTIONS
   ========================================================= */

.section-container {
    width: min(1400px, 88vw);
    margin: auto;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-label span {
    color: var(--gold);
}

.section-label.light {
    color: rgba(255, 255, 255, 0.65);
}


/* =========================================================
   OUR FIRM
   ========================================================= */

.intro-section {
    padding: 140px 0;
    background: var(--cream);
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.65fr 2fr;
    gap: 80px;
}

.intro-copy {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 80px;
}

.intro-copy h2,
.section-heading h2,
.practice-heading h2,
.contact-copy h2 {
    font-family: 'Libre Caslon Display', serif;
    font-size: clamp(48px, 5vw, 78px);
    line-height: 1.04;
    font-weight: 400;
    letter-spacing: -2px;
}

.intro-copy h2 em,
.section-heading h2 em,
.practice-heading h2 em,
.contact-copy h2 em {
    color: var(--gold);
    font-style: italic;
}

.intro-body {
    padding-top: 10px;
}

.intro-body p {
    margin-bottom: 22px;
    color: #5f6469;
    font-size: 15px;
    line-height: 1.8;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.text-link i {
    transition: transform 0.3s ease;
}

.text-link:hover i {
    transform: translateX(6px);
}


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

.attorneys-section {
    padding: 140px 0;
    background: var(--navy);
    color: white;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 70px;
}

.section-heading .section-label {
    align-self: flex-start;
}

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

.attorney-card {
    position: relative;
    overflow: hidden;
    background: var(--navy-light);
}

.attorney-image {
    position: relative;
    aspect-ratio: 0.86;
    overflow: hidden;
    background: #242b31;
}

.attorney-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(100%);
    transition:
        transform 0.8s cubic-bezier(.2, .7, .2, 1),
        filter 0.6s ease;
}

.attorney-card:hover .attorney-image img {
    transform: scale(1.045);
    filter: grayscale(20%);
}

.attorney-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(16, 24, 32, 0.55),
            transparent 45%
        );
}

.attorney-info {
    position: relative;
    padding: 28px 28px 32px;
}

.attorney-number {
    position: absolute;
    right: 28px;
    top: 30px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
}

.attorney-info h3 {
    font-family: 'Libre Caslon Display', serif;
    font-size: 32px;
    font-weight: 400;
}

.attorney-info p {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.attorney-info a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.attorney-info a i {
    transition: transform 0.3s ease;
}

.attorney-info a:hover i {
    transform: translateX(6px);
}


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

.practice-section {
    padding: 140px 0;
    background: white;
}

.practice-heading {
    display: grid;
    grid-template-columns: 1.5fr 0.75fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 80px;
}

.practice-heading .section-label {
    margin-bottom: 35px;
}

.practice-heading > p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   SERVICE CARDS
   ========================================================= */

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

.service-card {
    position: relative;
    min-height: 390px;
    padding: 42px 35px;
    display: flex;
    flex-direction: column;
    background: var(--cream);
    border: 1px solid rgba(16, 24, 32, 0.10);
    overflow: hidden;
    transition:
        transform 0.4s ease,
        background 0.4s ease,
        color 0.4s ease,
        box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    background: var(--navy);
    color: white;
    box-shadow: 0 25px 60px rgba(16, 24, 32, 0.16);
}

.service-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 45px;
    border-radius: 50%;
    background: var(--navy);
    color: white;
    font-size: 23px;
    transition:
        background 0.4s ease,
        color 0.4s ease,
        transform 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.08);
}

.service-number {
    position: absolute;
    top: 42px;
    right: 35px;
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 1px;
}

.service-card h3 {
    margin-bottom: 18px;
    font-family: 'Libre Caslon Display', serif;
    font-size: 31px;
    line-height: 1.1;
    font-weight: 400;
}

.service-card p {
    color: #696e73;
    font-size: 14px;
    line-height: 1.75;
    transition: color 0.4s ease;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.68);
}

.service-card a {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 28px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card a i {
    transition: transform 0.3s ease;
}

.service-card:hover a i {
    transform: translateX(6px);
}


/* =========================================================
   STATEMENT
   ========================================================= */

.statement-section {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

.statement-background {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(10, 17, 24, 0.78),
            rgba(10, 17, 24, 0.78)
        ),
        url("hero-attorneys.jpg")
        center / cover
        no-repeat;

    background-attachment: fixed;
}

.statement-content {
    position: relative;
    width: min(1200px, 86vw);
    margin: auto;
    text-align: center;
    color: white;
}

.statement-content > span {
    display: block;
    margin-bottom: 30px;
    color: var(--gold-light);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.statement-content h2 {
    font-family: 'Libre Caslon Display', serif;
    font-size: clamp(45px, 5.5vw, 80px);
    line-height: 1.1;
    font-weight: 400;
}

.statement-content h2 em {
    color: var(--gold-light);
}


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

.contact-section {
    padding: 140px 0;
    background: var(--navy);
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    align-items: center;
    gap: 100px;
}

.contact-copy .section-label {
    margin-bottom: 35px;
}

.contact-copy p {
    max-width: 500px;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 15px;
    line-height: 1.8;
}

.contact-card {
    padding: 50px;
    background: white;
    color: var(--navy);
}

.contact-card-label {
    display: block;
    color: var(--gray);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.large-phone {
    display: block;
    margin-top: 12px;
    font-family: 'Libre Caslon Display', serif;
    font-size: clamp(45px, 5vw, 66px);
    line-height: 1;
}

.contact-divider {
    height: 1px;
    margin: 35px 0;
    background: var(--border);
}

.contact-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

.contact-row i {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.contact-row:hover i {
    transform: translateX(5px);
}


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

footer {
    padding: 70px 6vw 30px;
    background: #0a1117;
    color: white;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-mark {
    font-family: 'Libre Caslon Display', serif;
    font-size: 40px;
    letter-spacing: -4px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}

.footer-links a {
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact span {
    display: block;
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-contact a {
    display: block;
    margin-top: 7px;
    font-family: 'Libre Caslon Display', serif;
    font-size: 27px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.35);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =========================================================
   SCROLL ANIMATIONS
   ========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity 0.9s cubic-bezier(.2, .7, .2, 1),
        transform 0.9s cubic-bezier(.2, .7, .2, 1);
}

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

.delay-1 {
    transition-delay: 0.12s;
}

.delay-2 {
    transition-delay: 0.24s;
}

.delay-3 {
    transition-delay: 0.36s;
}


/* =========================================================
   ATTORNEY PROFILE HEADER
   ========================================================= */

.profile-header {
    width: 100%;
    height: 88px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 5vw;

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

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.back-link {
    display: flex;
    align-items: center;
    gap: 10px;

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

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

    letter-spacing: 0.7px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.back-link:hover {
    color: var(--gold-light);
    transform: translateX(-4px);
}


/* =========================================================
   ATTORNEY BIO PAGE - DESKTOP
   ========================================================= */

.attorney-profile {
    background: var(--cream);
}

.profile-hero {
    width: min(1250px, 90vw);

    margin: 60px auto 80px;

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    align-items: stretch;

    min-height: 0;

    background: white;

    box-shadow:
        0 20px 60px rgba(16, 24, 32, 0.08);
}


/* =========================================================
   BIO PAGE PHOTO
   ALWAYS COLOR
   ========================================================= */

.profile-photo {
    position: relative;

    height: 580px;
    min-height: 0;

    overflow: hidden;

    background: #d9d7d2;
}

.profile-photo::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to top,
            rgba(16, 24, 32, 0.08),
            transparent 35%
        );
}

.profile-photo img {
    width: 100%;
    height: 100%;

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

    filter: none;

    transition:
        transform 0.8s cubic-bezier(.2, .7, .2, 1);
}

.profile-photo:hover img {
    transform: scale(1.02);
}


/* =========================================================
   BIO PAGE CONTENT
   ========================================================= */

.profile-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 60px 70px;

    background: white;
}

.profile-eyebrow {
    margin-bottom: 22px;

    color: var(--gold);

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

    text-transform: uppercase;

    letter-spacing: 2px;
}

.profile-content h1 {
    font-family: 'Libre Caslon Display', serif;

    font-size: clamp(56px, 5.5vw, 86px);

    line-height: 0.92;

    letter-spacing: -3px;

    font-weight: 400;

    color: var(--navy);
}

.profile-content h1 em {
    color: var(--gold);
    font-style: italic;
}

.profile-title {
    margin-top: 18px;

    color: var(--gray);

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 2px;
}

.profile-divider {
    width: 100%;
    height: 1px;

    margin: 30px 0;

    background: rgba(16, 24, 32, 0.14);
}

.profile-bio {
    max-width: 560px;

    margin-bottom: 18px;

    color: #60656a;

    font-size: 15px;

    line-height: 1.75;
}

.profile-actions {
    display: flex;
    align-items: center;
    gap: 30px;

    margin-top: 26px;
}

.profile-email {
    display: flex;
    align-items: center;
    gap: 9px;

    padding-bottom: 5px;

    color: var(--navy);

    border-bottom:
        1px solid rgba(16, 24, 32, 0.3);

    font-size: 13px;

    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}

.profile-email:hover {
    color: var(--gold);
    border-color: var(--gold);
}


/* =========================================================
   BIO PAGE CONTACT SECTION
   ========================================================= */

.profile-contact-section {
    padding: 100px 6vw;

    background: var(--navy);

    color: white;
}

.profile-contact-inner {
    width: min(1250px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 0.8fr;

    align-items: center;

    gap: 100px;
}

.profile-contact-inner > div:first-child > span {
    color: var(--gold-light);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 2px;
}

.profile-contact-inner h2 {
    margin-top: 25px;

    font-family: 'Libre Caslon Display', serif;

    font-size: clamp(50px, 5vw, 75px);

    font-weight: 400;

    line-height: 1.05;
}

.profile-contact-inner h2 em {
    color: var(--gold-light);
    font-style: italic;
}

.profile-contact-card {
    padding: 48px;

    background: white;

    color: var(--navy);
}

.profile-contact-card > span {
    display: block;

    color: var(--gray);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 2px;
}

.profile-contact-card > a:first-of-type {
    display: block;

    margin-top: 8px;

    font-family: 'Libre Caslon Display', serif;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1;
}

.profile-contact-card p {
    margin-top: 25px;

    color: var(--gray);

    font-size: 13px;

    line-height: 1.7;
}

.contact-profile-button {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 35px;

    padding-top: 22px;

    border-top:
        1px solid rgba(16, 24, 32, 0.15);

    color: var(--gold);

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

    text-transform: uppercase;

    letter-spacing: 1px;
}

.contact-profile-button i {
    transition: transform 0.3s ease;
}

.contact-profile-button:hover i {
    transform: translateX(6px);
}


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

@media (max-width: 1000px) {

    .desktop-nav,
    .header-phone {
        display: none;
    }

    .menu-button {
        display: block;
    }

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

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

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

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

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-contact-panel {
        display: none;
    }

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


/* =========================================================
   BIO PAGE TABLET
   ========================================================= */

@media (max-width: 850px) {

    .profile-hero {
        width: 100%;
        margin: 0;
        grid-template-columns: 1fr;
        box-shadow: none;
    }

    .profile-photo {
        height: 620px;
        min-height: 0;
    }

    .profile-content {
        padding: 75px 7vw;
    }

    .profile-contact-inner {
        grid-template-columns: 1fr;
        gap: 55px;
    }
}


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

@media (max-width: 700px) {

    .site-header {
        height: 72px;
        padding: 0 22px;
    }

    .site-header.scrolled {
        height: 68px;
    }

    .logo-text {
        display: none;
    }

    .logo-mark {
        font-size: 30px;
    }

    .hero {
        min-height: 850px;
    }

    /*
       MOBILE HERO IMAGE FIX
       SHOWS MORE OF THE FULL GROUP PHOTO
    */

    .hero-image {
        background-size: auto 100%;
        background-position: center top;
        background-repeat: no-repeat;
        background-color: var(--navy);

        transform: none;
        animation: none;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(9, 16, 22, 0.82),
                rgba(9, 16, 22, 0.42)
            );
    }

    .hero-content {
        padding: 125px 25px 100px;
    }

    .hero h1 {
        font-size:
            clamp(48px, 14vw, 68px);

        letter-spacing: -2px;
    }

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

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

    .scroll-indicator {
        display: none;
    }

    .intro-section,
    .attorneys-section,
    .practice-section,
    .contact-section {
        padding: 90px 0;
    }

    .section-container {
        width: 88vw;
    }

    .intro-copy h2,
    .section-heading h2,
    .practice-heading h2,
    .contact-copy h2 {
        font-size: 48px;
        letter-spacing: -1.5px;
    }

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

    .section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 35px;
    }

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

    .service-card {
        min-height: 340px;
        padding: 36px 28px;
    }

    .service-number {
        top: 36px;
        right: 28px;
    }

    .service-icon {
        margin-bottom: 38px;
    }

    .statement-section {
        min-height: 520px;
    }

    .statement-background {
        background-attachment: scroll;
    }

    .statement-content h2 {
        font-size: 43px;
    }

    .contact-card {
        padding: 35px 25px;
    }

    .large-phone {
        font-size: 40px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
    }
}


/* =========================================================
   BIO PAGE MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .profile-header {
        height: 74px;
        padding: 0 22px;
    }

    .profile-header .logo-text {
        display: none;
    }

    .profile-header .logo-mark {
        font-size: 29px;
    }

    .back-link {
        font-size: 10px;
    }

    .profile-photo {
        height: 520px;
        min-height: 0;
    }

    .profile-photo img {
        filter: none;
        object-position: center top;
    }

    .profile-content {
        padding: 65px 7vw;
    }

    .profile-content h1 {
        font-size: 68px;
        letter-spacing: -3px;
    }

    .profile-divider {
        margin: 32px 0;
    }

    .profile-bio {
        font-size: 15px;
    }

    .profile-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }

    .profile-contact-section {
        padding: 80px 6vw;
    }

    .profile-contact-inner h2 {
        font-size: 48px;
    }

    .profile-contact-card {
        padding: 32px 25px;
    }

    .profile-contact-card > a:first-of-type {
        font-size: 38px;
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 420px) {

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

    .hero-description {
        font-size: 14px;
    }

    .primary-button {
        width: 100%;
    }

    .service-card h3 {
        font-size: 28px;
    }

    .large-phone {
        font-size: 34px;
    }

    .profile-photo {
        height: 460px;
    }

    .profile-content h1 {
        font-size: 59px;
    }

    .profile-contact-card > a:first-of-type {
        font-size: 33px;
    }
}


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

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

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

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

/* =========================================================
   OFFICE MAP
   ========================================================= */

.office-map {
    margin-top: 28px;
    width: 100%;
    height: 260px;
    overflow: hidden;
    border: 1px solid rgba(16, 24, 32, 0.12);
    background: #e5e2dc;
}

.office-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Give the map a subtle FLC-style treatment */
.office-map {
    box-shadow: 0 12px 30px rgba(16, 24, 32, 0.10);
}

/* Address/directions row */
.office-address {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    line-height: 1.5;
}

.office-address i {
    flex-shrink: 0;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.office-address:hover i {
    transform: translateX(5px);
}


/* =========================================================
   MAP - MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .office-map {
        height: 220px;
        margin-top: 24px;
    }

    .office-address {
        font-size: 12px;
        gap: 15px;
    }
}

/* =========================================================
   FULL CLICKABLE ATTORNEY CARDS
   ========================================================= */

.attorney-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.attorney-card-link .attorney-card {
    height: 100%;
    cursor: pointer;
}

.attorney-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.attorney-profile-link i {
    transition: transform 0.3s ease;
}

.attorney-card-link:hover .attorney-profile-link i {
    transform: translateX(6px);
}
