/* ================================================ */
/* FITZGERALD FAMILY LAW — STYLE.CSS                */
/* https://www.fitzgeraldfamilylaw.com              */
/* ================================================ */


/* ================================================ */
/* CSS CUSTOM PROPERTIES (VARIABLES)                */
/* ================================================ */
:root {
    --color-dark:       #292D3B;
    --color-blue:       #1F4769;
    --color-gold:       #D3A775;
    --color-gold-dark:  #b8874e;
    --color-text:       #222222;
    --color-muted:      #555555;
    --color-white:      #ffffff;
    --color-light-bg:   #f8f7f4;
    --color-border:     #e8e3d8;
    --font-serif:       'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans:        'Inter', system-ui, -apple-system, sans-serif;
    --container-max:    1300px;
    --transition:       all 0.3s ease;
    --radius:           4px;
    --shadow-sm:        0 2px 10px rgba(41, 45, 59, 0.07);
    --shadow-md:        0 8px 30px rgba(41, 45, 59, 0.11);
    --shadow-lg:        0 20px 60px rgba(41, 45, 59, 0.15);
}


/* ================================================ */
/* RESET & BASE                                     */
/* ================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

address {
    font-style: normal;
}


/* ================================================ */
/* LAYOUT — CONTAINER                               */
/* ================================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}


/* ================================================ */
/* TYPOGRAPHY                                       */
/* ================================================ */
h1 {
    font-family: var(--font-serif);
    font-size: 58px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.12;
    color: var(--color-white);
}

h2 {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -0.25px;
    line-height: 1.2;
    color: var(--color-dark);
}

h3 {
    font-family: var(--font-serif);
    font-size: 21px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.35;
    color: var(--color-dark);
}

h4 {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 1.4;
    color: var(--color-white);
    text-transform: uppercase;
    margin-bottom: 18px;
}

p {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.78;
    color: var(--color-text);
    margin-bottom: 1em;
}

p:last-child {
    margin-bottom: 0;
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1.4;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    margin-bottom: 14px;
}

.section-intro {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.75;
    color: var(--color-muted);
    max-width: 640px;
    margin: 0 auto;
}

.gold-divider {
    width: 52px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 2px;
    margin: 14px 0 26px;
}

.gold-divider.centered {
    margin-left: auto;
    margin-right: auto;
}


/* ================================================ */
/* BUTTONS                                          */
/* ================================================ */
.btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.09em;
    line-height: 1;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-dark);
    border: 2px solid var(--color-gold);
}

.btn-primary:hover {
    background: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
    color: var(--color-white);
}

.btn-secondary {
    background: var(--color-dark);
    color: var(--color-white);
    border: 2px solid var(--color-dark);
}

.btn-secondary:hover {
    background: var(--color-blue);
    border-color: var(--color-blue);
}

.btn-ghost {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.55);
}

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

.btn-outline-dark {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.09em;
    line-height: 1;
    padding: 14px 40px;
}

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

.btn-read-more {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: var(--radius);
    background: transparent;
    color: var(--color-blue);
    border: 2px solid var(--color-blue);
    transition: var(--transition);
    white-space: nowrap;
    margin-top: auto;
}

.btn-read-more:hover {
    background: var(--color-blue);
    color: var(--color-white);
}


/* ================================================ */
/* ANIMATION: FADE-IN-UP                            */
/* ================================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0.15s;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero: CSS keyframe so it plays on load without observer */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-animate {
    opacity: 0;
    animation: heroFadeUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}


/* ================================================ */
/* TOP CONTACT BAR                                  */
/* ================================================ */
.top-bar {
    width: 100%;
    background: var(--color-dark);
    height: 50px;
    overflow: hidden;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 12px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    flex-shrink: 1;
    min-width: 0;
}

