/* ============================================================
   B&B CONSTRUCTION MANAGEMENT — GLOBAL DESIGN SYSTEM
   Single source of truth for all shared styles.
   Extracted from v2 (canonical). DO NOT duplicate — import this.
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Custom Properties --- */
:root {
    /* Primary Palette — Creamy Taupe & Earthtone Blue */
    --color-cream: #F5F0EB;
    --color-cream-light: #FAF8F5;
    --color-cream-dark: #E8E0D8;
    --color-taupe: #C4B5A5;
    --color-taupe-dark: #A89785;
    --color-warm-gray: #8C8279;

    --color-blue: #3B5468;
    --color-blue-light: #4E6C82;
    --color-blue-dark: #2A3E4E;
    --color-blue-deep: #1D2D3A;

    /* Neutrals */
    --color-white: #FFFFFF;
    --color-off-white: #FAFAF8;
    --color-charcoal: #2C2C2C;
    --color-black: #1A1A1A;
    --color-text: #3A3A3A;
    --color-text-light: #6B6B6B;
    --color-border: #E0D8CE;

    /* Accents */
    --color-gold: #B89B6A;
    --color-gold-light: #D4BA8F;
    --color-green: #3A7D44;

    /* Typography */
    --font-serif: 'Cormorant Garamond', 'Georgia', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;

    /* Layout */
    --max-width: 1280px;
    --max-width-narrow: 900px;
    --header-height: 80px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-reveal: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--color-text);
    background-color: var(--color-cream-light);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    color: var(--color-blue-dark);
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

h4 {
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
}

p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.section-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-taupe-dark);
    margin-bottom: var(--space-sm);
    display: block;
}

/* --- Consistent section heading + paragraph spacing --- */
.section>.container>h2 {
    margin-bottom: var(--space-lg);
}

.section>.container>h2+p {
    margin-top: 0;
}

.section-label--light {
    color: var(--color-taupe);
}

