/* Core Variables */
:root {
    --brand-red: #E31837; 
    --brand-red-hover: #C1102A;
    --dark: #0a0a0a;
    --dark-alt: #161616;
    --gray: #2a2a2a;
    --light-gray: #a0a0a0;
    --white: #ffffff;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Basics */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark);
    color: var(--light-gray);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--white);
    line-height: 1.1;
}

a {
    color: var(--brand-red);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.text-white { color: var(--white); }

/* Typography Utility */
.display-title {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.subtitle {
    font-size: 1rem;
    color: var(--brand-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.75rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
    text-align: center;
}
.btn-primary {
    background-color: var(--brand-red);
    color: var(--white);
}
.btn-primary:hover {
    background-color: var(--brand-red-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(227, 24, 55, 0.2);
}
.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0);
    transition: var(--transition);
}
.site-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    transition: var(--transition);
}
.site-header.scrolled .header-inner {
    height: 80px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}
.logo-mark {
    height: 72px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
    transition: var(--transition);
}
.site-header.scrolled .logo-mark {
    height: 58px;
}
@media (max-width: 767px) {
    .logo-mark { height: 50px; }
}
@media (max-width: 380px) {
    .logo-mark { height: 44px; }
}
.logo-wrapper {
    background: var(--white);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6px;
    transition: var(--transition);
    flex-shrink: 0;
}
.site-header.scrolled .logo-wrapper {
    width: 50px;
    height: 50px;
}
.logo-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}
.logo-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--white);
    transition: var(--transition);
}
.logo-tagline {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-top: 3px;
}
.site-header.scrolled .logo-name {
    font-size: 1.2rem;
}
@media (max-width: 767px) {
    .logo { gap: 0.6rem; }
    .logo-name { font-size: 1.05rem; }
    .logo-tagline { display: none; }
}
.site-nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.site-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}
.site-nav a {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.site-nav a:hover {
    color: var(--brand-red);
}
.header-cta {
    padding: 0.75rem 1.75rem;
    font-size: 0.85rem;
}

/* Always-visible phone number in the mobile header */
.header-call-mobile {
    display: none;
}
@media (max-width: 991px) {
    .header-call-mobile {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        flex-shrink: 0;
        margin-left: auto;
        margin-right: 1rem;
        padding: 0.55rem 1rem;
        background: var(--brand-red);
        color: var(--white);
        border-radius: 999px;
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 0.9rem;
        letter-spacing: 0.01em;
        white-space: nowrap;
        line-height: 1;
    }
    .header-call-mobile span {
        white-space: nowrap;
    }
    .header-call-mobile svg {
        width: 15px;
        height: 15px;
        flex-shrink: 0;
    }
}
/* On phones, drop the wordmark so the phone number always fits on one line */
@media (max-width: 600px) {
    .logo-text { display: none; }
}
@media (max-width: 380px) {
    .header-call-mobile {
        font-size: 0.85rem;
        padding: 0.5rem 0.85rem;
        margin-right: 0.75rem;
    }
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}
.mobile-menu-toggle .bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    position: absolute;
    transition: var(--transition);
}
.mobile-menu-toggle .bar:nth-child(1) { top: 0; }
.mobile-menu-toggle .bar:nth-child(2) { top: 9px; }
.mobile-menu-toggle .bar:nth-child(3) { top: 18px; }

@media (max-width: 991px) {
    .mobile-menu-toggle { display: block; }
    .site-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--dark-alt);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        z-index: 1000;
    }
    .site-nav.active { right: 0; }
    .site-nav ul { flex-direction: column; align-items: center; gap: 2rem; margin-bottom: 2rem; }
    .mobile-menu-toggle.active .bar:nth-child(1) { top: 9px; transform: rotate(45deg); }
    .mobile-menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .mobile-menu-toggle.active .bar:nth-child(3) { top: 9px; transform: rotate(-45deg); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: url('../img/workshop-interior.jpg') center/cover no-repeat fixed;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(90deg, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.84) 38%, rgba(10,10,10,0.72) 60%, rgba(10,10,10,0.93) 100%);
}
.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}
@media (max-width: 991px) {
    .hero-content { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 0; text-align: center;}
    .hero-overlay { background: rgba(10,10,10,0.85); }
}