.top-bar-item {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.top-bar-link:hover {
    color: var(--color-gold);
}

.top-bar-divider {
    color: rgba(255, 255, 255, 0.25);
    font-size: 11px;
    margin: 0 10px;
    flex-shrink: 0;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.top-bar-social {
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    width: 28px;
    height: 28px;
}

.top-bar-social:hover {
    color: var(--color-gold);
}

.top-bar-btn {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.07em;
    line-height: 1;
    padding: 8px 16px;
    border-radius: var(--radius);
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-client-login {
    background: var(--color-blue);
    color: var(--color-white);
    border: 1px solid var(--color-blue);
}

.btn-client-login:hover {
    background: #173451;
    border-color: #173451;
}

.btn-payment {
    background: var(--color-gold);
    color: var(--color-dark);
    border: 1px solid var(--color-gold);
}

.btn-payment:hover {
    background: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
    color: var(--color-white);
}


/* ================================================ */
/* HEADER SECTION                                   */
/* ================================================ */
.main-header {
    width: 100%;
    height: 120px;
    background: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 1px 4px rgba(41, 45, 59, 0.05);
    transition: box-shadow 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 4px 24px rgba(41, 45, 59, 0.13);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
}

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 88px;
    width: auto;
    object-fit: contain;
}

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

.nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1;
    color: var(--color-dark);
    padding: 9px 13px;
    border-radius: var(--radius);
    position: relative;
    transition: color 0.2s;
    display: block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 13px;
    right: 13px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.25s ease;
    transform-origin: center;
}

.nav-link:hover {
    color: var(--color-blue);
}

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

.nav-link.active {
    color: var(--color-blue);
}

.nav-cta {
    margin-left: 4px;
}

.nav-cta::after {
    display: block;
}

.nav-cta:hover {
    color: var(--color-blue);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 18px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--color-dark);
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease;
}

.mobile-nav.open {
    max-height: 520px;
}

.mobile-nav-list {
    padding: 8px 0 24px;
}

.mobile-nav-link {
    display: block;
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.9);
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s, background 0.2s;
}

.mobile-nav-link:hover {
    color: var(--color-gold);
    background: rgba(255, 255, 255, 0.04);
}


/* ================================================ */
/* HERO SECTION                                     */
/* ================================================ */
.hero-section {
    width: 100%;
    height: 800px;
    position: relative;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2000ms ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        130deg,
        rgba(41, 45, 59, 0.78) 0%,
        rgba(31, 71, 105, 0.52) 55%,
        rgba(41, 45, 59, 0.3) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 30px;
    padding-bottom: 60px;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-gold);
    padding: 10px 18px 10px 14px;
    border-radius: var(--radius);
    margin-bottom: 28px;
}

.badge-number {
    font-family: var(--font-serif);
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1;
    color: var(--color-dark);
}

.badge-text {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.25;
    color: var(--color-dark);
    text-transform: uppercase;
}

.hero-title {
    margin-bottom: 16px;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.18em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    margin-bottom: 38px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.hero-dot.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.hero-dot:hover {
    border-color: var(--color-white);
}


/* ================================================ */
/* SECTION 1: PRACTICE AREA ICON CARDS              */
/* ================================================ */
.icon-cards-section {
    width: 100%;
    background: var(--color-dark);
}

.icon-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.icon-card {
    padding: 52px 36px 48px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.3s ease;
}

.icon-card:last-child {
    border-right: none;
}

.icon-card:hover {
    background: rgba(255, 255, 255, 0.04);
}

.icon-card-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 22px;
    color: var(--color-gold);
}

.icon-card-icon svg {
    width: 100%;
    height: 100%;
}

.icon-card-title {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 12px;
}

.icon-card-desc {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.58);
    margin-bottom: 0;
}


/* ================================================ */
/* SECTION 2: WELCOME / ABOUT                       */
/* ================================================ */
.welcome-section {
    width: 100%;
    padding: 100px 0;
    background: var(--color-white);
}

.welcome-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 88px;
    align-items: center;
}

.welcome-text p {
    color: var(--color-muted);
}

.welcome-photo img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}


/* ================================================ */
/* SECTION 3: FAMILY LAW INSIGHTS GRID              */
/* ================================================ */
.insights-section {
    width: 100%;
    padding: 100px 0;
    background: var(--color-light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 52px;
}

.blog-card {
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
}

.blog-card-img-link {
    display: block;
    overflow: hidden;
}

.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.04);
}

.blog-card-body {
    padding: 24px 26px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.38;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.blog-card-title a {
    color: var(--color-dark);
    transition: color 0.2s;
}

.blog-card-title a:hover {
    color: var(--color-blue);
}

.blog-card-excerpt {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.68;
    color: var(--color-muted);
    flex: 1;
    margin-bottom: 20px;
}

.insights-more {
    text-align: center;
}


/* ================================================ */
/* FAT FOOTER SECTION                               */
/* ================================================ */
.fat-footer {
    width: 100%;
    background: var(--color-dark);
    padding: 76px 0 56px;
}

.fat-footer-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.9fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.footer-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    margin-bottom: 24px;
}

