/* ==========================================================================
   Akouri Law: brand theme layer on top of vendored Bootstrap 5.3.8
   Colors: American red #BF0A30, white #FFFFFF, navy #002868. No gold, no gradients.
   Written from scratch for Akouri Law. Not copied from any other MDW client theme.
   ========================================================================== */

:root {
    --akouri-red: #BF0A30;
    --akouri-red-deep: #8A0721;
    --akouri-navy: #002868;
    --akouri-navy-deep: #001a44;
    --akouri-white: #FFFFFF;
    --akouri-paper: #F7F8FA;
    --akouri-ink: #1C1E26;
    --akouri-ink-soft: #4A4E5A;
    --akouri-line: #E3E6EC;
    --akouri-pending-bg: #FFF6DC;

    /* Reskin Bootstrap's color system to the Akouri palette (compiled-CSS
       override, no Sass rebuild available) */
    --bs-primary: var(--akouri-red);
    --bs-primary-rgb: 191, 10, 48;
    --bs-primary-text-emphasis: var(--akouri-red-deep);
    --bs-primary-bg-subtle: #FBE4E7;
    --bs-primary-border-subtle: #F0AAB4;
    --bs-link-color: var(--akouri-navy);
    --bs-link-color-rgb: 0, 40, 104;
    --bs-link-hover-color: var(--akouri-red);
    --bs-link-hover-color-rgb: 191, 10, 48;
    --bs-body-color: var(--akouri-ink);
    --bs-body-bg: var(--akouri-white);
    --bs-emphasis-color: var(--akouri-navy);
}

/* .btn-primary / .btn-outline-primary hardcode their own component vars in the
   compiled Bootstrap CSS, so the root --bs-primary override above doesn't
   reach them on its own, so set these explicitly. */
.btn-primary {
    --bs-btn-color: var(--akouri-white);
    --bs-btn-bg: var(--akouri-red);
    --bs-btn-border-color: var(--akouri-red);
    --bs-btn-hover-color: var(--akouri-white);
    --bs-btn-hover-bg: var(--akouri-red-deep);
    --bs-btn-hover-border-color: var(--akouri-red-deep);
    --bs-btn-active-bg: var(--akouri-red-deep);
    --bs-btn-active-border-color: var(--akouri-red-deep);
    --bs-btn-disabled-bg: var(--akouri-red);
    --bs-btn-disabled-border-color: var(--akouri-red);
    --bs-btn-focus-shadow-rgb: 191, 10, 48;
    /* White glow (pops on dark hero/CTA sections) layered with a real dark
       elevation drop-shadow so every CTA button reads consistently on both
       light and dark backgrounds -- the glow alone is invisible on the
       light-background instances (practice-area cards, Contact Us form). */
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.35), 0 6px 16px rgba(0, 0, 0, 0.15);
    /* Bootstrap's default .btn transition is a snappy 0.15s -- slowed to 1s
       to match the practice-area card hover-darken timing, sitewide. */
    transition: color 1s ease-in-out, background-color 1s ease-in-out, border-color 1s ease-in-out, box-shadow 1s ease-in-out;
}

.btn-outline-primary {
    --bs-btn-color: var(--akouri-red);
    --bs-btn-border-color: var(--akouri-red);
    --bs-btn-hover-color: var(--akouri-white);
    --bs-btn-hover-bg: var(--akouri-red);
    --bs-btn-hover-border-color: var(--akouri-red);
    --bs-btn-focus-shadow-rgb: 191, 10, 48;
    --bs-btn-active-bg: var(--akouri-red);
    --bs-btn-active-border-color: var(--akouri-red);
}

.btn-navy {
    --bs-btn-color: var(--akouri-navy);
    --bs-btn-border-color: var(--akouri-navy);
    --bs-btn-bg: transparent;
    --bs-btn-hover-color: var(--akouri-white);
    --bs-btn-hover-bg: var(--akouri-navy);
    --bs-btn-hover-border-color: var(--akouri-navy);
    --bs-btn-active-bg: var(--akouri-navy);
    --bs-btn-active-border-color: var(--akouri-navy);
    --bs-btn-focus-shadow-rgb: 0, 40, 104;
    border-width: 1.5px;
}