/* Forms */
.lead-form-box {
    background: var(--dark-alt);
    padding: 3rem;
    border-top: 4px solid var(--brand-red);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    position: relative;
    overflow: hidden;
}
.lead-form-box::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(227, 24, 55, 0.05), transparent 50%);
    pointer-events: none;
}
.lead-form-box h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-control {
    width: 100%;
    padding: 1.25rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--brand-red);
    background: rgba(255,255,255,0.07);
}
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}
select.form-control option {
    background: var(--dark-alt);
    color: var(--white);
}
textarea.form-control {
    resize: vertical;
    min-height: 120px;
}
.honeypot {
    position: absolute;
    left: -9999px;
}
.form-alert {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    border-radius: 2px;
}
.form-alert.success { background: rgba(0, 200, 83, 0.1); color: #00e676; border: 1px solid rgba(0, 230, 118, 0.3); }
.form-alert.error { background: rgba(227, 24, 55, 0.1); color: var(--brand-red); border: 1px solid rgba(227, 24, 55, 0.3); }

/* Internal Page Hero */
.page-hero {
    padding: 220px 0 120px;
    background: var(--dark-alt);
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.page-hero--image {
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    border-bottom: none;
}
.page-hero--image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.65);
}
.page-hero--image > .container {
    position: relative;
    z-index: 1;
}

/* Generic Section */
.section {
    padding: 120px 0;
}
.section-alt {
    background-color: var(--dark-alt);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}
.service-card {
    background: linear-gradient(160deg, #191919 0%, #0d0d0d 100%);
    padding: 2.75rem 2rem 2.5rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    text-align: left;
}
/* top accent bar sweeps in on hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-red), #ff5a72);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
/* soft red glow that lights up on hover */
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(480px circle at 50% -30%, rgba(227,24,55,0.18), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(227,24,55,0.45);
    box-shadow: 0 24px 50px -24px rgba(227,24,55,0.5), 0 10px 30px -18px rgba(0,0,0,0.7);
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-card:hover::after {
    opacity: 1;
}
/* keep the hover lift above the reveal animation's translateY */
.service-card.reveal.active:hover {
    transform: translateY(-6px);
}
/* big watermark number */
.service-card__num {
    position: absolute;
    top: 1.1rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(255,255,255,0.05);
    transition: var(--transition);
    pointer-events: none;
    z-index: 0;
}
.service-card:hover .service-card__num {
    color: rgba(227,24,55,0.2);
}
/* icon tile */
.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 1.5rem;
    border-radius: 14px;
    background: rgba(227,24,55,0.1);
    border: 1px solid rgba(227,24,55,0.28);
    color: var(--brand-red);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}
.service-icon svg {
    width: 28px;
    height: 28px;
}
.service-card:hover .service-icon {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: var(--white);
    transform: scale(1.06) rotate(-4deg);
    box-shadow: 0 12px 26px -8px rgba(227,24,55,0.6);
}
.service-card h3 {
    margin-bottom: 0.85rem;
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}
.service-card p {
    position: relative;
    z-index: 1;
}

/* CRD Tech spotlight */
.crd-band {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    padding: 3.5rem 3rem;
    text-align: center;
    background: linear-gradient(150deg, #1c1c1c 0%, #0d0d0d 100%);
    border: 1px solid rgba(227,24,55,0.35);
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
}
.crd-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(620px circle at 50% -20%, rgba(227,24,55,0.22), transparent 62%);
    z-index: -1;
}
.crd-logo {
    display: block;
    width: 100%;
    max-width: 340px;
    height: auto;
    margin: 0 auto 2rem;
}
.crd-eyebrow {
    display: inline-block;
    margin-bottom: 1.25rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(227,24,55,0.5);
    border-radius: 999px;
    background: rgba(227,24,55,0.12);
    color: var(--brand-red);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.crd-band h2 {
    margin-bottom: 1.25rem;
}
.crd-band p {
    max-width: 640px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}
.crd-band strong {
    color: var(--white);
    font-weight: 700;
}
.crd-note {
    display: block;
    margin-top: 1.25rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}
@media (max-width: 767px) {
    .crd-band { padding: 2.5rem 1.5rem; }
    .crd-logo { max-width: 280px; margin-bottom: 1.5rem; }
    .crd-band p { font-size: 1rem; }
}

/* About Layout */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-image {
    position: relative;
}
.about-image::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: 20px;
    left: 20px;
    border: 2px solid var(--brand-red);
    z-index: -1;
    transition: var(--transition);
}
.about-image:hover::after {
    transform: translate(10px, -10px);
}
.about-image img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: var(--transition);
    display: block;
}
.about-image:hover img {
    filter: grayscale(0%);
}
@media (max-width: 991px) {
    .about-layout { grid-template-columns: 1fr; gap: 3rem; }
    .about-image::after { display: none; }
}