.footer-phone {
    margin-bottom: 4px;
}

.footer-phone a {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1;
    color: var(--color-gold);
    transition: color 0.2s;
}

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

.footer-fax {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.42);
    margin-bottom: 16px;
}

.footer-address {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.footer-email {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.4;
    color: var(--color-gold);
    transition: color 0.2s;
    display: inline-block;
    margin-bottom: 24px;
}

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

.footer-socials {
    display: flex;
    gap: 14px;
    align-items: center;
}

.footer-social-link {
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.footer-social-link:hover {
    color: var(--color-gold);
}

.footer-heading {
    margin-bottom: 18px;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.58);
    transition: color 0.2s;
}

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

.footer-action-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

.btn-footer-client,
.btn-footer-payment {
    display: block;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.09em;
    line-height: 1;
    text-transform: uppercase;
    padding: 14px 20px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.btn-footer-client {
    background: var(--color-blue);
    color: var(--color-white);
    border: 2px solid var(--color-blue);
}

.btn-footer-client:hover {
    background: #163252;
    border-color: #163252;
}

.btn-footer-payment {
    background: var(--color-gold);
    color: var(--color-dark);
    border: 2px solid var(--color-gold);
}

.btn-footer-payment:hover {
    background: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
    color: var(--color-white);
}

.footer-map {
    margin-top: 4px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-map iframe {
    display: block;
}


/* ================================================ */
/* SUB-PAGE: THE TEAM                               */
/* ================================================ */
.team-section {
    width: 100%;
    padding: 88px 0 96px;
    background: var(--color-white);
}

.team-intro {
    margin-bottom: 48px;
}

.team-name {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.25px;
    line-height: 1.15;
    color: var(--color-dark);
}

.name-esq {
    color: var(--color-gold);
    font-style: italic;
}

.team-bio-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.team-bio-text p {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.78;
    color: var(--color-muted);
    margin-bottom: 20px;
}

.team-contact-btn {
    margin-top: 12px;
}

.team-bio-photo img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 140px;
}


/* ================================================ */
/* RESPONSIVE — THE TEAM                            */
/* ================================================ */
@media (max-width: 768px) {
    .team-bio-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .team-bio-photo {
        order: -1;
    }

    .team-bio-photo img {
        position: static;
        max-width: 280px;
    }

    .team-name {
        font-size: 30px;
    }
}


/* ================================================ */
/* SUB-PAGE: FAQ                                    */
/* ================================================ */
.faq-section {
    width: 100%;
    padding: 88px 0 96px;
    background: var(--color-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 72px;
    align-items: start;
    margin-bottom: 60px;
}

.faq-intro {
    margin-bottom: 36px;
}

.faq-accordion {
    border-top: 1px solid var(--color-border);
}

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px 0;
    text-align: left;
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.35;
    color: var(--color-dark);
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--color-blue);
}

.faq-item.open .faq-question {
    color: var(--color-blue);
}

.faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--color-border);
    position: relative;
    transition: border-color 0.2s, background 0.2s;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--color-dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s;
}

.faq-icon::before {
    width: 10px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon {
    border-color: var(--color-gold);
    background: var(--color-gold);
}

.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after {
    background: var(--color-dark);
}

.faq-item.open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.78;
    color: var(--color-muted);
    padding-bottom: 20px;
    margin-bottom: 0;
}

.faq-answer p + p {
    padding-top: 0;
}

.faq-photo-col img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 160px;
    margin-top: 20px;
}


/* ================================================ */
/* RESPONSIVE — FAQ                                 */
/* ================================================ */
@media (max-width: 900px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .faq-photo-col {
        order: -1;
    }

    .faq-photo-col img {
        position: static;
        max-height: 300px;
        object-fit: cover;
    }
}


/* ================================================ */
/* COPYRIGHT FOOTER BAR                             */
/* ================================================ */
.copyright-bar {
    width: 100%;
    background: #1b1e2b;
    padding: 18px 0;
}

.copyright-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.copyright-inner p {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 0;
}

.copyright-inner a {
    color: var(--color-gold);
    transition: color 0.2s;
}

.copyright-inner a:hover {
    color: var(--color-white);
}


/* ================================================ */
/* MOBILE STICKY PHONE BAR                          */
/* ================================================ */
.mobile-phone-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: var(--color-blue);
    height: 50px;
}

