/* ========================================
   THE ROYAL PARLOUR — Stylesheet
   Bold Editorial | Forest Green + Off-White
======================================== */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --forest: #1A3C34;
    --forest-deep: #0F2520;
    --forest-light: #2A5C4E;
    --forest-muted: #3D7A6A;
    --cream: #F7F4EE;
    --cream-dark: #EDE8DF;
    --cream-light: #FBF9F5;
    --gold: #C9A96E;
    --gold-light: #D4BA8A;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #7A7A7A;
    --white: #FFFFFF;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ─── GRAIN OVERLAY ─── */
.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 128px 128px;
}

/* ─── SKIP LINK ─── */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    background: var(--forest);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-size: 0.875rem;
}
.skip-link:focus { top: var(--space-sm); }

/* ─── TYPOGRAPHY ─── */
.eyebrow, .section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--forest-muted);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--forest);
    margin-bottom: var(--space-lg);
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-header--center { text-align: center; }

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.btn--dark {
    background: var(--forest);
    color: var(--white);
}
.btn--dark:hover { background: var(--forest-light); transform: translateY(-1px); }

.btn--light {
    background: var(--white);
    color: var(--forest);
}
.btn--light:hover { background: var(--cream); transform: translateY(-1px); }

.btn--ghost-light {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
}
.btn--ghost-light:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn--ghost-dark {
    background: transparent;
    color: var(--forest);
    border: 1px solid var(--forest);
}
.btn--ghost-dark:hover { background: var(--forest); color: var(--white); }

.btn--sm { padding: 0.625rem 1.25rem; font-size: 0.8125rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ─── HEADER ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(247, 244, 238, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26, 60, 52, 0.08);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(247, 244, 238, 0.95);
    box-shadow: 0 1px 20px rgba(26, 60, 52, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
    gap: var(--space-md);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-shrink: 0;
}

.logo-mark {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--forest);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--forest);
    border-radius: 50%;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--forest);
    letter-spacing: -0.01em;
}

.logo--light .logo-mark { color: var(--white); border-color: var(--white); }
.logo--light .logo-text { color: var(--white); }

/* Nav */
.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    position: relative;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--forest);
    transition: var(--transition);
}

.nav-menu a:hover { color: var(--forest); }
.nav-menu a:hover::after { width: 100%; }

/* Mobile toggle */
.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    position: relative;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: block;
    width: 22px;
    height: 14px;
    position: relative;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--forest);
    transition: var(--transition);
}

.hamburger::before { top: 0; }
.hamburger span { top: 50%; transform: translateY(-50%); }
.hamburger::after { bottom: 0; }

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger span { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--forest-deep);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 37, 32, 0.92) 0%,
        rgba(26, 60, 52, 0.80) 40%,
        rgba(26, 60, 52, 0.55) 100%
    );
}

.hero .container {
    position: relative;
    z-index: 1;
    padding-top: 6rem;
    padding-bottom: var(--space-2xl);
}

