/* ==========================================================================
   Reizes Law — Shared Stylesheet (sub-pages)
   Extracted from index.html inline styles + sub-page-specific additions.
   ========================================================================== */

:root {
    --primary-color: #1a2b3c;
    --secondary-color: #c5a059; /* Luxury Gold */
    --accent-silver: #bdc3c7;
    --text-dark: #2c3e50;
    --text-muted: #576574;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Top Bar */
.top-bar {
    background: #0d1a26;
    color: var(--accent-silver);
    padding: 12px 10%;
    display: flex;
    justify-content: flex-end;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.top-bar a {
    color: var(--accent-silver);
    text-decoration: none;
    margin-left: 25px;
    transition: var(--transition);
}

.top-bar a:hover {
    color: var(--secondary-color);
}

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.98);
    padding: 1.5rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
}

.logo svg {
    margin-right: 15px;
    transition: var(--transition);
}

.logo:hover svg {
    transform: rotate(-5deg) scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.current::after {
    width: 100%;
}

.nav-links a.current {
    color: var(--secondary-color);
}

/* Nav dropdown (Expertise) */
.nav-links li.has-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-chevron {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.has-dropdown.open > .nav-dropdown-trigger .dropdown-chevron,
.has-dropdown:hover > .nav-dropdown-trigger .dropdown-chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    list-style: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 260px;
    background: var(--white);
    border: 1px solid #eee;
    border-top: 3px solid var(--secondary-color);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1001;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}

.has-dropdown:hover > .dropdown-menu,
.has-dropdown:focus-within > .dropdown-menu,
.has-dropdown.open > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 22px;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
    background: var(--bg-light);
    color: var(--secondary-color);
    padding-left: 28px;
    outline: none;
}

/* CTA / Submit buttons */
.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1.2rem 3.5rem;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid var(--secondary-color);
}

.cta-button:hover {
    background: transparent;
    color: var(--secondary-color);
    transform: translateY(-5px);
}

.submit-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1.2rem 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* Footer */
footer {
    background: #0d1a26;
    color: var(--accent-silver);
    padding: 100px 10% 50px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.footer-brand p {
    max-width: 400px;
    line-height: 2;
}

.footer-links h4 {
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--accent-silver);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

.footer-bottom {
    padding-top: 50px;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0.5;
}

.footer-bottom a {
    color: inherit;
    text-decoration: underline;
}

/* Accessibility Widget */
.accessibility-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
}

.acc-btn {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: var(--transition);
    border: 2px solid var(--secondary-color);
}

.acc-btn:hover {
    transform: scale(1.1);
}

.acc-menu {
    position: absolute;
    bottom: 80px;
    left: 0;
    background: var(--white);
    width: 280px;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    gap: 15px;
}

.acc-menu.active {
    display: flex;
}

.acc-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: var(--bg-light);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.acc-option:hover {
    background: #eee;
}

.acc-menu h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

#accReset {
    margin-top: 10px;
    padding: 10px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

button.acc-btn {
    font-family: inherit;
    font-size: inherit;
    padding: 0;
}

button.acc-btn:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 3px;
}

/* Accessibility modifier classes */
body.high-contrast {
    background: #000 !important;
    color: #fff !important;
}

body.high-contrast * {
    background-color: transparent !important;
    color: #fff !important;
    border-color: #fff !important;
}

body.large-text {
    font-size: 1.25rem !important;
}

body.highlight-links a {
    text-decoration: underline !important;
    background: yellow !important;
    color: #000 !important;
    font-weight: 700 !important;
}

/* Hamburger (mobile) */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--primary-color);
    margin: 6px 0;
    transition: var(--transition);
}

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

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -50px;
    left: 0;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    z-index: 10001;
    text-decoration: none;
    font-weight: 700;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--secondary-color);
}

/* Floating contact — subtle stacked call + email */
.floating-contact {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.fc-btn {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.fc-btn svg { position: relative; z-index: 1; }

.fc-btn:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 3px;
}

.fc-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.fc-primary:hover,
.fc-primary:focus {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    outline: none;
}

.fc-secondary {
    width: 46px;
    height: 46px;
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid rgba(197, 160, 89, 0.55);
}

.fc-secondary:hover,
.fc-secondary:focus {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    outline: none;
}

/* Soft pulse halo — says "available" without shouting */
.fc-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.55);
    animation: fc-pulse 2.2s ease-out infinite;
    pointer-events: none;
}

@keyframes fc-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.55); }
    70%  { box-shadow: 0 0 0 14px rgba(197, 160, 89, 0); }
    100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .fc-pulse { animation: none; }
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 160px;
    right: 32px;
    width: 46px;
    height: 46px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9997;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover,
.scroll-top:focus {
    background: var(--secondary-color);
    color: var(--primary-color);
    outline: none;
}

/* Noscript banner */
.noscript-banner {
    background: #fff3cd;
    color: #664d03;
    text-align: center;
    padding: 14px 20px;
    font-weight: 600;
    border-bottom: 2px solid #ffe69c;
}