/* --- Layout Containers --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container--narrow {
    max-width: var(--max-width-narrow);
}

.section {
    padding: var(--space-4xl) 0;
}

@media (max-width: 900px) {
    .section {
        padding: var(--space-2xl) 0;
    }

    .section-label {
        margin-bottom: var(--space-xs);
    }

    .section>.container>h2 {
        margin-bottom: var(--space-md);
    }

    h2 {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
    }
}

.section--cream {
    background-color: var(--color-cream);
}

.section--blue {
    background-color: var(--color-blue-dark);
    color: var(--color-cream);
}

.section--blue h2,
.section--blue h3,
.section--blue h4 {
    color: var(--color-cream);
}

.section--blue p {
    color: var(--color-cream-dark);
}

.section--blue .section-label {
    color: var(--color-taupe);
}


/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
    background-color: var(--color-blue-deep);
    text-align: center;
    padding: 0.625rem var(--space-lg);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--color-cream-dark);
    position: relative;
    z-index: 1001;
}

.announcement-bar__mobile {
    display: none;
}

@media (max-width: 900px) {
    .announcement-bar__desktop {
        display: none;
    }

    .announcement-bar__mobile {
        display: inline;
    }
}


/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: background-color var(--transition-base),
        box-shadow var(--transition-base),
        backdrop-filter var(--transition-base),
        top var(--transition-base);
}

.header--has-announcement {
    top: 36px;
}

.header--scrolled {
    background-color: rgba(245, 240, 235, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--color-border);
    top: 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.header__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
}

.header__logo img {
    height: 36px;
    width: auto;
    transition: opacity var(--transition-fast);
}

.header__logo:hover img {
    opacity: 0.8;
}

.header__logo-light {
    display: block;
}

.header__logo-dark {
    display: none;
}

.header--scrolled .header__logo-light {
    display: none;
}

.header--scrolled .header__logo-dark {
    display: block;
}

.header:not(.header--scrolled) .nav__list .nav__link {
    color: var(--color-cream);
}

.header:not(.header--scrolled) .nav__list .nav__link::after {
    background-color: var(--color-cream);
}

.header:not(.header--scrolled) .header__cta {
    border-color: var(--color-cream);
    color: var(--color-cream);
}

.header:not(.header--scrolled) .header__cta:hover {
    background-color: var(--color-cream);
    color: var(--color-blue-dark);
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav__link {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-blue-dark);
    position: relative;
    padding: 0.25rem 0;
    transition: color var(--transition-fast);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-blue-dark);
    transition: width var(--transition-base);
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

.header__cta {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--color-blue-dark);
    color: var(--color-blue-dark);
    transition: all var(--transition-fast);
}

.header__cta:hover {
    background-color: var(--color-blue-dark);
    color: var(--color-cream);
}

/* Mobile menu toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

.nav__toggle span {
    width: 24px;
    height: 1.5px;
    background-color: var(--color-blue-dark);
    transition: all var(--transition-base);
    transform-origin: center;
}

.header:not(.header--scrolled) .nav__toggle span {
    background-color: var(--color-cream);
}

.nav__overlay {
    display: none;
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 900px) {
    .nav__list {
        display: none;
    }

    .header__cta {
        display: none;
    }

    .nav__toggle {
        display: flex;
        position: fixed;
        top: 18px;
        right: var(--space-lg);
        z-index: 1202;
    }

    .header--has-announcement~* .nav__toggle,
    .header--has-announcement .nav__toggle {
        top: 54px;
    }

    /* When active, always use dark color for X icon — overrides hero cream color */
    .nav__toggle.active span,
    .header:not(.header--scrolled) .nav__toggle.active span {
        background-color: var(--color-blue-dark);
    }

    .nav__overlay {
        position: fixed;
        inset: 0;
        background-color: var(--color-cream-light);
        z-index: 1100;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-sm);
        padding: var(--space-2xl) var(--space-lg);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        pointer-events: none;
    }

    .nav__overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav__overlay .nav__link {
        font-family: var(--font-serif);
        font-size: 1.4rem;
        font-weight: 400;
        letter-spacing: 0.02em;
        text-transform: none;
        color: var(--color-blue-dark);
    }

    .nav__overlay .nav__link::after {
        background-color: var(--color-blue-dark);
    }

    .nav__overlay-insignia {
        display: none;
    }

    /* When mobile nav is open, always show dark logo (light logo disappears against cream overlay) */
    .header.nav-open .header__logo-light {
        display: none !important;
    }

    .header.nav-open .header__logo-dark {
        display: block !important;
    }

    .nav__toggle.active span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.active span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }
}


.pull-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-style: italic;
    color: var(--color-blue-dark);
    text-align: center;
    max-width: 700px;
    margin: var(--space-2xl) auto;
    padding: var(--space-xl) var(--space-lg);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    line-height: 1.5;
}


/* ============================================================
   BEFORE & AFTER — INTERACTIVE SLIDER
   ============================================================ */