.bg-navy { background-color: var(--akouri-navy) !important; }
.bg-navy-deep { background-color: var(--akouri-navy-deep) !important; }
.bg-paper { background-color: var(--akouri-paper) !important; }
.text-navy { color: var(--akouri-navy) !important; }

/* ---------- Base type ---------- */
html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Poppins', Georgia, sans-serif;
    color: var(--akouri-navy);
    line-height: 1.25;
}

.section { padding: 80px 0; }

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--akouri-red);
    font-weight: 600;
    margin-bottom: 10px;
}

.eyebrow-light { color: #ff8a9e; }

/* ---------- Pending badges (never resolved by this restyle) ---------- */
.pending {
    display: inline-block;
    background: var(--akouri-pending-bg);
    border: 1.5px dashed var(--akouri-red);
    color: var(--akouri-red);
    font-weight: 600;
    font-size: 0.82rem;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
}

.pending-light { background: rgba(255, 246, 220, 0.95); }

/* ---------- Confirmed phone number, displayed inline next to a CTA
   button once no longer pending. tel-note-light is for placement on a
   dark background (hero, mobile call bar); plain tel-note relies on the
   surrounding section's own text color (final CTA cascades white,
   referral CTA and footer are handled by their own existing rules). ---- */
.tel-note { font-weight: 600; }
.tel-note-light { color: rgba(255, 255, 255, 0.92); }

/* ---------- Header: fixed top-bar + main nav ----------
   Transparent over the hero on load, solid navy once .scrolled is
   toggled by the scroll listener in akouri-site.js. */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
}

.brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--akouri-white) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    height: 53px;
    width: auto;
    display: block;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.35));
}

.footer-logo {
    height: 50px;
    width: auto;
    display: block;
    margin-bottom: 12px;
}

