/* @import 'tailwindcss'; */

@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../storage/framework/views/*.php';
@source '../**/*.blade.php';
@source '../**/*.js';

@theme {
    --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
}

/* =========================================================
   LAW OFFICE OF JAMES S. IRANI, P.C.
   Main Website Stylesheet
   No Tailwind / No Vite required
========================================================= */


/* =========================================================
   1. VARIABLES
========================================================= */

:root {
    --dr-navy: #0A1E45;
    --dr-navy-light: #122B5D;
    --dr-navy-dark: #06132E;

    --dr-gold: #D4AF37;
    --dr-gold-light: #E5C65A;
    --dr-gold-dark: #A98720;

    --dr-white: #FFFFFF;
    --dr-light: #F5F7FA;
    --dr-gray: #667085;
    --dr-gray-light: #98A2B3;
    --dr-border: #E3E7ED;

    --dr-text: #182230;

    --container: 1200px;

    --shadow-sm:
        0 4px 18px rgba(10, 30, 69, 0.08);

    --shadow-md:
        0 12px 35px rgba(10, 30, 69, 0.12);

    --shadow-lg:
        0 20px 55px rgba(6, 19, 46, 0.18);

    --transition:
        all 0.3s ease;
}


/* =========================================================
   2. RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    padding: 0;

    background: var(--dr-white);
    color: var(--dr-text);

    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    font-size: 16px;
    line-height: 1.7;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

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

button {
    cursor: pointer;
}


/* =========================================================
   3. GLOBAL
========================================================= */

.container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin-inline: auto;
}

.section {
    padding: 100px 0;
}

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

.section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-kicker {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--dr-gold-dark);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.heading-light .section-kicker {
    color: var(--dr-gold-light);
}

.section-heading h2 {
    margin: 0;

    color: var(--dr-navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 500;
}

.section-heading h2 span {
    display: block;
    color: var(--dr-gold-dark);
}

.heading-light h2 {
    color: var(--dr-white);
}

.heading-light h2 span {
    color: var(--dr-gold-light);
}

.section-heading p {
    max-width: 680px;
    margin: 22px auto 0;

    color: var(--dr-gray);

    font-size: 16px;
}

.heading-light p {
    color: rgba(255, 255, 255, 0.72);
}

.gold-divider {
    width: 62px;
    height: 3px;

    margin: 22px auto 0;

    background: var(--dr-gold);
}


/* =========================================================
   4. BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 28px;

    border: 1px solid transparent;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;

    transition: var(--transition);
}

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

.btn-gold:hover {
    color: var(--dr-navy-dark);
    background: var(--dr-gold-light);
    border-color: var(--dr-gold-light);

    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.22);
}

.btn-outline {
    color: var(--dr-white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.65);
}

.btn-outline:hover {
    color: var(--dr-navy);
    background: var(--dr-white);
    border-color: var(--dr-white);

    transform: translateY(-2px);
}

.btn-dark {
    color: var(--dr-white);
    background: var(--dr-navy);
    border-color: var(--dr-navy);
}

.btn-dark:hover {
    background: var(--dr-navy-light);
    border-color: var(--dr-navy-light);

    transform: translateY(-2px);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: 18px;

    color: var(--dr-navy);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;

    transition: var(--transition);
}

.text-link span {
    color: var(--dr-gold-dark);
    font-size: 20px;
    line-height: 1;
    transition: var(--transition);
}

.text-link:hover {
    color: var(--dr-gold-dark);
}

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


/* =========================================================
   5. HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background: rgba(10, 30, 69, 0.98);

    border-bottom: 1px solid rgba(212, 175, 55, 0.22);

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.12);
}

.nav-wrapper {
    min-height: 84px;

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

    gap: 30px;
}


/* Brand */

.brand {
    display: inline-flex;
    align-items: center;

    gap: 14px;

    flex-shrink: 0;
}

.brand-mark {
    width: 48px;
    height: 48px;

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

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

    color: var(--dr-gold);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    letter-spacing: 0.05em;
}

.brand-text {
    display: flex;
    flex-direction: column;

    color: var(--dr-white);

    line-height: 1.15;
}

.brand-text strong {
    margin-bottom: 4px;

    color: var(--dr-gold);

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

    letter-spacing: 0.15em;
}

.brand-text span {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 15px;
    letter-spacing: 0.08em;
}


/* Navigation */

.main-nav {
    display: flex;
    align-items: center;

    gap: 5px;
}

.main-nav a {
    position: relative;

    padding: 30px 14px;

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

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

    letter-spacing: 0.09em;
    text-transform: uppercase;

    transition: var(--transition);
}

.main-nav a::after {
    content: "";

    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 20px;

    height: 2px;

    background: var(--dr-gold);

    transform: scaleX(0);
    transform-origin: center;

    transition: var(--transition);
}

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

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}


/* Mobile menu button */

.mobile-menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    padding: 10px;

    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.45);
}

.mobile-menu-toggle span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 5px 0;

    background: var(--dr-gold);
}


/* =========================================================
   6. HERO
========================================================= */

.hero {
    position: relative;

    min-height: 650px;
    height: min(720px, calc(100vh - 84px));

    overflow: hidden;

    background: var(--dr-navy-dark);
}

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

    width: 100%;
    height: 100%;

    max-width: none;

    object-fit: cover;

    /*
       IMPORTANT:
       The image itself is already composed for the hero.
       Keep the center so the doctor + Statue remain visible.
    */
    object-position: center center;

    transform: scale(1.001);
}

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

    /*
       Dark enough for text,
       but not enough to destroy the flag / Statue.
    */
    background:
        linear-gradient(
            90deg,
            rgba(6, 19, 46, 0.92) 0%,
            rgba(6, 19, 46, 0.72) 30%,
            rgba(6, 19, 46, 0.28) 62%,
            rgba(6, 19, 46, 0.15) 100%
        );

    pointer-events: none;
}

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

    height: 100%;

    display: flex;
    align-items: center;
}

.hero-text {
    width: min(560px, 52%);

    padding-top: 10px;
}

.hero-eyebrow {
    display: block;

    margin-bottom: 14px;

    color: var(--dr-gold-light);

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

    letter-spacing: 0.22em;
}

.hero h1 {
    margin: 0;

    color: var(--dr-white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(44px, 5.2vw, 72px);

    line-height: 0.98;
    font-weight: 500;

    letter-spacing: -0.025em;
}

.hero-line {
    width: 76px;
    height: 3px;

    margin: 24px 0;

    background: var(--dr-gold);
}

.hero-subtitle {
    margin: 0;

    color: var(--dr-white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(19px, 2vw, 25px);

    line-height: 1.4;
}

.hero-subtitle span {
    margin: 0 5px;

    color: var(--dr-gold);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 13px;

    margin-top: 32px;
}


/* =========================================================
   7. ABOUT
========================================================= */

.about-intro {
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f7f8fa 100%
        );
}

.about-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(320px, 0.75fr);

    gap: 75px;

    align-items: start;
}

