:root {
    --red-500: #e63946;
    --red-600: #c1121f;
    --red-700: #9e0b1a;
    --red-100: #fde7e9;
    --ink-900: #0f1114;
    --ink-800: #1a1d22;
    --ink-700: #2b2f36;
    --ink-500: #5b6068;
    --ink-400: #8b8f98;
    --ink-300: #c6c9cf;
    --line: #e8e6e0;
    --cream: #faf7f2;
    --cream-deep: #f3efe7;
    --white: #ffffff;
    --accent: #f5d28a;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(15, 17, 20, 0.06);
    --shadow-md: 0 10px 30px rgba(15, 17, 20, 0.1);
    --shadow-lg: 0 24px 60px rgba(15, 17, 20, 0.18);
    --shadow-red: 0 10px 30px rgba(230, 57, 70, 0.35);
    --container: 1240px;
    --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-display: "Manrope", sans-serif;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--ink-900);
    background: var(--cream);
    line-height: 1.55;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    display: block;
}
svg {
    width: 1em;
    height: 1em;
    flex-shrink: 0;
}
.btn svg,
.nav-phone > svg,
a.service-card .more svg,
.more svg,
.area-grid a svg,
.trust-row svg,
.chip svg,
footer.site .socials svg {
    width: 18px;
    height: 18px;
}
.topbar svg {
    width: 14px;
    height: 14px;
}
.chip .i svg,
.v svg.ic {
    width: 28px;
    height: 28px;
}
a {
    color: var(--red-600);
    text-decoration: none;
    transition: color 0.15s ease;
}
a:hover {
    color: var(--red-700);
}
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.08;
    color: var(--ink-900);
    margin: 0 0 0.6em;
    letter-spacing: -0.025em;
}
h1 {
    font-size: clamp(1.8rem, 5vw, 4.2rem);
    font-weight: 900;
}
h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.8rem);
}
h3 {
    font-size: clamp(1.25rem, 2vw, 1.55rem);
}
h4 {
    font-size: 1.1rem;
}
p {
    margin: 0 0 1em;
}
p.lead {
    font-size: 1.18rem;
    color: var(--ink-700);
    line-height: 1.55;
}
ul,
ol {
    padding-left: 1.2em;
}
li {
    margin-bottom: 0.35em;
}
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}
.narrow {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 28px;
}
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    font-size: 0.76rem;
    color: var(--red-500);
    margin-bottom: 1em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--red-500);
}
.muted {
    color: var(--ink-500);
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55em;
    padding: 16px 30px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.005em;
    border: 2px solid transparent;
    cursor: pointer;
    transition:
        transform 0.15s,
        box-shadow 0.15s,
        background 0.15s,
        color 0.15s;
    white-space: nowrap;
    font-family: var(--font-sans);
}
.btn:hover {
    transform: translateY(-1px);
}
.btn-primary {
    background: var(--red-500);
    color: var(--white);
    box-shadow: var(--shadow-red);
}
.btn-primary:hover {
    background: var(--red-600);
    color: var(--white);
    box-shadow: 0 14px 36px rgba(230, 57, 70, 0.5);
}
.btn-dark {
    background: var(--ink-900);
    color: var(--white);
}
.btn-dark:hover {
    background: var(--ink-800);
    color: var(--white);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--ink-900);
    border-color: var(--white);
}
.btn-ghost {
    background: transparent;
    color: var(--ink-900);
    border-color: var(--ink-900);
}
.btn-ghost:hover {
    background: var(--ink-900);
    color: var(--white);
}
.btn-red-ghost {
    background: transparent;
    color: var(--red-500);
    border-color: var(--red-500);
}
.btn-red-ghost:hover {
    background: var(--red-500);
    color: var(--white);
}
.topbar {
    background: var(--ink-900);
    color: var(--white);
    border-bottom: 3px solid var(--red-500);
}
.topbar .container {
    padding: 9px 28px;
    min-height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.google-bam {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.3;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}
.google-bam .g-mark {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--white);
    flex-shrink: 0;
}
.google-bam .g-mark svg {
    width: 14px;
    height: 14px;
    color: #4285f4;
}
.google-bam .stars {
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    color: #ffc83d;
    line-height: 1;
}
.google-bam .rating-num {
    font-weight: 800;
    font-size: 0.98rem;
    color: var(--white);
    letter-spacing: -0.01em;
    line-height: 1;
}
.google-bam .rating-num strong {
    font-weight: 800;
}
.google-bam .rating-text {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.88rem;
}
.google-bam .rating-text strong {
    color: var(--white);
    font-weight: 700;
}
@media (max-width: 700px) {
    .topbar .container {
        padding: 8px 14px;
        gap: 12px;
    }
    .google-bam {
        gap: 8px;
        font-size: 0.82rem;
    }
    .google-bam .stars {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    .google-bam .rating-num {
        font-size: 0.9rem;
    }
    .google-bam .rating-text {
        font-size: 0.78rem;
    }
}
.header-site {
    position: sticky;
    top: 0;
    z-index: 80;
    background: var(--ink-900);
    border-bottom: 1px solid var(--ink-800);
}
.header-site .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    padding: 6px 28px 6px 20px;
    gap: 28px;
}
.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
    flex-shrink: 0;
}
.brand:focus-visible {
    outline: 0;
    outline-offset: 0;
    border-radius: 0;
}
.brand:hover {
    color: var(--white);
}
.brand img.logo {
    height: 62px;
    width: auto;
    display: block;
}
.brand:hover {
    color: var(--white);
}
nav.primary {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: end;
}

nav.primary ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 38px;
    align-items: center;
}
nav.primary > ul > li > a {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    font-size: 1.08rem;
    padding: 8px 2px;
    position: relative;
    letter-spacing: -0.005em;
}
nav.primary > ul > li > a:hover {
    color: var(--red-500);
}
nav.primary > ul > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--red-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s;
}
nav.primary > ul > li > a:hover::after {
    transform: scaleX(1);
}
nav.primary li.has-menu {
    position: relative;
}
nav.primary .chev {
    display: inline-block;
    margin-left: 4px;
    font-size: 0.7em;
    opacity: 0.7;
}
nav.primary li.has-menu {
    padding-bottom: 14px;
    margin-bottom: -14px;
}
nav.primary .submenu {
    position: absolute;
    top: 100%;
    left: -16px;
    min-width: 270px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 12px;
    display: none;
    flex-direction: column;
    gap: 2px;
    margin-top: 4px;
}
nav.primary .submenu::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}
nav.primary li.has-menu:hover .submenu,
nav.primary li.has-menu:focus-within .submenu {
    display: flex;
}
nav.primary .submenu a {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--ink-900);
    font-weight: 500;
}
nav.primary .submenu a:hover {
    background: var(--red-100);
    color: var(--red-700);
}
nav.primary .submenu-mega {
    min-width: 720px;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px 8px;
    padding: 16px;
}
nav.primary li.has-menu:hover .submenu-mega,
nav.primary li.has-menu:focus-within .submenu-mega {
    display: grid;
}
nav.primary .submenu-mega a {
    padding: 8px 12px;
    font-size: 0.92rem;
    white-space: nowrap;
}
@media (max-width: 1180px) {
    nav.primary .submenu-mega {
        grid-template-columns: repeat(2, 1fr);
        min-width: 360px;
    }
}
.nav-cta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}
.nav-phone {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
    display: inline-flex;
    gap: 8px;
    align-items: center;
    white-space: nowrap;
    transition: color 0.2s;
}
.nav-phone:hover {
    color: var(--red-500);
}
.nav-phone small {
    display: none;
}
.nav-phone .num {
    display: inline;
    line-height: 1;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}
.nav-phone > svg {
    width: 18px;
    height: 18px;
    color: var(--red-500);
}
.hamburger {
    display: none;
    background: none;
    border: 0;
    padding: 8px;
    cursor: pointer;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    border-radius: 1px;
}
@media (max-width: 1180px) {
    nav.primary ul {
        display: none;
    }
    .nav-phone small {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .brand img.logo {
        height: 48px;
    }
    .mobile-open nav.primary ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--ink-900);
        border-bottom: 1px solid var(--ink-800);
        padding: 16px;
        gap: 4px;
    }
    .mobile-open nav.primary > ul > li > a {
        color: var(--white);
        padding: 12px 14px;
    }
    .mobile-open nav.primary .submenu {
        position: static;
        box-shadow: none;
        border: 0;
        padding-left: 14px;
        display: flex;
        margin-top: 0;
        background: transparent;
    }
    .mobile-open nav.primary .submenu a {
        color: rgba(255, 255, 255, 0.75);
    }
}
@media only screen and (max-width: 991px) {
    
	.nav-cta{
		margin-right:20px;
	}
    nav.primary ul{
        gap: 2px;
        align-items: inherit;
    }
    nav.primary .mega-menu-wrap {
        order: 1;
    }

}
@media (max-width: 560px) {
    .nav-phone {
        padding: 8px 12px;
    }    
}
.hero {
    position: relative;
    overflow: hidden;
    color: var(--ink-900);
    background: linear-gradient(180deg, #fffbf4 0%, var(--cream) 100%);
    min-height: 420px;
    padding: 0;
}
.hero-scene {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.hero-photo {
    position: absolute;
    top: 0;
    right: 0;
    width: 52%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 62%;
    display: block;
}
.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            95deg,
            #fffbf4 0%,
            #fffbf4 42%,
            rgba(255, 251, 244, 0.94) 50%,
            rgba(255, 251, 244, 0.6) 58%,
            rgba(255, 251, 244, 0.25) 68%,
            rgba(255, 251, 244, 0.06) 80%,
            transparent 92%
        ),
        linear-gradient(
            180deg,
            rgba(255, 251, 244, 0.25) 0%,
            transparent 18%,
            transparent 78%,
            rgba(250, 247, 242, 0.55) 100%
        );
}
.hero .container {
    position: relative;
    z-index: 2;
    padding-top: 8px;
    padding-bottom: 12px;
}
section.value-strip {
    padding: 36px 0 28px;
    background: var(--cream);
}
section.offer-strip {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.18) 0%, transparent 35%),
        linear-gradient(225deg, rgba(230, 57, 70, 0.18) 0%, transparent 35%),
        repeating-linear-gradient(135deg, var(--ink-900) 0px, var(--ink-900) 28px, #181b21 28px, #181b21 56px),
        var(--ink-900);
    color: var(--white);
    padding: 38px 0 30px;
    border-top: 3px solid var(--red-500);
    border-bottom: 3px solid var(--red-500);
    position: relative;
    overflow: hidden;
}
.offer-strip::before,
.offer-strip::after {
    content: "✦";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--red-500);
    opacity: 0.4;
    font-size: 2.2rem;
    pointer-events: none;
}
.offer-strip::before {
    left: 4%;
}
.offer-strip::after {
    right: 4%;
}
.offer-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.offer-strip .badge {
    background: var(--accent);
    color: var(--ink-900);
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(245, 210, 138, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.offer-strip .offer-line {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 20px;
    letter-spacing: -0.005em;
}
.offer-strip .offer-line .big {
    font-family: var(--font-display);
    font-size: 3.4rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1;
    text-shadow:
        0 2px 0 var(--red-600),
        0 0 32px rgba(230, 57, 70, 0.5);
    padding: 0 6px;
}
.offer-strip .offer-line .big sup {
    font-size: 1.4rem;
    vertical-align: top;
    position: relative;
    top: 0.4em;
    margin-right: 2px;
    color: var(--accent);
}
.offer-strip .btn-primary {
    padding: 16px 30px;
    font-size: 1.15rem;
    font-weight: 800;
    box-shadow:
        0 8px 24px rgba(230, 57, 70, 0.55),
        0 0 0 0 rgba(230, 57, 70, 0.4);
    animation: offer-pulse 2.4s ease-in-out infinite;
}
@keyframes offer-pulse {
    0%,
    100% {
        box-shadow:
            0 8px 24px rgba(230, 57, 70, 0.55),
            0 0 0 0 rgba(230, 57, 70, 0.45);
    }
    50% {
        box-shadow:
            0 8px 24px rgba(230, 57, 70, 0.55),
            0 0 0 14px rgba(230, 57, 70, 0);
    }
}
.offer-strip .offer-fine {
    text-align: center;
    margin: 12px 0 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    position: relative;
    z-index: 1;
}
@media (max-width: 700px) {
    .offer-strip::before,
    .offer-strip::after {
        display: none;
    }
    .offer-strip-inner {
        gap: 18px;
    }
    .offer-strip .offer-line {
        font-size: 1.2rem;
        gap: 12px;
    }
    .offer-strip .offer-line .big {
        font-size: 2.4rem;
    }
    .offer-strip .badge {
        font-size: 0.82rem;
        padding: 8px 16px;
    }
}
section.info-ribbon {
    background: var(--ink-900);
    color: rgba(255, 255, 255, 0.85);
    padding: 0;
    border-top: 3px solid var(--red-500);
    border-bottom: 3px solid var(--red-500);
}
section.info-ribbon .container {
    min-height: 56px;
    padding: 12px 28px;
}
section.info-ribbon .strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    font-weight: 500;
}
section.info-ribbon .strip > span,
section.info-ribbon .strip > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.88);
}
section.info-ribbon .strip > a {
    color: var(--white);
    font-weight: 700;
}
section.info-ribbon .strip > a:hover {
    color: var(--red-500);
}
section.info-ribbon svg {
    color: var(--red-500);
    width: 16px;
    height: 16px;
}
section.info-ribbon .rating strong {
    color: var(--white);
    font-weight: 800;
}
section.info-ribbon .sep {
    width: 1px;
    height: 20px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    display: inline-block;
    flex-shrink: 0;
}
@media (max-width: 900px) {
    section.info-ribbon .strip {
        justify-content: center;
        gap: 14px;
    }
    section.info-ribbon .sep {
        display: none;
    }
}
@media (max-width: 900px) {
    .hero {
        min-height: auto;
    }
    .hero-photo {
        position: relative;
        width: 100%;
        height: 300px;
        object-position: center;
    }
    .hero-scene {
        position: relative;
        height: 300px;
    }
    .hero-scrim {
        background: linear-gradient(180deg, transparent 0%, transparent 70%, #fffbf4 100%);
    }
    .page-hero.with-photo .hero-scene{height: 100%;}
}
.hero-ribbon-center {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}
@media (max-width: 900px) {
    .hero-ribbon-center {
        justify-content: center;
    }
}
.hero-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 2px solid var(--red-500);
    padding: 9px 22px;
    border-radius: 999px;
    font-size: 0.9rem;
    color: var(--ink-900);
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(230, 57, 70, 0.15);
}
.hero-ribbon strong {
    color: var(--red-500);
}
.hero-ribbon svg {
    color: var(--red-500);
}
.value-wall {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 0;
}
.value-wall .v {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 24px 18px;
    text-align: center;
    transition:
        transform 0.2s,
        box-shadow 0.2s,
        border-color 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    box-shadow: var(--shadow-sm);
}
.value-wall .v:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--red-500);
}
.value-wall .v .big {
    font-family: var(--font-display);
    font-size: 2.1rem;
    line-height: 1;
    color: var(--red-500);
    font-weight: 900;
    letter-spacing: -0.03em;
}
.value-wall .v .lbl {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 800;
    color: var(--ink-900);
}
.value-wall .v .sub {
    font-size: 0.82rem;
    color: var(--ink-500);
    font-weight: 500;
}
.value-wall .v svg.ic {
    color: var(--red-500);
    margin-bottom: 6px;
    width: 32px;
    height: 32px;
}
@media (max-width: 900px) {
    .value-wall {
        grid-template-columns: repeat(2, 1fr);
    }
}
.hero-content {
    max-width: 560px;
    margin-bottom: 28px;
    padding-top: 24px;
}
@media (max-width: 900px) {
    .hero-content {
        max-width: none;
        margin-bottom: 24px;
        padding-top: 12px;
    }
}
.hero h1 {
    color: var(--ink-900);
}
.hero h1 em {
    color: var(--red-500);
    font-style: normal;
    position: relative;
    display: inline-block;
    font-weight: 900;
}
.hero p{
    color: var(--ink-700);
    font-size: 1.18rem;
    line-height: 1.55;
}

.hero ul{
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    align-items: center;
    margin: 18px 0 6px;
    max-width: 640px;
    padding-left: 0;
}
.hero ul li{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    color: var(--ink-900);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 9px 14px;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    white-space: nowrap;
}
.hero ul li::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--red-500);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 900;
    line-height: 1;
}