.brand span { color: #ff8a9e; }

.top-bar {
    background: var(--akouri-navy-deep);
    color: var(--akouri-white);
    font-size: 0.85rem;
    padding: 9px 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.top-bar-item {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-weight: 500;
}

.top-bar-item:hover { color: var(--akouri-white); }
.top-bar-item i { color: var(--akouri-red); margin-right: 4px; }

.top-bar-divider {
    width: 1px;
    height: 16px;
    background: rgba(191, 10, 48, 0.55);
    display: inline-block;
}

.free-consult-btn {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 7px 18px;
}

.main-nav {
    background: var(--akouri-navy);
    padding: 5px 0;
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.main-nav .nav-link {
    color: var(--akouri-white);
    font-weight: 500;
    font-size: 1.05rem;
}

.main-nav .nav-link:hover { color: #ff8a9e; }

.main-nav .nav-link:focus:not(:hover):not(.active) { color: var(--akouri-white); }

/* Kill any box/outline on the nav links, including the Practice Areas
   dropdown toggle, in every interaction state -- hover, click, keyboard
   focus, and Bootstrap's own .show class it gets while the dropdown is
   open. !important because this is fighting a possible browser-native
   default the earlier box-shadow-only fixes elsewhere on this page did
   not reliably suppress. */
.main-nav .nav-link:hover,
.main-nav .nav-link:focus,
.main-nav .nav-link:focus-visible,
.main-nav .nav-link:active,
.main-nav .nav-link.show,
.main-nav .dropdown-toggle:hover,
.main-nav .dropdown-toggle:focus,
.main-nav .dropdown-toggle:focus-visible,
.main-nav .dropdown-toggle:active,
.main-nav .dropdown-toggle.show {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.main-nav .nav-link.active {
    color: #ff8a9e;
    text-decoration: underline;
    text-decoration-color: #ff8a9e;
    text-underline-offset: 6px;
}

.main-nav .navbar-toggler { border-color: rgba(255, 255, 255, 0.5); }
.main-nav .navbar-toggler-icon { filter: invert(1) brightness(2); }

/* ---------- Practice Areas dropdown (Bootstrap 5.3.8 native component) ---------- */
.nav-item .dropdown-toggle::after {
    border-color: var(--akouri-white) transparent transparent transparent;
}

.dropdown-menu {
    background: var(--akouri-navy);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    margin-top: 8px;
}

.dropdown-item {
    color: var(--akouri-white);
    font-weight: 500;
    font-size: 0.92rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #ff8a9e;
    background-color: rgba(255, 255, 255, 0.05);
}

@media (max-width: 991.98px) {
    .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        box-shadow: none;
        border: none;
        background: var(--akouri-navy-deep);
    }

    .dropdown-item {
        padding-left: 1.5rem;
    }
}

/* Solid, sticky state once scrolled past the hero threshold (JS-toggled) */
.site-header.scrolled .top-bar {
    max-height: 0;
    padding: 0;
    opacity: 0;
    overflow: hidden;
}

.site-header.scrolled .main-nav {
    background: var(--akouri-navy);
    padding: 12px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

@media (max-width: 991.98px) {
    .main-nav .navbar-collapse.show {
        background: var(--akouri-navy);
        padding: 16px;
        border-radius: 0 0 8px 8px;
        margin-top: 10px;
    }
}

/* ---------- Image placeholders (no real photography yet) ---------- */
.img-placeholder {
    position: relative;
    width: 100%;
    border-radius: 10px;
    border: 1.5px dashed #B9BFCC;
    background: repeating-linear-gradient(135deg, #F0F2F6 0px, #F0F2F6 10px, #E7EAF0 10px, #E7EAF0 20px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.img-placeholder .label {
    text-align: center;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--akouri-line);
    border-radius: 8px;
    padding: 14px 18px;
    max-width: 86%;
}

.img-placeholder .label .tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--akouri-red);
    font-weight: 700;
    margin-bottom: 6px;
}

.img-placeholder .label .fname {
    font-family: monospace;
    font-size: 0.78rem;
    color: var(--akouri-navy);
    word-break: break-word;
    display: block;
    margin-bottom: 4px;
}

.img-placeholder .label .desc { font-size: 0.78rem; color: var(--akouri-ink-soft); }

.img-placeholder--16x9 { aspect-ratio: 16 / 9; }
.img-placeholder--1x1 { aspect-ratio: 1 / 1; }
.img-placeholder--3x2 { aspect-ratio: 3 / 2; }

/* ---------- Hero ----------
   Placeholder animated build: dark navy intro (Law and Order -> Akouri Law
   wordmark) fades out into a two-column working hero, eyebrow + underline
   accent, large display headline, supporting copy, CTA row, real office
   photo in a right-hand panel (left on mobile). Simplified from a 3-slide
   Owl Carousel to a single static section: slides 2 and 3 never carried
   any real approved copy (placeholder-only), so nothing of substance was
   dropped by removing the carousel mechanism. The old full-bleed Attorna
   background-photo treatment is retired now that a real photo panel exists. */
.hero-static {
    position: relative;
    background-color: var(--akouri-navy-deep);
}

.hero-carousel,
.hero-carousel .owl-stage-outer,
.hero-carousel .owl-stage,
.hero-carousel .owl-item {
    height: 100%;
}

.hero-slide {
    position: relative;
    min-height: 750px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-carousel .owl-dots {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    z-index: 3;
    text-align: center;
}

.hero-carousel .owl-dot span {
    background: rgba(255, 255, 255, 0.4);
}

.hero-carousel .owl-dot.active span {
    background: var(--akouri-white);
}

.hero-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.hero-carousel .owl-nav button.owl-prev,
.hero-carousel .owl-nav button.owl-next {
    pointer-events: auto;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--akouri-navy) !important;
    font-size: 2.125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.5);
    transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.hero-carousel .owl-nav button.owl-prev:hover,
.hero-carousel .owl-nav button.owl-next:hover {
    background: var(--akouri-white) !important;
    box-shadow: 0 0 26px rgba(255, 255, 255, 0.75);
}

.hero-slide-tag {
    position: absolute;
    top: 90px;
    right: 16px;
    z-index: 3;
    background: rgba(191, 10, 48, 0.92);
    color: var(--akouri-white);
    font-size: 0.7rem;
    padding: 6px 12px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pending-hero-heading {
    color: var(--akouri-white);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.hero-slide-content h2.seo-h2 {
    color: var(--akouri-white);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.15;
}

/* ---------- Hero background: full-bleed office photo + left-to-right
   dark gradient (heavy left for text contrast, fades out toward the
   right where a future photo of Bob will read prominently) ---------- */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 75% center;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 26, 68, 0.94) 0%, rgba(0, 26, 68, 0.75) 35%, rgba(0, 26, 68, 0.35) 65%, rgba(0, 26, 68, 0.08) 100%);
    opacity: 0;
}

/* ---------- Hero intro: solid blue field, logo + Law and Order treatment.
   2026-08-16 revision: framing lines + fade mechanics unchanged from the
   original text-only version; the framed content is now the brand logo,
   with "Law and Order" demoted to a smaller reveal underneath once the
   logo has held on screen for ~1.5s. Total display time extended from
   3.6s to 3.7s to fit the added reveal beat; JS heroIntroDelayMs in
   akouri-site.js must be kept in sync with this value. ---------- */
.hero-intro {
    position: absolute;
    inset: 0;
    background-color: var(--akouri-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10;
    opacity: 1;
    animation-name: heroIntroFadeOut;
    animation-duration: 0.5s;
    animation-delay: 3.2s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}

.hero-intro-logo {
    position: relative;
    display: block;
    width: clamp(293px, 42.6vw, 559px);
    height: auto;
    opacity: 0;
    animation-name: heroIntroFadeIn;
    animation-duration: 0.5s;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}

.hero-intro-logo::before,
.hero-intro-logo::after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--akouri-white);
    content: '';
    opacity: 0;
}

.hero-intro-logo::before {
    top: 0;
    transform: translateY(-60px);
    animation: heroIntroLineTopIn 0.45s ease-out forwards;
    animation-delay: 0.65s;
}

.hero-intro-logo::after {
    bottom: 0;
    transform: translateY(60px);
    animation: heroIntroLineBottomIn 0.45s ease-out forwards;
    animation-delay: 0.65s;
}

.hero-intro-tagline {
    position: relative;
    font-family: 'Lora', serif;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--akouri-white);
    opacity: 0;
    line-height: 1;
    margin-top: 18px;
    font-size: clamp(0.75rem, 2.67vw, 1.875rem);
    animation-name: heroIntroTaglineFadeIn;
    animation-duration: 0.45s;
    animation-delay: 2.2s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}