/* ==========================================================================
   Sub-page specific
   ========================================================================== */

/* Page Hero (smaller than home hero) */
.page-hero {
    position: relative;
    background: var(--primary-color);
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 10% 70px;
    color: var(--white);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(197, 160, 89, 0.12) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.page-hero > * {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.2rem;
    max-width: 900px;
}

.page-hero h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    margin: 28px auto 0;
}

.page-hero p.lead {
    font-size: 1.15rem;
    color: var(--accent-silver);
    font-weight: 300;
    max-width: 720px;
    margin-top: 1.2rem;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-silver);
    margin-bottom: 1.5rem;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li + li::before {
    content: '>';
    color: var(--secondary-color);
    margin-right: 10px;
    font-weight: 700;
}

.breadcrumb a {
    color: var(--accent-silver);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb li[aria-current="page"] {
    color: var(--secondary-color);
}

/* Article / page content */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 10%;
}

.page-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin-top: 15px;
}

.page-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.page-content a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--secondary-color);
    text-underline-offset: 3px;
    transition: var(--transition);
}

.page-content a:hover {
    color: var(--secondary-color);
}

.page-content ul {
    list-style: none;
    margin: 1rem 0 1.5rem;
    padding: 0;
}

.page-content ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.page-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 18px;
    height: 10px;
    border-left: 3px solid var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
    transform: rotate(-45deg);
}

/* Info callout — key takeaway / deadline */
.info-callout {
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    padding: 24px 28px;
    margin: 2rem 0;
    border-radius: 2px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.info-callout h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-callout p {
    margin-bottom: 0;
    color: var(--text-dark);
    font-size: 1rem;
}

/* CTA strip near end of article */
.cta-strip {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 80px 10%;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-strip h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--white);
    font-size: 2.4rem;
    margin-bottom: 1rem;
    position: relative;
}

.cta-strip p {
    max-width: 640px;
    margin: 0 auto 2rem;
    color: var(--accent-silver);
    font-size: 1.1rem;
    position: relative;
}

.cta-strip .cta-button {
    position: relative;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1100px) {
    nav { padding: 1.2rem 6%; }
    .top-bar { padding: 10px 6%; }
    .hamburger { display: block; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 340px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 90px 35px 35px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.12);
        transition: right 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1000;
    }
    .nav-links.open { right: 0; }
    .nav-links li { margin: 0 0 1.8rem 0; }
    .nav-links a { font-size: 1rem; }

    /* Mobile dropdown — inline, tap-to-expand */
    .nav-links li.has-dropdown { width: 100%; }
    .nav-dropdown-trigger {
        width: 100%;
        justify-content: space-between;
    }
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        width: 100%;
        min-width: 0;
        background: transparent;
        border: none;
        border-top: 1px solid rgba(197, 160, 89, 0.2);
        box-shadow: none;
        padding: 0;
        margin-top: 14px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, margin-top 0.25s ease;
    }
    .dropdown-menu::before { display: none; }
    .has-dropdown.open > .dropdown-menu {
        max-height: 500px;
    }
    .has-dropdown:hover > .dropdown-menu {
        /* neutralize hover-open behavior on mobile */
        max-height: 0;
    }
    .has-dropdown.open:hover > .dropdown-menu {
        max-height: 500px;
    }
    .dropdown-menu li { margin: 0; }
    .dropdown-menu a {
        padding: 12px 0 12px 18px;
        font-size: 0.85rem;
    }
    .dropdown-menu a:hover,
    .dropdown-menu a:focus {
        background: transparent;
        padding-left: 26px;
    }
    .nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(13, 26, 38, 0.55);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 999;
    }
    .nav-backdrop.active { opacity: 1; pointer-events: auto; }
}

@media (max-width: 480px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .fc-btn { width: 46px; height: 46px; }
    .fc-secondary { width: 42px; height: 42px; }
    .scroll-top {
        bottom: 140px;
        right: 22px;
        width: 40px;
        height: 40px;
    }
}

/* ==========================================================================
   Homepage-only
   ========================================================================== */

/* Hero */
.hero {
    position: relative;
    background: var(--primary-color);
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.hero-content {
    flex: 1;
    z-index: 2;
    color: var(--white);
    max-width: 600px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--accent-silver);
    font-weight: 300;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
}

.lawyer-img-wrapper {
    position: relative;
    width: 440px;
    height: 440px;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 45%, rgba(197, 160, 89, 0.25) 0%, transparent 65%);
}

/* Outer delicate gold ring */
.lawyer-img-wrapper::before {
    content: '';
    position: absolute;
    inset: -26px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.35);
    pointer-events: none;
    z-index: 0;
}

/* Inner bold gold frame + ambient glow */
.lawyer-img-wrapper::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.45),
        0 0 90px rgba(197, 160, 89, 0.25),
        inset 0 0 40px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: 3;
}

.lawyer-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: 20%;
    border-radius: 50%;
    display: block;
    filter: brightness(1.05) contrast(1.08) saturate(1.05);
    position: relative;
    z-index: 2;
}