.hero .actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
    align-items: center;
}
.hero-tagline {
    margin-top: 26px;
    margin-bottom: 0;
    font-size: 1.1rem;
    color: var(--ink-700);
}
.hero-tagline > span:first-child {
    display: inline-flex;
    vertical-align: middle;
    margin-right: 8px;
    position: relative;
    top: -2px;
}
.hero-tagline svg {
    width: 22px;
    height: 22px;
    color: var(--red-500);
}
.hero-tagline strong {
    font-weight: 800;
    color: var(--ink-900);
}
.hero .btn-outline {
    color: var(--ink-900);
    border-color: var(--ink-300);
    background: var(--white);
}
.hero .btn-outline:hover {
    background: var(--ink-900);
    color: var(--white);
    border-color: var(--ink-900);
}
.mega-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--red-500);
    color: var(--white);
    text-decoration: none;
    padding: 18px 28px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 1.15rem;
    box-shadow: 0 14px 40px rgba(230, 57, 70, 0.45);
    transition:
        transform 0.15s,
        box-shadow 0.2s,
        background 0.15s;
}
.mega-cta:hover {
    transform: translateY(-2px) scale(1.02);
    background: var(--red-600);
    color: var(--white);
    box-shadow: 0 20px 50px rgba(230, 57, 70, 0.55);
}
.mega-cta svg {
    width: 24px;
    height: 24px;
}
.mega-cta small {
    display: block;
    font-size: 0.7rem;
    opacity: 0.88;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    line-height: 1;
    margin-bottom: 3px;
}
.mega-cta .num {
    display: block;
    line-height: 1.1;
    font-size: 1.35rem;
    font-weight: 900;
}
.offer-row {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 48px;
    align-items: center;
}
.offer-row .offer-copy h2 em {
    font-style: normal;
}
.offer-row .offer-copy .eyebrow {
    justify-content: flex-start;
}
.offer-row .offer-card {
    max-width: 420px;
    justify-self: center;
}
@media (max-width: 820px) {
    .offer-row {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .offer-row .offer-card {
        justify-self: start;
    }
}
.offer-card {
    background: var(--white);
    color: var(--ink-900);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--red-500);
    position: relative;
}
.offer-card::before {
    content: "⚡ ONLINE SPECIAL";
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink-900);
    color: var(--red-500);
    padding: 7px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    border: 2px solid var(--red-500);
    white-space: nowrap;
}
.offer-card::after {
    content: "SAVE $40";
    position: absolute;
    top: -14px;
    right: -16px;
    background: var(--red-500);
    color: var(--white);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    font-weight: 900;
    font-size: 0.8rem;
    display: grid;
    place-items: center;
    text-align: center;
    line-height: 1;
    transform: rotate(15deg);
    box-shadow: 0 6px 18px rgba(230, 57, 70, 0.5);
}
.offer-card .price {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--ink-900);
    line-height: 1;
    margin: 10px 0 8px;
    display: flex;
    align-items: flex-start;
    gap: 4px;
    font-weight: 900;
    letter-spacing: -0.04em;
}
.offer-card .price sup {
    font-size: 1.4rem;
    top: 0.4em;
    position: relative;
    color: var(--red-500);
    vertical-align: baseline;
}
.offer-card ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 20px;
}
.offer-card ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 8px;
    color: var(--ink-700);
}
.offer-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 14px;
    height: 8px;
    border-left: 2.5px solid var(--red-500);
    border-bottom: 2.5px solid var(--red-500);
    transform: rotate(-45deg);
}
.offer-card .fine {
    font-size: 0.78rem;
    color: var(--ink-500);
    margin-top: 14px;
}
section {
    padding: 90px 0;
}
section.tight {
    padding: 56px 0;
}
section.band {
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
section.dark {
    background: var(--ink-900);
    color: var(--cream);
}
section.dark h2,
section.dark h3 {
    color: var(--white);
}
section.dark .eyebrow {
    color: var(--red-500);
}
section.red {
    background: var(--red-500);
    color: var(--white);
}
section.red h2,
section.red h3 {
    color: var(--white);
}
.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 52px;
}
.section-head.left {
    text-align: left;
    margin-left: 0;
}
.grid {
    display: grid;
    gap: 24px;
}
.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid-3 > :nth-child(7):last-child {
    grid-column: 2;
}
.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 980px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 620px) {
    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }
    a.btn{
        white-space: break-spaces;
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    .singgrid-1 {
        display: flex;
        flex-wrap: wrap;
    }
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--line);
    transition:
        transform 0.2s,
        box-shadow 0.2s,
        border-color 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: var(--ink-900);
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--red-500);
    color: var(--ink-900);
}
.service-card .photo {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    background: var(--cream-deep);
}
.service-card .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .photo img {
    transform: scale(1.08);
}
.service-card .photo::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(15, 17, 20, 0.05) 35%,
        rgba(15, 17, 20, 0.55) 70%,
        rgba(15, 17, 20, 0.95) 100%
    );
    transition: background 0.25s;
}
.service-card:hover .photo::after {
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(15, 17, 20, 0.15) 25%,
        rgba(15, 17, 20, 0.65) 60%,
        rgba(15, 17, 20, 1) 100%
    );
}
.service-card .photo h3 {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 20px;
    z-index: 2;
    color: var(--white);
    margin: 0;
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}
.service-card .photo h3::after {
    content: "";
    display: block;
    width: 32px;
    height: 3px;
    background: var(--red-500);
    margin-top: 10px;
    transition: width 0.25s ease;
}
.service-card:hover .photo h3::after {
    width: 80px;
}
.service-card .tagline {
    margin: 0;
    padding: 18px 24px;
    color: var(--ink-700);
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.4;
}
.benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.benefits .chip {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.15s;
}
.benefits .chip:hover {
    border-color: var(--red-500);
    transform: translateY(-2px);
}
.benefits .chip .i {
    color: var(--red-500);
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--red-100);
    border-radius: 12px;
    display: grid;
    place-items: center;
}
.benefits .chip .i svg {
    width: 22px;
    height: 22px;
}
.benefits .chip strong {
    display: block;
    color: var(--ink-900);
    font-weight: 800;
}
.benefits .chip span {
    font-size: 0.88rem;
    color: var(--ink-500);
}
@media (max-width: 900px) {
    .benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 520px) {
    .benefits {
        grid-template-columns: 1fr;
    }
    .qb-cat {
        padding: 15px;
    }
    .qb-cat .qb-row .qb-row-sub.zero{display: none;}
    .qb-row {
        grid-template-columns: minmax(0, 1fr) auto 0px !important;
    }
    .qb-presets .qb-preset-label {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
.steps {
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.steps .step {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 28px;
    border-radius: var(--radius-md);
    position: relative;
    transition: all 0.2s;
}
.steps .step:hover {
    border-color: var(--red-500);
    transform: translateY(-3px);
}
.steps .step::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    font-family: var(--font-display);
    font-size: 2.6rem;
    color: var(--red-500);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 900;
    letter-spacing: -0.04em;
}
.steps .step h3 {
    font-size: 1.2rem;
}
@media (max-width: 900px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 520px) {
    .steps {
        grid-template-columns: 1fr;
    }
}
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.split.reverse > :first-child {
    order: 2;
}
.split .art {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
    position: relative;
}
.split .art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.split .art .stamp {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--red-500);
    color: var(--white);
    padding: 14px 22px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
}
.split .art .stamp .big {
    font-size: 2.2rem;
    line-height: 1;
    font-weight: 900;
    display: block;
}
.split .art .stamp .lbl {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    opacity: 0.85;
}
@media (max-width: 900px) {
    .split,
    .split.reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .split.reverse > :first-child {
        order: 0;
    }
    .split .art {
        aspect-ratio: 16/10;
    }
}
.reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.review {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 0.2s;
}
.review:hover {
    border-color: var(--red-500);
    transform: translateY(-3px);
}
.review .stars {
    color: var(--red-500);
    font-size: 1.1rem;
    letter-spacing: 3px;
    font-weight: 900;
}
.review blockquote {
    margin: 0;
    color: var(--ink-800);
    font-weight: 500;
    font-size: 1.02rem;
    line-height: 1.5;
}
.review cite {
    font-style: normal;
    font-weight: 800;
    color: var(--ink-900);
    font-size: 0.95rem;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}
.review cite .avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--red-100);
    display: grid;
    place-items: center;
    color: var(--red-600);
    font-weight: 900;
    font-size: 1rem;
    font-family: var(--font-display);
}
.review cite span {
    display: block;
    font-weight: 500;
    color: var(--ink-500);
    font-size: 0.85rem;
    margin-top: 2px;
}
@media (max-width: 900px) {
    .reviews {
        grid-template-columns: 1fr;
    }
}
.cta-band {
    background: linear-gradient(135deg, var(--red-500) 0%, var(--red-600) 100%);
    color: var(--white);
    padding: 70px 48px;
    border-radius: var(--radius-xl);
    margin: 30px auto;
    max-width: calc(var(--container) - 56px);
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: var(--white);
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(40px);
}
.cta-band::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 280px;
    height: 280px;
    background: var(--ink-900);
    border-radius: 50%;
    opacity: 0.12;
    filter: blur(40px);
}
.cta-band .btn-primary {
    background: var(--white);
    color: var(--red-600);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.cta-band .btn-primary:hover {
    background: var(--ink-900);
    color: var(--white);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
}
.cta-band .btn-outline {
    background: var(--ink-900);
    color: var(--white);
    border-color: var(--ink-900);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}
.cta-band .btn-outline:hover {
    background: var(--white);
    color: var(--ink-900);
    border-color: var(--white);
}
.cta-band .container {
    position: relative;
    z-index: 1;
    padding: 0;
    max-width: none;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 36px;
    align-items: center;
}
.cta-band h2 {
    color: var(--white);
    margin-bottom: 12px;
}
.cta-band p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
}
.cta-band .actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
@media (max-width: 820px) {
    .cta-band .container {
        grid-template-columns: 1fr;
    }
    .cta-band .actions {
        justify-content: flex-start;
    }
    .cta-band {
        padding: 48px 28px;
    }
}
.faq {
    max-width: 900px;
    margin: 0 auto;
}
.faq details {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition:
        box-shadow 0.15s,
        border-color 0.15s;
}
.faq details[open] {
    box-shadow: var(--shadow-sm);
    border-color: var(--red-500);
}
.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: var(--ink-900);
    font-size: 1.05rem;
    font-family: var(--font-display);
    letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker {
    display: none;
}
.faq summary::after {
    content: "+";
    font-size: 1.8rem;
    color: var(--red-500);
    font-weight: 300;
    transition: transform 0.2s;
    line-height: 1;
}
.faq details[open] summary::after {
    transform: rotate(45deg);
}
.faq .body {
    padding: 0 26px 24px;
    color: var(--ink-700);
}
.faq .body p:last-child {
    margin-bottom: 0;
}
.city-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 980px) {
    .city-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 720px) {
    .city-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.city-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--white);
    text-decoration: none;
    color: var(--ink-900);
    transition:
        transform 0.2s,
        box-shadow 0.2s,
        border-color 0.2s;
}
.city-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--red-500);
    color: var(--ink-900);
}
.city-card .photo {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    background: var(--ink-900);
}
.city-card .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.08);
    transition: transform 0.4s;
}
.city-card:hover .photo img {
    transform: scale(1.06);
}
.city-card .photo::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 30%, rgba(15, 17, 20, 0.55) 70%, rgba(15, 17, 20, 0.95) 100%);
}
.city-card .photo h3 {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 2;
    margin: 0;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}
.area-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 980px;
    margin: 0 auto;
}
.area-chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 600;
    color: var(--ink-900);
    font-size: 0.95rem;
    transition: all 0.15s;
}
.area-chip::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red-500);
    margin-right: 8px;
}
.area-chip:hover {
    background: var(--red-500);
    color: var(--white);
    border-color: var(--red-500);
    transform: translateY(-2px);
}
.area-chip:hover::before {
    background: var(--white);
}
.area-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.area-grid a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    font-weight: 700;
    color: var(--ink-900);
    transition: all 0.15s;
}
.area-grid a:hover {
    border-color: var(--red-500);
    background: var(--red-100);
    color: var(--red-700);
    transform: translateY(-2px);
}
.area-grid a svg {
    color: var(--red-500);
    flex-shrink: 0;
}
@media (max-width: 900px) {
    .area-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 520px) {
    .area-grid {
        grid-template-columns: 1fr;
    }
}
.resource-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.2s;
    color: var(--ink-900);
    text-decoration: none;
}
.resource-card:hover {
    border-color: var(--red-500);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--ink-900);
}
.resource-card .photo {
    aspect-ratio: 16/10;
    background: var(--cream-deep);
    position: relative;
    overflow: hidden;
}
.resource-card .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.resource-card:hover .photo img {
    transform: scale(1.05);
}
.resource-card .body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}
.resource-card .tag {
    font-size: 0.72rem;
    color: var(--red-500);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
}
.resource-card h3 {
    margin: 0;
    font-size: 1.2rem;
}
.resource-card p {
    color: var(--ink-500);
    margin-bottom: 0;
    font-size: 0.94rem;
    flex-grow: 1;
}
.resource-card .more {
    color: var(--red-500);
    font-weight: 700;
    margin-top: auto;
}
.crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 22px;
    font-size: 0.85rem;
    color: var(--ink-500);
    letter-spacing: 0.01em;
}
.crumbs a {
    color: var(--ink-700);
    font-weight: 500;
}
.crumbs a:hover {
    color: var(--red-500);
}
.crumbs .sep {
    color: var(--ink-300);
}
.crumbs .here {
    color: var(--ink-900);
    font-weight: 600;
}
.article {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 28px;
}
.article h2 {
    margin-top: 2em;
    font-size: 1.9rem;
}
.article h3 {
    margin-top: 1.6em;
}
.article ul {
    margin-bottom: 1.4em;
}
.article p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--ink-800);
}
.article .callout {
    background: var(--red-100);
    border-left: 4px solid var(--red-500);
    padding: 20px 24px;
    border-radius: 8px;
    margin: 1.6em 0;
    color: var(--red-700);
}
.article .warn {
    background: #fff4d6;
    border-left: 4px solid #d99a18;
    padding: 20px 24px;
    border-radius: 8px;
    margin: 1.6em 0;
    color: #6b4910;
}
.page-hero.with-photo {
    position: relative;
    overflow: hidden;
    background: var(--ink-900);
    color: var(--white);
}
.page-hero.with-photo .hero-scene {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.page-hero.with-photo .hero-scene img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.page-hero.with-photo .hero-scene img {
    filter: brightness(1.15);
}
.page-hero.with-photo .hero-scene .hero-scrim {
    position: absolute;
    inset: 0;
    background: radial-gradient(800px 400px at 50% 50%, rgba(15, 17, 20, 0.3), rgba(15, 17, 20, 0.6));
}
.page-hero.with-photo .container {
    position: relative;
    z-index: 2;
}
.page-hero.with-photo h1 {
    color: var(--white);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}
.page-hero.with-photo p {
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.page-hero.with-photo .eyebrow {
    color: var(--accent);
}
.page-hero.with-photo .eyebrow::before {
    background: var(--accent);
}
.page-hero.with-photo .crumbs {
    color: rgba(255, 255, 255, 0.7);
}
.page-hero.with-photo .crumbs a {
    color: rgba(255, 255, 255, 0.85);
}
.page-hero.with-photo .crumbs a:hover {
    color: var(--accent);
}
.page-hero.with-photo .crumbs .here {
    color: var(--white);
}
.page-hero.with-photo .crumbs .sep {
    color: rgba(255, 255, 255, 0.35);
}
.page-hero {
    background: radial-gradient(700px 400px at 20% 0%, rgba(230, 57, 70, 0.1), transparent 60%),
        radial-gradient(600px 300px at 100% 100%, rgba(230, 57, 70, 0.08), transparent 60%),
        linear-gradient(180deg, #fffbf4 0%, var(--cream) 100%);
    color: var(--ink-900);
    padding: 72px 0 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80'><path d='M0 40h80M40 0v80' stroke='%230f1114' stroke-opacity='.03'/></svg>");
}
.page-hero .container {
    position: relative;
    z-index: 1;
}
.page-hero h1 {
    color: var(--ink-900);
    margin-bottom: 14px;
}
.page-hero p {
    color: var(--ink-700);
    font-size: 1.12rem;
    max-width: 720px;
    margin: 0 auto;
}
.page-hero .eyebrow {
    color: var(--red-500);
    justify-content: center;
}
.page-hero .eyebrow::before {
    background: var(--red-500);
}
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery .g {
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    background: var(--cream-deep);
    box-shadow: var(--shadow-sm);
}
.gallery .g img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.gallery .g:hover img {
    transform: scale(1.06);
}
.gallery .g .cap {
    position: absolute;
    inset: auto 0 0 0;
    padding: 20px;
    color: var(--white);
    background: linear-gradient(transparent, rgba(15, 17, 20, 0.85));
    font-weight: 700;
    font-size: 0.95rem;
}
@media (max-width: 900px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 520px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}
footer.site {
    background: var(--ink-900);
    color: #b9bcc2;
    padding: 80px 0 32px;
    font-size: 0.94rem;
    border-top: 1px solid var(--ink-800);
}
footer.site a {
    color: #dfe2e8;
}
footer.site a:hover {
    color: var(--red-500);
}
footer.site a:focus {
    outline: 0 !important;
    background: transparent !important;
    text-decoration: none !important;
}
footer.site .cols {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
footer.site h4 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
    font-weight: 800;
}
footer.site ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
footer.site li {
    margin-bottom: 8px;
}
footer.site .legal {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    color: #8b8f98;
}
footer.site .socials {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}
footer.site .socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: grid;
    place-items: center;
    transition: all 0.15s;
}
footer.site .socials a:hover {
    background: var(--red-500);
    color: var(--white);
}
footer.site .socials svg {
    width: 18px;
    height: 18px;
}
@media (max-width: 820px) {
    footer.site .cols {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 520px) {
    footer.site .cols {
        grid-template-columns: 1fr;
    }
}
.center {
    text-align: center;
}
.center .btn + .btn {
    margin-left: 14px;
}
@media (max-width: 600px) {
    .center .btn {
        display: inline-block;
        margin: 6px 4px;
    }
    .center .btn + .btn {
        margin-left: 4px;
    }
}
.mt-0 {
    margin-top: 0;
}
.mb-0 {
    margin-bottom: 0;
}
.mt-1 {
    margin-top: 14px;
}
.mt-2 {
    margin-top: 28px;
}
.mt-3 {
    margin-top: 42px;
}
.badge {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    padding: 6px 14px;
    background: var(--red-100);
    color: var(--red-600);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.divider {
    height: 1px;
    background: var(--line);
    margin: 40px 0;
}
.phone-mega {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 26px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    font-family: var(--font-display);
    font-size: 1.9rem;
    color: var(--ink-900);
    font-weight: 900;
    letter-spacing: -0.02em;
}
.phone-mega .pill {
    background: var(--red-500);
    color: var(--white);
    padding: 6px 12px;
    font-size: 0.7rem;
    border-radius: 999px;
    letter-spacing: 0.12em;
    font-family: var(--font-sans);
    text-transform: uppercase;
}
nav.toc {
    background: var(--cream);
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: 0.94rem;
}
nav.toc .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 22px;
}
nav.toc .toc-label {
    font-weight: 800;
    color: var(--ink-900);
    letter-spacing: 0.02em;
}
nav.toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
}
nav.toc li {
    margin: 0;
}
nav.toc a {
    color: var(--ink-700);
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    transition: all 0.15s;
}
nav.toc a:hover {
    background: var(--red-100);
    color: var(--red-700);
}
.snippet-answer {
    background: var(--white);
    border-left: 4px solid var(--red-500);
    padding: 18px 24px;
    border-radius: 8px;
    max-width: 780px;
    margin: 28px auto 36px;
    text-align: left;
    color: var(--ink-800);
    font-size: 1.02rem;
    line-height: 1.6;
    box-shadow: var(--shadow-sm);
}
.snippet-answer strong {
    color: var(--ink-900);
}
.takeaways {
    background: linear-gradient(135deg, var(--ink-900) 0%, #1c1f25 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    position: relative;
    overflow: hidden;
}
.takeaways::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 240px;
    height: 240px;
    background: var(--red-500);
    border-radius: 50%;
    opacity: 0.14;
    filter: blur(40px);
}
.takeaways .takeaways-tag {
    display: inline-block;
    background: var(--red-500);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.takeaways h2 {
    color: var(--white);
    margin: 0 0 18px;
    font-size: 1.65rem;
}
.takeaways ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}
.takeaways li {
    position: relative;
    padding-left: 32px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.5;
}
.takeaways li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--red-500);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 0.82rem;
    font-weight: 900;
}
.takeaways li strong {
    color: var(--white);
    font-weight: 800;
}
section.tldr-section {
    padding: 56px 0 0;
}
.tldr {
    max-width: 980px;
    margin: 0 auto;
    background: var(--cream-deep);
    border: 2px solid var(--ink-900);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    position: relative;
}
.tldr::before {
    content: "";
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: -2px;
    height: 6px;
    background: var(--red-500);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.tldrbeforenone:before{display: none;}
.tldr-head {
    margin-bottom: 16px;
}
.tldr-tag {
    display: inline-block;
    background: var(--ink-900);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.tldr-head h2 {
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.2;
}
.tldr-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 28px;
}
@media (max-width: 720px) {
    .tldr-list {
        grid-template-columns: 1fr;
    }
}
.tldr-list li {
    padding-left: 28px;
    position: relative;
    margin: 0;
    color: var(--ink-800);
    font-size: 0.98rem;
    line-height: 1.5;
}
.tldr-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 14px;
    height: 8px;
    border-left: 3px solid var(--red-500);
    border-bottom: 3px solid var(--red-500);
    transform: rotate(-45deg);
}
.tldr-list strong {
    color: var(--ink-900);
    font-weight: 800;
}
.journey {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative;
}
@media (max-width: 980px) {
    .journey {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 520px) {
    .journey {
        grid-template-columns: 1fr;
    }
}
.j-step {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 28px 24px 26px;
    position: relative;
    transition: all 0.2s;
}
.j-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--red-500);
}
.j-step .j-num {
    position: absolute;
    top: -18px;
    left: 24px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--red-500);
    color: var(--white);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
}
.j-step h3 {
    margin: 8px 0 6px;
    font-size: 1.1rem;
}
.j-step p {
    margin: 0;
    color: var(--ink-700);
    font-size: 0.94rem;
}
.glossary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 28px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0;
}
@media (max-width: 720px) {
    .glossary {
        grid-template-columns: 1fr;
    }
}
.g-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-left: 4px solid var(--red-500);
    border-radius: 12px;
    padding: 20px 24px;
}
.g-item dt {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--ink-900);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.g-item dd {
    margin: 0;
    color: var(--ink-700);
    font-size: 0.95rem;
    line-height: 1.55;
}
.local-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 26px 28px;
    transition: all 0.2s;
}
.local-card:hover {
    border-color: var(--red-500);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.local-card h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    color: var(--red-600);
}
.local-card p {
    margin: 0;
    color: var(--ink-700);
    font-size: 0.94rem;
}
.map-embed {
    max-width: 1080px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.byline {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    background: var(--cream-deep);
    border-radius: 14px;
    border-left: 4px solid var(--red-500);
}
.byline-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--ink-900);
}
.byline-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.byline strong {
    display: inline-block;
}
.byline .muted {
    display: block;
    font-size: 0.9rem;
}
section.numbers-strip {
    background: linear-gradient(135deg, var(--ink-900) 0%, #1c1f25 100%);
    padding: 56px 0;
    color: var(--white);
    border-top: 3px solid var(--red-500);
    border-bottom: 3px solid var(--red-500);
}
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}
@media (max-width: 720px) {
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}
.num-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.num-big {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 900;
    color: var(--red-500);
    letter-spacing: -0.04em;
    line-height: 1;
}
.num-lbl {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-top: 8px;
}
.step-rich {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    transition:
        border-color 0.2s,
        transform 0.2s;
}
.step-rich:hover {
    border-color: var(--red-500);
    transform: translateX(4px);
}
.step-rich .step-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--red-100);
    display: grid;
    place-items: center;
    color: var(--red-500);
}
.step-rich .step-icon svg {
    width: 26px;
    height: 26px;
}
.step-rich .step-body h3 {
    margin: 0 0 6px;
    font-size: 1.1rem;
}
.step-rich .step-body p {
    margin: 0;
    color: var(--ink-700);
    font-size: 0.94rem;
}
.photo-tip {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.2s;
}
.photo-tip:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--red-500);
}
.photo-tip .photo {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.photo-tip .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
    filter: brightness(0.92);
}
.photo-tip:hover .photo img {
    transform: scale(1.06);
}
.photo-tip .num {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--red-500);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}
.photo-tip .body {
    padding: 18px 22px 22px;
}
.photo-tip h3 {
    margin: 0 0 6px;
    font-size: 1.1rem;
}
.photo-tip p {
    margin: 0;
    color: var(--ink-700);
    font-size: 0.92rem;
}
.photo-tip.tip-bham .badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: var(--ink-900);
    color: var(--accent);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}