@keyframes heroIntroFadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes heroIntroTaglineFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes heroIntroLineTopIn {
    from { opacity: 0; transform: translateY(-60px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroIntroLineBottomIn {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroIntroFadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

/* ---------- Working-hero staggered reveal (fires after the intro clears) ---------- */
.hero-reveal {
    opacity: 0;
    transform: translateY(16px);
}

@keyframes heroRevealIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroBgGradientIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-reveal-divider {
    width: 48px;
    height: 3px;
    background-color: var(--akouri-red);
    margin: 14px 0;
}

.hero-reveal-gradient.reveal-active {
    animation: heroBgGradientIn 0.5s ease-out forwards;
    animation-delay: 0s;
}

.hero-reveal-headline.reveal-active {
    animation: heroRevealIn 0.6s ease-out forwards;
    animation-delay: 0.5s;
}

.hero-reveal-divider.reveal-active {
    animation: heroRevealIn 0.6s ease-out forwards;
    animation-delay: 0.75s;
}

.hero-reveal-subtext.reveal-active {
    animation: heroRevealIn 0.6s ease-out forwards;
    animation-delay: 1s;
}

.hero-reveal-cta.reveal-active {
    animation: heroRevealIn 0.6s ease-out forwards;
    animation-delay: 1.25s;
}

.hero-reveal.reveal-fading-out,
.hero-reveal-gradient.reveal-fading-out {
    animation-name: heroRevealFadeOut;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

@keyframes heroRevealFadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-intro,
    .hero-intro-logo,
    .hero-intro-logo::before,
    .hero-intro-logo::after,
    .hero-intro-tagline {
        animation: none;
    }
    .hero-intro { display: none; }
    .hero-reveal,
    .hero-reveal.reveal-fading-out {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .hero-bg-gradient {
        opacity: 1 !important;
    }
}

/* ---------- Hero photo panel (placeholder office photo) ---------- */
.hero-slide-content {
    position: relative;
    z-index: 2;
    padding: 145px 0 40px;
}

@media (max-width: 767.98px) {
    .hero-slide-content {
        padding: 210px 0 40px;
    }
}

/* Shift the hero text block (headline, divider, subtext, CTA) right on
   large viewports, per direct request -- large-viewport only, matches the
   existing col-lg-6 breakpoint this content already lives in. */
@media (min-width: 992px) {
    .hero-slide-content .col-lg-6 {
        margin-left: 25px;
        width: calc(50% + 30px);
    }

    /* Consistent hero text start point, large viewports only (2026-08-17):
       .hero-slide previously centered its content block vertically
       (align-items:center), so the text's top position drifted per slide
       depending on how many lines the headline wrapped to -- the 4-line
       "Robert Akouri." slide started higher than the shorter "Show Up"
       slide. Switched to a fixed top-anchor so every slide's text starts
       at the same point regardless of headline length: measured against
       the "Robert Akouri." slide's prior centered position (~82px from
       hero top) and raised ~12px per direct request, landing on 70px. */
    .hero-slide {
        align-items: flex-start;
    }

    .hero-slide-content {
        padding-top: 170px;
    }
}

.hero-slide-content h1.seo-h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--akouri-white);
    line-height: 1.15;
    letter-spacing: normal;
    text-transform: none;
    margin-bottom: 0;
}

.hero-slide-content .display-line {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    color: var(--akouri-white);
    line-height: 1.15;
    margin-bottom: 14px;
}

.hero-slide-content p.lead-copy { color: rgba(255, 255, 255, 0.9); font-size: 1.08rem; }

.hero-slide-content .hero-detail { color: rgba(255, 255, 255, 0.72); font-size: 0.95rem; font-weight: 500; }

.hero-secondary-link {
    color: var(--akouri-white);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hero-secondary-link:hover { color: #ff8a9e; }

/* ---------- Practice-area lane cards ---------- */
.lane-card { border: 1px solid var(--akouri-line); border-radius: 10px; overflow: hidden; }
.lane-card .lane-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--bs-primary-bg-subtle);
    color: var(--akouri-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 12px;
}
.lane-card a.lane-link { color: var(--akouri-red); font-weight: 600; text-decoration: none; }
.lane-card a.lane-link:hover { text-decoration: underline; }

/* ---------- Credential markers ---------- */
.marker-list .marker-icon { color: var(--akouri-red); width: 1.1rem; flex-shrink: 0; }

/* ---------- County chips ---------- */
.chip {
    background: var(--akouri-white);
    border: 1.5px solid var(--akouri-navy);
    color: var(--akouri-navy);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 8px 16px;
}

/* ---------- Odds standard (typographic, dark) ---------- */
.standard-block { background: linear-gradient(rgba(0, 26, 68, 0.6), rgba(0, 26, 68, 0.6)), url('/images/homepage-30-85-bg-01.webp') center/cover no-repeat; border-radius: 16px; padding: 56px; color: var(--akouri-white); box-shadow: 0 12px 32px rgba(0, 26, 68, 0.22); }
.standard-block h2 { color: var(--akouri-white); }
.standard-block p { color: rgba(255, 255, 255, 0.86); font-size: 1.05rem; }
.standard-block .figures {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 24px;
}
.standard-block .figures .num { font-size: 3.2rem; color: var(--akouri-white); }
.standard-block .figures .arrow { font-size: 1.6rem; color: var(--akouri-red); }
.link-light { color: var(--akouri-white); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.link-light:hover { color: var(--akouri-red); }

/* ---------- Boutique blockquote ---------- */
.boutique-quote { border-left: 4px solid var(--akouri-red); }

/* ---------- FAQ accordion ---------- */
#practice-areas .card {
    border: none;
    background-color: var(--akouri-paper);
    box-shadow: 0 2px 12px rgba(0, 26, 68, 0.08);
}

#practice-areas .card h3,
#practice-areas .card h4 {
    text-align: center;
}

#practice-areas .card .btn {
    align-self: flex-start;
}

#practice-areas .card .btn:focus,
#practice-areas .card .btn:focus-visible,
#practice-areas .card .btn:active {
    outline: none;
    box-shadow: none;
}

#practice-areas .card .btn:focus:not(:hover) {
    background-color: var(--akouri-red);
    border-color: var(--akouri-red);
}

