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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    color: #333;
}

/* Header & Branding */
header {
    background: #fff;
}

/* Trust Header */
.trust-header {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 20px 0;
}

.trust-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.trust-nav-logo {
    display: inline-flex;
    padding: 0;
    flex: 0 0 auto;
}

.trust-nav-phones {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
}

.trust-nav-phones a {
    color: #1a2a3a;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.phone-separator {
    display: none;
}

.trust-links-row {
    background: #1a2a3a;
    margin-top: 16px;
    padding: 14px 10px;
    position: relative;
}

.trust-nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}


.trust-nav-links a,
.dropdown-trigger {
    text-decoration: none;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.trust-links-row .dropdown-content a {
    color: #1a2a3a;
}

.dropdown-trigger {
    border: 0;
    background: transparent;
    font-family: inherit;
    cursor: pointer;
    padding: 0;
}

/* Dropdown */
.dropdown { position: static; }

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    transform: none;
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
    border: 1px solid #dce5ed;
    border-radius: 10px;
    box-shadow: 0 24px 44px rgba(10, 28, 44, 0.2);
    padding: 18px 20px;
    width: auto;
    z-index: 20;
}

.drop-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    text-align: left;
    row-gap: 8px;
    column-gap: 14px;
}

.drop-grid a {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.4;
    padding: 6px 8px;
    border-radius: 6px;
    transition: background-color 0.2s ease, color 0.2s ease;
    border-bottom: 1px solid #e3e9ef;
}

.drop-icon {
    display: inline-flex;
    color: #1a2a3a;
}

.drop-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    margin-top: 2px;
    flex: 0 0 auto;
}

.drop-grid a:hover {
    background-color: #e9f0f6;
    color: #1a2a3a;
}

.dropdown.open .dropdown-content { display: block; }

/* Main Layout: Zig-Zag */
main {
    max-width: 1100px;
    margin: 22px auto 40px;
    padding: 0 20px;
}

/* Trust Strip */
.trust-hero {
    margin-bottom: 64px;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 36px;
}

.trust-hero-copy {
    text-align: center;
    max-width: 880px;
    margin: 0 auto 26px;
}

.trust-logo {
    display: block;
    max-width: 440px;
    width: 100%;
    height: auto;
    margin: 0 auto 18px;
    border: 1px solid #cacdd0;
    padding: 0;
}

.trust-hero-copy h2 {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    color: #1a2a3a;
    margin-bottom: 14px;
}