.price-card {
    padding: 0 !important;
    overflow: hidden;
}
.price-card .price-photo {
    aspect-ratio: 16/8;
    overflow: hidden;
    position: relative;
}
.price-card .price-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.price-card.featured .price-photo::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 30%;
    background: linear-gradient(transparent, var(--ink-900));
}
.price-card .price-body {
    padding: 26px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}
.price-card.featured {
    background: var(--ink-900);
    color: var(--white);
}
.compare-table .th-icon {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    margin: 0 auto 8px;
}
.compare-table .th-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}
.compare-table thead th {
    text-align: center;
}
.faq details {
    border-left: 4px solid transparent;
    transition: border-color 0.2s;
}
.faq details[open] {
    border-left-color: var(--red-500);
}
.faq summary::before {
    content: "?";
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--red-100);
    color: var(--red-600);
    font-weight: 900;
    font-size: 0.9rem;
    margin-right: 14px;
    flex-shrink: 0;
    transition:
        background 0.2s,
        color 0.2s;
}
.faq details[open] summary::before {
    background: var(--red-500);
    color: var(--white);
}
.ba-feature {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.ba-feature img {
    width: 100%;
    display: block;
}
.ba-feature .ba-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 28px;
    color: var(--white);
    font-weight: 700;
    background: linear-gradient(transparent, rgba(15, 17, 20, 0.92));
}
.ba-feature .ba-tag {
    display: inline-block;
    background: var(--red-500);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-right: 10px;
}
.auth-card .auth-monogram {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--ink-900);
    color: var(--white);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.auth-card .auth-monogram.epa {
    background: #006e3c;
}
.auth-card .auth-monogram.shaw {
    background: #d72027;
}
.auth-card .auth-monogram.mohawk {
    background: #1c4f9b;
}
.photo-feature {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition:
        transform 0.2s,
        box-shadow 0.2s,
        border-color 0.2s;
}
.photo-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--red-500);
}
.photo-feature .photo {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.photo-feature .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.photo-feature:hover .photo img {
    transform: scale(1.05);
}
.photo-feature .body {
    padding: 24px 26px 28px;
}
.photo-feature .tag {
    display: inline-block;
    background: var(--red-100);
    color: var(--red-700);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.photo-feature h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
}
.photo-feature p {
    margin: 0;
    color: var(--ink-700);
    font-size: 0.96rem;
}
.lifestyle-strip {
    position: relative;
    min-height: 320px;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 80px 0;
    background: var(--ink-900);
}
.lifestyle-strip > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55) saturate(0.9);
}
.lifestyle-strip > .container {
    position: relative;
    z-index: 2;
}
.lifestyle-quote {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}
.lifestyle-quote .quote-mark {
    font-family: var(--font-display);
    font-size: 4.5rem;
    line-height: 1;
    color: var(--red-500);
    display: block;
    margin-bottom: -16px;
    font-weight: 900;
}
.lifestyle-quote p {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 18px;
    color: var(--white);
}
.lifestyle-quote .cite {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.04em;
}
.dark-reviews {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.08) 0%, transparent 40%), var(--ink-900);
    color: var(--white);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.dark-reviews::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80'><path d='M0 40h80M40 0v80' stroke='%23ffffff' stroke-opacity='.03'/></svg>");
}
.dark-reviews .container {
    position: relative;
    z-index: 1;
}
.dark-reviews h2 {
    color: var(--white);
}
.dark-reviews .eyebrow {
    color: var(--red-500);
}
.dark-reviews .eyebrow::before {
    background: var(--red-500);
}
.dark-reviews .review {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}
.dark-reviews .review:hover {
    border-color: var(--red-500);
    background: rgba(255, 255, 255, 0.06);
}
.dark-reviews .review blockquote {
    color: rgba(255, 255, 255, 0.92);
}
.dark-reviews .review cite {
    color: var(--white);
}
.dark-reviews .review cite span {
    color: rgba(255, 255, 255, 0.65);
}
.dark-reviews .review .stars {
    color: var(--accent);
}
.dark-reviews .review cite .avatar {
    background: var(--red-500);
    color: var(--white);
}
.feature-box {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition:
        transform 0.2s,
        box-shadow 0.2s,
        border-color 0.2s;
}
.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--red-500);
}
.feature-box .icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--red-100);
    color: var(--red-500);
    display: grid;
    place-items: center;
}
.feature-box .icon svg {
    width: 28px;
    height: 28px;
}
.feature-box h3 {
    margin: 0;
    font-size: 1.25rem;
}
.feature-box p {
    margin: 0;
    color: var(--ink-700);
}
.callout-box {
    background: var(--cream-deep);
    border-left: 4px solid var(--red-500);
    padding: 22px 26px;
    border-radius: 12px;
    font-size: 1.02rem;
    color: var(--ink-800);
    line-height: 1.6;
}
.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1080px;
    margin: 0 auto;
}
@media (max-width: 980px) {
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 620px) {
    .tips-grid {
        grid-template-columns: 1fr;
    }
}
.tip-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 28px 26px;
    transition: all 0.2s;
}
.tip-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--red-500);
}
.tip-card .num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--red-500);
    line-height: 1;
    letter-spacing: -0.04em;
    display: block;
    margin-bottom: 6px;
}
.tip-card h3 {
    margin: 0 0 8px;
    font-size: 1.18rem;
}
.tip-card p {
    margin: 0;
    color: var(--ink-700);
    font-size: 0.95rem;
}
.tip-card.tip-callout {
    background: linear-gradient(135deg, var(--ink-900), #1a1d22);
    color: var(--white);
    border-color: var(--ink-900);
}
.tip-card.tip-callout h3,
.tip-card.tip-callout p {
    color: var(--white);
}
.tip-card.tip-callout p {
    color: rgba(255, 255, 255, 0.85);
}
.tip-card.tip-callout a {
    color: var(--accent);
}
.tip-card.tip-callout .badge {
    background: var(--red-500);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    display: inline-block;
    margin-bottom: 10px;
}
.auth-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 22px 22px;
    text-decoration: none;
    color: var(--ink-900);
    transition: all 0.2s;
}
.auth-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--red-500);
    color: var(--ink-900);
}
.auth-card .auth-tag {
    display: inline-block;
    background: var(--cream-deep);
    color: var(--ink-700);
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.auth-card h3 {
    margin: 0 0 6px;
    font-size: 1.1rem;
}
.auth-card p {
    margin: 0;
    color: var(--ink-500);
    font-size: 0.9rem;
}
.price-card.featured {
    padding-top: 20px;
}
.price-card .popular-stamp {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--ink-900);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(245, 210, 138, 0.5);
}
.compare-table-wrap {
    overflow-x: auto;
    max-width: 920px;
    margin: 0 auto;
}
.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.compare-table th,
.compare-table td {
    padding: 16px 20px;
    text-align: left;
}
.compare-table thead th {
    background: var(--ink-900);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    padding: 22px 20px;
}
.compare-table thead th .th-label {
    font-size: 1.05rem;
    font-weight: 800;
    display: block;
}
.compare-table thead th .th-sub {
    font-size: 0.8rem;
    opacity: 0.7;
    font-weight: 500;
}
.compare-table thead th.winner {
    background: var(--red-500);
    position: relative;
}
.compare-table thead th.winner::after {
    content: "🏆";
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 1rem;
}
.compare-table tbody tr:nth-child(even) {
    background: var(--cream-deep);
}
.compare-table tbody td {
    font-size: 0.95rem;
    color: var(--ink-700);
    border-top: 1px solid var(--line);
}
.compare-table tbody td:first-child {
    color: var(--ink-900);
    width: 28%;
}
.compare-table tbody td:last-child {
    font-weight: 700;
    color: var(--ink-900);
    background: rgba(230, 57, 70, 0.04);
}
.compare-table .check,
.compare-table .x {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 900;
    margin-right: 8px;
    vertical-align: middle;
}
.compare-table .check {
    background: var(--red-500);
    color: var(--white);
}
.compare-table .x {
    background: var(--ink-300);
    color: var(--white);
}
@media (max-width: 720px) {
    .compare-table th,
    .compare-table td {
        padding: 12px 14px;
        font-size: 0.88rem;
    }
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1080px;
    margin: 0 auto;
}
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
.price-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition:
        transform 0.2s,
        box-shadow 0.2s,
        border-color 0.2s;
}
.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.price-card.featured {
    background: var(--ink-900);
    color: var(--white);
    border-color: var(--red-500);
    border-width: 2px;
    box-shadow: 0 14px 40px rgba(230, 57, 70, 0.15);
    position: relative;
}
.price-card.featured h3,
.price-card.featured .amount {
    color: var(--white);
}
.price-card.featured ul li {
    color: rgba(255, 255, 255, 0.9);
}
.price-card.featured .muted {
    color: rgba(255, 255, 255, 0.7);
}
.price-card .tag {
    display: inline-block;
    background: var(--red-500);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    align-self: flex-start;
    margin-bottom: 4px;
}
.price-card h3 {
    margin: 0;
    font-size: 1.4rem;
}
.price-card .amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--ink-900);
    letter-spacing: -0.03em;
    line-height: 1;
    margin: 6px 0;
}
.price-card .amount sup {
    font-size: 1.2rem;
    vertical-align: top;
    position: relative;
    top: 0.4em;
    color: var(--red-500);
    margin-right: 2px;
}
.price-card ul {
    list-style: none;
    padding: 0;
    margin: 14px 0 18px;
}
.price-card ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
    font-size: 0.94rem;
    color: var(--ink-700);
}
.price-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 12px;
    height: 7px;
    border-left: 2px solid var(--red-500);
    border-bottom: 2px solid var(--red-500);
    transform: rotate(-45deg);
}
.price-card.featured ul li::before {
    border-color: var(--accent);
}
.price-card .btn {
    margin-top: auto;
    justify-content: center;
}
.price-card.featured .btn-primary {
    background: var(--white);
    color: var(--ink-900);
}
.price-card.featured .btn-primary:hover {
    background: var(--accent);
    color: var(--ink-900);
}
.price-card .btn-ghost {
    color: var(--ink-900);
    border-color: var(--ink-900);
}
.price-card .btn-ghost:hover {
    background: var(--ink-900);
    color: var(--white);
}
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.stats .stat {
    padding: 28px 24px;
    text-align: center;
    border-right: 1px solid var(--line);
}
.stats .stat:last-child {
    border-right: 0;
}
.stats .big {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--ink-900);
    line-height: 1;
    letter-spacing: -0.03em;
}
.stats .big .red {
    color: var(--red-500);
}
.stats .lbl {
    font-size: 0.82rem;
    color: var(--ink-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-top: 6px;
}
@media (max-width: 820px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats .stat {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
    .stats .stat:nth-child(even) {
        border-right: 0;
    }
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    justify-content: center;
    align-items: center;
    margin: 18px auto 4px;
    max-width: 760px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    color: var(--ink-900);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 9px 14px;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    white-space: nowrap;
}
.hero-badge::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--red-500);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 900;
    line-height: 1;
}
.page-hero.with-photo .hero-badges {
    color: var(--ink-900);
}
@media (max-width: 600px) {
    .hero-badge {
        font-size: 0.82rem;
        padding: 7px 11px;
    }
    .hero-badges {
        gap: 8px;
    }
}
.sticky-cta-bar {
    display: none;
}
.sticky-cta-bar > a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 12px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.98rem;
    text-decoration: none;
    border: 2px solid transparent;
    white-space: nowrap;
}
.sticky-cta-bar .sticky-call {
    background: var(--ink-900);
    color: var(--white);
}
.sticky-cta-bar .sticky-book {
    background: var(--red-500);
    color: var(--white);
    box-shadow: 0 8px 22px rgba(230, 57, 70, 0.35);
}
.sticky-cta-bar svg {
    width: 18px;
    height: 18px;
}
@media (max-width: 820px) {
    .sticky-cta-bar {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
        gap: 10px;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(8px);
        border-top: 1px solid var(--line);
        box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.08);
        z-index: 80;
    }
    body:has(.sticky-cta-bar) {
        padding-bottom: 84px;
    }
}
.guarantee-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f6fbf6;
    border: 1px solid #cfe7d3;
    color: #1f6e34;
    font-weight: 800;
    font-size: 0.82rem;
    padding: 7px 12px;
    border-radius: 999px;
    margin: 10px auto 0;
    letter-spacing: 0.01em;
}
.guarantee-pill::before {
    content: "🛡️";
    font-size: 0.9rem;
    filter: saturate(1.1);
}
.guarantee-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 14px;
}
.guarantee-row .guarantee-pill {
    margin: 0;
}
.page-hero.with-photo .actions {
    margin-top: 18px;
}
.hero .hero-badges {
    margin: 18px 0 6px;
    max-width: 640px;
}
.quick-answer {
    background: linear-gradient(180deg, #fff 0%, #faf7f2 100%);
    border: 1px solid var(--line);
    border-left: 4px solid var(--red-500);
    border-radius: 14px;
    padding: 24px 28px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}
.quick-answer .qa-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--red-500);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}
.quick-answer .snippet-answer {
    font-size: 1.04rem;
    line-height: 1.6;
    color: var(--ink-800);
    margin: 0;
}
.quick-answer .snippet-answer a {
    color: var(--red-500);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid rgba(230, 57, 70, 0.3);
}
.quick-answer .snippet-answer a:hover {
    border-bottom-color: var(--red-500);
}
.nap-block {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 36px 32px;
}
.nap-block h2 {
    text-align: center;
    margin: 0 0 24px;
    font-size: 1.7rem;
}
.nap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.nap-cell {
    text-align: center;
    padding: 12px;
}
.nap-cell .nap-lbl {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--red-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.nap-cell p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--ink-800);
    line-height: 1.5;
}
.nap-cell a {
    color: var(--ink-900);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.nap-cell a:hover {
    color: var(--red-500);
    border-bottom-color: var(--red-500);
}
@media (max-width: 760px) {
    .nap-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}
@media (max-width: 460px) {
    .nap-grid {
        grid-template-columns: 1fr;
    }
    a.btn {
        padding: 5px 15px;
        font-size: 0.8rem;
    }
    .header-site .container {
        min-height: auto;
        padding: 6px 15px 6px 15px;
    }
    .brand img.logo {
        height: 35px;
    }
    .nav-cta {
        margin-right: 8px;
    }
}
.awards-strip {
    background: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
}
.awards-strip .awards-head {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-500);
    margin-bottom: 14px;
}
.awards-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 14px 22px;
}
.award-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px 18px;
    text-decoration: none;
    color: var(--ink-900);
    font-weight: 700;
    font-size: 0.92rem;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
}
.award-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    color: var(--ink-900);
}
.award-badge .award-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    color: var(--white);
    flex: none;
}
.award-badge .award-mark.cri {
    background: #0f1114;
}
.award-badge .award-mark.iicrc {
    background: #1f4e8c;
}
.award-badge .award-mark.google {
    background: linear-gradient(135deg, #4285f4 0%, #ea4335 100%);
}
.award-badge .award-mark.bbb {
    background: #1c4f78;
}
.award-badge .award-mark.epa {
    background: #297c2c;
}
.award-badge .award-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.award-badge .award-info p {
    font-size: 0.72rem;
    color: var(--ink-500);
    margin-bottom: 0;
}
.award-badge .award-info p strong {
    display: block;
    font-size: 0.92rem;
    color: var(--ink-900);
}
@media (max-width: 600px) {
    .award-badge {
        padding: 8px 12px;
        font-size: 0.7rem;
    }
    .award-badge .award-mark {
        width: 30px;
        height: 30px;
        font-size: 0.58rem;
    }
}
.snippet-target {
    background: #fffbf5;
    border: 1px solid #f1d9a8;
    border-left: 4px solid #e0a020;
    border-radius: 14px;
    padding: 24px 28px;
}
.snippet-target h2 {
    margin: 0 0 12px;
    font-size: 1.32rem;
    color: var(--ink-900);
}
.snippet-target .snippet-answer {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}
.hero-photo,
.page-hero.with-photo .hero-scene img {
    aspect-ratio: 16/9;
    object-fit: cover;
}
.service-card .photo img {
    aspect-ratio: 16/10;
    object-fit: cover;
}
.gallery .g img,
.ba-feature img {
    aspect-ratio: 4/3;
    object-fit: cover;
}
.price-photo img {
    aspect-ratio: 3/2;
    object-fit: cover;
}
.photo-feature .photo img,
.photo-tip .photo img {
    aspect-ratio: 3/2;
    object-fit: cover;
}
.split .art img {
    aspect-ratio: 4/3;
    object-fit: cover;
}
.lifestyle-strip img {
    aspect-ratio: 21/9;
    object-fit: cover;
}
.byline-photo img {
    aspect-ratio: 1/1;
    object-fit: cover;
}
.review .avatar img {
    aspect-ratio: 1/1;
}
.skip-link {
    position: absolute;
    top: -42px;
    left: 12px;
    background: var(--ink-900);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    z-index: 100;
    transition: top 0.15s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.skip-link:focus {
    top: 12px;
    outline: 3px solid var(--red-500);
}
:focus-visible {
    outline: 3px solid var(--red-500);
    outline-offset: 2px;
    border-radius: 4px;
}
main:focus-visible {
    outline: none;
}
.open-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    position: relative;
}
.open-status::before {
    content: "·";
    position: absolute;
    left: -11px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 400;
}
.open-status .status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #888;
    flex: none;
}
.open-status.is-open .status-dot {
    background: #2bb673;
    box-shadow: 0 0 0 3px rgba(43, 182, 115, 0.15);
    animation: pulse 2s infinite;
}
.open-status.is-closed .status-dot {
    background: #ff6b5e;
}
.open-status.is-open .status-text {
    color: #4ade80;
}
.open-status.is-closed .status-text {
    color: #fca5a5;
}
@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(43, 182, 115, 0.15);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(43, 182, 115, 0.05);
    }
}
@media (max-width: 600px) {
    .open-status {
        font-size: 0.76rem;
    }
}
.booked-ticker {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 1200px;
    margin: 12px auto;
    padding: 10px 18px;
    background: linear-gradient(90deg, #f6fbf6 0%, #fff 100%);
    border: 1px solid #cfe7d3;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink-800);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.booked-ticker.is-loaded {
    opacity: 1;
}
.booked-ticker .booked-icon {
    font-size: 0.9rem;
    flex: none;
}
.booked-ticker .booked-text strong {
    color: var(--ink-900);
}
.booked-ticker .booked-text em {
    font-style: normal;
    color: var(--red-500);
    font-weight: 700;
}
@media (max-width: 600px) {
    .booked-ticker {
        font-size: 0.82rem;
        padding: 8px 14px;
        margin: 10px 12px;
    }
}
#google-reviews-widget:empty {
    display: none;
}
#google-reviews-widget:not(:empty) + #google-reviews-fallback {
    display: none;
}
.service-card .photo {
    position: relative;
}
.service-card .price-hook {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--red-500);
    color: var(--white);
    font-weight: 800;
    font-size: 0.82rem;
    padding: 6px 12px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(230, 57, 70, 0.4);
    letter-spacing: 0.01em;
    z-index: 2;
}
.service-card .card-cta {
    display: block;
    margin: 0;
    padding: 0 24px 20px;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--red-500);
    letter-spacing: 0.01em;
    transition: transform 0.15s ease;
}
.service-card:hover .card-cta {
    transform: translateX(4px);
}
.service-card .tagline {
    padding-bottom: 12px;
}
.service-card {
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}
.featured-offer-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    background: linear-gradient(135deg, var(--ink-900) 0%, #1d2025 60%, var(--red-500) 200%);
    color: var(--white);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    position: relative;
}
.featured-offer-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(230, 57, 70, 0.35) 0%, transparent 55%);
    pointer-events: none;
}
.featured-offer-card .offer-body {
    padding: 48px 44px;
    position: relative;
    z-index: 1;
}
.featured-offer-card .offer-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 57, 70, 0.2);
    color: #ffb1b9;
    border: 1px solid rgba(230, 57, 70, 0.4);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 999px;
}
.featured-offer-card h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3.5vw, 3.1rem);
    line-height: 1.05;
    margin: 18px 0 10px;
    letter-spacing: -0.02em;
}
.featured-offer-card .offer-amount {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.5rem, 9vw, 7rem);
    line-height: 1;
    color: var(--white);
    letter-spacing: -0.04em;
    display: inline-flex;
    align-items: flex-start;
}
.featured-offer-card .offer-amount sup {
    font-size: 0.5em;
    font-weight: 800;
    margin-top: 0.3em;
    margin-right: 4px;
    color: #ffb1b9;
    top: 0;
    line-height: 1;
}
.featured-offer-card .offer-amount-line {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
    margin: 8px 0 6px;
}
.featured-offer-card .offer-amount-sub {
    font-weight: 700;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
}
.featured-offer-card .offer-fineprint {
    margin: 6px 0 24px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
}
.featured-offer-card .offer-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.featured-offer-card .offer-actions .btn-primary {
    background: var(--red-500);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(230, 57, 70, 0.5);
}
.featured-offer-card .offer-actions .btn-primary:hover {
    background: var(--red-600);
}
.featured-offer-card .offer-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}
.featured-offer-card .offer-actions .btn-outline:hover {
    background: var(--white);
    color: var(--ink-900);
    border-color: var(--white);
}
.featured-offer-card .offer-photo {
    position: relative;
    min-height: 360px;
    overflow: hidden;
}
.featured-offer-card .offer-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.featured-offer-card .offer-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 17, 20, 0.7) 0%, transparent 35%);
}
@media (max-width: 820px) {
    .featured-offer-card {
        grid-template-columns: 1fr;
    }
    .featured-offer-card .offer-body {
        padding: 36px 28px 28px;
    }
    .featured-offer-card .offer-photo {
        min-height: 220px;
        order: -1;
    }
    .featured-offer-card .offer-photo::after {
        background: linear-gradient(180deg, transparent 0%, rgba(15, 17, 20, 0.85) 100%);
    }
}
.home-ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.home-ba-grid .ba-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
}
.home-ba-grid .ba-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.home-ba-grid .ba-item:hover img {
    transform: scale(1.05);
}
.home-ba-grid .ba-item .ba-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 17, 20, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 18px 20px;
    color: var(--white);
}
.home-ba-grid .ba-item .ba-overlay strong {
    font-size: 1rem;
    display: block;
}
.home-ba-grid .ba-item .ba-overlay span {
    font-size: 0.8rem;
    opacity: 0.85;
    font-weight: 600;
}
.home-ba-grid .ba-item .ba-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--red-500);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 5px 11px;
    border-radius: 999px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