.faq-answer-pending {
    background: var(--akouri-pending-bg);
    border: 1.5px dashed var(--akouri-red);
    border-radius: 8px;
    padding: 12px 16px;
    font-style: italic;
    color: var(--akouri-red);
    font-size: 0.92rem;
}

.faq-draft-flag {
    display: block;
    width: fit-content;
    margin-bottom: 10px;
}

.faq-answer-text {
    margin-bottom: 0;
}

/* ---------- Final CTA ---------- */
.final-cta { background: linear-gradient(rgba(0, 26, 68, 0.56), rgba(0, 26, 68, 0.56)), url('/images/homepage-readytotalk-bg-01.webp') center/cover no-repeat; color: var(--akouri-white); border-radius: 16px; padding: 60px; box-shadow: 0 12px 32px rgba(0, 26, 68, 0.22); }

/* ---------- FAQ accordion: flat list on dark section, Attorna-reference
   layout (left-side +/- icon, thin divider, no card boxes) rebuilt in our
   own navy/red/white palette. Same Bootstrap collapse markup/JS -- purely
   a CSS re-skin, no new elements. ---------- */
#faqAccordion .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 26, 68, 0.12);
    border-radius: 0;
    box-shadow: none;
}

#faqAccordion .accordion-item:last-child {
    border-bottom: none;
}