.trust-hero-copy p {
    color: #5b6873;
    line-height: 1.8;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.trust-strip .trust-pill {
    grid-column: span 2;
}

.trust-strip .trust-pill:nth-last-child(-n + 2) {
    grid-column: span 2;
}

.trust-strip .trust-pill:nth-child(4) {
    grid-column: 2 / span 2;
}

.trust-strip .trust-pill:nth-child(5) {
    grid-column: 4 / span 2;
}

.trust-pill {
    background: #ffffff;
    border: 1px solid #e1e8ef;
    padding: 18px;
    text-align: left;
    border-left: 4px solid #1a2a3a;
    box-shadow: 0 10px 20px rgba(10, 28, 44, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.trust-value {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: #1a2a3a;
    margin-bottom: 6px;
}

.trust-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6e7d8a;
}


.info-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.reverse {
    flex-direction: row-reverse;
}

.image-container {
    flex: 1;
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.text-container {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.text-container h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.text-container p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666;
}

.home-read-more {
    margin-top: 18px;
}

/* Attorneys Section */
.attorneys {
    margin-top: 40px;
    margin-bottom: 80px;
    text-align: center;
}

.attorneys h2 {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: #1a2a3a;
}

.attorney-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.attorney-card {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 16px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    text-align: left;
}

.attorney-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.attorney-details {
    padding: 24px;
}

.attorney-details h3 {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: #1a2a3a;
}

.attorney-details p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

.read-more {
    display: inline-block;
    text-decoration: none;
    color: #1a2a3a;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 1px solid #1a2a3a;
    padding-bottom: 4px;
}

/* Attorney Bio Pages */
.bio-page {
    max-width: 1100px;
    margin: 60px auto 100px;
    padding: 0 20px;
}

.bio-header {
    text-align: center;
    margin-bottom: 50px;
}

.bio-header h1 {
    font-family: 'Cinzel', serif;
    letter-spacing: 3px;
    color: #1a2a3a;
    margin-bottom: 10px;
}

.bio-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.bio-text {
    color: #555;
    line-height: 1.8;
    font-size: 0.95rem;
}

.bio-text h3 {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    color: #1a2a3a;
    margin: 28px 0 10px;
}

.bio-text ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.bio-text li {
    margin-bottom: 8px;
}

.bio-photo {
    border: 1px solid #eee;
    box-shadow: 0 18px 30px rgba(0,0,0,0.08);
    background: #fff;
    padding: 18px;
}

.bio-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.amber-profile .bio-header {
    margin-bottom: 34px;
}

.amber-profile .bio-header p {
    color: #5f6d7a;
    letter-spacing: 1px;
    font-weight: 600;
}

.amber-profile .bio-content {
    gap: 46px;
}

.amber-profile .bio-text {
    background: #fff;
    border: 1px solid #e6ecf2;
    box-shadow: 0 14px 24px rgba(16, 36, 54, 0.08);
    padding: 28px;
}

.amber-contact-card {
    background: linear-gradient(135deg, #f5f8fb 0%, #eef3f7 100%);
    border: 1px solid #d8e2eb;
    padding: 18px 20px;
    margin-bottom: 22px;
}

.amber-contact-card h2 {
    font-family: 'Cinzel', serif;
    letter-spacing: 1.5px;
    font-size: 1.05rem;
    color: #1a2a3a;
    margin-bottom: 10px;
}

.amber-contact-card ul {
    margin-top: 0;
}

.amber-contact-card li {
    margin-bottom: 6px;
    font-weight: 600;
}

.amber-contact-card a {
    color: #1a2a3a;
    text-decoration: none;
}

.amber-contact-card a:hover {
    text-decoration: underline;
}

.amber-profile .bio-photo {
    position: sticky;
    top: 24px;
}

.amber-photo-meta {
    border-top: 1px solid #e5e5e5;
    margin-top: 16px;
    padding-top: 14px;
}

.amber-photo-meta p {
    color: #4a5864;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* Practice Area Pages */
.service-page {
    max-width: 1150px;
    margin: 60px auto 90px;
    padding: 0 20px;
}

.service-hero {
    border-left: 4px solid #1a2a3a;
    padding-left: 18px;
    margin-bottom: 34px;
}

.service-kicker {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6e7d8a;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.service-hero h1 {
    font-family: 'Cinzel', serif;
    color: #1a2a3a;
    letter-spacing: 2px;
}

.service-subtext {
    margin-top: 10px;
    color: #5b6873;
    line-height: 1.7;
}

.service-layout {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr;
    gap: 30px;
}

.service-copy {
    background: #fff;
    border: 1px solid #e7ecef;
    box-shadow: 0 14px 28px rgba(0,0,0,0.07);
    padding: 30px;
    color: #4f5d68;
    line-height: 1.85;
}

.service-detail-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    margin-top: 20px;
    border-radius: 10px;
}

.victories-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    color: #4f5d68;
}

.victories-list li {
    margin-bottom: 12px;
    padding-left: 18px;
    position: relative;
}

.victories-list li::before {
    content: "*";
    position: absolute;
    left: 0;
    color: #1a2a3a;
    font-weight: 600;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-contact-card,
.service-optin-card {
    background: #fff;
    border: 1px solid #e7ecef;
    box-shadow: 0 10px 22px rgba(0,0,0,0.06);
    padding: 22px;
}

.service-contact-card h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #1a2a3a;
    letter-spacing: 1px;
}

.service-contact-card p {
    color: #586572;
    margin-bottom: 12px;
}

.service-contact-card ul {
    list-style: none;
    padding: 0;
}

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

.service-contact-card a {
    color: #1a2a3a;
    text-decoration: none;
    font-weight: 600;
}

.service-optin-card h3 {
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #1a2a3a;
}

.service-optin-card label {
    display: block;
    font-size: 0.8rem;
    color: #4f5d68;
    margin-bottom: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-optin-card input,
.service-optin-card textarea {
    width: 100%;
    border: 1px solid #d6dde3;
    padding: 10px 12px;
    margin-bottom: 12px;
    font-family: inherit;
    font-size: 0.9rem;
}

.service-optin-card button {
    width: 100%;
    border: 1px solid #1a2a3a;
    background: #1a2a3a;
    color: #fff;
    padding: 11px 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
}

/* Practice Areas Index */
.practice-index-page {
    max-width: 1150px;
    margin: 60px auto 90px;
    padding: 0 20px;
}

.practice-index-hero {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 40px;
}

.practice-index-hero h1 {
    font-family: 'Cinzel', serif;
    color: #1a2a3a;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.practice-index-hero p {
    color: #5b6873;
    line-height: 1.8;
}

.practice-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.practice-list-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #e5ebf1;
    box-shadow: 0 14px 26px rgba(11, 27, 43, 0.12);
    padding: 24px;
    aspect-ratio: 1 / 1;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    isolation: isolate;
}

.practice-list-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--card-image);
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    z-index: -2;
}

.practice-list-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 28, 44, 0.55) 0%, rgba(10, 28, 44, 0.72) 100%);
    z-index: -1;
}