.mobile-phone-bar-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    height: 100%;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1;
    color: var(--color-white);
    transition: background 0.2s;
}

.mobile-phone-bar-link:hover {
    background: rgba(0, 0, 0, 0.1);
}


/* ================================================ */
/* RESPONSIVE — TABLET (max-width: 1100px)          */
/* ================================================ */
@media (max-width: 1100px) {
    h1 { font-size: 46px; }
    h2 { font-size: 34px; }

    .nav-link { font-size: 14px; padding: 8px 10px; }

    .welcome-inner { gap: 52px; }

    .fat-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 44px;
    }

    .footer-col-map {
        grid-column: 1 / -1;
    }

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

@media (max-width: 900px) {
    .icon-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .icon-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .icon-card:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.07);
    }

    .icon-card:nth-child(3),
    .icon-card:nth-child(4) {
        border-bottom: none;
    }

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

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

    .welcome-photo img {
        height: 300px;
    }
}


/* ================================================ */
/* RESPONSIVE — MOBILE (max-width: 768px)           */
/* ================================================ */
@media (max-width: 768px) {

    /* Top Bar */
    .top-bar {
        display: none;
    }

    .top-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        height: auto;
    }

    .top-bar-left {
        flex-wrap: wrap;
        gap: 4px;
    }

    .top-bar-address {
        display: none;
    }

    .top-bar-divider:first-of-type {
        display: none;
    }

    .top-bar-right {
        gap: 8px;
    }

    /* Header */
    .main-header {
        height: 74px;
    }

    .header-inner {
        height: 74px;
    }

    .logo-img {
        height: 50px;
    }

    .nav-list {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    /* Hero */
    .hero-section {
        height: 580px;
    }

    h1 {
        font-size: 34px;
    }

    .hero-content {
        padding-bottom: 80px;
    }

    .hero-badge {
        padding: 8px 14px 8px 12px;
    }

    .badge-number {
        font-size: 32px;
    }

    .badge-text {
        font-size: 11px;
    }

    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
        max-width: 280px;
    }

    /* Icon Cards */
    .icon-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .icon-card {
        padding: 36px 22px;
    }

    /* Welcome */
    .welcome-section {
        padding: 68px 0;
    }

    /* Insights */
    .insights-section {
        padding: 68px 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    /* Footer */
    .fat-footer {
        padding: 52px 0 40px;
    }

    .fat-footer-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .footer-col-map {
        grid-column: auto;
    }

    .footer-phone a {
        font-size: 26px;
    }

    /* Copyright */
    .copyright-inner {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }

    /* Mobile Phone Bar */
    .mobile-phone-bar {
        display: flex;
    }

    .copyright-bar {
        padding-bottom: 62px;
    }

    h2 { font-size: 28px; }
    h3 { font-size: 19px; }
}


/* ================================================ */
/* RESPONSIVE — SMALL MOBILE (max-width: 480px)     */
/* ================================================ */
@media (max-width: 480px) {
    .hero-section {
        height: 520px;
    }

    h1 {
        font-size: 28px;
    }

    .badge-number {
        font-size: 26px;
    }

    .icon-cards-grid {
        grid-template-columns: 1fr;
    }

    .icon-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .icon-card:last-child {
        border-bottom: none;
    }

    .top-bar-btn {
        display: none;
    }
}


/* ================================================ */
/* SUB-PAGE: PAGE TITLE BAR                         */
/* ================================================ */
.page-title-bar {
    width: 100%;
    height: 280px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.page-title-bar-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(41, 45, 59, 0.82) 0%,
        rgba(31, 71, 105, 0.60) 60%,
        rgba(41, 45, 59, 0.45) 100%
    );
}

.page-title-bar-inner {
    position: relative;
    z-index: 1;
}

.page-title-eyebrow {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    line-height: 1;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.page-title {
    font-family: var(--font-serif);
    font-size: 50px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.1;
    color: var(--color-white);
}


/* ================================================ */
/* SUB-PAGE: AREAS OF PRACTICE                      */
/* ================================================ */
.practice-section {
    width: 100%;
    padding: 88px 0 96px;
    background: var(--color-white);
}

.practice-intro {
    max-width: 720px;
    margin-bottom: 56px;
}

.practice-lead {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.78;
    color: var(--color-muted);
    margin-bottom: 0;
}

.practice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 60px;
    margin-bottom: 64px;
}