#faqAccordion .accordion-header {
    margin-bottom: 0;
}

#faqAccordion .accordion-button {
    background: transparent;
    color: var(--akouri-navy);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 22px 0;
    box-shadow: none;
    border: none;
}

#faqAccordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--akouri-navy);
    box-shadow: none;
}

#faqAccordion .accordion-button:focus {
    box-shadow: none;
}

#faqAccordion .accordion-button::after {
    display: none;
}

#faqAccordion .accordion-button::before {
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    content: "\f068";
    color: var(--akouri-red);
    font-size: 0.9rem;
    width: 20px;
    margin-right: 17px;
    flex-shrink: 0;
}

#faqAccordion .accordion-button.collapsed::before {
    content: "\f067";
}

#faqAccordion .accordion-body {
    padding: 0 0 24px 37px;
    color: var(--akouri-ink);
    font-size: 1rem;
    line-height: 1.7;
}

#boutique {
    background: linear-gradient(rgba(0, 26, 68, 0.86), rgba(0, 26, 68, 0.86)), url('/images/hero-office-placeholder-01.jpg') center/cover no-repeat fixed;
}

.img-fill-photo {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 26, 68, 0.14);
}

#credentials .about-photo-col {
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 0;
}

#credentials .about-photo-panel {
    position: static;
    width: clamp(220px, 32vw, 380px);
    height: clamp(220px, 32vw, 380px);
    min-height: 0;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.18);
    margin: 40px auto;
}
.final-cta h2 { color: var(--akouri-white); }
.final-cta p { color: rgba(255, 255, 255, 0.86); }

/* ---------- Contact Us form (Section 11) ---------- */
.contact-form .form-label {
    color: var(--akouri-navy);
    font-weight: 600;
    font-size: 0.92rem;
}

.contact-form .form-control {
    border: 1.5px solid var(--akouri-line);
    border-radius: 8px;
    padding: 10px 14px;
}

.contact-form .form-control:focus {
    border-color: var(--akouri-red);
    box-shadow: 0 0 0 0.2rem rgba(191, 10, 48, 0.15);
}