@media (max-width: 760px) {
    .home-ba-grid {
        grid-template-columns: 1fr;
    }
}
.section-divider {
    height: 1px;
    max-width: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(90deg, transparent, var(--red-500), transparent);
}
.zip-checker {
    background: linear-gradient(135deg, var(--ink-900) 0%, var(--ink-800) 100%);
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.zip-checker::before {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.18), transparent 70%);
    pointer-events: none;
}
.zip-checker .eyebrow {
    color: var(--red-500);
}
.zip-checker h2 {
    color: var(--white);
    margin: 0 0 10px;
    font-size: 1.55rem;
}
.zip-checker p.muted {
    color: rgba(255, 255, 255, 0.78);
    margin: 0 auto 18px;
    max-width: 540px;
    font-size: 0.96rem;
}
.zip-checker p.muted a {
    color: var(--white);
    text-decoration: underline;
}
.zip-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.zip-form input {
    font: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-radius: 999px;
    min-width: 220px;
    text-align: center;
    letter-spacing: 0.12em;
}
.zip-form input::placeholder {
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0;
    font-weight: 500;
}
.zip-form input:focus {
    outline: none;
    border-color: var(--red-500);
    background: rgba(255, 255, 255, 0.14);
}
.zip-form .btn {
    padding: 14px 26px;
}
.zip-result {
    margin-top: 20px;
    padding: 0 18px;
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
    position: relative;
    z-index: 1;
}
.zip-result.is-shown {
    opacity: 1;
    transform: translateY(0);
}
.zip-result-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.zip-result p {
    color: rgba(255, 255, 255, 0.85);
    margin: 8px 0 14px;
    font-size: 0.96rem;
}
.zip-result-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 12px;
}
.zip-result.is-yes .zip-result-title {
    color: #4ade80;
}
.zip-result.is-maybe .zip-result-title {
    color: #fde047;
}
.zip-result.is-warn .zip-result-title,
.zip-result.is-warn {
    color: #fca5a5;
}
.zip-result .btn-ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}
.zip-result .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}
@media (max-width: 540px) {
    .zip-checker {
        padding: 28px 22px 22px;
    }
    .zip-form input {
        min-width: 0;
        flex: 1 1 100%;
    }
    .zip-form .btn {
        flex: 1 1 100%;
        justify-content: center;
    }
    .section-head h2 {
        font-size: 1.8rem !important;
    }
}
.city-review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
}
.city-review-card {
    background: var(--white);
    padding: 24px 26px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--red-500);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.city-review-head {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.city-review-head .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ink-900);
    color: var(--white);
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 0.95rem;
}
.city-review-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    flex: 1;
}
.city-review-name {
    font-weight: 800;
    color: var(--ink-900);
    font-size: 1rem;
}
.city-review-place {
    font-size: 0.82rem;
    color: var(--ink-500);
    margin-top: 2px;
}
.city-review-stars {
    color: #f5b400;
    font-size: 1rem;
    letter-spacing: 1px;
}
.city-review-card blockquote {
    margin: 0;
    color: var(--ink-700);
    font-size: 0.96rem;
    font-style: italic;
    line-height: 1.55;
}
.nap-cell address {
    font-style: normal;
    font: inherit;
    color: inherit;
}
.featured-resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.featured-resource-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    color: var(--ink-900);
    border: 2px solid transparent;
    transition:
        transform 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}
.featured-resource-card:hover {
    transform: translateY(-4px);
    border-color: var(--red-500);
    box-shadow: var(--shadow-lg);
    color: var(--ink-900);
}
.featured-photo {
    aspect-ratio: 16/9;
    overflow: hidden;
}
.featured-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.featured-resource-card:hover .featured-photo img {
    transform: scale(1.04);
}
.featured-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.featured-tag {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--red-500);
}
.featured-body h3 {
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.25;
}
.featured-body p {
    margin: 0;
    color: var(--ink-700);
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
}
.featured-cta {
    margin-top: 8px;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--red-600);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.featured-cta svg {
    width: 16px;
    height: 16px;
}
@media (max-width: 920px) {
    .featured-resource-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 640px) {
    .featured-resource-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
.topic-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 0 auto 32px;
    max-width: 940px;
}
.topic-pill {
    background: var(--white) !important;
    border: 2px solid var(--line);
    padding: 10px 18px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ink-700) !important;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition:
        background 0.15s ease,
        color 0.15s ease,
        border-color 0.15s ease,
        transform 0.1s ease;
}
.topic-pill:hover {
    border-color: var(--red-300, #f5a3aa);
    color: var(--red-600);
}
.topic-pill.is-active {
    background: var(--ink-900) !important;
    color: var(--white) !important;
    border-color: var(--ink-900);
}
.topic-pill .topic-icon {
    font-size: 1.05em;
}
.topic-pill .topic-icon img {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 0.07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
}
.resource-rich-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
}
.resource-card-rich {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--ink-900);
    border: 1px solid var(--line);
    transition:
        transform 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}