.practice-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.practice-list li {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.5;
    color: var(--color-text);
    padding: 16px 0 16px 28px;
    border-bottom: 1px solid var(--color-border);
    position: relative;
    transition: color 0.2s, padding-left 0.2s;
}

.practice-list li:first-child {
    border-top: 1px solid var(--color-border);
}

.practice-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--color-gold);
    border-top: 2px solid var(--color-gold);
    transform: translateY(-50%) rotate(45deg);
}

.practice-list li:hover {
    color: var(--color-blue);
    padding-left: 34px;
}

.practice-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 32px;
    padding: 40px 48px;
    margin-top: 32px;
    border-top: none;
    background: var(--color-light-bg);
    border-left: 4px solid var(--color-gold);
    border-radius: var(--radius);
}

.practice-cta p {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1.4;
    color: var(--color-dark);
    margin-bottom: 0;
}

.practice-cta-btn-wrap {
    display: flex;
    justify-content: center;
}
}


/* ================================================ */
/* RESPONSIVE — SUB-PAGE TITLE BAR                  */
/* ================================================ */
@media (max-width: 768px) {
    .page-title-bar {
        height: 200px;
    }

    .page-title {
        font-size: 34px;
    }

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

    .practice-list:last-child li:first-child {
        border-top: none;
    }

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

    .practice-cta-btn-wrap {
        justify-content: flex-start;
    }

    .practice-cta .btn {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }
}

/* ======================================== */
/* SECTION: CLIENT FEEDBACK PAGE           */
/* ======================================== */

.testimonials-section {
    padding: 80px 0 60px;
    background: #f9f8f6;
}

.testimonials-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.testimonials-lead {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 32px 28px;
    box-shadow: 0 2px 18px rgba(41, 45, 59, 0.07);
    border-left: 4px solid var(--color-gold);
    margin: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(41, 45, 59, 0.13);
    transform: translateY(-3px);
}

.testimonial-card-wide {
    grid-column: 1 / -1;
}

.testimonial-quote-mark {
    font-family: var(--font-serif);
    font-size: 72px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 0.8;
    color: var(--color-gold);
    opacity: 0.35;
    margin-bottom: 12px;
    display: block;
}

.testimonial-card p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.75;
    color: #444;
    margin: 0 0 20px;
    flex: 1;
}

.testimonial-attribution {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1;
    color: var(--color-blue);
    padding-top: 16px;
    border-top: 1px solid #e8e3d8;
    display: block;
}

.testimonial-attribution::before {
    content: "\2014\0020";
    color: var(--color-gold);
}

/* ======================================== */
/* RESPONSIVE: CLIENT FEEDBACK PAGE        */
/* ======================================== */

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card-wide {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card-wide {
        grid-column: auto;
    }

    .testimonial-card {
        padding: 28px 22px 22px;
    }
}

/* ======================================== */
/* SECTION: CONTACT PAGE                   */
/* ======================================== */

.contact-map-band {
    width: 100%;
    line-height: 0;
    border-bottom: 3px solid var(--color-gold);
}

.contact-section {
    padding: 70px 0 80px;
    background: #f9f8f6;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.contact-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 28px 32px;
    box-shadow: 0 2px 16px rgba(41, 45, 59, 0.07);
    text-align: center;
    border-top: 3px solid var(--color-gold);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 8px 28px rgba(41, 45, 59, 0.13);
    transform: translateY(-3px);
}

.contact-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--color-dark);
    border-radius: 50%;
    color: var(--color-gold);
    margin-bottom: 18px;
}

.contact-card-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.2;
    color: var(--color-dark);
    margin: 0 0 14px;
}

.contact-card-body {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.75;
    color: #666;
    font-style: normal;
    margin: 0;
}

.contact-card-body p {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.75;
    color: #666;
    margin: 0;
}

.contact-card-phone-main {
    margin: 0 0 4px !important;
}