.lawyer-img-wrapper picture {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

/* About */
.about {
    padding: 120px 10%;
    background: var(--bg-light);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    position: relative;
}

.about-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin-top: 15px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-visual {
    background: var(--primary-color);
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 20px 20px 0 var(--secondary-color);
    overflow: hidden;
}

.monogram-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.monogram-bg {
    font-family: 'Playfair Display', serif;
    font-size: 15rem;
    color: var(--white);
    opacity: 0.05;
    font-weight: 700;
    user-select: none;
    position: absolute;
    letter-spacing: -10px;
}

.monogram-main {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 5px;
    position: relative;
    z-index: 2;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.visual-accent {
    position: absolute;
    width: 70%;
    height: 70%;
    border: 1px solid rgba(197, 160, 89, 0.15);
    z-index: 1;
    transform: rotate(45deg);
}

.about-visual::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, var(--primary-color) 100%);
    z-index: 3;
    pointer-events: none;
}

.about-visual::before {
    content: 'ELY REIZES';
    position: absolute;
    bottom: 30px;
    right: -20px;
    font-size: 5rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.1;
    transform: rotate(-90deg);
    white-space: nowrap;
}

/* Services */
.services {
    padding: 120px 10%;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-header h4 {
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3.5rem;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    padding: 50px;
    background: var(--white);
    border: 1px solid #eee;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.service-card .learn-more {
    margin-top: auto;
    padding-top: 20px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-card:hover .learn-more {
    gap: 12px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
}

.service-card:hover .service-icon svg path {
    fill: var(--secondary-color);
}

.service-card h4 {
    color: var(--secondary-color);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Testimonials */
.testimonials {
    background: #0d1a26;
    padding: 120px 10%;
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    padding: 40px;
    background: rgba(255,255,255,0.03);
    border-left: 3px solid var(--secondary-color);
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.testimonial-card span {
    display: block;
    text-align: right;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-dots {
    display: none;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid var(--secondary-color);
    padding: 0;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot:hover {
    transform: scale(1.15);
    background: rgba(197, 160, 89, 0.35);
}

.testimonial-dot.active {
    background: var(--secondary-color);
    transform: scale(1.25);
}

.testimonial-dot:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 3px;
}

/* Contact */
.contact {
    padding: 120px 10%;
    background: var(--white);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.05);
    padding: 80px;
    background: var(--bg-light);
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 420px;
}

.info-block {
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
}

.info-icon {
    margin-right: 20px;
    margin-top: 5px;
}

.info-content h5 {
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.info-content p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.info-content a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.info-content a:hover {
    color: var(--secondary-color);
}

.contact-form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--white);
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

/* FAQ */
.faq {
    padding: 120px 10%;
    background: var(--bg-light);
}

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

.faq-item {
    background: var(--white);
    border: 1px solid #eee;
    margin-bottom: 15px;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--secondary-color);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-question:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: -2px;
}

.faq-question .faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 30px 25px;
}

/* ==========================================================================
   Responsive — homepage + sub-page rules consolidated
   ========================================================================== */

@media (max-width: 1200px) {
    /* Homepage */
    .hero { flex-direction: column; text-align: center; padding: 100px 10%; }
    .hero-content { margin-bottom: 80px; max-width: 100%; }
    .about { grid-template-columns: 1fr; }
    .contact-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    /* Shared */
    footer { padding-left: 6%; padding-right: 6%; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }

    /* Sub-pages */
    .page-hero { padding: 70px 6% 60px; min-height: 40vh; }
    .page-hero h1 { font-size: 2.1rem; }
    .page-content { padding: 70px 6%; }
    .page-content h2 { font-size: 1.9rem; }
    .page-content h3 { font-size: 1.25rem; }
    .cta-strip { padding: 60px 6%; }
    .cta-strip h2 { font-size: 1.8rem; }

    /* Homepage */
    .hero h1 { font-size: 2.5rem; }
    .hero { padding: 80px 6%; }
    .about,
    .services,
    .testimonials,
    .contact,
    .faq {
        padding-left: 6%;
        padding-right: 6%;
    }
    .lawyer-img-wrapper { width: min(320px, 80vw); height: min(320px, 80vw); }
    .contact-wrap { padding: 40px 25px; gap: 40px; }
    .contact-form .row { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 2.2rem; }
    .about-text h2,
    .contact-info h2 { font-size: 2.2rem; }
    .service-card { padding: 35px 25px; }

    /* Testimonials — swipeable carousel on mobile */
    .testimonials { padding-top: 80px; padding-bottom: 80px; }
    .testimonials-grid {
        display: flex;
        grid-template-columns: none;
        gap: 20px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 6%;
        padding: 10px 6% 30px;
        margin: 0 -6%;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .testimonials-grid::-webkit-scrollbar { display: none; }
    .testimonial-card {
        flex: 0 0 88%;
        scroll-snap-align: start;
        padding: 30px 25px;
    }
    .testimonial-card p { font-size: 1rem; }
    .testimonials-dots {
        display: flex;
        justify-content: center;
        gap: 14px;
        margin-top: 25px;
    }
}