.resource-card-rich:hover {
    transform: translateY(-3px);
    border-color: var(--red-500);
    box-shadow: var(--shadow-md);
    color: var(--ink-900);
}
.resource-photo {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--cream-deep);
}
.resource-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.resource-card-rich:hover .resource-photo img {
    transform: scale(1.04);
}
.resource-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.resource-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.76rem;
}
.resource-tag {
    background: rgba(230, 57, 70, 0.1);
    color: var(--red-600);
    padding: 3px 9px;
    border-radius: 999px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
}
.resource-time {
    color: var(--ink-500);
    font-weight: 600;
}
.resource-body h3 {
    font-size: 1.1rem;
    margin: 4px 0 0;
    line-height: 1.25;
}
.resource-body p {
    margin: 0;
    color: var(--ink-700);
    font-size: 0.92rem;
    line-height: 1.5;
    flex: 1;
}
.resource-body .more {
    margin-top: 8px;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--red-600);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.resource-body .more svg {
    width: 14px;
    height: 14px;
}
@media (max-width: 920px) {
    .resource-rich-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 640px) {
    .resource-rich-grid {
        grid-template-columns: 1fr;
    }
}
.stain-triage .triage-select {
    font: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    min-width: 280px;
    max-width: 100%;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 40px;
}
.stain-triage .triage-select option {
    color: var(--ink-900);
    background: var(--white);
}
.triage-result-card {
    text-align: left;
}
.triage-result-card .zip-result-title {
    text-align: center;
    margin-bottom: 14px;
}
.triage-result-card .triage-steps {
    margin: 16px 0 12px;
    padding-left: 22px;
    text-align: left;
}
.triage-result-card .triage-steps li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    line-height: 1.55;
    text-align: left;
}
.triage-result-card .triage-steps li strong {
    color: var(--white);
    font-weight: 800;
}
.triage-warn {
    background: rgba(245, 158, 11, 0.18);
    color: #fde68a;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 8px 0 14px;
    border-left: 3px solid #f59e0b;
}
.newsletter-block {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: center;
    background: var(--white);
    padding: 36px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--red-500);
}
.newsletter-block h2 {
    font-size: 1.5rem;
    margin: 0 0 8px;
}
.newsletter-block p.muted {
    margin: 0 0 0;
    font-size: 0.95rem;
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.newsletter-form input {
    font: inherit;
    font-size: 1rem;
    padding: 14px 18px;
    border: 2px solid var(--line);
    background: var(--cream);
    color: var(--ink-900);
    border-radius: 999px;
    width: 100%;
}
.newsletter-form input:focus {
    outline: none;
    border-color: var(--red-500);
    background: var(--white);
}
.newsletter-form .btn {
    width: 100%;
    justify-content: center;
}
@media (max-width: 720px) {
    .newsletter-block {
        grid-template-columns: 1fr;
        padding: 28px 24px;
        gap: 22px;
    }
}
.article-meta-line {
    margin-top: 14px;
    font-size: 0.9rem;
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.85);
}
.with-photo .article-meta-line {
    color: rgba(255, 255, 255, 0.85);
}
.article-print-btn {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s ease;
}
.article-print-btn:hover {
    background: rgba(255, 255, 255, 0.32);
}
.article-toc {
    background: var(--cream-deep);
    padding: 18px 22px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--red-500);
    margin-bottom: 28px;
}
.toc-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--red-600);
    margin-bottom: 8px;
}
.article-toc ol {
    margin: 0;
    padding-left: 22px;
    font-size: 0.95rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 18px;
}
.article-toc li {
    margin: 0;
    line-height: 1.5;
}
.article-toc a {
    color: var(--ink-900);
    font-weight: 600;
}
.article-toc a:hover {
    color: var(--red-600);
}
@media (max-width: 720px) {
    .article-toc ol {
        grid-template-columns: 1fr;
    }
}
.related-service-callout {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    background: linear-gradient(135deg, var(--ink-900) 0%, var(--ink-800) 100%);
    color: var(--white);
    padding: 28px 32px;
    border-radius: var(--radius-lg);
    margin: 36px 0 0;
    position: relative;
    overflow: hidden;
}
.related-service-callout::before {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.18), transparent 70%);
}
.related-service-callout h3 {
    color: var(--white);
    margin: 0 0 8px;
    font-size: 1.2rem;
}
.related-service-callout p {
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.5;
}
.related-service-callout .rsc-eyebrow {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--red-500);
    margin-bottom: 6px;
}
.related-service-callout .rsc-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
}
.related-service-callout .btn-ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
}
.related-service-callout .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}
@media (max-width: 760px) {
    .related-service-callout {
        grid-template-columns: 1fr;
        padding: 24px;
    }
    .related-service-callout .rsc-actions {
        justify-content: flex-start;
    }
}
.todays-openings {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 14px 28px;
    margin: 0 auto;
    max-width: 980px;
    background: linear-gradient(135deg, #fff7e6 0%, #fef3d7 100%);
    border: 1px solid #f0c674;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.12);
    font-size: 0.98rem;
    color: #7a4f00;
    margin-top: -8px;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(6px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}
.todays-openings.is-loaded {
    opacity: 1;
    transform: translateY(0);
}
.todays-openings .to-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #15a14a;
    box-shadow: 0 0 0 5px rgba(21, 161, 74, 0.18);
    animation: avail-pulse 2.2s ease-in-out infinite;
    flex-shrink: 0;
}
.todays-openings .to-text {
    color: #7a4f00;
    line-height: 1.4;
}
.todays-openings .to-text strong {
    color: #5a3800;
    font-weight: 800;
}
@media (max-width: 720px) {
    .todays-openings {
        border-radius: var(--radius-md);
        padding: 12px 18px;
        font-size: 0.9rem;
        text-align: left;
        margin: 0 16px 8px;
    }
}
.quick-book-strip {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
    background: var(--white);
    border: 2px solid var(--ink-900);
    border-radius: var(--radius-lg);
    padding: 22px 28px;
    box-shadow: var(--shadow-md);
}
.qb-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}
.qb-offer {
    gap: 4px;
    flex-direction: column;
    align-items: flex-start;
}
.qb-amount {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
    color: var(--red-600);
    letter-spacing: -0.02em;
}
.qb-amount sup {
    font-size: 0.55em;
    vertical-align: 0.5em;
    font-weight: 800;
    margin-right: 2px;
}
.qb-amount-sub {
    font-size: 0.82rem;
    color: var(--ink-500);
    font-weight: 600;
}
.qb-status .qb-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #15a14a;
    box-shadow: 0 0 0 4px rgba(21, 161, 74, 0.18);
    animation: avail-pulse 2.2s ease-in-out infinite;
}
.qb-status div {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}
.qb-status strong {
    font-weight: 800;
    color: var(--ink-900);
    font-size: 1.02rem;
}
.qb-status span {
    font-size: 0.85rem;
    color: var(--ink-500);
}
.qb-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
@media (max-width: 760px) {
    .quick-book-strip {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px;
        text-align: center;
    }
    .qb-cell {
        justify-content: center;
    }
    .qb-offer {
        align-items: center;
    }
    .qb-status div {
        align-items: center;
        text-align: center;
    }
}
.at-glance-bullets {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 22px;
}
.at-glance-bullets li {
    position: relative;
    padding-left: 26px;
    font-size: 0.96rem;
    color: var(--ink-700);
    line-height: 1.45;
}
.at-glance-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--red-500);
    color: var(--white);
    font-weight: 900;
    font-size: 0.7rem;
    display: grid;
    place-items: center;
}
.at-glance-bullets li strong {
    color: var(--ink-900);
    font-weight: 800;
}
@media (max-width: 600px) {
    .at-glance-bullets {
        grid-template-columns: 1fr;
    }
}
.essay-collapse {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.essay-collapse summary {
    list-style: none;
    cursor: pointer;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    transition: background 0.15s ease;
}
.essay-collapse summary::-webkit-details-marker {
    display: none;
}
.essay-collapse summary::after {
    content: "+";
    position: absolute;
    top: 28px;
    right: 28px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--red-500);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 900;
    display: grid;
    place-items: center;
    transition: transform 0.2s ease;
}
.essay-collapse[open] summary::after {
    content: "−";
    transform: rotate(180deg);
}
.essay-collapse summary:hover {
    background: var(--cream-deep);
}
.essay-summary-eyebrow {
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--red-500);
}
.essay-summary-h {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--ink-900);
    line-height: 1.25;
    padding-right: 56px;
}
.essay-summary-sub {
    font-size: 0.94rem;
    color: var(--ink-500);
    line-height: 1.5;
    padding-right: 56px;
}
.essay-collapse[open] .long-form-essay {
    padding: 0 32px 32px;
    border-top: 1px solid var(--line);
    margin-top: 0;
}
@media (max-width: 600px) {
    .essay-collapse summary {
        padding: 22px;
    }
    .essay-collapse summary::after {
        top: 22px;
        right: 22px;
        width: 28px;
        height: 28px;
        font-size: 1.3rem;
    }
    .essay-summary-h {
        font-size: 1.15rem;
        padding-right: 42px;
    }
    .essay-summary-sub {
        padding-right: 42px;
        font-size: 0.9rem;
    }
    .essay-collapse[open] .long-form-essay {
        padding: 18px 22px 22px;
    }
}
.long-form-essay {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--ink-700);
}
.long-form-essay h3 {
    font-size: 1.4rem;
    margin: 36px 0 12px;
    color: var(--ink-900);
    padding-top: 8px;
    border-top: 2px solid var(--red-500);
    display: inline-block;
    padding-right: 24px;
}
.long-form-essay h3:first-child {
    margin-top: 0;
}
.long-form-essay p {
    margin: 0 0 16px;
}
.long-form-essay strong {
    color: var(--ink-900);
    font-weight: 700;
}
.long-form-essay a {
    font-weight: 600;
    border-bottom: 1px dotted var(--red-500);
}
.long-form-essay a:hover {
    color: var(--red-700);
    border-color: var(--red-700);
}
.long-form-essay .essay-cta-line {
    margin-top: 28px;
    padding: 18px 22px;
    background: var(--cream-deep);
    border-left: 4px solid var(--red-500);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-weight: 600;
    color: var(--ink-900);
}
@media print {
    .header-site,
    footer.site,
    .topbar,
    .sticky-cta-bar,
    .booked-ticker,
    .availability-section,
    .zip-checker,
    .map-embed,
    .awards-strip,
    .hero-photo,
    .hero-scrim,
    .featured-offer-card .offer-photo,
    .actions,
    .btn,
    .back-to-area,
    nav,
    .nav-mobile {
        display: none !important;
    }
    body {
        background: var(--white);
        color: #000;
        font-size: 12pt;
    }
    a {
        color: #000;
        text-decoration: underline;
    }
    a[href^="http"]::after,
    a[href^="/"]::after {
        content: " (" attr(href) ")";
        font-size: 9pt;
        color: #555;
    }
    .city-grid,
    .county-grid,
    .nbhd-grid,
    .svc-area-grid,
    .city-review-card,
    .city-review-grid,
    .drive-table tr,
    .highway-table tr {
        page-break-inside: avoid;
    }
    .drive-table,
    .highway-table,
    .compare-table {
        box-shadow: none;
        border: 1px solid #999;
    }
    .drive-table thead th,
    .highway-table thead th,
    .compare-table thead th {
        background: #eee !important;
        color: #000 !important;
    }
    [data-availability-slots],
    [data-zip-result],
    [data-booked-ticker] {
        display: none !important;
    }
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
    h1 {
        font-size: 22pt;
        margin-bottom: 8pt;
    }
    h2 {
        font-size: 16pt;
        margin-top: 18pt;
    }
    h3 {
        font-size: 13pt;
        margin-top: 12pt;
    }
    .promise-band,
    .takeaways,
    .nap-block {
        background: #fff !important;
        color: #000 !important;
    }
    .promise-band *,
    .takeaways *,
    .nap-block * {
        color: #000 !important;
    }
}
.back-to-area {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--red-600);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    border: 2px solid var(--red-500);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    transition:
        background 0.15s ease,
        color 0.15s ease,
        transform 0.15s ease;
}
.back-to-area:hover {
    background: var(--red-500);
    color: var(--white);
    border-color: var(--red-500);
    transform: translateY(-1px);
}
.drive-table-wrap,
.highway-table-wrap {
    overflow-x: auto;
    max-width: 1080px;
    margin: 0 auto;
}
.drive-table,
.highway-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    font-size: 0.96rem;
}
.drive-table th,
.highway-table th,
.drive-table td,
.highway-table td {
    padding: 14px 18px;
    text-align: left;
}
.drive-table thead th,
.highway-table thead th {
    background: var(--ink-900);
    color: var(--white);
    font-weight: 800;
    font-size: 0.92rem;
    padding: 16px 18px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.drive-table tbody tr:nth-child(even),
.highway-table tbody tr:nth-child(even) {
    background: var(--cream-deep);
}
.drive-table tbody td,
.highway-table tbody td {
    border-top: 1px solid var(--line);
    color: var(--ink-700);
    vertical-align: top;
}
.drive-table tbody td:first-child a {
    color: var(--ink-900);
    font-weight: 700;
}
.drive-table tbody td:first-child a:hover {
    color: var(--red-600);
}
.zip-chips {
    font-size: 0.86rem;
    color: var(--ink-500);
}
@media (max-width: 720px) {
    .drive-table th,
    .highway-table th,
    .drive-table td,
    .highway-table td {
        padding: 10px 12px;
        font-size: 0.88rem;
    }
}
.county-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 18px;
}
.county-card {
    background: var(--white);
    padding: 22px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--red-500);
}
.county-card h3 {
    margin: 0 0 8px;
    font-size: 1.2rem;
}
.county-card p {
    margin: 0 0 10px;
}
.county-card .county-cities {
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}
.county-card .county-cities a {
    color: var(--ink-900);
    font-weight: 600;
    border-bottom: 1px dotted var(--ink-300);
    padding-bottom: 1px;
    display: inline-block;
}
.county-card .county-cities a:hover {
    color: var(--red-600);
    border-color: var(--red-500);
}
.landmark-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 14px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}
.landmark-chip {
    background: var(--white);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink-700);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    transition:
        background 0.15s ease,
        color 0.15s ease,
        border-color 0.15s ease,
        transform 0.15s ease;
}
a.landmark-chip:hover {
    background: var(--red-500);
    color: var(--white);
    border-color: var(--red-500);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.city-runlist {
    font-size: 1.02rem;
    line-height: 2;
    text-align: center;
    margin: 0 auto;
    max-width: 820px;
}
.city-runlist a {
    color: var(--ink-900);
    font-weight: 600;
    white-space: nowrap;
    border-bottom: 1px dotted var(--ink-300);
    padding-bottom: 1px;
}
.city-runlist a:hover {
    color: var(--red-600);
    border-color: var(--red-500);
}
.nbhd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 18px;
}
.nbhd-block {
    background: var(--white);
    padding: 20px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.nbhd-block h3 {
    font-size: 1.15rem;
    margin: 0 0 8px;
}
.nbhd-block h3 a {
    color: var(--ink-900);
    border-bottom: 2px solid var(--red-500);
    padding-bottom: 2px;
}
.nbhd-block h3 a:hover {
    color: var(--red-600);
}
.nbhd-block p {
    margin: 0;
    color: var(--ink-700);
    font-size: 0.94rem;
    line-height: 1.55;
}
.svc-area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}
.svc-area-card {
    display: block;
    padding: 22px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    color: var(--ink-900);
    text-decoration: none;
    transition:
        transform 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}