.practice-list-card h2 {
    font-family: 'Cinzel', serif;
    color: #ffffff;
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.practice-list-card .read-more {
    color: #ffffff;
    border-bottom-color: #ffffff;
    font-size: 0.95rem;
}


.back-link {
    display: inline-block;
    margin-top: 24px;
    text-decoration: none;
    color: #1a2a3a;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Contact Page */
.contact-page {
    max-width: 1150px;
    margin: 60px auto 90px;
    padding: 0 20px;
}

.contact-hero {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 46px;
}

.contact-hero h1 {
    font-family: 'Cinzel', serif;
    color: #1a2a3a;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.contact-hero p {
    color: #5b6873;
    line-height: 1.7;
}

.contact-row {
    display: flex;
    gap: 28px;
    align-items: stretch;
    margin-bottom: 34px;
}

.contact-row.reverse {
    flex-direction: row-reverse;
}

.contact-map,
.contact-card {
    flex: 1;
}

.contact-map iframe {
    width: 100%;
    height: 320px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 16px 30px rgba(0,0,0,0.08);
}

.contact-card {
    background: #fff;
    border: 1px solid #e6ecf2;
    box-shadow: 0 14px 28px rgba(0,0,0,0.06);
    padding: 26px;
    color: #4f5d68;
    line-height: 1.7;
}

.contact-card h2 {
    font-family: 'Cinzel', serif;
    color: #1a2a3a;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.contact-card a {
    color: #1a2a3a;
    text-decoration: none;
    font-weight: 600;
}

.contact-emails {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.email-card {
    border: 1px solid #e7ecef;
    background: #f9fbfd;
    padding: 14px;
}

.email-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: #1a2a3a;
    margin-bottom: 6px;
}

/* Footer */
footer {
    background: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

footer p {
    margin: 6px 0;
}

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

.copyright {
    margin-top: 20px;
    color: #aaa;
}

/* Mobile */
@media (max-width: 768px) {
    .trust-header {
        padding: 20px 14px 0;
    }
    .trust-hero {
        padding: 22px;
    }
    .trust-logo {
        max-width: 300px;
    }
    .trust-nav {
        flex-direction: column;
        align-items: center;
    }
    .trust-nav-logo {
        padding: 0;
    }
    .trust-nav-phones {
        justify-content: center;
    }
    .trust-links-row {
        padding: 12px 6px;
    }
    .trust-nav-links {
        gap: 12px 14px;
        justify-content: center;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        text-align: center;
    }
    .trust-nav-links li {
        display: flex;
        justify-content: center;
    }
    .trust-nav-links .nav-home {
        display: none;
    }
    .dropdown {
        width: 100%;
        grid-column: 1 / -1;
        justify-content: center;
    }
    .dropdown-trigger {
        width: auto;
        text-align: center;
    }
    .dropdown-content {
        position: static;
        top: auto;
        left: auto;
        transform: none;
        border-radius: 8px;
        box-shadow: 0 12px 24px rgba(10, 28, 44, 0.14);
        margin-top: 10px;
        width: 100%;
        min-width: 0;
    }
    .trust-strip {
        grid-template-columns: 1fr;
    }
    .trust-strip .trust-pill {
        grid-column: span 1;
    }
    .trust-strip .trust-pill:nth-last-child(-n + 2) {
        grid-column: 1 / -1;
    }
    .trust-strip .trust-pill:nth-child(4),
    .trust-strip .trust-pill:nth-child(5) {
        grid-column: 1 / -1;
    }
    .drop-grid {
        grid-template-columns: 1fr;
    }
    .practice-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .practice-list-card {
        aspect-ratio: auto;
    }
    .info-row, .info-row.reverse {
        flex-direction: column;
        gap: 30px;
    }
    .phone-separator {
        display: none;
    }
    .drop-grid { grid-template-columns: 1fr; }
    .attorney-card img { height: 320px; }
    .bio-content { grid-template-columns: 1fr; }
    .amber-profile .bio-text { padding: 20px; }
    .amber-profile .bio-photo { position: static; }
    .service-layout { grid-template-columns: 1fr; }
    .service-copy { padding: 22px; }
    .practice-index-page { margin-top: 40px; }
    .contact-row { flex-direction: column; }
    .trust-hero { padding: 24px; }
}