.contact-form .form-select {
    border: 1.5px solid var(--akouri-line);
    border-radius: 8px;
    padding: 10px 14px;
}

.contact-form .form-select:focus {
    border-color: var(--akouri-red);
    box-shadow: 0 0 0 0.2rem rgba(191, 10, 48, 0.15);
}

.contact-legal-notice {
    font-size: 0.72rem;
    color: var(--akouri-ink-soft);
    margin-top: 28px;
    margin-bottom: 0;
}

.contact-trust-block {
    background: var(--akouri-paper);
    border-radius: 12px;
    padding: 32px;
    height: 100%;
}

.contact-trust-block h3 {
    color: var(--akouri-navy);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 20px;
    text-align: center;
}

.contact-trust-block h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--akouri-navy);
    margin: 10px auto 0;
}

.contact-trust-block p { color: var(--akouri-ink-soft); }
.contact-trust-block i { color: var(--akouri-red); }
.contact-trust-block a { color: var(--akouri-navy); font-weight: 600; }

.recaptcha-placeholder {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--akouri-pending-bg);
    border: 1.5px dashed var(--akouri-red);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.82rem;
}

.recaptcha-placeholder .tag {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--akouri-red);
}

.recaptcha-placeholder .desc { color: var(--akouri-ink-soft); }

.county-thumb-img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 26, 68, 0.12);
}

.county-photo-credit {
    font-size: 0.72rem;
    color: var(--akouri-ink-soft);
    text-align: center;
    margin-top: 24px;
}

.county-photo-credit a { color: var(--akouri-ink-soft); text-decoration: underline; }

/* ---------- Footer ----------
   Structure adapted from the Attorna demo2 reference footer (brand+desc
   column, Contact Info column, a two-sub-column link list column, divider,
   bottom copyright+nav bar), rebuilt in our own stack with our own brand
   colors -- reference used for layout/structure only, per the standing
   marketplace-template rule (never port their code, no social icon row
   here since we do not have real social links to point them at yet). */
.site-footer { background: var(--akouri-navy); color: rgba(255, 255, 255, 0.78); padding: 56px 0 30px; font-size: 0.88rem; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.site-footer a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; color: var(--akouri-white); }
.foot-brand { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--akouri-white); margin-bottom: 8px; }

.footer-desc {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 14px;
    max-width: 340px;
}

.footer-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--akouri-white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin: 40px 0 20px;
    opacity: 1;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-bottom-nav a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
}

.footer-bottom-nav a:hover { color: var(--akouri-white); }

/* ---------- Sticky mobile call bar ---------- */
.mobile-call-bar {
    display: none;
    background: var(--akouri-navy);
    padding: 12px 16px;
    z-index: 1040;
    box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.18);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

@media (max-width: 767.98px) {
    .mobile-call-bar { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
    .site-footer { padding-bottom: 86px; }
}

/* ---------- Scroll-reveal (jquery.appear + animate.compat.css) ---------- */
.appear-animation { opacity: 0; }
.appear-animation.animated { opacity: 1; }

/* ---------- Comp-styling pass: dark/light section rhythm (Stitch Attorna
   comp reference, style only, no content/structure change). Add directly
   to an existing <section class="section ..."> element. ---------- */
.section-dark {
    background-color: var(--akouri-navy-deep);
    color: rgba(255, 255, 255, 0.86);
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
    color: var(--akouri-white);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.86);
}

.section-dark .eyebrow {
    color: #ff8a9e;
}

.section-dark .pending {
    background: rgba(255, 246, 220, 0.95);
    border-color: var(--akouri-red);
    color: var(--akouri-red-deep);
}

.section-dark .marker-list .marker-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: var(--akouri-red);
}

.section-dark a {
    color: var(--akouri-white);
    text-decoration: underline;
}

.section-dark a:hover,
.section-dark a:focus {
    color: var(--akouri-red);
}

/* ---------- Restrained accent-line divider under every section eyebrow ---------- */
.eyebrow::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--akouri-red);
    margin-top: 8px;
}