.svc-area-card:hover {
    transform: translateY(-3px);
    border-color: var(--red-500);
    box-shadow: var(--shadow-md);
    color: var(--ink-900);
}
.svc-area-card h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    line-height: 1.3;
}
.svc-area-card p {
    margin: 0 0 12px;
    color: var(--ink-700);
    font-size: 0.94rem;
}
.svc-area-card .svc-area-arrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--red-600);
    font-weight: 700;
    font-size: 0.92rem;
}
.svc-area-card .svc-area-arrow svg {
    width: 16px;
    height: 16px;
}
@media (max-width: 760px) {
    .compare-table.compare-table--3col,
    .compare-table.compare-table--3col thead,
    .compare-table.compare-table--3col tbody,
    .compare-table.compare-table--3col tr,
    .compare-table.compare-table--3col td {
        display: block;
        width: 100%;
    }
    .compare-table.compare-table--3col {
        background: transparent;
        box-shadow: none;
    }
    .compare-table.compare-table--3col thead {
        display: none;
    }
    .compare-table.compare-table--3col tbody tr {
        background: var(--white);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-sm);
        margin-bottom: 16px;
        padding: 18px 18px 14px;
        border: 1px solid var(--line);
    }
    .compare-table.compare-table--3col tbody tr:nth-child(even) {
        background: var(--white);
    }
    .compare-table.compare-table--3col tbody td {
        padding: 10px 0 6px;
        border: none;
        font-size: 0.94rem;
        width: 100%;
        line-height: 1.45;
    }
    .compare-table.compare-table--3col tbody td::before {
        content: attr(data-col);
        display: block;
        font-size: 0.68rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: var(--ink-500);
        margin-bottom: 4px;
    }
    .compare-table.compare-table--3col tbody td:first-child {
        border-bottom: 1px solid var(--line);
        padding: 0 0 10px;
        margin-bottom: 8px;
    }
    .compare-table.compare-table--3col tbody td:first-child::before {
        display: none;
    }
    .compare-table.compare-table--3col tbody td:first-child strong {
        font-size: 1.05rem;
    }
    .compare-table.compare-table--3col tbody td:last-child {
        background: rgba(230, 57, 70, 0.06);
        border: 2px solid var(--red-500);
        border-radius: var(--radius-sm);
        padding: 10px 12px;
        margin-top: 8px;
        font-weight: 700;
    }
    .compare-table.compare-table--3col tbody td:last-child::before {
        content: "✓ LocalPro";
        color: var(--red-600);
        font-weight: 800;
    }
}
.availability-section {
    padding: 24px 0 56px;
}
.availability-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 22px;
    flex-wrap: wrap;
    text-align: center;
}
.availability-head .live-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #15a14a;
    box-shadow: 0 0 0 5px rgba(21, 161, 74, 0.18);
    animation: avail-pulse 2.2s ease-in-out infinite;
    display: inline-block;
}
@keyframes avail-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 5px rgba(21, 161, 74, 0.18);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(21, 161, 74, 0.04);
    }
}
.availability-head h3 {
    font-size: 1.45rem;
    margin: 0;
    font-weight: 800;
    line-height: 1.15;
}
.availability-head .live-tag {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
    color: #138a3f;
    background: rgba(21, 161, 74, 0.1);
    padding: 4px 10px;
    border-radius: 999px;
}
.availability-sub {
    text-align: center;
    max-width: 720px;
    margin: -8px auto 22px;
    font-size: 1rem;
    color: var(--ink-700);
    line-height: 1.45;
}
.availability-sub strong {
    color: var(--ink-900);
}
.availability-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 1100px;
    margin: 0 auto;
}
.slot-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 20px 22px;
    background: var(--white);
    border: 2px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--ink-900);
    position: relative;
    overflow: hidden;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        border-color 0.15s ease;
}
.slot-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--red-500);
    color: var(--ink-900);
}
.slot-card .slot-tag {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
}
.slot-card .slot-tag.is-today {
    background: var(--red-500);
    color: var(--white);
}
.slot-card .slot-tag.is-tomorrow {
    background: var(--ink-900);
    color: var(--white);
}
.slot-card .slot-tag.is-future {
    background: var(--cream-deep);
    color: var(--ink-700);
}
.slot-card .slot-date {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
    margin-top: 4px;
}
.slot-card .slot-time {
    font-size: 1rem;
    color: var(--ink-700);
    font-weight: 600;
}
.slot-card .slot-fast {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(230, 57, 70, 0.12);
    color: var(--red-600);
    font-weight: 800;
    padding: 4px 9px;
    border-radius: 999px;
}
.slot-card .slot-cta {
    margin-top: 10px;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--red-600);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.availability-foot {
    text-align: center;
    margin-top: 20px;
    font-size: 1rem;
    color: var(--ink-700);
    font-weight: 600;
}
.availability-foot a {
    font-weight: 800;
    color: var(--red-600);
}
.slot-card-more {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    border: 2px dashed var(--red-500);
    align-items: center;
    text-align: center;
    justify-content: center;
}
.slot-card-more:hover {
    background: linear-gradient(180deg, #fff 0%, #fff 100%);
    border-style: solid;
}
.slot-card-more .slot-more-icon {
    font-size: 3rem;
    font-weight: 900;
    color: var(--red-600);
    line-height: 1;
    margin: 8px 0 4px;
}
.slot-card-more .slot-cta-lg {
    font-size: 1.05rem;
    font-weight: 800;
    margin-top: 4px;
}
@media (max-width: 980px) {
    .availability-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .availability-strip {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 460px;
    }
    .slot-card {
        padding: 16px 18px;
    }
}
.guarantee-seal {
    --seal-size: 150px;
    width: var(--seal-size);
    height: var(--seal-size);
    position: relative;
    display: inline-block;
    flex-shrink: 0;
    filter: drop-shadow(0 6px 18px rgba(193, 18, 31, 0.35));
}
.guarantee-seal::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 30%, var(--red-500) 0%, var(--red-700) 75%);
    box-shadow:
        inset 0 0 0 4px rgba(255, 255, 255, 0.18),
        inset 0 0 0 6px var(--red-500);
}
.guarantee-seal::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.55);
}
.guarantee-seal-inner {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 14px;
    font-family: var(--font-display);
}
.guarantee-seal-pct {
    font-size: 2.1rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
}
.guarantee-seal-lbl {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 800;
    margin-top: 6px;
}
.guarantee-seal-sub {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.9;
    margin-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.32);
    padding-top: 6px;
}
.guarantee-seal--lg {
    --seal-size: 210px;
}
.guarantee-seal--lg .guarantee-seal-pct {
    font-size: 3rem;
}
.guarantee-seal--lg .guarantee-seal-lbl {
    font-size: 0.82rem;
}
.guarantee-seal--lg .guarantee-seal-sub {
    font-size: 0.68rem;
}
.guarantee-seal--floating {
    position: absolute;
    top: 18px;
    right: 18px;
    transform: rotate(-12deg);
    z-index: 3;
    --seal-size: 130px;
}
.guarantee-seal--floating .guarantee-seal-pct {
    font-size: 1.85rem;
}
@media (max-width: 820px) {
    .guarantee-seal--floating {
        top: 12px;
        right: 12px;
        --seal-size: 96px;
    }
    .guarantee-seal--floating .guarantee-seal-pct {
        font-size: 1.35rem;
    }
    .guarantee-seal--floating .guarantee-seal-lbl {
        font-size: 0.55rem;
    }
    .guarantee-seal--floating .guarantee-seal-sub {
        display: none;
    }
    .page-id-228 .page-hero,
    .page-id-228 .awards-strip,
    .page-id-228 .current-special-band{display: none;}
}
.promise-section {
    padding: 56px 0;
}
.promise-band {
    background: linear-gradient(135deg, var(--ink-900) 0%, var(--ink-800) 60%, #2a1416 130%);
    border-radius: var(--radius-xl);
    padding: 52px 56px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 52px;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
}
.promise-band::before {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.18), transparent 70%);
    pointer-events: none;
}
.promise-band .promise-eyebrow {
    display: inline-block;
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--red-500);
    margin-bottom: 10px;
}
.promise-band h2 {
    color: var(--white);
    margin: 0 0 14px;
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
}
.promise-band p.promise-lead {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    margin: 0 0 20px;
    max-width: 620px;
}
.promise-band ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 22px;
}
.promise-band li {
    color: rgba(255, 255, 255, 0.94);
    padding-left: 28px;
    position: relative;
    font-size: 0.98rem;
    margin: 0;
    line-height: 1.4;
}
.promise-band li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--red-500);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 900;
    display: grid;
    place-items: center;
}
.promise-band li strong {
    color: var(--white);
    font-weight: 800;
}
.promise-band .actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.promise-band .btn-primary {
    background: var(--red-500);
    color: var(--white);
}
.promise-band .btn-primary:hover {
    background: var(--red-600);
    color: var(--white);
}
.promise-band .btn-ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}
.promise-band .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}
.promise-seal-wrap {
    display: grid;
    place-items: center;
}
@media (max-width: 880px) {
    .promise-band {
        grid-template-columns: 1fr;
        padding: 40px 28px;
        gap: 28px;
        text-align: center;
        justify-items: center;
    }
    .promise-band ul {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-inline: auto;
    }
    .promise-band li {
        text-align: left;
    }
    .promise-band .actions {
        justify-content: center;
    }
    .promise-band p.promise-lead {
        margin-inline: auto;
    }
}
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, var(--red-500), #ff6b6b);
    z-index: 9999;
    transition: width 60ms linear;
    pointer-events: none;
}
.inline-article-cta {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    margin: 32px 0;
    padding: 20px 24px;
    background: linear-gradient(135deg, #fff5f3 0%, #fef9f7 100%);
    border-left: 4px solid var(--red-500);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.06);
}
.inline-article-cta .iac-icon {
    font-size: 36px;
    line-height: 1;
}
.inline-article-cta .iac-body strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--ink-900);
}
.inline-article-cta .iac-body p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--ink-700);
    line-height: 1.4;
}
.inline-article-cta .iac-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.inline-article-cta .btn-sm {
    padding: 8px 14px;
    font-size: 0.9rem;
}
@media (max-width: 720px) {
    .inline-article-cta {
        grid-template-columns: auto 1fr;
        gap: 12px;
    }
    .inline-article-cta .iac-actions {
        grid-column: 1 / -1;
        justify-content: stretch;
    }
    .inline-article-cta .iac-actions .btn-sm {
        flex: 1;
        text-align: center;
    }
}
.article-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 32px 0;
    padding: 16px 20px;
    border: 1px solid var(--ink-100);
    border-radius: 10px;
    background: #fafafa;
    flex-wrap: wrap;
}
.article-share .share-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ink-700);
}
.article-share .share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: var(--ink-700);
    border: 1px solid var(--ink-200);
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.15s ease;
}
.article-share .share-btn:hover {
    background: var(--red-500);
    color: #fff;
    border-color: var(--red-500);
    transform: translateY(-1px);
}
.article-share .share-copy.copied {
    background: #16a34a;
    color: #fff;
    border-color: #16a34a;
}
.helpful-widget {
    margin: 24px 0 0;
    padding: 18px 22px;
    background: #fafafa;
    border: 1px dashed var(--ink-200);
    border-radius: 10px;
    text-align: center;
}
.helpful-widget .hw-prompt {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--ink-700);
}
.helpful-widget .hw-actions {
    display: inline-flex;
    gap: 10px;
}
.helpful-widget .hw-btn {
    padding: 8px 18px;
    font-size: 0.95rem;
    border: 1px solid var(--ink-200);
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
}
.helpful-widget .hw-btn:hover {
    background: var(--red-500);
    color: #fff;
    border-color: var(--red-500);
}
.helpful-widget .hw-thanks {
    color: #16a34a;
    font-weight: 600;
    font-size: 0.95rem;
}
.topic-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 24px;
}
.glossary-list {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}
.glossary-letter-section {
    margin-top: 32px;
}
.glossary-letter-section h2 {
    font-size: 2rem;
    color: var(--red-500);
    margin: 0 0 12px;
    border-bottom: 2px solid var(--red-500);
    padding-bottom: 6px;
    display: inline-block;
}
.glossary-term {
    padding: 16px 20px;
    background: #fafafa;
    border-left: 3px solid var(--red-500);
    border-radius: 8px;
}
.glossary-term dt {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--ink-900);
}
.glossary-term dd {
    margin: 0;
    color: var(--ink-700);
    line-height: 1.55;
}
.glossary-jump-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 0;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 10px;
}
.glossary-jump-nav a {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    background: #f5f5f5;
    color: var(--ink-700);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.15s ease;
}
.glossary-jump-nav a:hover {
    background: var(--red-500);
    color: #fff;
}
@media (min-width: 980px) {
    .article-layout {
        position: relative;
    }
    .article-layout .article-toc {
        position: sticky;
        top: 96px;
        float: right;
        width: 260px;
        margin-left: 24px;
        margin-right: -36px;
        z-index: 5;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
    .article-layout .article-toc ol {
        padding-left: 18px;
    }
    .article-layout .article-toc li {
        font-size: 0.85rem;
        padding: 3px 0;
    }
}
.data-callout {
    margin: 24px 0;
    padding: 16px 20px;
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
    border-left: 4px solid #2563eb;
    border-radius: 8px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.data-callout::before {
    content: "📊";
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}
.data-callout .dc-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #1e40af;
    margin-bottom: 4px;
}
.data-callout p {
    margin: 0;
    color: var(--ink-800);
    font-size: 0.98rem;
    line-height: 1.5;
}
.article-pullquote {
    margin: 32px 0;
    padding: 24px 28px;
    background: #fff;
    border-left: 4px solid var(--red-500);
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    position: relative;
}
.article-pullquote::before {
    content: '"';
    position: absolute;
    top: -8px;
    left: 16px;
    font-size: 4rem;
    line-height: 1;
    color: var(--red-500);
    opacity: 0.15;
    font-family: Georgia, serif;
}
.article-pullquote .apq-stars {
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.article-pullquote p {
    font-size: 1.15rem;
    line-height: 1.55;
    font-style: italic;
    color: var(--ink-800);
    margin: 0 0 14px;
}
.article-pullquote cite {
    display: flex;
    align-items: center;
    gap: 12px;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--ink-700);
}
.article-pullquote .apq-avatar {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--red-500);
    color: #fff;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}
.article-pullquote .apq-name {
    font-weight: 700;
    color: var(--ink-900);
}
.article-pullquote .apq-place {
    color: var(--ink-500);
    font-size: 0.8rem;
}
.citations-block {
    margin: 40px 0 0;
    padding: 20px 24px;
    background: #fafafa;
    border: 1px solid var(--ink-100);
    border-radius: 10px;
}
.citations-block .citations-head {
    font-size: 1.05rem;
    margin: 0 0 12px;
    color: var(--ink-900);
}
.citations-block .citations-list {
    margin: 0 0 12px;
    padding-left: 22px;
}
.citations-block .citations-list li {
    margin: 6px 0;
    font-size: 0.92rem;
    line-height: 1.45;
    color: var(--ink-700);
}
.citations-block .citations-list a {
    color: var(--red-500);
    text-decoration: underline;
}
.citations-block .citations-note {
    margin: 0;
    font-size: 0.8rem;
    color: var(--ink-500);
    font-style: italic;
}
.gloss-term {
    border-bottom: 1px dotted var(--red-500);
    cursor: help;
    position: relative;
    text-decoration: none;
    color: inherit;
}
.gloss-term:hover,
.gloss-term:focus {
    background: #fff5f3;
}
.gloss-tip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.4;
    white-space: normal;
    width: 280px;
    z-index: 100;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
}
.gloss-tip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1f2937;
}
.gloss-term:hover .gloss-tip,
.gloss-term:focus .gloss-tip,
.gloss-term.is-tapped .gloss-tip {
    opacity: 1;
    pointer-events: auto;
}
@media (max-width: 720px) {
    .gloss-tip {
        width: 240px;
    }
}
.has-dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 12px;
    min-width: 280px;
    display: none;
    z-index: 50;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
    display: block;
}
.dropdown-menu a {
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    color: var(--ink-800);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}
.dropdown-menu a:hover {
    background: #fef3f2;
    color: var(--red-500);
}
.dropdown-menu .dropdown-divider {
    border-top: 1px solid var(--ink-100);
    margin: 6px 0;
}
.dropdown-menu .dropdown-eyebrow {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-500);
    padding: 8px 12px 4px;
}
@media (max-width: 980px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0;
        min-width: 0;
        margin-top: 8px;
        margin-left: 16px;
        display: block;
    }
}
.footer-resources {
    margin: 32px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-resources h4 {
    margin: 0 0 12px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.6);
}
.footer-resources ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 6px 16px;
}
.footer-resources a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.88rem;
    line-height: 1.5;
}
.footer-resources a:hover {
    color: #fff;
    text-decoration: underline;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.team-card {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 12px;
    padding: 24px 24px 20px;
    text-align: center;
}
.team-card .tc-photo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 16px;
    overflow: hidden;
    background: #f5f5f5;
}
.team-card .tc-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-card h3 {
    margin: 0 0 4px;
    font-size: 1.1rem;
}
.team-card .tc-role {
    font-size: 0.85rem;
    color: var(--red-500);
    font-weight: 600;
    margin: 0 0 12px;
}
.team-card p {
    font-size: 0.9rem;
    color: var(--ink-700);
    line-height: 1.5;
    text-align: left;
}
.team-card .tc-creds {
    margin: 12px 0 0;
    padding: 10px 12px;
    background: #fafafa;
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--ink-700);
    text-align: left;
}
.resource-search-wrap {
    position: relative;
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.resource-search-wrap .rs-label {
    display: block;
    font-size: 0.85rem;
    color: var(--ink-700);
    margin-bottom: 6px;
    font-weight: 600;
}
.resource-search-wrap .rs-input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 8px 0;
    font-family: inherit;
    background: transparent;
}
.resource-search-wrap .rs-input::placeholder {
    color: var(--ink-400);
}
.resource-search-wrap .rs-results {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 10px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    max-height: 460px;
    overflow-y: auto;
    z-index: 50;
}
.resource-search-wrap .rs-result {
    display: block;
    padding: 12px 16px;
    border-bottom: 1px solid #f5f5f5;
    text-decoration: none;
    color: var(--ink-800);
    cursor: pointer;
}
.resource-search-wrap .rs-result:last-child {
    border-bottom: none;
}
.resource-search-wrap .rs-result:hover,
.resource-search-wrap .rs-result.is-active {
    background: #fef3f2;
}
.resource-search-wrap .rs-result-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
    color: var(--red-500);
    margin-bottom: 4px;
}
.resource-search-wrap .rs-result-title {
    display: block;
    font-weight: 600;
    font-size: 0.98rem;
    margin: 0 0 4px;
    color: var(--ink-900);
}
.resource-search-wrap .rs-result-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--ink-700);
    line-height: 1.4;
    margin: 0;
}
.resource-search-wrap .rs-result-empty {
    padding: 16px;
    text-align: center;
    color: var(--ink-500);
    font-size: 0.9rem;
}
.reviews-hero-rating {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 16px 0 20px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: fit-content;
}
.reviews-hero-rating .rh-stars {
    font-size: 2rem;
    color: #fbbf24;
    letter-spacing: 4px;
    line-height: 1;
}
.reviews-hero-rating .rh-rating-num {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}
.reviews-hero-rating .rh-rating-num span {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.7;
}
.reviews-hero-rating .rh-count {
    font-size: 0.9rem;
    margin-top: 4px;
    opacity: 0.9;
}
.star-distribution {
    max-width: 600px;
    margin: 0 auto;
}
.star-row {
    display: grid;
    grid-template-columns: 100px 1fr 130px;
    gap: 16px;
    align-items: center;
    padding: 6px 0;
}
.sr-stars {
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: 700;
    white-space: nowrap;
}
.sr-stars-empty {
    color: #d4d4d4;
}
.sr-bar-track {
    height: 14px;
    background: #f3f4f6;
    border-radius: 7px;
    overflow: hidden;
}
.sr-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 7px;
    transition: width 0.8s ease;
}
.sr-count {
    font-size: 0.85rem;
    color: var(--ink-700);
    font-variant-numeric: tabular-nums;
    text-align: right;
}
@media (max-width: 720px) {
    .star-row {
        grid-template-columns: 80px 1fr 90px;
        gap: 10px;
    }
    .sr-stars {
        font-size: 0.9rem;
        letter-spacing: 0;
    }
    .sr-count {
        font-size: 0.75rem;
    }
}
.platforms-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.platform-card {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 12px;
    padding: 22px 24px;
    text-decoration: none;
    color: var(--ink-800);
    text-align: center;
    transition: all 0.2s ease;
}
.platform-card:hover {
    border-color: var(--red-500);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.platform-card .pc-name {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-500);
    font-weight: 700;
    margin-bottom: 4px;
}
.platform-card .pc-count {
    font-size: 2rem;
    font-weight: 800;
    color: var(--red-500);
    line-height: 1;
    margin: 4px 0 8px;
}
.platform-card .pc-blurb {
    font-size: 0.85rem;
    color: var(--ink-700);
}
.theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
    margin-top: 24px;
}
.theme-badge {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border-left: 4px solid var(--red-500);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.theme-badge .tb-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    line-height: 1;
}
.theme-badge .tb-body strong {
    display: block;
    font-size: 1rem;
    color: var(--ink-900);
    font-style: italic;
    margin-bottom: 4px;
}
.theme-badge .tb-meta {
    display: block;
    font-size: 0.8rem;
    color: var(--ink-500);
}
.reviews-rich-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 18px;
    margin-top: 24px;
}
.review-rich {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 12px;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.2s ease;
}
.review-rich:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.review-rich.is-hidden {
    display: none;
}
.review-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
}
.review-rich .stars {
    color: #fbbf24;
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-right: 4px;
}
.review-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.review-tag-svc {
    background: #eff6ff;
    color: #1e40af;
}
.review-tag-svc:hover {
    background: #dbeafe;
}
.review-tag-city {
    background: #fef3f2;
    color: var(--red-500);
}
.review-tag-city:hover {
    background: #fee4e2;
}
.review-date {
    font-size: 0.75rem;
    color: var(--ink-500);
    margin-left: auto;
}
.review-badge.review-repeat {
    background: #fbbf24;
    color: #78350f;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
}
.review-rich blockquote {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--ink-800);
}
.review-rich cite {
    display: flex;
    align-items: center;
    gap: 10px;
    font-style: normal;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f5f5f5;
}
.review-rich .avatar {
    display: inline-flex;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--red-500);
    color: #fff;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}