.contact-card-phone-main a {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1;
    color: var(--color-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.contact-card-phone-fax {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1;
    color: #999;
    margin: 0 !important;
}

.contact-card-email {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1;
    color: var(--color-blue);
    text-decoration: none;
    word-break: break-all;
    transition: color 0.2s ease;
}

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

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ======================================== */
/* RESPONSIVE: CONTACT PAGE                */
/* ======================================== */

@media (max-width: 1024px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-map-band iframe {
        height: 260px;
    }

    .contact-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* ======================================== */
/* SECTION: FAMILY LAW INSIGHTS PAGE       */
/* ======================================== */

.insights-section {
    padding: 80px 0 60px;
    background: #f9f8f6;
}

.insights-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.insights-lead {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

.insight-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 2px 16px rgba(41, 45, 59, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.insight-card:hover {
    box-shadow: 0 8px 28px rgba(41, 45, 59, 0.14);
    transform: translateY(-4px);
}

.insight-card-img-wrap {
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

.insight-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.insight-card:hover .insight-card-img {
    transform: scale(1.04);
}

.insight-card-body {
    padding: 22px 20px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.insight-card-title {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.4;
    color: var(--color-dark);
    margin: 0 0 10px;
}

.insight-card-title a {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.4;
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.insight-card-title a:hover {
    color: var(--color-gold);
}

.insight-card-excerpt {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.65;
    color: #666;
    margin: 0 0 18px;
    flex: 1;
}

/* ======================================== */
/* RESPONSIVE: INSIGHTS PAGE               */
/* ======================================== */

@media (max-width: 1200px) {
    .insights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 860px) {
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================================== */
/* SECTION: INDIVIDUAL ARTICLE PAGES       */
/* ======================================== */

.article-page {
    padding: 64px 0 80px;
    background: #fff;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: flex-start;
}

/* Main article content column */
.article-main {}

.article-hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 36px;
    box-shadow: var(--shadow-md);
    display: block;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.article-category {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1;
    color: #fff;
    background: var(--color-gold);
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 3px;
    text-decoration: none;
}

.article-date {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1;
    color: #999;
}

.article-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.25;
    color: var(--color-dark);
    margin: 0 0 28px;
}

.article-divider {
    width: 56px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 2px;
    margin-bottom: 32px;
}

.article-body {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.8;
    color: #333;
}

.article-body p {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.8;
    color: #333;
    margin: 0 0 20px;
}

.article-body h2,
.article-body h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.3;
    color: var(--color-dark);
    margin: 36px 0 14px;
}

.article-body h2 {
    font-size: 26px;
}

.article-body h3 {
    font-size: 22px;
}

.article-body h4,
.article-body h5 {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.4;
    color: var(--color-dark);
    margin: 28px 0 10px;
}

.article-body strong {
    font-weight: 600;
    color: var(--color-dark);
}

.article-body a {
    color: var(--color-blue);
    text-decoration: underline;
    text-decoration-color: rgba(31, 71, 105, 0.35);
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

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

.article-body ul,
.article-body ol {
    margin: 0 0 20px 24px;
    padding: 0;
}

.article-body li {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.75;
    color: #333;
    margin-bottom: 6px;
}

.article-body blockquote {
    border-left: 4px solid var(--color-gold);
    margin: 28px 0;
    padding: 16px 24px;
    background: #f9f8f6;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.article-body blockquote p {
    font-style: italic;
    color: #555;
    margin: 0;
}

.article-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1;
    color: var(--color-blue);
    text-decoration: none;
    margin-bottom: 36px;
    transition: color 0.2s ease;
}

.article-back-link:hover {
    color: var(--color-gold);
}

.article-back-link svg {
    transition: transform 0.2s ease;
}

.article-back-link:hover svg {
    transform: translateX(-3px);
}

/* Sidebar column */
.article-sidebar {
    position: sticky;
    top: 140px;
}

.sidebar-card {
    background: #f9f8f6;
    border-radius: var(--radius);
    padding: 28px 24px;
    margin-bottom: 24px;
    border-top: 3px solid var(--color-gold);
}

.sidebar-card-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.2;
    color: var(--color-dark);
    margin: 0 0 16px;
}

.sidebar-contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.sidebar-contact-info li {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.65;
    color: #555;
    margin-bottom: 6px;
}

.sidebar-contact-info a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1;
    color: var(--color-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.sidebar-btn {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    color: #fff;
    background: var(--color-blue);
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    padding: 14px 20px;
    border-radius: 4px;
    transition: background 0.25s ease;
}

.sidebar-btn:hover {
    background: var(--color-dark);
}

.sidebar-related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-related-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e8e3d8;
}

.sidebar-related-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-related-list a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1.45;
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
}

.sidebar-related-list a:hover {
    color: var(--color-gold);
}

/* ======================================== */
/* RESPONSIVE: ARTICLE PAGES               */
/* ======================================== */

@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr 280px;
        gap: 40px;
    }

    .article-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }

    .article-hero-img {
        height: 260px;
    }

    .article-title {
        font-size: 26px;
    }
}