.about-main {
    max-width: 720px;
}

.about-main p {
    margin: 0 0 20px;

    color: #4B5563;

    font-size: 17px;
    line-height: 1.85;
}

.about-highlight {
    position: relative;

    padding: 42px 38px;

    background: var(--dr-navy);

    border-top: 4px solid var(--dr-gold);

    box-shadow: var(--shadow-md);
}

.about-highlight-icon {
    margin-bottom: 22px;

    color: var(--dr-gold);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 45px;
    line-height: 1;
}

.about-highlight h3 {
    margin: 0 0 15px;

    color: var(--dr-white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;
    font-weight: 500;
    line-height: 1.3;
}

.about-highlight p {
    margin: 0;

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

    line-height: 1.8;
}

/* =========================================================
   ABOUT HIGHLIGHT LINK
========================================================= */

.about-highlight .text-link {
    color: var(--dr-gold-light);
    text-decoration: none;
}

.about-highlight .text-link:hover {
    color: var(--dr-gold);
}


/* =========================================================
   8. PRACTICE
========================================================= */

.practice-section {
    background:
        linear-gradient(
            135deg,
            var(--dr-navy-dark),
            var(--dr-navy)
        );
}

.practice-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.practice-card {
    position: relative;

    min-height: 300px;

    padding: 32px 27px 75px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );

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

    transition: var(--transition);
}

.practice-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 3px;

    background: var(--dr-gold);

    transition: var(--transition);
}

.practice-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(212, 175, 55, 0.45);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.11),
            rgba(255, 255, 255, 0.045)
        );

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.22);
}

.practice-card:hover::before {
    width: 100%;
}

.practice-number {
    display: block;

    margin-bottom: 25px;

    color: var(--dr-gold);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 15px;
    letter-spacing: 0.12em;
}

.practice-card h3 {
    margin: 0 0 15px;

    color: var(--dr-white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 21px;
    font-weight: 500;

    line-height: 1.35;
}

.practice-card h3 small {
    display: inline;

    color: var(--dr-gold-light);

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

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

.practice-card p {
    margin: 0;

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

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

.practice-card a {
    position: absolute;

    left: 27px;
    bottom: 27px;

    color: var(--dr-gold-light);

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

    letter-spacing: 0.07em;
    text-transform: uppercase;

    transition: var(--transition);
}

.practice-card a:hover {
    color: var(--dr-white);
    transform: translateX(4px);
}


/* =========================================================
   9. ARTICLES
========================================================= */

.articles-section {
    background: var(--dr-light);
}

.articles-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}


/* ---------------------------------------------------------
   ARTICLE IMAGE
--------------------------------------------------------- */

.article-card-image {
    width: 100%;
    height: 190px;

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

    overflow: hidden;

    background: #f4f6f9; /* #f1f3f5; */
    border-bottom: 1px solid #e4e8ee;
}

.article-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}

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


/* ---------------------------------------------------------
   ARTICLE IMAGE PLACEHOLDER
--------------------------------------------------------- */

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

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

    background:
        linear-gradient(
            135deg,
            var(--dr-navy),
            var(--dr-navy-light)
        );
}

.article-image-placeholder span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 50%;

    color: var(--dr-gold);

    font-size: 27px;
}


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

    min-height: 0; /* 300px; */
    padding: 0;

    background: var(--dr-white);

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

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow-md);
}

.article-card-top {
    min-height: 92px;

    display: flex;
    align-items: flex-end;

    padding: 22px 28px;

    background:
        linear-gradient(
            135deg,
            var(--dr-navy),
            var(--dr-navy-light)
        );

    border-bottom: 3px solid var(--dr-gold);
}

.article-card-top span {
    color: var(--dr-gold-light);

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

    letter-spacing: 0.15em;
}

.article-card-body {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 22px 25px 22px; /* 30px 28px; */
}