.review-rich cite strong {
    font-size: 0.9rem;
    color: var(--ink-900);
    font-weight: 700;
    display: block;
}
.review-rich cite span {
    font-size: 0.75rem;
    color: var(--ink-500);
    display: block;
}
.city-review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.city-review-card {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 12px;
    padding: 20px 22px;
    text-decoration: none;
    color: var(--ink-800);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.2s ease;
}
.city-review-card:hover {
    border-color: var(--red-500);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.city-review-card .crc-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.city-review-card .crc-head strong {
    font-size: 1.05rem;
    color: var(--ink-900);
}
.city-review-card .crc-count {
    font-size: 0.8rem;
    color: var(--red-500);
    font-weight: 700;
    background: #fef3f2;
    padding: 3px 10px;
    border-radius: 12px;
}
.city-review-card blockquote {
    margin: 0;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--ink-700);
    line-height: 1.5;
}
.city-review-card .crc-link {
    font-size: 0.85rem;
    color: var(--red-500);
    font-weight: 600;
    margin-top: auto;
}
.service-review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.service-review-card {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 12px;
    padding: 22px 24px;
    text-decoration: none;
    color: var(--ink-800);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.2s ease;
}
.service-review-card:hover {
    border-color: var(--red-500);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.service-review-card .src-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.service-review-card .src-head strong {
    font-size: 1.05rem;
    color: var(--ink-900);
}
.service-review-card .src-count {
    font-size: 0.8rem;
    background: var(--red-500);
    color: #fff;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
}
.service-review-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--ink-700);
    line-height: 1.5;
}
.service-review-card .src-link {
    font-size: 0.85rem;
    color: var(--red-500);
    font-weight: 600;
    margin-top: auto;
}
.repeat-callout {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 28px;
    background: linear-gradient(135deg, #fffbeb 0%, #fef9c3 100%);
    border-left: 4px solid #fbbf24;
    border-radius: 12px;
}
.repeat-callout .rcb-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
}
.repeat-callout strong {
    font-size: 1.05rem;
    display: block;
    margin-bottom: 6px;
    color: var(--ink-900);
}
.repeat-callout p {
    margin: 0;
    color: var(--ink-700);
    line-height: 1.55;
    font-size: 0.95rem;
}
.leave-review-block {
    background: #fff;
    border-radius: 16px;
    padding: 32px 36px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    text-align: center;
}
.leave-review-block h2 {
    margin: 8px 0 12px;
}
.leave-review-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 24px;
}
.lrb-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 12px;
    text-decoration: none;
    text-align: left;
    transition: all 0.2s ease;
    border: 2px solid var(--ink-100);
    background: #fafafa;
}
.lrb-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.lrb-google {
    border-color: #4285f4;
}
.lrb-google:hover {
    background: #f0f6fe;
}
.lrb-fb {
    border-color: #1877f2;
}
.lrb-fb:hover {
    background: #f0f6fe;
}
.lrb-call {
    border-color: var(--red-500);
}
.lrb-call:hover {
    background: #fef3f2;
}
.lrb-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid var(--ink-100);
}
.lrb-google .lrb-icon {
    color: #4285f4;
}
.lrb-fb .lrb-icon {
    color: #1877f2;
}
.lrb-call .lrb-icon {
    color: var(--red-500);
}
.lrb-text strong {
    display: block;
    color: var(--ink-900);
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.lrb-text span {
    display: block;
    font-size: 0.8rem;
    color: var(--ink-500);
}
.reviews-filter-bar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
}
.reviews-filter-bar.is-stuck {
    position: sticky;
    top: 8px;
    z-index: 10;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.reviews-filter-bar .resource-search-wrap {
    border: none;
    padding: 0;
    box-shadow: none;
}
.reviews-filter-bar .resource-search-wrap .rs-input {
    border: 1px solid var(--ink-100);
    border-radius: 8px;
    padding: 10px 12px;
}
.reviews-sort-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}
.reviews-sort-wrap label {
    font-weight: 600;
    color: var(--ink-700);
}
.reviews-sort {
    border: 1px solid var(--ink-100);
    border-radius: 8px;
    padding: 8px 12px;
    background: #fff;
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
}
.reviews-year-filter {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.review-rich.is-featured {
    border-color: #fbbf24;
    background: linear-gradient(180deg, #fffbeb 0%, #ffffff 80%);
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.15);
    order: -1;
}
.review-badge.review-featured {
    background: #fbbf24;
    color: #78350f;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
}
.review-permalink {
    margin-left: auto;
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.35;
    transition: opacity 0.15s ease;
    color: var(--ink-500);
}
.review-permalink:hover {
    opacity: 1;
}
.review-helpful {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #f5f5f5;
    font-size: 0.8rem;
    color: var(--ink-500);
}
.review-helpful .rh-prompt {
    margin-right: 4px;
}
.review-helpful .rh-btn {
    background: #fff !important;
    border: 1px solid var(--ink-100);
    border-radius: 6px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 0.95rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}
.review-helpful .rh-btn:hover {
    background: #fef3f2 !important;
    border-color: var(--red-500);
}
.review-helpful .rh-btn.is-voted {
    background: #16a34a;
    border-color: #16a34a;
    color: #fff;
}
.review-helpful .rh-btn.is-voted-no {
    background: var(--ink-300, #9ca3af);
    border-color: var(--ink-300, #9ca3af);
    color: #fff;
}
.review-helpful .rh-count {
    font-variant-numeric: tabular-nums;
    margin-left: 4px;
}
.review-rich:target {
    outline: 3px solid #fbbf24;
    outline-offset: 2px;
}
.reviews-hero-v2 {
    padding: 80px 0 64px;
    position: relative;
    overflow: hidden;
}
.reviews-hero-v2 .hero-scrim-strong {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.75) 100%);
}
.reviews-hero-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
    margin-top: 12px;
}
.reviews-hero-text h1 {
    font-size: 2.6rem;
    line-height: 1.1;
    margin: 6px 0 14px;
}
.reviews-hero-text p {
    font-size: 1.05rem;
    line-height: 1.5;
    opacity: 0.95;
    max-width: 640px;
}
.reviews-hero-stats {
    display: flex;
    gap: 28px;
    margin: 24px 0;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    width: fit-content;
}
.reviews-hero-stats .rhs-item {
    text-align: center;
}
.reviews-hero-stats .rhs-num {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}
.reviews-hero-stats .rhs-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
}
.reviews-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.btn-lg {
    padding: 14px 28px;
    font-size: 1.05rem;
}
.btn-xl {
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 700;
}
.reviews-hero-trust {
    margin-top: 18px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}
.reviews-hero-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.88) 100%);
    border-radius: 18px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
    color: var(--ink-900);
    position: relative;
}
.rhc-trophy {
    position: relative;
}
.rhc-trophy-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}
.trophy-star {
    display: inline-block;
    color: #fbbf24;
    font-size: 1.8rem;
    line-height: 1;
    animation: trophy-sparkle 3s ease-in-out infinite;
}
.trophy-star:nth-child(1) {
    animation-delay: 0s;
}
.trophy-star:nth-child(2) {
    animation-delay: 0.2s;
}
.trophy-star:nth-child(3) {
    animation-delay: 0.4s;
}
.trophy-star:nth-child(4) {
    animation-delay: 0.6s;
}
.trophy-star:nth-child(5) {
    animation-delay: 0.8s;
}
@keyframes trophy-sparkle {
    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 transparent);
    }
    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.7));
    }
}
.rhc-rating-big {
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--red-500) 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    margin: 4px 0 0;
}
.rhc-rating-out {
    font-size: 0.85rem;
    color: var(--ink-500);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.rhc-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid var(--ink-100);
    border-bottom: 1px solid var(--ink-100);
    margin-bottom: 14px;
}
.rhc-stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--ink-900);
    line-height: 1;
}
.rhc-stat-label {
    font-size: 0.72rem;
    color: var(--ink-500);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 4px;
}
.rhc-platforms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
}
.rhc-platforms-label {
    color: var(--ink-500);
}
.rhc-platform {
    color: var(--red-500);
    text-decoration: none;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid var(--red-500);
}
.rhc-platform:hover {
    background: var(--red-500);
    color: #fff;
}
@media (max-width: 980px) {
    .reviews-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .reviews-hero-card {
        max-width: 420px;
        margin: 0 auto;
    }
    .reviews-hero-text h1 {
        font-size: 2rem;
    }
    .reviews-hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }
}
.value-prop-strip {
    background: #fff;
    padding: 36px 0;
    border-bottom: 1px solid var(--ink-100);
}
.vp-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.vp-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #fef3f2 0%, #fff5f3 100%);
    border-radius: 12px;
    border-left: 3px solid var(--red-500);
    transition: transform 0.2s ease;
}
.vp-card:hover {
    transform: translateY(-2px);
}
.vp-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    line-height: 1;
}
.vp-body strong {
    display: block;
    font-size: 1rem;
    color: var(--ink-900);
    margin-bottom: 4px;
}
.vp-body p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--ink-700);
    line-height: 1.4;
}
@media (max-width: 980px) {
    .vp-row {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 540px) {
    .vp-row {
        grid-template-columns: 1fr;
    }
}
.featured-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}
.featured-review-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-top: 4px solid #fbbf24;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.featured-review-card::before {
    content: "\201C";
    position: absolute;
    top: 8px;
    right: 22px;
    font-size: 5rem;
    line-height: 1;
    color: var(--red-500);
    opacity: 0.12;
    font-family: Georgia, serif;
    pointer-events: none;
}
.frc-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    letter-spacing: 2px;
}
.frc-quote {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
    font-style: italic;
    color: var(--ink-800);
}
.frc-cite {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--ink-100);
}
.frc-avatar {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--red-500);
    color: #fff;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.frc-author strong {
    display: block;
    color: var(--ink-900);
    font-size: 1rem;
}
.frc-author span {
    display: block;
    font-size: 0.8rem;
    color: var(--ink-500);
    margin-top: 2px;
}
@media (max-width: 980px) {
    .featured-reviews-grid {
        grid-template-columns: 1fr;
    }
}
.reviews-inline-cta {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 20px 26px;
    background: linear-gradient(135deg, #fef3f2 0%, #fff8f7 100%);
    border-left: 4px solid var(--red-500);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.08);
}
.reviews-inline-cta .ric-icon {
    font-size: 2rem;
    line-height: 1;
}
.reviews-inline-cta .ric-body strong {
    display: block;
    font-size: 1.1rem;
    color: var(--ink-900);
    margin-bottom: 4px;
}
.reviews-inline-cta .ric-body p {
    margin: 0;
    color: var(--ink-700);
    font-size: 0.9rem;
}
.reviews-inline-cta .ric-actions {
    display: flex;
    gap: 8px;
}
@media (max-width: 720px) {
    .reviews-inline-cta {
        grid-template-columns: auto 1fr;
    }
    .reviews-inline-cta .ric-actions {
        grid-column: 1 / -1;
        justify-content: stretch;
    }
    .reviews-inline-cta .ric-actions .btn {
        flex: 1;
        text-align: center;
    }
}
.industry-compare {
    background: #fff;
    border-radius: 16px;
    padding: 32px 36px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.ic-table-wrap {
    overflow-x: auto;
    margin-top: 24px;
}
.ic-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.ic-table thead th {
    text-align: left;
    padding: 12px 16px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--ink-500);
    border-bottom: 2px solid var(--ink-100);
}
.ic-table thead th.ic-them {
    color: var(--ink-700);
}
.ic-table thead th.ic-us {
    color: var(--red-500);
    font-size: 1rem;
}
.ic-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid #f5f5f5;
    vertical-align: top;
}
.ic-table tbody td:first-child {
    font-weight: 600;
    color: var(--ink-900);
    width: 140px;
}
.ic-table tbody td:nth-child(2) {
    color: var(--ink-500);
    font-style: italic;
}
.ic-table tbody td:nth-child(3) {
    color: var(--ink-900);
    background: #fef3f2;
}
.ic-table tbody td:nth-child(3) strong {
    color: var(--red-500);
}
@media (max-width: 720px) {
    .industry-compare {
        padding: 24px 20px;
    }
    .ic-table {
        font-size: 0.85rem;
    }
    .ic-table thead th,
    .ic-table tbody td {
        padding: 10px 8px;
    }
    .ic-table tbody td:first-child {
        width: 88px;
        font-size: 0.8rem;
    }
}
.pricing-callout-section {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}
.pricing-callout {
    text-align: center;
}
.pc-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 24px;
}
.pc-card {
    background: #fff;
    border: 2px solid var(--ink-100);
    border-radius: 14px;
    padding: 28px 26px;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}
.pc-card:hover {
    border-color: var(--red-500);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.pc-card-highlight {
    border-color: var(--red-500);
    background: linear-gradient(180deg, #fff5f3 0%, #ffffff 60%);
    position: relative;
}
.pc-card-highlight::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red-500);
    color: #fff;
    padding: 4px 14px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.pc-price {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--red-500);
    line-height: 1;
}
.pc-label {
    font-size: 0.85rem;
    color: var(--ink-500);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 6px 0 16px;
    font-weight: 600;
}
.pc-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.pc-card ul li {
    padding: 6px 0 6px 22px;
    font-size: 0.9rem;
    color: var(--ink-700);
    position: relative;
    line-height: 1.4;
}
.pc-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--red-500);
    font-weight: 700;
}
@media (max-width: 720px) {
    .pc-cards {
        grid-template-columns: 1fr;
    }
}
.reviews-final-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.reviews-final-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.reviews-final-cta::after {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 40%;
    height: 140%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.rfc-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.rfc-content .eyebrow {
    color: #fbbf24;
}
.rfc-content h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin: 8px 0 16px;
}
.rfc-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
}
.rfc-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 32px 0 36px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    backdrop-filter: blur(8px);
}
.rfc-stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.rfc-stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 6px;
}
.rfc-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 24px;
}
.rfc-trust {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}
@media (max-width: 720px) {
    .reviews-final-cta {
        padding: 56px 0;
    }
    .rfc-content h2 {
        font-size: 2.1rem;
    }
    .rfc-stats {
        grid-template-columns: 1fr 1fr;
        padding: 18px;
        gap: 12px;
    }
    .rfc-stat-num {
        font-size: 1.6rem;
    }
}
@keyframes sticky-pulse {
    0%,
    100% {
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 -4px 20px rgba(230, 57, 70, 0.2);
    }
}
.sticky-cta-bar {
    animation: sticky-pulse 4s ease-in-out infinite;
}
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.featured-review-card,
.vp-card,
.theme-badge,
.pc-card {
    animation: fade-up 0.5s ease-out backwards;
}
.vp-card:nth-child(2) {
    animation-delay: 0.1s;
}
.vp-card:nth-child(3) {
    animation-delay: 0.2s;
}
.vp-card:nth-child(4) {
    animation-delay: 0.3s;
}
.featured-review-card:nth-child(2) {
    animation-delay: 0.15s;
}
.featured-review-card:nth-child(3) {
    animation-delay: 0.3s;
}
.about-hero {
    padding: 80px 0 64px;
}
.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
    margin-top: 12px;
}
.about-hero-text h1 {
    font-size: 2.6rem;
    line-height: 1.1;
    margin: 6px 0 14px;
}
.about-hero-text p {
    font-size: 1.05rem;
    line-height: 1.5;
    opacity: 0.95;
    max-width: 640px;
}
.about-hero-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.88) 100%);
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
    color: var(--ink-900);
}
.ahc-stars {
    color: #fbbf24;
    font-size: 1.6rem;
    letter-spacing: 3px;
    line-height: 1;
}
.ahc-rating {
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--red-500) 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 6px 0 0;
}
.ahc-rating-label {
    font-size: 0.8rem;
    color: var(--ink-500);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}