.hero-content {
    max-width: 720px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 500;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.hero-headline em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.1875rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: var(--space-xl);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

/* Floating Stat Cards */
.hero-stats {
    position: absolute;
    right: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    min-width: 180px;
    animation: float 6s ease-in-out infinite;
}

.stat-card--1 { animation-delay: 0s; }
.stat-card--2 { animation-delay: -2s; }
.stat-card--3 { animation-delay: -4s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.375rem;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

/* ─── MARQUEE ─── */
.marquee {
    background: var(--forest);
    padding: var(--space-sm) 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: flex;
    gap: var(--space-md);
    animation: marquee 30s linear infinite;
}

.marquee span {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

.dot { color: var(--gold) !important; }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── SERVICES ─── */
.services {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(26, 60, 52, 0.06);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(26, 60, 52, 0.12);
}

.service-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

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

.service-card-body {
    padding: var(--space-md);
}

.service-card-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.service-card-body p {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ─── ABOUT ─── */
.about {
    padding: var(--space-3xl) 0;
    background: var(--cream-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-images {
    position: relative;
    min-height: 600px;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(26, 60, 52, 0.15);
}

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

.about-img-accent {
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 6px solid var(--cream-dark);
    box-shadow: 0 20px 60px rgba(26, 60, 52, 0.12);
}

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

.about-accent-box {
    position: absolute;
    top: -20px;
    right: 30px;
    background: var(--forest);
    color: var(--white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 20px 60px rgba(26, 60, 52, 0.25);
}

.accent-number {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.accent-year {
    display: block;
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    color: var(--white);
}

.accent-text {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.25rem;
}

.about-content { padding-left: var(--space-md); }

.about-body {
    font-size: 1.0625rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: var(--space-md);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    margin-top: var(--space-lg);
}

.value-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--forest);
}

.value-icon {
    color: var(--gold);
    flex-shrink: 0;
}

/* ─── GALLERY ─── */
.gallery {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: var(--space-sm);
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item--wide { grid-column: span 7; }
.gallery-item:not(.gallery-item--wide) { grid-column: span 5; }

/* ─── TESTIMONIALS ─── */
.testimonials {
    padding: var(--space-3xl) 0;
    background: var(--forest);
}

.testimonials .section-eyebrow { color: var(--gold); }
.testimonials .section-title { color: var(--white); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.testimonial-quote {
    color: var(--gold);
    margin-bottom: var(--space-sm);
    opacity: 0.7;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: var(--space-md);
}

.testimonial-footer {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.testimonial-author {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--white);
}

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

/* ─── CTA BANNER ─── */
.cta-banner {
    padding: var(--space-3xl) 0;
    background: var(--cream-dark);
}

.cta-inner {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--forest);
    margin-bottom: var(--space-md);
}

.cta-title em { font-style: italic; color: var(--gold); }

.cta-body {
    font-size: 1.0625rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

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

/* ─── CONTACT ─── */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.contact-intro {
    font-size: 1.0625rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.contact-detail {
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(26, 60, 52, 0.1);
}

.contact-detail dt {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 0.375rem;
}

.contact-detail dt svg { color: var(--gold); }

.contact-detail dd {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.contact-detail dd a {
    color: var(--forest-muted);
    transition: var(--transition);
}

.contact-detail dd a:hover { color: var(--forest); }

/* Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid rgba(26, 60, 52, 0.06);
    box-shadow: 0 20px 60px rgba(26, 60, 52, 0.06);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 0.375rem;
}

.form-sub {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: var(--space-lg);
}

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

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--text-dark);
    background: var(--cream-light);
    border: 1.5px solid rgba(26, 60, 52, 0.12);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--forest);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(26, 60, 52, 0.08);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: var(--space-md);
    background: rgba(26, 60, 52, 0.06);
    border-radius: var(--radius-sm);
    margin-top: var(--space-md);
    font-weight: 500;
    color: var(--forest);
}

.form-success svg { color: var(--forest-muted); flex-shrink: 0; }

/* ─── FOOTER ─── */
.site-footer {
    background: var(--forest-deep);
    color: var(--white);
    padding: var(--space-2xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-top: var(--space-sm);
    max-width: 300px;
}

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

.footer-nav ul { display: flex; flex-direction: column; gap: 0.625rem; }

.footer-nav a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition);
}

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

.footer-contact p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 0.375rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition);
}

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

.footer-bottom {
    padding-top: var(--space-md);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ─── MOBILE NAV OVERLAY ─── */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 37, 32, 0.95);
    backdrop-filter: blur(12px);
    z-index: 999;
    align-items: center;
    justify-content: center;
}

.nav-overlay.active { display: flex; }

.nav-overlay .nav-menu {
    flex-direction: column;
    gap: var(--space-lg);
    text-align: center;
}

.nav-overlay .nav-menu a {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--white);
}

.nav-overlay .nav-menu a:hover { color: var(--gold); }

.nav-overlay .btn--light { margin-top: var(--space-md); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-stats { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid .testimonial-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .header-inner .btn { display: none; }

    .hero { min-height: 100svh; }
    .hero-headline { font-size: clamp(2.25rem, 10vw, 3.5rem); }

    .services-grid { grid-template-columns: 1fr; }
    .service-card-img { height: 200px; }

    .about-grid { grid-template-columns: 1fr; }
    .about-images { min-height: 400px; margin-bottom: var(--space-xl); }
    .about-img-accent { right: -10px; bottom: -20px; }
    .about-content { padding-left: 0; }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-item--wide { grid-column: span 2; }
    .gallery-item:not(.gallery-item--wide) { grid-column: span 1; }

    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonials-grid .testimonial-card:last-child { grid-column: span 1; max-width: 100%; }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-details { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; justify-content: center; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item--wide { grid-column: span 1; }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .marquee-track { animation: none; }
}