.article-card-body h3 {
    margin: 0;

    color: var(--dr-navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    line-height: 1.4;
}

.article-card-body a {
    margin-top: auto;
    padding-top: 25px;

    color: var(--dr-gold-dark);

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

    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.article-card-body a:hover {
    color: var(--dr-navy);
}

.section-action {
    margin-top: 45px;

    text-align: center;
}


/* =========================================================
   10. FAQ
========================================================= */

.faq-section {
    background:
        linear-gradient(
            135deg,
            var(--dr-navy-dark),
            var(--dr-navy)
        );
}

.faq-list {
    max-width: 900px;

    margin: 0 auto;
}

.faq-item {
    border-bottom:
        1px solid rgba(255, 255, 255, 0.15);
}

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

.faq-item summary {
    position: relative;

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

    gap: 30px;

    padding: 25px 5px;

    color: var(--dr-white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 19px;

    line-height: 1.4;

    cursor: pointer;

    list-style: none;
}

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

.faq-item summary span {
    flex-shrink: 0;

    width: 32px;
    height: 32px;

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

    color: var(--dr-gold);

    border: 1px solid rgba(212, 175, 55, 0.5);

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 20px;
    line-height: 1;

    transition: var(--transition);
}

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

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

.faq-answer {
    padding: 0 55px 28px 5px;
}

.faq-answer p {
    margin: 0;

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

    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   11. CONTACT
========================================================= */

.contact-section {
    padding: 95px 0;

    background:
        linear-gradient(
            135deg,
            #EEF1F6 0%,
            #F7F8FA 100%
        );

    border-top: 1px solid rgba(10, 30, 69, 0.08);
    border-bottom: 1px solid rgba(10, 30, 69, 0.08);
}

.contact-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(320px, 0.8fr);

    gap: 80px;

    align-items: center;
}

.contact-intro .section-kicker {
    color: var(--dr-gold-dark);
}

.contact-intro h2 {
    margin: 0;

    color: var(--dr-navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.1;
    font-weight: 500;
}

.contact-intro h2 span {
    display: block;
    color: var(--dr-gold-dark);
}

.contact-intro .gold-divider {
    margin-left: 0;
    background: var(--dr-gold);
}

.contact-intro p {
    max-width: 590px;

    margin: 24px 0 0;

    color: #4B5563;

    font-size: 17px;
}

.contact-details {
    padding: 38px;

    background: var(--dr-navy);

    box-shadow: var(--shadow-lg);
}

.contact-item {
    padding: 0 0 20px;
    margin-bottom: 20px;

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

.contact-item:last-of-type {
    margin-bottom: 25px;
}

.contact-label {
    display: block;

    margin-bottom: 6px;

    color: var(--dr-gold-light);

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

    letter-spacing: 0.18em;
}

.contact-item p {
    margin: 0;

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

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

.contact-item a {
    color: var(--dr-white);

    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--dr-gold-light);
}

.contact-button {
    width: 100%;
}


/* =========================================================
   12. FOOTER
========================================================= */

.site-footer {
    background: var(--dr-navy-dark);

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

.footer-grid {
    display: grid;

    grid-template-columns:
        1.2fr
        1fr
        0.7fr;

    gap: 55px;

    padding-top: 70px;
    padding-bottom: 60px;
}


/* Footer brand */

.footer-brand {
    display: flex;
    align-items: center;

    gap: 15px;
}

.footer-logo {
    width: 48px;
    height: 48px;

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

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

    color: var(--dr-gold);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand strong {
    margin-bottom: 4px;

    color: var(--dr-gold);

    font-size: 10px;

    letter-spacing: 0.14em;
}

.footer-brand span {
    color: var(--dr-white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;

    letter-spacing: 0.07em;
}


/* Footer contact */

.footer-contact strong {
    display: block;

    margin-bottom: 12px;

    color: var(--dr-white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;
    font-weight: 500;
}

.footer-contact p {
    margin: 0 0 12px;

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


/* Footer nav */

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

    gap: 9px;
}

.footer-nav a {
    width: fit-content;

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

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

    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--dr-gold);
    transform: translateX(4px);
}


/* Footer bottom */

.footer-bottom {
    border-top:
        1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom .container {
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer-bottom p {
    margin: 0;

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

    font-size: 12px;

    text-align: center;
}


/* =========================================================
   13. LARGE TABLET / SMALL DESKTOP
========================================================= */

@media (max-width: 1100px) {

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

    .main-nav {
        gap: 0;
    }

    .main-nav a {
        padding-inline: 10px;
    }

    .main-nav a::after {
        left: 10px;
        right: 10px;
    }

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

    .hero-text {
        width: min(520px, 54%);
    }
}


/* =========================================================
   14. TABLET
========================================================= */

@media (max-width: 900px) {

    .section {
        padding: 80px 0;
    }

    .nav-wrapper {
        min-height: 76px;
    }

    .main-nav a {
        font-size: 11px;
        padding-inline: 8px;
    }

    .hero {
        height: 620px;
        min-height: 620px;
    }

    .hero-text {
        width: 58%;
    }

    .hero h1 {
        font-size: clamp(42px, 6vw, 62px);
    }

    .about-layout,
    .contact-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .about-highlight {
        max-width: 650px;
    }

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

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

    .footer-nav {
        grid-column: 1 / -1;

        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 12px;
    }
}


/* =========================================================
   15. MOBILE
========================================================= */

@media (max-width: 700px) {

    html {
        scroll-padding-top: 76px;
    }

    .container {
        width: calc(100% - 36px);
    }

    .section {
        padding: 68px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .section-heading p {
        font-size: 15px;
    }


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

    .site-header {
        position: sticky;
    }

    .nav-wrapper {
        min-height: 74px;

        gap: 15px;
    }

    .brand {
        gap: 10px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;

        font-size: 15px;
    }

    .brand-text strong {
        font-size: 8px;
    }

    .brand-text span {
        font-size: 12px;
        letter-spacing: 0.055em;
    }

    .mobile-menu-toggle {
        display: block;
        flex-shrink: 0;
    }

    .main-nav {
        position: absolute;

        top: 112px;
        left: 0;
        right: 0;

        display: none;
        flex-direction: column;

        align-items: stretch;

        padding: 10px 18px 18px;

        background: var(--dr-navy-dark);

        border-top:
            1px solid rgba(212, 175, 55, 0.20);

        box-shadow:
            0 15px 30px rgba(0, 0, 0, 0.20);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 14px 8px;

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

    .main-nav a:last-child {
        border-bottom: none;
    }

    .main-nav a::after {
        display: none;
    }


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

    .hero {
        /*
           Do NOT make the mobile hero too tall.
        */
        height: 560px;
        min-height: 560px;
    }

    .hero-image {
        /*
           The image is a composed hero image.
           Center keeps both main subjects visible.
        */
        object-position: center center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(6, 19, 46, 0.88) 0%,
                rgba(6, 19, 46, 0.65) 45%,
                rgba(6, 19, 46, 0.32) 100%
            );
    }

    .hero-content {
        align-items: flex-end;

        padding-bottom: 54px;
    }

    .hero-text {
        width: 100%;
        max-width: 440px;

        padding: 0;
    }

    .hero-eyebrow {
        margin-bottom: 10px;

        font-size: 10px;
        letter-spacing: 0.16em;
    }

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

        line-height: 1;
    }

    .hero-line {
        width: 55px;

        margin: 18px 0;
    }

    .hero-subtitle {
        max-width: 330px;

        font-size: 18px;
    }

    .hero-buttons {
        margin-top: 23px;

        gap: 9px;
    }

    .hero-buttons .btn {
        min-height: 46px;

        padding-inline: 18px;

        font-size: 10px;
    }


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

    .about-layout {
        gap: 35px;
    }

    .about-main p {
        font-size: 16px;
    }

    .about-highlight {
        padding: 32px 27px;
    }

    .about-highlight h3 {
        font-size: 23px;
    }


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

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

        gap: 15px;
    }

    .practice-card {
        min-height: 270px;

        padding: 28px 24px;
    }

    .practice-card a {
        left: 24px;
        bottom: 24px;
    }


    /* -----------------------------------------------------
       ARTICLES
    ----------------------------------------------------- */

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .article-card {
        min-height: 270px;
    }


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

    .faq-item summary {
        padding: 21px 0;

        font-size: 17px;
    }

    .faq-item summary span {
        width: 30px;
        height: 30px;
    }

    .faq-answer {
        padding:
            0
            40px
            23px
            0;
    }

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


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

    .contact-section {
        padding: 68px 0;
    }

    .contact-grid {
        gap: 38px;
    }

    .contact-intro h2 {
        font-size: 36px;
    }

    .contact-details {
        padding: 28px 23px;
    }


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

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

        gap: 38px;

        padding-top: 55px;
        padding-bottom: 45px;
    }

    .footer-nav {
        grid-column: auto;

        display: grid;

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


/* =========================================================
   16. SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .container {
        width: calc(100% - 28px);
    }

    .brand-text span {
        font-size: 11px;
    }

    .brand-text strong {
        font-size: 7px;
    }

    .hero {
        height: 535px;
        min-height: 535px;
    }

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

    .hero-subtitle {
        font-size: 16px;
    }

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

        max-width: 250px;
    }

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

    .section-heading h2 {
        font-size: 29px;
    }

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


/* =========================================================
   17. ACCESSIBILITY
========================================================= */

:focus-visible {
    outline: 2px solid var(--dr-gold);
    outline-offset: 4px;
}

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

    html {
        scroll-behavior: auto;
    }

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

/* =========================================================
   ABOUT PAGE
   FINAL RESPONSIVE CSS (SCOPED TO .about-page)
========================================================= */


/* ---------------------------------------------------------
   GENERAL SECTION
--------------------------------------------------------- */

.about-page .about-office-section,
.about-page .about-attorney-section,
.about-page .articles-section {
    padding-top: 90px;
    padding-bottom: 90px;
}


/* ---------------------------------------------------------
   SECTION HEADING
--------------------------------------------------------- */

.about-page .section-heading {
    max-width: 900px;
    margin: 0 auto 48px;
    text-align: center;
}

.about-page .section-kicker {
    display: block;
    margin-bottom: 12px;

    color: var(--dr-gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-page .section-heading h2 {
    margin: 0;

    color: var(--dr-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.12;
}

.about-page .section-heading h2 span {
    display: block;
    color: var(--dr-gold);
}

.about-page .section-heading .gold-divider {
    width: 28px;
    height: 2px;
    margin: 20px auto 18px;

    background: var(--dr-gold);
}

.about-page .section-heading > p {
    max-width: 620px;
    margin: 0 auto;

    color: #788294;
    font-size: 13px;
    line-height: 1.8;
}

.about-page .heading-light h2 {
    color: #ffffff;
}

.about-page .heading-light h2 span {
    color: var(--dr-gold-light);
}


/* ---------------------------------------------------------
   ABOUT OUR OFFICE
--------------------------------------------------------- */

.about-page .about-office-section {
    background: #f7f8fa;
}

.about-page .about-office-content {
    max-width: 930px;
    margin: 0 auto;
}

.about-page .about-office-content p {
    margin: 0 0 22px;

    color: #4d596b;
    font-size: 14px;
    line-height: 1.95;
    text-align: left;
}

.about-page .about-office-content p:last-child {
    margin-bottom: 0;
}


/* ---------------------------------------------------------
   ATTORNEY SECTION
--------------------------------------------------------- */

.about-page .about-attorney-section {
    background: var(--dr-navy);
}

.about-page .about-attorney-section .section-heading {
    margin-bottom: 54px;
}

.about-page .attorney-profile-grid {
    display: grid;
    grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
    gap: 72px;

    max-width: 1050px;
    margin: 0 auto;

    align-items: start;
}


/* ---------------------------------------------------------
   ATTORNEY IMAGE
--------------------------------------------------------- */

.about-page .attorney-image-wrap {
    display: flex;
    justify-content: center;
}

.about-page .attorney-image-frame {
    width: 100%;
    max-width: 360px;

    padding: 5px;

    border: 1px solid rgba(214, 169, 47, 0.45);
    background: rgba(255, 255, 255, 0.035);
}

.about-page .attorney-image {
    display: block;

    width: 100%;
    height: auto;

    object-fit: cover;
}


/* ---------------------------------------------------------
   ATTORNEY TEXT
--------------------------------------------------------- */

.about-page .attorney-profile-content {
    padding-top: 2px;
}

.about-page .attorney-profile-content p {
    margin: 0 0 22px;

    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.95;
}

.about-page .attorney-profile-content p:last-child {
    margin-bottom: 0;
}


/* ########################################### Page About - New Articles CSS */
/* =========================================================
   ABOUT — ARTICLES LIST
========================================================= */

.about-page .articles-section {
    background: #f7f8fa;
}

.about-page .articles-section .section-heading {
    margin-bottom: 45px;
}


/* ---------------------------------------------------------
   ARTICLES LIST
--------------------------------------------------------- */

.about-page .articles-list {
    max-width: 1050px;
    margin: 0 auto;

    background: #ffffff;

    border: 1px solid #e4e8ee;
}


/* ---------------------------------------------------------
   ARTICLE ITEM
--------------------------------------------------------- */

.about-page .article-list-item {
    display: flex;
    align-items: center;

    gap: 24px;

    padding: 18px 22px;

    background: #ffffff;

    border-bottom: 1px solid #e4e8ee;

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

.about-page .article-list-item:last-child {
    border-bottom: 0;
}

.about-page .article-list-item:hover {
    background: #fafbfc;
}


/* ---------------------------------------------------------
   THUMBNAIL
--------------------------------------------------------- */

.about-page .article-list-image {
    flex: 0 0 90px;

    width: 90px;
    height: 70px;

    overflow: hidden;

    border: 1px solid #e1e5ea;

    background: #f4f6f8;

    display: flex;
    align-items: center;
    justify-content: center;
}

.about-page .article-list-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    background: #f4f6f8;
}


/* ---------------------------------------------------------
   NO IMAGE
--------------------------------------------------------- */

.about-page .article-list-no-image {
    width: 100%;
    height: 100%;

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

    background:
        linear-gradient(
            135deg,
            #f5f6f8,
            #e9edf2
        );
}

.about-page .article-list-no-image span {
    color: var(--dr-gold);

    font-size: 25px;
    opacity: 0.8;
}


/* ---------------------------------------------------------
   CONTENT
--------------------------------------------------------- */

.about-page .article-list-content {
    flex: 1;
    min-width: 0;
}

.about-page .article-list-content h3 {
    margin: 0 0 8px;

    color: var(--dr-navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    line-height: 1.45;
}


/* ---------------------------------------------------------
   LINK
--------------------------------------------------------- */

.about-page .article-list-link {
    display: inline-flex;
    align-items: center;

    color: var(--dr-gold-dark);

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

    letter-spacing: 0.08em;
    text-transform: uppercase;

    text-decoration: none;
}

.about-page .article-list-link span {
    display: inline-block;

    margin-left: 5px;

    transition: transform 0.2s ease;
}

.about-page .article-list-link:hover {
    color: var(--dr-navy);
}

.about-page .article-list-link:hover span {
    transform: translateX(3px);
}


/* ---------------------------------------------------------
   EMPTY
--------------------------------------------------------- */

.about-page .articles-empty {
    padding: 45px 25px;

    text-align: center;

    color: #7d8794;
}


/* ---------------------------------------------------------
   CONTACT CTA
--------------------------------------------------------- */

.about-page .contact-section {
    background: #eef1f5;
    padding: 68px 0;
}

.about-page .contact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;

    max-width: 1050px;
    margin: 0 auto;
}

.about-page .contact-intro {
    flex: 1;
}

.about-page .contact-intro .section-kicker {
    margin-bottom: 10px;
}

.about-page .contact-intro h2 {
    margin: 0;

    color: var(--dr-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 3vw, 40px);
    font-weight: 500;
    line-height: 1.12;
}

.about-page .contact-intro h2 span {
    display: block;
    color: var(--dr-gold);
}

.about-page .contact-intro .gold-divider {
    width: 28px;
    height: 2px;
    margin: 18px 0;

    background: var(--dr-gold);
}

.about-page .contact-intro p {
    max-width: 540px;
    margin: 0;

    color: #687486;
    font-size: 13px;
    line-height: 1.75;
}

.about-page .contact-actions {
    display: flex;
    align-items: center;
    gap: 10px;

    flex-shrink: 0;
}

.about-page .contact-actions .btn {
    min-width: 135px;
    text-align: center;
}


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

@media (max-width: 991px) {

    .about-page .about-office-section,
    .about-page .about-attorney-section,
    .about-page .articles-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .about-page .attorney-profile-grid {
        grid-template-columns: 290px minmax(0, 1fr);
        gap: 45px;
    }

    .about-page .attorney-image-frame {
        max-width: 290px;
    }

    .about-page .articles-grid {
        gap: 15px;
    }

    .about-page .article-card {
        padding: 22px;
    }

    .about-page .article-card h3 {
        font-size: 16px;
    }

    .about-page .article-card-image {
        height: 180px;
    }

    .about-page .article-list-item {
        gap: 20px;
        padding: 16px 18px;
    }

    .about-page .article-list-image {
        flex-basis: 82px;

        width: 82px;
        height: 64px;
    }

    .about-page .article-list-content h3 {
        font-size: 16px;
    }

    .about-page .contact-inner {
        gap: 30px;
    }

    .about-page .footer-grid {
        gap: 35px;
    }
}


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

@media (max-width: 767px) {

    /* -----------------------------------------------------
       SECTIONS
    ----------------------------------------------------- */

    .about-page .about-office-section,
    .about-page .about-attorney-section,
    .about-page .articles-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .about-page .section-heading {
        margin-bottom: 35px;
    }

    .about-page .section-kicker {
        font-size: 8px;
    }

    .about-page .section-heading h2 {
        font-size: 29px;
    }

    .about-page .section-heading .gold-divider {
        margin-top: 16px;
        margin-bottom: 15px;
    }

    .about-page .section-heading > p {
        font-size: 11px;
    }


    /* -----------------------------------------------------
       ABOUT OFFICE
    ----------------------------------------------------- */

    .about-page .about-office-content {
        max-width: 100%;
    }

    .about-page .about-office-content p {
        margin-bottom: 18px;

        font-size: 12px;
        line-height: 1.85;
        text-align: left;
    }


    /* -----------------------------------------------------
       ATTORNEY
    ----------------------------------------------------- */

    .about-page .about-attorney-section .section-heading {
        margin-bottom: 34px;
    }

    .about-page .attorney-profile-grid {
        display: flex;
        flex-direction: column;

        gap: 30px;

        width: 100%;
    }

    .about-page .attorney-image-wrap {
        width: 100%;
    }

    .about-page .attorney-image-frame {
        width: 100%;
        max-width: 245px;

        margin: 0 auto;
    }

    .about-page .attorney-profile-content {
        width: 100%;
        padding: 0;
    }

    .about-page .attorney-profile-content p {
        margin-bottom: 18px;

        font-size: 12px;
        line-height: 1.85;
    }


    /* -----------------------------------------------------
       ARTICLES
    ----------------------------------------------------- */

    .about-page .articles-section .section-heading {
        margin-bottom: 35px;
    }

    .about-page .articles-grid {
        display: grid;
        grid-template-columns: 1fr;

        gap: 12px;

        width: 100%;
    }

    .about-page .article-card {
        min-height: 0;
    }

    .about-page .article-card-body {
        padding: 20px 18px 18px;
    }

    .about-page .article-card-top {
        margin-bottom: 14px;
    }

    .about-page .article-type,
    .about-page .article-source {
        font-size: 7px;
    }

    .about-page .article-card .article-source {
        margin-top: 10px;

        color: #8993a2;

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

        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .about-page .article-card h3 {
        font-size: 14px;
        line-height: 1.45;
    }

    .about-page .article-card-footer {
        margin-top: auto;
        padding-top: 20px;
    }

    .about-page .article-card-footer a {
        color: var(--dr-gold);

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

        letter-spacing: 0.12em;
        text-transform: uppercase;

        text-decoration: none;
    }

    .about-page .article-card-footer a span {
        display: inline-block;

        margin-left: 4px;

        transition: transform 0.2s ease;
    }

    .about-page .article-card:hover .article-card-footer a span {
        transform: translateX(3px);
    }


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

    .about-page .contact-section {
        padding: 52px 0;
    }

    .about-page .contact-inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;

        gap: 27px;
    }

    .about-page .contact-intro {
        width: 100%;
    }

    .about-page .contact-intro h2 {
        font-size: 30px;
    }

    .about-page .contact-intro p {
        font-size: 11px;
        line-height: 1.75;
    }

    .about-page .contact-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;

        width: 100%;
        gap: 9px;
    }

    .about-page .contact-actions .btn {
        width: 100%;
        min-width: 0;
    }
}

    
/* =========================================================
   MOBILE (SPECIFIC TO ARTICLES LIST & PAGINATION)
========================================================= */

@media (max-width: 576px) {

    .about-page .articles-section .section-heading {
        margin-bottom: 30px;
    }

    .about-page .articles-list {
        width: 100%;
    }

    .about-page .article-list-item {
        gap: 14px;

        padding: 14px;
    }

    .about-page .article-list-image {
        flex-basis: 70px;

        width: 70px;
        height: 56px;
    }

    .about-page .article-list-content h3 {
        margin-bottom: 6px;

        font-size: 14px;
        line-height: 1.4;
    }

    .about-page .article-list-link {
        font-size: 9px;
    }

    .about-page .article-list-no-image span {
        font-size: 20px;
    }
    
    .about-page .about-pagination {
        margin-top: 40px;
    }

    .about-page .about-pagination .pagination {
        gap: 5px;
    }

    .about-page .about-pagination .page-link {
        min-width: 38px;
        height: 38px;

        padding: 0 10px;

        font-size: 12px;
    }

    .about-page .about-pagination .page-item:first-child .page-link,
    .about-page .about-pagination .page-item:last-child .page-link {
        padding-left: 12px;
        padding-right: 12px;
    }
}


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

@media (max-width: 420px) {

    .about-page .about-office-section,
    .about-page .about-attorney-section,
    .about-page .articles-section {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .about-page .section-heading h2 {
        font-size: 27px;
    }

    .about-page .about-office-content p,
    .about-page .attorney-profile-content p {
        font-size: 11.5px;
    }

    .about-page .attorney-image-frame {
        max-width: 220px;
    }

    .about-page .article-card-image {
        height: 160px;
    }

    .about-page .article-card-body {
        padding: 18px;
    }

    .about-page .article-card h3 {
        font-size: 14px;
    }

    .about-page .contact-intro h2 {
        font-size: 28px;
    }

}


/* =========================================================
   ABOUT PAGE — ARTICLES PAGINATION
========================================================= */

.about-page .about-pagination {
    margin-top: 55px;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Bootstrap pagination wrapper */
.about-page .about-pagination nav {
    width: 100%;
}

/* Remove Bootstrap's result text */
.about-page .about-pagination nav > div:first-child {
    display: none !important;
}

/* Pagination list */
.about-page .about-pagination .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

    margin: 0;
    padding: 0;

    list-style: none;
}

/* Every pagination item */
.about-page .about-pagination .page-item {
    margin: 0;
}

/* Every pagination link */
.about-page .about-pagination .page-link {
    min-width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 14px;

    border: 1px solid rgba(10, 30, 69, 0.15);

    background: #ffffff;
    color: #0A1E45;

    font-family: inherit;
    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

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

/* Hover */
.about-page .about-pagination .page-link:hover {
    background: #0A1E45;
    border-color: #0A1E45;
    color: #D4AF37;

    transform: translateY(-2px);
}

/* Active page */
.about-page .about-pagination .page-item.active .page-link {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #0A1E45;

    font-weight: 700;
}

/* Disabled Previous / Next */
.about-page .about-pagination .page-item.disabled .page-link {
    background: #f4f6f9;
    border-color: rgba(10, 30, 69, 0.08);

    color: #9aa1ad;

    cursor: not-allowed;
    transform: none;
}

/* Previous / Next buttons */
.about-page .about-pagination .page-item:first-child .page-link,
.about-page .about-pagination .page-item:last-child .page-link {
    min-width: auto;
    padding-left: 18px;
    padding-right: 18px;
}

/* Remove focus outline */
.about-page .about-pagination .page-link:focus {
    box-shadow: none;
    outline: none;
}


/* =========================================================
   ABOUT PAGE — EMAIL BUTTON
========================================================= */

.about-page .contact-section .btn-outline {
    color: var(--dr-navy);
    background-color: transparent;
    border: 1px solid var(--dr-navy);
}

.about-page .contact-section .btn-outline:hover {
    color: #ffffff;
    background-color: var(--dr-navy);
    border-color: var(--dr-navy);
}


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

.practice-content-section {
    padding: 80px 0 100px;
    background: var(--dr-light);
}


/* =========================================================
   PRACTICE INTRO / MAIN GROUP
========================================================= */

.practice-content-section > .container {
    max-width: 1050px;
}


/* =========================================================
   PRACTICE CATEGORY
========================================================= */

.practice-category {
    margin-bottom: 70px;
}

.practice-category:last-child {
    margin-bottom: 0;
}


/* Main category heading */

.practice-category > h2 {
    margin: 0 0 35px;

    color: var(--dr-navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    line-height: 1.3;
}


/* Gold line underneath category */

.practice-category > h2::after {
    content: "";

    display: block;

    width: 55px;
    height: 3px;

    margin-top: 16px;

    background: var(--dr-gold);
}


/* =========================================================
   PRACTICE SERVICE
========================================================= */

.practice-service {
    margin-bottom: 38px;
    padding: 34px 38px;

    background: var(--dr-white);

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

    box-shadow: var(--shadow-sm);

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

.practice-service:last-child {
    margin-bottom: 0;
}


.practice-service:hover {
    transform: translateY(-2px);

    border-color: rgba(212, 175, 55, 0.35);

    box-shadow: var(--shadow-md);
}


/* =========================================================
   SERVICE HEADINGS
========================================================= */

.practice-service h3 {
    margin: 0 0 22px;

    color: var(--dr-navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    line-height: 1.4;
}


.practice-service h4 {
    margin: 30px 0 15px;

    color: var(--dr-navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    line-height: 1.45;
}


.practice-service h4:first-child {
    margin-top: 0;
}


/* =========================================================
   TEXT
========================================================= */

.practice-service p {
    margin: 0 0 20px;

    color: #4d5663;

    font-size: 15px;

    line-height: 1.9;
}


.practice-service p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   LISTS
========================================================= */

.practice-service ul,
.practice-service ol {
    margin-top: 15px;
    margin-bottom: 25px;

    padding-left: 28px;

    color: #4d5663;

    font-size: 15px;

    line-height: 1.85;
}


.practice-service li {
    margin-bottom: 9px;
}


.practice-service li:last-child {
    margin-bottom: 0;
}


/* Nested lists */

.practice-service ul ul,
.practice-service ul ol,
.practice-service ol ul,
.practice-service ol ol {
    margin-top: 8px;
    margin-bottom: 8px;
}


/* =========================================================
   STRONG / EMPHASIS
========================================================= */

.practice-service strong,
.practice-service b {
    color: var(--dr-navy);
}


.practice-service em,
.practice-service i {
    color: #596474;
}


/* =========================================================
   FOOTNOTE
========================================================= */

.practice-footnote {
    margin-top: 8px;

    color: #697382;

    font-size: 13px;

    line-height: 1.7;
}


.practice-footnote a {
    color: var(--dr-gold-dark);

    font-weight: 600;

    text-decoration: none;
}


.practice-footnote a:hover {
    color: var(--dr-navy);
}


/* =========================================================
   BUSINESS LAW SUBSECTIONS
========================================================= */

.practice-subsection {
    margin-top: 35px;
    padding-top: 28px;

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


.practice-subsection h4 {
    margin-top: 0;
}


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

@media (max-width: 991px) {

    .practice-content-section {
        padding: 65px 0 80px;
    }

    .practice-category {
        margin-bottom: 55px;
    }

    .practice-category > h2 {
        font-size: 27px;
    }

    .practice-service {
        padding: 30px;
        margin-bottom: 28px;
    }

    .practice-service h3 {
        font-size: 21px;
    }

    .practice-service h4 {
        font-size: 17px;
    }

    .practice-service p,
    .practice-service ul,
    .practice-service ol {
        font-size: 14px;
    }
}


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

@media (max-width: 767px) {

    .practice-content-section {
        padding: 52px 0 65px;
    }

    .practice-category {
        margin-bottom: 45px;
    }

    .practice-category > h2 {
        font-size: 24px;
        line-height: 1.35;
    }

    .practice-service {
        padding: 24px 20px;
        margin-bottom: 20px;
    }

    .practice-service h3 {
        font-size: 19px;
        line-height: 1.45;
    }

    .practice-service h4 {
        font-size: 16px;
        line-height: 1.45;
    }

    .practice-service p,
    .practice-service ul,
    .practice-service ol {
        font-size: 13px;
        line-height: 1.8;
    }

    .practice-service ul,
    .practice-service ol {
        padding-left: 23px;
    }

    .practice-service li {
        margin-bottom: 8px;
    }
}


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

@media (max-width: 420px) {

    .practice-content-section {
        padding-top: 45px;
        padding-bottom: 55px;
    }

    .practice-category > h2 {
        font-size: 22px;
    }

    .practice-service {
        padding: 21px 17px;
    }

    .practice-service h3 {
        font-size: 18px;
    }

    .practice-service p,
    .practice-service ul,
    .practice-service ol {
        font-size: 12.5px;
    }
}


/* =========================================================
   PRACTICE AREA HEADER
========================================================= */

.practice-area-header {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 28px;
    padding-bottom: 16px;

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


/* ---------------------------------------------------------
   SECTION NUMBER
--------------------------------------------------------- */

.practice-area-number {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    border: 1px solid var(--dr-gold);
    border-radius: 50%;

    color: var(--dr-gold);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    line-height: 1;

    background: rgba(214, 169, 47, 0.06);
}


/* ---------------------------------------------------------
   SECTION TITLE
--------------------------------------------------------- */

.practice-area-header h2 {
    margin: 0;

    color: var(--dr-navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 27px;
    font-weight: 500;

    line-height: 1.3;
}


/* =========================================================
   SUBSECTIONS
========================================================= */

.practice-area h3 {
    margin-top: 34px;
    margin-bottom: 14px;

    color: var(--dr-navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    line-height: 1.4;
}

.practice-area h4 {
    margin-top: 28px;
    margin-bottom: 10px;

    color: var(--dr-navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    line-height: 1.4;
}


/* ---------------------------------------------------------
   BUSINESS FORMATION
--------------------------------------------------------- */

#business-formation {
    margin-top: 32px;
    padding-left: 16px;

    border-left: 3px solid var(--dr-gold);
}


/* =========================================================
   PRACTICE TEXT
========================================================= */

.practice-area p {
    margin-top: 0;
    margin-bottom: 18px;

    color: #4b5563;

    font-size: 15px;
    line-height: 1.9;
}


/* =========================================================
   LISTS
========================================================= */

.practice-area ul,
.practice-area ol {
    margin-top: 12px;
    margin-bottom: 24px;

    padding-left: 28px;

    color: #4b5563;

    font-size: 15px;
    line-height: 1.85;
}

.practice-area li {
    margin-bottom: 8px;
    padding-left: 4px;
}

.practice-area li::marker {
    color: var(--dr-gold);
}


/* =========================================================
   IMPORTANT / EMPHASIZED TEXT
========================================================= */

.practice-area strong,
.practice-area b {
    color: var(--dr-navy);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .practice-area-header {
        gap: 15px;
        margin-bottom: 24px;
    }

    .practice-area-number {
        width: 42px;
        height: 42px;

        font-size: 16px;
    }

    .practice-area-header h2 {
        font-size: 24px;
    }

    .practice-area p,
    .practice-area ul,
    .practice-area ol {
        font-size: 14px;
        line-height: 1.8;
    }
}


@media (max-width: 600px) {

    .practice-area-header {
        gap: 12px;
        margin-bottom: 22px;
        padding-bottom: 13px;
    }

    .practice-area-number {
        width: 38px;
        height: 38px;

        font-size: 14px;
    }

    .practice-area-header h2 {
        font-size: 21px;
    }

    .practice-area h3 {
        font-size: 18px;
    }

    .practice-area h4 {
        font-size: 16px;
    }

    .practice-area p,
    .practice-area ul,
    .practice-area ol {
        font-size: 13px;
        line-height: 1.8;
    }
}

/* #########################################################
   New Page Hero
######################################################### */
/* =========================================================
   PAGE HERO
========================================================= */

.page-hero {
    padding: 72px 0 62px;

    background: var(--dr-navy);

    text-align: center;
}

.page-hero h1 {
    margin: 0;

    color: var(--dr-white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 42px;
    font-weight: 500;

    line-height: 1.2;
}

.page-hero p{
    color: var(--dr-gold-light);
}


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

@media (max-width: 991px) {

    .page-hero {
        padding: 60px 0 52px;
    }

    .page-hero h1 {
        font-size: 36px;
    }
}


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

@media (max-width: 420px) {

    .page-hero {
        padding-top: 38px;
        padding-bottom: 35px;
    }

    .page-hero h1 {
        font-size: 30px;
    }
}


/* ==========================================================
   REFERENCES
========================================================== */

.references-content{
    padding:70px 0;
}

.reference-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:28px;
    margin-top:50px;
}

.reference-card{
    background:var(--dr-light);
    border:1px solid #e7e7e7;
    border-top:4px solid var(--dr-gold);
    border-radius:12px;
    padding:28px;
    display:flex;
    flex-direction:column;
    transition:.25s ease;
    position:relative;
}

.reference-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;

    background:var(--dr-gold);
}

.reference-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.reference-card h3{
    color:var(--dr-navy);
    margin-bottom:14px;
    font-size:1.25rem;
}

.reference-card p{
    flex:1;
    color:#555;
    line-height:1.8;
    margin-bottom:22px;
}

.reference-card .btn{
    align-self:flex-start;
}

/* ==========================================================
   REFERENCES PAGE BUTTONS
========================================================== */

.reference-card .btn-outline{
    color: var(--dr-navy);
    border-color: var(--dr-navy);
    background: transparent;
}

.reference-card .btn-outline:hover{
    color: var(--dr-gold);
    background: var(--dr-navy);
    border-color: var(--dr-navy);
}



/* =========================================================
   FAQ PAGE
========================================================= */

.faq-page .faq-list{
    max-width:900px;
    margin:0 auto;
}

.faq-page .faq-item{
    margin-bottom:18px;
    border:1px solid #e5e7eb;
    border-radius:12px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 4px 12px rgba(0,0,0,.04);
}

.faq-page .faq-question{
    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:24px 32px;

    color:var(--dr-navy);
    font-size:22px;
    font-weight:700;
    line-height:1.5;
}

.faq-page .faq-question:hover{
    background:#f8f9fb;
    color:var(--dr-gold-dark) !important;
}

.faq-page .faq-item[open] .faq-question{
    background:var(--dr-navy);
    color:#fff !important;
}

.faq-page .faq-answer{
    padding:24px 32px;
    background:#fff;
    line-height:1.9;
    font-size:16px;
}

.faq-page .faq-answer p{
    color: var(--dr-navy) !important;
}

.faq-page .faq-question::-webkit-details-marker{
    display:none;
}

.faq-page .faq-question::after{
    content:"+";

    margin-left:24px;

    color:var(--dr-gold);

    font-size:34px;
    font-weight:300;

    flex-shrink:0;
}

.faq-page .faq-item[open] .faq-question::after{
    content:"−";
}


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


/* ---------------------------------------------------------
   CONTACT LOCATION / MAP
--------------------------------------------------------- */

.contact-location {
    background: var(--dr-light);
    border-top: 1px solid var(--dr-border);
    border-bottom: 1px solid var(--dr-border);
}

.contact-map {
    width: 100%;
    overflow: hidden;
    background: #e9edf2;
}

.contact-map iframe {
    display: block;

    width: 100%;
    height: 320px;

    border: 0;
}


/* ---------------------------------------------------------
   CONTACT CONTENT
--------------------------------------------------------- */

.contact-content {
    padding-top: 90px;
    padding-bottom: 90px;
}

.contact-page .contact-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.7fr)
        minmax(280px, 0.8fr);

    gap: 70px;

    max-width: 1100px;
    margin: 0 auto;
}


/* ---------------------------------------------------------
   CONTACT SECTION HEADING
--------------------------------------------------------- */

.contact-section-heading {
    margin-bottom: 38px;
}

.contact-section-heading .section-kicker {
    display: block;

    margin-bottom: 10px;

    color: var(--dr-gold);

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

    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-section-heading h2 {
    margin: 0;

    color: var(--dr-navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 31px;
    font-weight: 500;

    line-height: 1.25;
}


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

.contact-form {
    width: 100%;
}

.contact-form-group {
    margin-bottom: 22px;
}

.contact-form-group label {
    display: block;

    margin-bottom: 8px;

    color: var(--dr-navy);

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

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-form-group input,
.contact-form-group textarea {
    display: block;

    width: 100%;

    box-sizing: border-box;

    padding: 13px 15px;

    color: var(--dr-navy);

    font-family: inherit;
    font-size: 14px;

    background: var(--dr-white);

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

    border-radius: 0;

    outline: none;

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

.contact-form-group input {
    height: 48px;
}

.contact-form-group textarea {
    min-height: 180px;

    resize: vertical;

    line-height: 1.6;
}

.contact-form-group input:hover,
.contact-form-group textarea:hover {
    border-color: #cbd2dc;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    background: #fff;

    border-color: var(--dr-gold);

    box-shadow:
        0 0 0 3px rgba(214, 169, 47, 0.10);
}


/* ---------------------------------------------------------
   CONTACT FORM ACTIONS
--------------------------------------------------------- */

.contact-form-actions {
    margin-top: 30px;
}


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

.contact-information {
    padding: 34px 32px;

    background: var(--dr-white);

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

    box-shadow: var(--shadow-sm);
}

.contact-information .contact-section-heading {
    margin-bottom: 34px;
}

.contact-information .contact-section-heading h2 {
    font-size: 27px;
}


/* ---------------------------------------------------------
   CONTACT INFO BLOCK
--------------------------------------------------------- */

.contact-info-block {
    padding: 0 0 25px;
    margin-bottom: 25px;

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

.contact-info-block:last-child {
    padding-bottom: 0;
    margin-bottom: 0;

    border-bottom: 0;
}

.contact-info-block h3 {
    margin: 0 0 9px;

    color: var(--dr-navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

.contact-info-block p,
.contact-info-block address {
    margin: 0;

    color: #626c79;

    font-size: 13px;
    font-style: normal;

    line-height: 1.8;
}

.contact-info-block a {
    color: var(--dr-gold-dark);

    text-decoration: none;

    transition: color 0.2s ease;
}

.contact-info-block a:hover {
    color: var(--dr-navy);
}


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

@media (max-width: 991px) {

    .contact-content {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .contact-page .contact-grid {
        grid-template-columns:
            minmax(0, 1.4fr)
            minmax(250px, 0.8fr);

        gap: 45px;
    }

    .contact-map iframe {
        height: 280px;
    }

    .contact-information {
        padding: 30px 25px;
    }

}


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

@media (max-width: 767px) {

    .contact-content {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .contact-page .contact-grid {
        grid-template-columns: 1fr;

        gap: 50px;

        width: 100%;
    }

    .contact-section-heading {
        margin-bottom: 30px;
    }

    .contact-section-heading h2 {
        font-size: 28px;
    }

    .contact-information {
        padding: 28px 22px;
    }

    .contact-map iframe {
        height: 250px;
    }

}


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

@media (max-width: 420px) {

    .contact-content {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .contact-section-heading h2 {
        font-size: 26px;
    }

    .contact-form-group input {
        height: 46px;
    }

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

    .contact-information {
        padding: 25px 19px;
    }

    .contact-map iframe {
        height: 220px;
    }

}

.contact-success {

    margin-bottom: 25px;

    padding: 16px 20px;

    border-left: 4px solid #2e7d32;

    background: #edf7ed;

    color: #1b5e20;

    border-radius: 6px;
}

.contact-errors {

    margin-bottom: 25px;

    padding: 16px 20px;

    border-left: 4px solid #c62828;

    background: #fdecec;

    color: #8b0000;

    border-radius: 6px;
}

.contact-errors ul {

    margin: 0;

    padding-left: 18px;
}


/* =========================================
   THANK YOU PAGE
========================================= */

.thank-you-card {

    max-width: 760px;

    margin: 0 auto;

    background: #ffffff;

    padding: 50px 40px;

    text-align: center;

    border-radius: 8px;

    box-shadow: 0 10px 30px rgba(0,0,0,.08);

}


.thank-you-icon {

    width: 70px;

    height: 70px;

    margin: 0 auto 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--dr-gold);

    color: #ffffff;

    font-size: 40px;

    font-weight: bold;

}


.thank-you-card h2 {

    color: var(--dr-navy);

    margin-bottom: 20px;

}


.thank-you-card h3 {

    color: var(--dr-navy);

    margin-top: 30px;

}



.thank-you-divider {

    width: 80px;

    height: 2px;

    background: var(--dr-gold);

    margin: 30px auto;

}



.thank-you-list {

    text-align: left;

    max-width: 500px;

    margin: 20px auto;

    line-height: 2;

}


.thank-you-contact {

    margin: 35px 0;

    padding-top: 25px;

    border-top: 1px solid #ddd;

}


.thank-you-contact a {

    color: var(--dr-gold);

}

/* =========================================
   NEW YORK TIME BAR
========================================= */

.ny-time-bar {

    background: var(--dr-navy);

    color: #ffffff;

    font-size: 14px;

    padding: 8px 0;

}


.ny-time-bar .container {

    display:flex;

    justify-content:flex-end;

    gap:8px;

}


.ny-time-bar strong {

    color: var(--dr-gold);

}


@media(max-width:768px){

    .ny-time-bar .container {

        justify-content:center;

    }

}


/* =========================================================
   SITE CREDIT
========================================================= */

.site-credit {

    margin-top: 10px;

    font-size: 0.85rem;

    color: rgba(255,255,255,.70);

    text-align: center;

}

.site-credit a {

    color: var(--dr-gold);

    text-decoration: none;

    font-weight: 600;

    transition: color .25s ease;

}

.site-credit a:hover {

    color: #ffffff;

    text-decoration: underline;

}

.credit-logo{

    width:auto;

    height:20px;

    display:inline-block;

    vertical-align:middle;

    margin-right:8px;

}

.site-credit a{

    display:inline-flex;

    align-items:center;

    gap:8px;

}