/* ---------- Practice Areas: Attorna-style centered icon layout ---------- */
.practice-areas-header .eyebrow::after {
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Same centered-divider fix, Service Area + Contact Us headers ---------- */
.service-area-header .eyebrow::after,
.contact-header .eyebrow::after {
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Practice Areas: real card photos + navy title (title color was
   losing to Bootstrap's .h5 utility class specificity, see session notes) ---------- */
.practice-lane-img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 26, 68, 0.12);
    transition: filter 1s ease;
}

#practice-areas .card:hover .practice-lane-img {
    filter: brightness(85%);
}

#practice-areas .card h3 {
    color: var(--akouri-navy);
}

.lane-icon-lg {
    display: block;
    font-size: 2.75rem;
    color: var(--akouri-red);
    margin: 0 auto 22px;
}

.lane-title-lg {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    margin-bottom: 14px;
}

.lane-link-lg {
    display: inline-block;
    margin-top: 16px;
    color: var(--akouri-red);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
}

.lane-link-lg:hover {
    text-decoration: underline;
}

/* ---------- Practice-area card polish (Stitch Attorna comp reference) ---------- */
.lane-card {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lane-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

/* ---------- Mobile fix: allow long pending-badge placeholder text to
   wrap instead of forcing an unbreakable line that overflows the
   viewport (found during XS/SM/MD/LG/XL breakpoint audit, 2026-08-12) ---------- */
@media (max-width: 767.98px) {
    .pending {
        white-space: normal;
    }
}

/* ---------- About/Credentials photo panel: full-bleed cover photo,
   height-matched to the text column, rounded only on the outward
   (right) corners at desktop - matches the real Attorna demo's About
   section layout (inspected directly, 2026-08-12). Stacks below text
   on mobile instead of hiding, deliberately deviating from the
   reference (which hides the photo entirely on mobile) since Bob's
   credibility content benefits from the photo staying visible. ---------- */
.row.align-items-center.about-photo-col-row {
    align-items: stretch !important;
}

/* ---------- About/Credentials bleed card: pulled up via negative
   margin so it overlaps the bottom of the hero image behind it,
   matching the real Attorna reference (goodlayers.com/attorna,
   screenshotted directly 2026-08-14) — plain white panel, sharp
   square corners, no shadow, text and photo touching edge to edge. ---------- */
.about-bleed-card {
    position: relative;
    z-index: 5;
    background-color: var(--akouri-white);
    margin-top: -140px;
    border-radius: 4px;
    box-shadow: 0 0 32px rgba(10, 10, 10, 0.08);
    overflow: hidden;
}

.about-bleed-text {
    padding: 56px 56px 56px 0;
}

@media (min-width: 992px) {
    .about-bleed-text {
        padding: 64px 64px 64px 48px;
    }
}

@media (max-width: 991.98px) {
    .about-bleed-card {
        margin-top: -60px;
    }
    .about-bleed-text {
        padding: 40px 24px;
    }
}

@media (max-width: 575.98px) {
    .about-bleed-card {
        margin-top: -30px;
    }
}

/* ---------- About Akouri Law: Bob's statement + script signature ---------- */
.about-statement {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--akouri-ink);
}

.about-signature {
    font-family: 'Dancing Script', cursive;
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--akouri-navy);
    margin-top: 1.5rem;
    margin-bottom: 0.15rem;
}

.about-signature-caption {
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--akouri-ink-soft);
    margin-bottom: 0;
}

.about-photo-col {
    position: relative;
    overflow: hidden;
}

.about-photo-panel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    min-height: 320px;
}

/* Scoped to the About section only -- NOT #credentials, which has its own
   circle-crop treatment on the same .about-photo-panel class. Zooms in on
   Robert's photo, anchored bottom-center so his figure stays centered and
   in frame rather than the crop drifting toward the top of the columns. */
#about .about-photo-panel {
    transform: scale(1.25);
    transform-origin: center bottom;
}

@media (max-width: 767.98px) {
    .about-photo-col {
        height: 280px;
    }
    .about-photo-panel {
        border-radius: 0;
        height: 280px;
    }
}
