/* ==========================================================================
   Turn Key Designs - DuPage County | Main Stylesheet
   Brand: Black #000 / White #FFF / Gold #AD8144
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Primary */
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-gold: #AD8144;
    --color-gold-dark: #946D38;
    --color-gold-light: #F5EDE3;
    --color-gold-muted: #C9A96E;
    --color-gold-accessible: #7B5B2A;  /* WCAG AA: 6.2:1 contrast ratio with white */

    /* Accents */
    --color-charcoal: #2C2C2C;
    --color-off-white: #F8F7F5;
    --color-warm-gray: #6B6B6B;
    --color-light-gray: #E5E5E5;
    --color-cream: #FAF9F7;
    --color-navy: #1A1A2E;

    /* Functional */
    --color-success: #4A8C3F;
    --color-error: #D64545;
    --color-warning: #E8A838;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    --space-5xl: 128px;

    /* Layout */
    --max-width: 1200px;
    --header-height: 80px;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-charcoal);
    background-color: var(--color-white);
}

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

a {
    color: var(--color-gold-accessible);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-gold-dark);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-black);
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: 3rem; letter-spacing: -0.02em; }
h2 { font-size: 2.25rem; line-height: 1.25; letter-spacing: -0.01em; }
h3 { font-size: 1.75rem; line-height: 1.3; font-weight: 600; font-family: var(--font-body); }
h4 { font-size: 1.375rem; line-height: 1.35; font-weight: 600; font-family: var(--font-body); }

p { margin-bottom: 1.5em; }

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold-accessible);
    margin-bottom: var(--space-sm);
    display: block;
}

/* On dark navy sections, standard gold (#AD8144) passes 4.9:1 */
.section--dark .eyebrow {
    color: var(--color-gold);
}

/* On black page-header, gold-muted (#C9A96E) passes 9.8:1 */
.page-header .eyebrow {
    color: var(--color-gold-muted);
}

.lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-warm-gray);
}

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

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

.section--alt {
    background-color: var(--color-off-white);
}

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

.section--dark {
    background-color: var(--color-navy);
    color: var(--color-white);
}

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

.section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--space-3xl);
}

.grid {
    display: grid;
    gap: var(--space-lg);
}

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    line-height: 1;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

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

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

.btn--secondary {
    background-color: transparent;
    color: var(--color-black);
    border-color: var(--color-black);
}

.btn--secondary:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

.btn--white {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}

.btn--white:hover {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn--outline-white {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    box-shadow: none;
}

.btn--outline-white:hover {
    background-color: #FFFFFF;
    color: var(--color-black);
    border-color: #FFFFFF;
}

.btn--large {
    padding: 16px 40px;
    font-size: 1rem;
}

.btn--small {
    padding: 10px 24px;
    font-size: 0.8125rem;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-white);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    height: var(--header-height);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.site-header__logo img {
    height: 50px;
    width: auto;
}

.site-header__logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-black);
    text-decoration: none;
}

.site-header__logo-text span {
    color: var(--color-gold);
}

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

.site-nav__list {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    align-items: center;
}

.site-nav__link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-black);
    text-decoration: none;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link--active {
    color: var(--color-gold-accessible);
    border-bottom-color: var(--color-gold-accessible);
}

.site-nav__cta {
    margin-left: var(--space-md);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.nav-toggle__bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-black);
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile nav overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    z-index: 999;
    padding: var(--space-2xl) var(--space-lg);
    overflow-y: auto;
}

.mobile-nav.is-open {
    display: block;
}

.mobile-nav__list {
    list-style: none;
}

.mobile-nav__link {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--color-black);
    text-decoration: none;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-light-gray);
}

.mobile-nav__link:hover {
    color: var(--color-gold);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-navy);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    max-width: 680px;
    color: var(--color-white);
    padding: var(--space-4xl) 0;
}

.hero__content h1 {
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.hero__content .eyebrow {
    color: var(--color-gold-muted);
}

.hero__subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
    background: var(--color-off-white);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--color-light-gray);
}

.trust-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-charcoal);
}

.trust-bar__icon {
    color: var(--color-gold);
    flex-shrink: 0;
}

.trust-bar__divider {
    width: 1px;
    height: 24px;
    background: var(--color-light-gray);
}

/* ---------- Service Cards ---------- */
.service-card {
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    color: inherit;
}

.service-card__image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.service-card__body {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: var(--space-sm);
}

.service-card__excerpt {
    font-size: 0.9375rem;
    color: var(--color-warm-gray);
    margin-bottom: var(--space-md);
    flex: 1;
}

.service-card__link {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-gold-accessible);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.service-card__link svg {
    transition: transform 0.2s ease;
}

.service-card:hover .service-card__link svg {
    transform: translateX(4px);
}

/* ---------- Testimonials ---------- */
.testimonial-card {
    background: var(--color-cream);
    border-left: 4px solid var(--color-gold);
    padding: var(--space-xl);
    border-radius: 0 8px 8px 0;
}

.testimonial-card__quote {
    font-size: 1.0625rem;
    font-style: italic;
    color: var(--color-charcoal);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.testimonial-card__quote::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-gold);
    line-height: 0;
    vertical-align: -0.5em;
    margin-right: 4px;
}

.testimonial-card__author {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-black);
}

.testimonial-card__location {
    font-size: 0.8125rem;
    color: var(--color-warm-gray);
}

/* ---------- Stats / Counters ---------- */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

.stat__number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat__label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-warm-gray);
}

/* ---------- Process Steps ---------- */
.process-steps {
    counter-reset: step;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--space-xl);
    align-items: start;
    margin-bottom: var(--space-2xl);
}