.before-after-sliders {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.ba-slider {
    position: relative;
    overflow: hidden;
    cursor: col-resize;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y pinch-zoom;
    aspect-ratio: 1 / 1;
}

.ba-slider__after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-slider__before {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.ba-slider__before img {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    max-width: none;
    object-fit: cover;
    display: block;
}

.ba-slider__label {
    position: absolute;
    top: var(--space-sm);
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.375rem 0.75rem;
    background-color: var(--color-blue-dark);
    color: var(--color-cream);
    z-index: 3;
    pointer-events: none;
}

.ba-slider__label--before {
    left: var(--space-sm);
}

.ba-slider__label--after {
    right: var(--space-sm);
}

.ba-slider__handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
    pointer-events: none;
}

.ba-slider__line {
    flex: 1;
    width: 2px;
    background-color: var(--color-cream);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.ba-slider__grip {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-cream);
    border: 2px solid var(--color-blue-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
    pointer-events: auto;
    cursor: col-resize;
}

.ba-slider__grip span {
    font-size: 1rem;
    color: var(--color-blue-dark);
    line-height: 1;
}

@media (max-width: 600px) {
    .before-after-sliders {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   SPLIT LAYOUT (Reframe, About, etc.)
   ============================================================ */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.split--reverse {
    direction: rtl;
}

.split--reverse>* {
    direction: ltr;
}

.split__image {
    overflow: hidden;
}

.split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.split__image:hover img {
    transform: scale(1.03);
}

.split__content {
    padding: var(--space-2xl) 0;
}

.split__content h2 {
    margin-bottom: var(--space-lg);
}

.split__content p {
    margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
    .split {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .split--reverse {
        direction: ltr;
    }
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.testimonial {
    padding: var(--space-xl);
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
}

.testimonial__stars {
    color: var(--color-gold);
    font-size: 1rem;
    letter-spacing: 0.125em;
    margin-bottom: var(--space-md);
}

.testimonial__quote {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--color-blue-dark);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    position: relative;
}

.testimonial__quote::before {
    content: '"';
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--color-taupe);
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
    line-height: 1;
    opacity: 0.4;
}

.testimonial__author {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-taupe-dark);
}

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


/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
    margin-top: var(--space-2xl);
    max-width: var(--max-width-narrow);
    margin-left: auto;
    margin-right: auto;
}

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

.faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--space-lg) 0;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-blue-dark);
    text-align: left;
    cursor: pointer;
    background: none;
    border: none;
    transition: color var(--transition-fast);
}

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

.faq-item__icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-taupe);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: var(--space-md);
}

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

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-item__answer {
    max-height: 500px;
    padding-bottom: var(--space-lg);
}

.faq-item__answer p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.8;
}


/* ============================================================
   CONTACT / CONVERSION SECTION
   ============================================================ */
.contact-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
}

.contact-option {
    text-align: center;
    padding: var(--space-2xl);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background-color: rgba(255, 255, 255, 0.04);
}

.contact-option__icon {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.contact-option h3 {
    color: var(--color-cream);
    margin-bottom: var(--space-sm);
}

.contact-option p {
    color: var(--color-cream-dark);
    font-size: 0.9375rem;
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.contact-option__phone {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-gold-light);
    display: block;
    margin-bottom: var(--space-xs);
}

.contact-option__hours {
    font-size: 0.8125rem;
    color: var(--color-cream-dark);
    opacity: 0.7;
}

.reassurance-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reassurance-row span {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    color: var(--color-cream-dark);
    opacity: 0.8;
}

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

    .reassurance-row {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    text-align: center;
    padding: var(--space-4xl) var(--space-lg);
    background-color: var(--color-blue-dark);
    color: var(--color-cream);
}

.cta-banner h2 {
    color: var(--color-cream);
    margin-bottom: var(--space-md);
}

.cta-banner p {
    color: var(--color-cream-dark);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    font-size: 1.0625rem;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background-color: var(--color-blue-deep);
    color: var(--color-cream-dark);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
}

.footer__logo-img {
    height: 109px;
    width: auto;
}

.footer__tagline {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--color-taupe);
    line-height: 1.5;
}

.footer__address {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-style: normal;
    color: var(--color-cream-dark);
    opacity: 0.6;
    line-height: 1.6;
}

.footer__nav h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-cream);
    margin-bottom: var(--space-md);
}

.footer__nav ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer__nav a {
    font-size: 0.875rem;
    color: var(--color-cream-dark);
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.footer__nav a:hover {
    opacity: 1;
}

.footer__contact h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-cream);
    margin-bottom: var(--space-md);
}

.footer__contact p,
.footer__contact a {
    font-size: 0.875rem;
    line-height: 2;
    color: var(--color-cream-dark);
    opacity: 0.7;
}