.ahc-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--ink-100);
}
.ahc-stat-row > div {
    text-align: center;
}
.ahc-stat-row strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--ink-900);
    line-height: 1;
}
.ahc-stat-row span {
    display: block;
    font-size: 0.72rem;
    color: var(--ink-500);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-top: 4px;
}
@media (max-width: 980px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about-hero-card {
        max-width: 380px;
        margin: 0 auto;
    }
    .about-hero-text h1 {
        font-size: 2.1rem;
    }
}
.about-numbers .numbers-grid {
    grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 1100px) {
    .about-numbers .numbers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 600px) {
    .about-numbers .numbers-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 24px;
}
.value-card {
    background: #fff;
    padding: 28px 26px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--red-500);
    transition: transform 0.2s ease;
}
.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.value-card .vc-icon {
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 12px;
}
.value-card h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    color: var(--ink-900);
}
.value-card p {
    margin: 0;
    color: var(--ink-700);
    line-height: 1.5;
    font-size: 0.92rem;
}
.about-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.about-process-step {
    background: #fff;
    border-radius: 12px;
    padding: 22px 22px;
    border: 1px solid var(--ink-100);
    position: relative;
}
.aps-num {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--red-500);
    color: #fff;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 12px;
}
.about-process-step h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: var(--ink-900);
}
.about-process-step p {
    margin: 0;
    color: var(--ink-700);
    line-height: 1.5;
    font-size: 0.88rem;
}
.training-block p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink-800);
    margin: 0 0 16px;
}
.environmental-section {
    background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 100%);
}
.environmental-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 24px;
}
.env-card {
    background: #fff;
    padding: 28px 26px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #16a34a;
}
.env-num {
    font-size: 2.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #16a34a 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.env-label {
    font-size: 0.85rem;
    color: var(--ink-700);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 6px 0 14px;
    font-weight: 600;
}
.env-card p {
    margin: 0;
    color: var(--ink-700);
    line-height: 1.5;
    font-size: 0.92rem;
}
.equip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    margin-top: 24px;
}
.equip-card {
    background: #fafafa;
    padding: 18px 20px;
    border-radius: 10px;
    border-left: 3px solid var(--red-500);
}
.equip-card strong {
    display: block;
    font-size: 1rem;
    color: var(--ink-900);
    margin-bottom: 6px;
}
.equip-card p {
    margin: 0;
    color: var(--ink-700);
    font-size: 0.88rem;
    line-height: 1.45;
}
.qa-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}
.qa-item {
    background: #fff;
    padding: 18px 22px;
    border-radius: 10px;
    border-left: 3px solid #fbbf24;
}
.qa-item strong {
    display: block;
    font-size: 1rem;
    color: var(--ink-900);
    margin-bottom: 6px;
}
.qa-item p {
    margin: 0;
    color: var(--ink-700);
    font-size: 0.92rem;
    line-height: 1.5;
}
.b2b-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.b2b-card {
    background: #fff;
    padding: 24px 24px;
    border-radius: 14px;
    border: 1px solid var(--ink-100);
    text-align: center;
    transition: all 0.2s ease;
}
.b2b-card:hover {
    border-color: var(--red-500);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.b2b-card .b2b-icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 10px;
}
.b2b-card h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: var(--ink-900);
}
.b2b-card p {
    margin: 0;
    color: var(--ink-700);
    font-size: 0.88rem;
    line-height: 1.45;
}
.why-bham-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}
.why-bham-card {
    background: #fff;
    padding: 22px 24px;
    border-radius: 12px;
    border: 1px solid var(--ink-100);
}
.why-bham-card strong {
    display: block;
    font-size: 1rem;
    color: var(--ink-900);
    margin-bottom: 8px;
}
.why-bham-card p {
    margin: 0;
    color: var(--ink-700);
    font-size: 0.95rem;
    line-height: 1.55;
}
.why-bham-card a {
    color: var(--red-500);
}
@media (max-width: 720px) {
    .why-bham-grid {
        grid-template-columns: 1fr;
    }
}
html {
    scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
.page-hero {
    position: relative;
    isolation: isolate;
}
.page-hero h1 {
    letter-spacing: -0.015em;
    font-weight: 800;
}
.page-hero p {
    max-width: 720px;
}
.page-hero.with-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(230, 57, 70, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}
.page-hero.with-photo > .container {
    position: relative;
    z-index: 2;
}
@keyframes hero-fade-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.page-hero h1,
.page-hero > .container > p,
.page-hero .actions,
.page-hero .reviews-hero-rating,
.page-hero .about-hero-grid,
.page-hero .reviews-hero-grid {
    animation: hero-fade-in 0.6s ease-out backwards;
}
.page-hero h1 {
    animation-delay: 0.05s;
}
.page-hero > .container > p {
    animation-delay: 0.15s;
}
.page-hero .actions {
    animation-delay: 0.25s;
}
@media (prefers-reduced-motion: reduce) {
    .page-hero h1,
    .page-hero p,
    .page-hero .actions {
        animation: none;
    }
}
.page-hero .actions {
    justify-content: center;
}
.service-card,
.review,
.review-rich,
.platform-card,
.theme-badge,
.value-card,
.about-process-step,
.equip-card,
.qa-item,
.b2b-card,
.why-bham-card,
.env-card,
.pc-card,
.featured-review-card,
.city-review-card,
.service-review-card,
.resource-card,
.resource-card-rich,
.featured-resource-card,
.team-card,
.glossary-term {
    transition:
        transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.25s ease;
}
.btn {
    position: relative;
    overflow: hidden;
    transition:
        transform 0.15s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}
.btn-primary {
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.25);
}
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.35);
}
.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}
.btn-primary:hover::before {
    left: 100%;
}
.btn-dark,
.btn-ghost {
    transition:
        transform 0.15s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}
.btn-dark:hover,
.btn-ghost:hover {
    transform: translateY(-1px);
}
.reveal-on-scroll {
    opacity: 0.65;
    transform: translateY(8px);
    transition:
        opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal-on-scroll.delay-1 {
    transition-delay: 0.1s;
}
.reveal-on-scroll.delay-2 {
    transition-delay: 0.2s;
}
.reveal-on-scroll.delay-3 {
    transition-delay: 0.3s;
}
@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
html:not(.js-ready) .reveal-on-scroll {
    opacity: 1;
    transform: none;
}
.trust-microstrip {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin: 12px 0;
    font-size: 0.88rem;
    flex-wrap: wrap;
}
.trust-microstrip .tms-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--ink-800);
}
.trust-microstrip .tms-stars {
    color: #fbbf24;
}
.trust-microstrip strong {
    color: var(--ink-900);
}
.band {
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
}
.section-head {
    margin-bottom: 36px;
}
.section-head .eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--red-500);
    font-weight: 700;
    margin-bottom: 8px;
}
.section-head h2 {
    font-size: 2.1rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 8px;
    font-weight: 800;
}
.section-head p.muted {
    font-size: 1rem;
    line-height: 1.55;
    color: var(--ink-600);
    margin: 8px 0 0;
    max-width: 760px;
}
*:focus-visible {
    outline: 3px solid var(--red-500);
    outline-offset: 2px;
    border-radius: 4px;
}
.btn:focus-visible {
    outline-offset: 4px;
}
.sticky-cta-bar {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--ink-100);
}
.hero-scene img {
    transition: transform 6s ease-in-out;
}
.page-hero:hover .hero-scene img {
    transform: scale(1.03);
}
.awards-strip {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    padding: 18px 0;
    border-bottom: 1px solid var(--ink-100);
}
.award-badge {
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.award-badge:hover {
    transform: translateY(-2px);
}
.universal-final-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.universal-final-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.universal-final-cta::after {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 40%;
    height: 140%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.ufc-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.ufc-content .eyebrow {
    color: #fbbf24;
}
.ufc-content h2 {
    font-size: 2.4rem;
    line-height: 1.15;
    margin: 8px 0 14px;
    background: linear-gradient(135deg, #fff7e0 0%, #fbbf24 60%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.ufc-content p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 28px;
}
.ufc-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 28px 0 32px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    backdrop-filter: blur(8px);
}
.ufc-stat-num {
    display: block;
    font-size: 1.7rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.ufc-stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 6px;
}
.ufc-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 18px;
}
.ufc-trust {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}
@media (max-width: 720px) {
    .universal-final-cta {
        padding: 52px 0;
    }
    .ufc-content h2 {
        font-size: 1.8rem;
    }
    .ufc-stats {
        grid-template-columns: 1fr 1fr;
        padding: 16px;
        gap: 12px;
    }
    .ufc-stat-num {
        font-size: 1.4rem;
    }
}
.svc-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 24px;
}
.svc-feature-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 26px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--red-500);
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    color: var(--ink-800);
    transition: all 0.25s ease;
}
.svc-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    border-top-color: #fbbf24;
}
.svc-feature-card .sfc-icon {
    font-size: 2.2rem;
    line-height: 1;
}
.svc-feature-card h3 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--ink-900);
}
.svc-feature-card p {
    margin: 0;
    color: var(--ink-700);
    font-size: 0.92rem;
    line-height: 1.5;
}
.svc-feature-card .sfc-link {
    margin-top: auto;
    color: var(--red-500);
    font-weight: 700;
    font-size: 0.9rem;
}
.contact-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 24px;
}
.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 24px;
}
.contact-option-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px 22px;
    text-align: center;
    text-decoration: none;
    color: var(--ink-800);
    border: 2px solid var(--ink-100);
    transition: all 0.2s ease;
}
.contact-option-card:hover {
    border-color: var(--red-500);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.contact-option-card .coc-icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 10px;
}
.contact-option-card .coc-title {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink-900);
    margin-bottom: 6px;
}
.contact-option-card .coc-detail {
    display: block;
    font-size: 1.05rem;
    color: var(--red-500);
    font-weight: 700;
    margin-bottom: 4px;
}
.contact-option-card .coc-meta {
    display: block;
    font-size: 0.8rem;
    color: var(--ink-500);
}
@media (max-width: 720px) {
    .contact-hero-grid {
        grid-template-columns: 1fr;
    }
}
.deals-hero-stats {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 18px;
}
.dhs-pill {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}
.dhs-pill strong {
    color: #fbbf24;
}
@keyframes sticky-attention {
    0%,
    90%,
    100% {
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    }
    95% {
        box-shadow: 0 -4px 24px rgba(230, 57, 70, 0.4);
    }
}
.sticky-cta-bar {
    animation: sticky-attention 8s ease-in-out infinite;
}
.reviews-hero-grid,
.about-hero-grid {
    text-align: left;
}
.reviews-hero-grid .reviews-hero-text .actions,
.about-hero-grid .about-hero-text .actions {
    justify-content: flex-start;
}
.reviews-hero-grid .reviews-hero-text p,
.about-hero-grid .about-hero-text p {
    margin: 0 0 14px;
    max-width: 100%;
}
.deals-hero-stats {
    justify-content: flex-start;
}
.reviews-hero-grid .reviews-hero-text .eyebrow,
.about-hero-grid .about-hero-text .eyebrow {
    justify-content: flex-start;
}
.reviews-hero-trust {
    text-align: left;
}
.reviews-hero-card,
.about-hero-card {
    text-align: center;
}
.reviews-hero-v2 > .container > .crumbs,
.about-hero > .container > .crumbs {
    text-align: left;
    justify-content: flex-start;
}
.with-photo .crumbs {
    text-align: left;
}
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.location-card {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 14px;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.2s ease;
}
.location-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: var(--red-500);
}
.location-card-primary {
    border-color: var(--red-500);
    background: linear-gradient(180deg, #fff5f3 0%, #ffffff 60%);
}
.lc-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.95rem;
    line-height: 1.3;
}
.lc-name strong {
    color: var(--ink-900);
}
.lc-primary-tag {
    background: var(--red-500);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 3px 10px;
    border-radius: 12px;
    flex-shrink: 0;
}
.lc-phone {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--red-500);
    text-decoration: none;
    margin: 4px 0;
}
.lc-phone:hover {
    text-decoration: underline;
}
.lc-address {
    font-size: 0.85rem;
    color: var(--ink-700);
    line-height: 1.4;
}
.lc-no-address {
    font-style: italic;
    color: var(--ink-500);
}
.lc-area {
    font-size: 0.8rem;
    color: var(--ink-700);
    line-height: 1.45;
    padding-top: 8px;
    margin-top: auto;
    border-top: 1px solid #f5f5f5;
}
.lc-area strong {
    color: var(--ink-900);
}
.local-line-callout {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 18px;
    margin: 18px 0 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 4px solid var(--red-500);
    border-radius: 12px;
    max-width: max-content;
}
.local-line-callout .llc-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.local-line-callout .llc-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
}
.local-line-callout .llc-label-sm {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.65);
}
.local-line-callout .llc-phone {
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.01em;
}
.local-line-callout .llc-phone:hover {
    text-decoration: underline;
    color: #fbbf24;
}
.local-line-callout .llc-phone-sm {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}
.local-line-callout .llc-phone-sm:hover {
    color: #fbbf24;
    text-decoration: underline;
}
.local-line-callout .llc-meta {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
}
.local-line-callout .llc-row-secondary {
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.page-hero:not(.with-photo) .local-line-callout {
    background: #fff;
    border-color: var(--ink-100);
    border-left-color: var(--red-500);
}
.page-hero:not(.with-photo) .local-line-callout .llc-label,
.page-hero:not(.with-photo) .local-line-callout .llc-label-sm {
    color: var(--ink-700);
}
.page-hero:not(.with-photo) .local-line-callout .llc-phone {
    color: var(--red-500);
}
.page-hero:not(.with-photo) .local-line-callout .llc-phone-sm {
    color: var(--ink-800);
}
.page-hero:not(.with-photo) .local-line-callout .llc-meta {
    color: var(--ink-500);
}
.page-hero:not(.with-photo) .local-line-callout .llc-row-secondary {
    border-top-color: var(--ink-100);
}
.service-card > .icon {
    width: 44px;
    height: 44px;
    margin: 22px 22px 0;
    color: var(--red-500);
}
.service-card > .icon svg {
    width: 100%;
    height: 100%;
}
.service-card > h3 {
    margin: 14px 22px 8px;
    font-size: 1.05rem;
    color: var(--ink-900);
}
.service-card > p {
    margin: 0 22px 16px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--ink-700);
}
.service-card > .more {
    margin: 0 22px 22px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--red-500);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}
.service-card > .more svg {
    width: 14px;
    height: 14px;
}
/* Make .dark-reviews .btn-ghost always visible (was invisible until hover) */
.dark-reviews .btn-ghost {
    background: #fff !important;
    color: var(--ink-900) !important;
    border: 2px solid #fff !important;
    font-weight: 800 !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35) !important;
}
.dark-reviews .btn-ghost:hover {
    background: var(--accent) !important;
    color: var(--ink-900) !important;
    border-color: var(--accent) !important;
}

.d-none {
    display: none !important;
}


.mega-sub-menu a.mega-menu-link:hover {
    border-radius: 8px;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link{
    font-weight: 600 !important;
}

.justify-center{
    justify-content: center !important;
}

.bd_form .wpcf7-form-control-wrap {
    display: block;
}

.bd_form input[type=text], .bd_form input[type=email], .bd_form textarea {
    width: 100%;
    padding: 14px;
    border:1px solid #e6394612;
    border-radius: 10px;
    font-size: 1rem;
    margin-top: 12px;
}
.bd_form input[type=text]:focus, .bd_form input[type=email]:focus, .bd_form textarea:focus{
    outline: 3px solid #e63946;
    outline-offset: 2px;
}
.bd_form textarea {
    height: 120px;
}
.bd_form input[type=submit] {
    width: 100%;
    border-radius: 50px;
    background-color: #e63946 !important;
    text-align: left;
    border: 0;
}
.bd_form input[type=submit]:hover {
    color: #ffffff;
    border: 0;
    background-color: #c1121f !important;
}

/* Blogs */

/* Blog Css */

.herofigure{}
.herofigure img{
    width: 100%;
    height: auto;
    border-radius: 12px;
}
.herofigure h6{
    font-size: .85rem;
    line-height:1.7;
    color: #5b6068;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 400;
    font-family: var(--font-sans);
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > #mega-sub-menu-28 {
    width: 270px;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu h4.mega-block-title {
    font-size: .7rem !important;
    text-transform: uppercase !important;
    letter-spacing: .05em;
    color: #5b6068 !important;
    padding: 8px 12px 4px !important;
}