/* Showcase Band */
.showcase-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.showcase-image {
    position: relative;
    overflow: hidden;
}
.showcase-image img {
    width: 100%;
    height: 100%;
    max-height: 540px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.showcase-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(227, 24, 55, 0.55);
    pointer-events: none;
    transition: var(--transition);
}
.showcase-image:hover img {
    transform: scale(1.05);
}
.showcase-image:hover::after {
    inset: 12px;
    border-color: var(--brand-red);
}
@media (max-width: 991px) {
    .showcase-layout { grid-template-columns: 1fr; gap: 3rem; }
}

/* Contact Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
}
.contact-info-item {
    margin-bottom: 2.5rem;
}
.contact-info-item h4 {
    color: var(--brand-red);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.contact-info-item p {
    font-size: 1.25rem;
    color: var(--white);
}
.map-container {
    margin-top: 3rem;
    width: 100%;
    height: 400px;
    border: 1px solid rgba(255,255,255,0.1);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(92%) contrast(83%);
}
@media (max-width: 991px) {
    .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
}

/* Footer */
.site-footer {
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}
.footer-logo {
    margin-bottom: 1.5rem;
}
.footer-col h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-col p {
    margin-bottom: 0.75rem;
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.3);
}
.footer-credit {
    margin-top: 0.5rem;
    font-size: 0.8rem;
}
.footer-credit a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-credit a:hover {
    color: var(--brand-red);
}
@media (max-width: 767px) {
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero entrance animations */
.hero-text > * {
    opacity: 0;
    animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-text > *:nth-child(1) { animation-delay: 0.2s; }
.hero-text > *:nth-child(2) { animation-delay: 0.4s; }
.hero-text > *:nth-child(3) { animation-delay: 0.6s; }
.hero-text > *:nth-child(4) { animation-delay: 0.8s; }
.hero-form {
    opacity: 0;
    animation: heroFadeRight 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.55s;
}
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-text > *, .hero-form {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ============ Social Feed ============ */
.social-band {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.social-layout {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 4rem;
    align-items: center;
}
.social-intro .section-title {
    margin-top: 0.5rem;
}
.social-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.social-feed {
    display: flex;
    justify-content: center;
}
.fb-embed {
    width: 100%;
    max-width: 500px;
    min-height: 720px;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.4);
}
.fb-embed iframe {
    display: block;
    width: 100%;
    border: 0;
}
@media (max-width: 991px) {
    .social-layout { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .social-cta-group { justify-content: center; }
}

/* ============ Photo Gallery ============ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 3.5rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(30%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    pointer-events: none;
}
@media (max-width: 767px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ Reviews ============ */
.rating-hero {
    text-align: center;
    margin-bottom: 4.5rem;
}
.rating-score {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(3.5rem, 9vw, 5.5rem);
    color: var(--white);
    line-height: 1;
}
.stars {
    color: #ffb400;
    letter-spacing: 3px;
}
.rating-hero .stars {
    font-size: 1.75rem;
    margin: 0.75rem 0;
}
.rating-meta {
    color: var(--light-gray);
    font-size: 1.15rem;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 2rem;
}
.review-card {
    background: var(--dark-alt);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(227, 24, 55, 0.4);
}
.review-card .stars {
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
}
.review-text {
    color: #d4d4d4;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--brand-red);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.review-author-name {
    color: var(--white);
    font-weight: 600;
    font-family: var(--font-heading);
}
.review-author-src {
    color: var(--light-gray);
    font-size: 0.85rem;
}
.review-quote-mark {
    position: absolute;
    top: 0.5rem;
    right: 1.75rem;
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: rgba(227, 24, 55, 0.12);
    pointer-events: none;
}

/* ============ Page Transitions ============ */
body {
    animation: pageFadeIn 0.5s ease both;
}
@keyframes pageFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
body.is-leaving {
    animation: none;
    opacity: 0;
    transition: opacity 0.38s ease;
}
@media (prefers-reduced-motion: reduce) {
    body { animation: none; }
    body.is-leaving { transition: none; }
}

/* ============ Parallax Bands ============ */
.parallax-band {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 8rem 0;
    text-align: center;
}
.parallax-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.72);
}
.parallax-band.light::before {
    background: rgba(10, 10, 10, 0.5);
}
.parallax-band > .container {
    position: relative;
    z-index: 1;
}
@media (max-width: 991px) {
    .hero-bg,
    .parallax-band {
        background-attachment: scroll;
    }
}
@media (prefers-reduced-motion: reduce) {
    .hero-bg,
    .parallax-band {
        background-attachment: scroll;
    }
}