.footer__contact a:hover {
    opacity: 1;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer__copyright {
    font-size: 0.75rem;
    color: var(--color-cream-dark);
    opacity: 0.5;
}

.footer__areas {
    font-size: 0.6875rem;
    color: var(--color-cream-dark);
    opacity: 0.4;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn--primary {
    background-color: var(--color-blue-dark);
    color: var(--color-cream);
    border: 1px solid var(--color-blue-dark);
}

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

.btn--outline {
    background-color: transparent;
    color: var(--color-blue-dark);
    border: 1px solid var(--color-blue-dark);
}

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

.btn--outline-light {
    background-color: transparent;
    color: var(--color-cream);
    border: 1px solid rgba(245, 240, 235, 0.5);
}

.btn--outline-light:hover {
    background-color: var(--color-cream);
    color: var(--color-blue-dark);
    border-color: var(--color-cream);
}

.btn--arrow::after {
    content: ' →';
}


/* ============================================================
   BLOCKQUOTE
   ============================================================ */
blockquote {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-blue-dark);
    text-align: center;
    max-width: 700px;
    margin: var(--space-2xl) auto;
    padding: var(--space-xl) var(--space-lg);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    border-left: none;
    line-height: 1.6;
}

blockquote cite {
    display: block;
    margin-top: var(--space-sm);
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-taupe-dark);
}

.pull-quote cite {
    display: block;
    margin-top: var(--space-sm);
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-taupe-dark);
}


/* ============================================================
   ANIMATIONS & SCROLL REVEALS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-reveal), transform var(--transition-reveal);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}


/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-sm {
    margin-top: var(--space-sm);
}

.mt-md {
    margin-top: var(--space-md);
}

.mt-lg {
    margin-top: var(--space-lg);
}

.mt-xl {
    margin-top: var(--space-xl);
}

.mt-2xl {
    margin-top: var(--space-2xl);
}

.mb-sm {
    margin-bottom: var(--space-sm);
}

.mb-md {
    margin-bottom: var(--space-md);
}

.mb-lg {
    margin-bottom: var(--space-lg);
}

.mb-xl {
    margin-bottom: var(--space-xl);
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-narrow {
    max-width: var(--max-width-narrow);
}

/* Content list */
.content-list {
    margin: var(--space-md) 0;
}

.content-list li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--color-text);
    line-height: 1.7;
}

.content-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-taupe);
}

/* Horizontal Rule */
hr {
    border: none;
    height: 1px;
    background-color: var(--color-border);
    margin: var(--space-3xl) 0;
}

/* Bold highlight */
.highlight {
    font-weight: 600;
    color: var(--color-blue-dark);
}


/* ============================================================
   GLOBAL MOBILE SPACING OVERRIDES
   ============================================================ */
@media (max-width: 900px) {

    /* Tighten margins on all component grids */
    .quote-cards,
    .stat-callouts,
    .comparison-cols,
    .pricing-tables,
    .craft-points,
    .before-after-sliders {
        margin-top: var(--space-lg);
    }

    .stat-callouts {
        margin-bottom: var(--space-lg);
    }

    /* Tighten inner padding */
    .quote-card {
        padding: var(--space-lg);
    }

    .stat-callout {
        padding: var(--space-md) var(--space-xs);
    }

    .comparison-col {
        padding: var(--space-lg);
    }

    .split__content {
        padding: var(--space-lg) 0;
    }

    /* Savings callout */
    .savings-callout {
        padding: var(--space-lg);
        margin-top: var(--space-lg);
    }

    /* Change order sheet */
    .change-order-sheet {
        margin-top: var(--space-lg);
        padding: var(--space-lg) var(--space-md);
    }

    /* Weekly report */
    .weekly-report {
        margin-top: var(--space-lg);
    }

    /* Horizontal rule */
    hr {
        margin: var(--space-xl) 0;
    }

    /* Blockquote */
    blockquote {
        margin-top: var(--space-lg);
        margin-bottom: var(--space-lg);
    }

    /* Insight callout */
    .insight-callout {
        padding: var(--space-lg);
    }

    /* Utility margin overrides */
    .mb-xl {
        margin-bottom: var(--space-lg);
    }

    .mb-lg {
        margin-bottom: var(--space-md);
    }
}