.process-step__number {
    counter-increment: step;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-gold-light);
    border: 2px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
}

.process-step__title {
    font-family: var(--font-body);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: var(--space-sm);
}

.process-step__text {
    color: var(--color-warm-gray);
    font-size: 0.9375rem;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    background: var(--color-black);
    padding: var(--space-3xl) 0;
    text-align: center;
}

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

.cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.cta-banner__actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Location Grid ---------- */
.location-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-white);
    border: 1px solid var(--color-light-gray);
    border-radius: 8px;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.location-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.location-card__icon {
    color: var(--color-gold);
    flex-shrink: 0;
}

.location-card__name {
    font-weight: 600;
    color: var(--color-black);
    font-size: 1rem;
}

.location-card__desc {
    font-size: 0.8125rem;
    color: var(--color-warm-gray);
}

/* ---------- Contact Form ---------- */
.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-charcoal);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-light-gray);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-charcoal);
    background: var(--color-white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(173, 129, 68, 0.15);
}

.form-control--error {
    border-color: var(--color-error);
}

.form-control--error:focus {
    box-shadow: 0 0 0 3px rgba(214, 69, 69, 0.15);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B6B6B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-message {
    padding: var(--space-md);
    border-radius: 4px;
    font-weight: 500;
    margin-top: var(--space-md);
}

.form-message--success {
    background: #e8f5e9;
    color: var(--color-success);
    border: 1px solid var(--color-success);
}

.form-message--error {
    background: #fde8e8;
    color: var(--color-error);
    border: 1px solid var(--color-error);
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--color-navy);
    color: var(--color-white);
    padding: var(--space-3xl) 0 var(--space-xl);
}

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

.footer-widget__title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.site-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

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

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    font-size: 0.9375rem;
}

.footer-contact__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact__icon {
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

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

.site-footer__copyright {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.site-footer__social {
    display: flex;
    gap: var(--space-md);
}

.site-footer__social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.site-footer__social a:hover {
    border-color: var(--color-gold);
    background-color: var(--color-gold);
    color: var(--color-white);
}

/* ---------- Sticky CTA (Mobile) ---------- */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: var(--color-black);
    padding: var(--space-sm) var(--space-md);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
}

.sticky-cta__inner {
    display: flex;
    gap: var(--space-sm);
}

.sticky-cta .btn {
    flex: 1;
    text-align: center;
    padding: 12px 16px;
    font-size: 0.8125rem;
}

/* ---------- Skip to Content ---------- */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-black);
    color: var(--color-white);
    padding: var(--space-sm) var(--space-md);
    border-radius: 0 0 4px 4px;
    z-index: 10000;
    font-weight: 600;
    text-decoration: none;
}

.skip-to-content:focus {
    top: 0;
}

/* ---------- Focus Indicators (WCAG 2.4.7 - Keyboard Accessible) ---------- */
:focus-visible {
    outline: 3px solid var(--color-gold-accessible);
    outline-offset: 2px;
    border-radius: 2px;
}

.btn:focus-visible {
    outline: 3px solid var(--color-gold-accessible);
    outline-offset: 3px;
    box-shadow: 0 0 0 5px rgba(123, 91, 42, 0.2);
}

.site-nav__link:focus-visible {
    outline: 3px solid var(--color-gold-accessible);
    outline-offset: 4px;
    border-radius: 2px;
}

.site-footer__social a:focus-visible {
    outline: 3px solid var(--color-gold-accessible);
    outline-offset: 3px;
    border-color: var(--color-gold-accessible);
}

.faq-accordion__trigger:focus-visible,
.reviews-carousel__btn:focus-visible,
.nav-toggle:focus-visible {
    outline: 3px solid var(--color-gold-accessible);
    outline-offset: 3px;
    border-radius: 2px;
}

/* ---------- Screen Reader Only (visually hidden, accessible) ---------- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
    padding: var(--space-md) 0;
    font-size: 0.8125rem;
    color: var(--color-warm-gray);
}

.breadcrumbs a {
    color: var(--color-warm-gray);
}

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

.breadcrumbs__separator {
    margin: 0 var(--space-sm);
    color: var(--color-light-gray);
}

/* ---------- Page Header (Interior Pages) ---------- */
.page-header {
    background: var(--color-black);
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-gold);
}

.page-header h1 {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 1023px) {
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
    .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.625rem; }
    h3 { font-size: 1.375rem; }

    .section { padding: var(--space-2xl) 0; }
    .container { padding: 0 20px; }

    .grid--2,
    .grid--3,
    .grid--4 { grid-template-columns: 1fr; }

    .site-nav { display: none; }
    .nav-toggle { display: block; }

    .hero { min-height: 480px; }
    .hero__content { padding: var(--space-2xl) 0; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; }

    .stats { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
    .stat__number { font-size: 2.25rem; }

    .process-step { grid-template-columns: 56px 1fr; gap: var(--space-md); }
    .process-step__number { width: 48px; height: 48px; font-size: 1.25rem; }

    .site-footer__grid { grid-template-columns: 1fr; }

    .sticky-cta { display: block; }
    .site-footer { padding-bottom: 80px; }

    .cta-banner__actions { flex-direction: column; align-items: center; }
}

/* ---------- Print ---------- */
@media print {
    .site-header,
    .site-footer,
    .sticky-cta,
    .cta-banner { display: none; }

    body { color: #000; background: #fff; }
    a { color: #000; text-decoration: underline; }
}

/* ---------- Reduced Motion (WCAG 2.3.3) ---------- */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
