/* ==========================================================================
   Roy Rosales Real Estate Group — Desert Modern Luxury
   Color Palette: Deep Charcoal + Warm Gold + Desert Sand
   Typography: Syne (headlines) + DM Sans (body)
   ========================================================================== */

:root {
    --charcoal: #1c1c1e;
    --charcoal-light: #2a2a2e;
    --charcoal-mid: #232326;
    --gold: #c4a469;
    --gold-light: #d4b87a;
    --gold-dark: #a8884f;
    --sand: #d2bea0;
    --sand-light: #e8ddd0;
    --cream: #f5f0e8;
    --white: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.45);
    --section-dark: #1a1a1c;
    --section-mid: #222224;
    --card-bg: rgba(255, 255, 255, 0.04);
    --card-border: rgba(196, 164, 105, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--charcoal);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================================================
   Custom Scrollbar (desktop)
   ========================================================================== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--charcoal);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 24px;
    transition: all var(--transition);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(28, 28, 30, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 24px;
    box-shadow: 0 1px 0 rgba(196, 164, 105, 0.1);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-logo img {
    height: 48px;
    width: auto;
    transition: height var(--transition);
}

.site-header.scrolled .header-logo img {
    height: 38px;
}

.header-nav {
    display: flex;
    gap: 32px;
}

.header-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color var(--transition);
    position: relative;
}

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

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

.header-nav a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gold);
    color: var(--charcoal);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all var(--transition);
    white-space: nowrap;
}

.header-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(196, 164, 105, 0.3);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(196, 164, 105, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(210, 190, 160, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(196, 164, 105, 0.05) 0%, transparent 40%),
        linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(196, 164, 105, 0.015) 2px,
            rgba(196, 164, 105, 0.015) 4px
        );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(196, 164, 105, 0.1);
    border: 1px solid rgba(196, 164, 105, 0.25);
    border-radius: 100px;
    margin-bottom: 32px;
    animation: fadeSlideUp 0.8s ease-out;
}

.badge-stars {
    display: flex;
    gap: 2px;
}

.badge-count {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--sand-light);
    letter-spacing: 0.04em;
}

/* Hero title */
.hero-title {
    font-family: 'Syne', sans-serif;
    margin-bottom: 24px;
    animation: fadeSlideUp 0.8s ease-out 0.15s both;
}

.hero-title-line {
    display: block;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--white);
}

.hero-title-accent {
    display: block;
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
    animation: fadeSlideUp 0.8s ease-out 0.3s both;
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
    animation: fadeSlideUp 0.8s ease-out 0.45s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold);
    color: var(--charcoal);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196, 164, 105, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--sand-light);
    border: 1px solid rgba(196, 164, 105, 0.35);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-pulse {
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(196, 164, 105, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(196, 164, 105, 0); }
}

/* Hero trust bar */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s ease-out 0.6s both;
}

.trust-item {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
}

.trust-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold-dark);
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats-bar {
    background: var(--gold);
    padding: 40px 24px;
    position: relative;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.05), transparent, rgba(0,0,0,0.05));
}

.stats-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
    position: relative;
}

.stat-number {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1;
}

.stat-suffix {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--charcoal);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(28, 28, 30, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

/* ==========================================================================
   SECTION COMMON
   ========================================================================== */
.section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 1px;
    background: var(--gold);
}

.section-tag-center {
    display: block;
    text-align: center;
    padding-left: 0;
}

.section-tag-center::before {
    display: none;
}

.section-heading {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.section-heading em {
    font-style: normal;
    color: var(--gold);
}

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

/* ==========================================================================
   WHY SECTION
   ========================================================================== */
.why-section {
    padding: 100px 0;
    background: var(--section-dark);
    position: relative;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--card-border), transparent);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.75;
}

.why-highlights {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 164, 105, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(196, 164, 105, 0.15);
}

.highlight strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
}

.highlight p {
    font-size: 0.9rem !important;
    color: var(--text-muted) !important;
    margin-bottom: 0 !important;
}

.why-image {
    position: relative;
}

.why-image img {
    border-radius: 12px;
    width: 100%;
    height: auto;
}

.why-image-accent {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(196, 164, 105, 0.2);
    border-radius: 12px;
    z-index: -1;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-section {
    padding: 100px 0;
    background: var(--charcoal);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 0%, rgba(196, 164, 105, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 100%, rgba(196, 164, 105, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    position: relative;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 36px 28px;
    transition: all var(--transition);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover {
    background: rgba(196, 164, 105, 0.06);
    border-color: rgba(196, 164, 105, 0.3);
    transform: translateY(-4px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    margin-bottom: 20px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 164, 105, 0.08);
    border-radius: 12px;
}

.service-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

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

/* ==========================================================================
   PHOTO BAND
   ========================================================================== */
.photo-band {
    overflow: hidden;
    background: var(--section-dark);
    padding: 4px 0;
}

.photo-grid {
    display: flex;
    gap: 4px;
    animation: scrollPhotos 30s linear infinite;
    width: max-content;
}

.photo-grid img {
    width: 320px;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

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

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--section-mid);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(196, 164, 105, 0.04), transparent 60%);
    pointer-events: none;
}

/* Featured testimonial */
.featured-testimonial {
    max-width: 800px;
    margin: 48px auto 40px;
    text-align: center;
    position: relative;
    padding: 48px 40px;
    background: rgba(196, 164, 105, 0.04);
    border: 1px solid rgba(196, 164, 105, 0.12);
    border-radius: 16px;
}

.ft-quote-mark {
    margin-bottom: 16px;
}

.ft-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--sand-light);
    font-style: italic;
    margin-bottom: 24px;
}

.ft-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.ft-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 4px;
}

.ft-name {
    font-size: 1rem;
    color: var(--white);
}

.ft-time {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Testimonial cards */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 28px;
}

.tc-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.tc-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tc-author strong {
    font-size: 0.9rem;
}

.tc-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.reviews-cta {
    text-align: center;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-section {
    padding: 100px 0;
    background: var(--section-dark);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--card-border), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    transition: all var(--transition);
}

a.contact-item:hover {
    border-color: var(--gold);
    background: rgba(196, 164, 105, 0.06);
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 164, 105, 0.1);
    border-radius: 10px;
}

.contact-item strong {
    display: block;
    font-size: 0.95rem;
}

.contact-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.map-link {
    display: block;
    height: 100%;
    min-height: 320px;
}

.map-placeholder {
    height: 100%;
    min-height: 320px;
    background:
        radial-gradient(ellipse at center, rgba(196, 164, 105, 0.08), transparent),
        var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: all var(--transition);
}

.map-placeholder span {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 500;
}

.map-placeholder:hover {
    border-color: var(--gold);
    background: rgba(196, 164, 105, 0.08);
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta {
    padding: 80px 0;
    background: var(--gold);
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.08), transparent, rgba(0,0,0,0.05));
}

.final-cta .section-inner {
    position: relative;
}

.final-cta h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.final-cta p {
    color: rgba(28, 28, 30, 0.7);
    font-size: 1.1rem;
    margin-bottom: 28px;
}

.final-cta .btn-gold {
    background: var(--charcoal);
    color: var(--gold);
}

.final-cta .btn-gold:hover {
    background: var(--charcoal-light);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--section-dark);
    padding: 60px 24px 0;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196,164,105,0.2), transparent);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand img {
    height: 50px;
    width: auto;
    margin-bottom: 12px;
    opacity: 0.8;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-links a,
.footer-contact a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FLOATING CTA
   ========================================================================== */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    width: 56px;
    height: 56px;
    background: var(--gold);
    color: var(--charcoal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(196, 164, 105, 0.4);
    transition: all var(--transition);
    animation: pulse 2.5s infinite;
}

.floating-cta:hover {
    transform: scale(1.1);
}

.floating-cta.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   SVG SECTION DIVIDER
   ========================================================================== */
.services-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--section-dark));
    pointer-events: none;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-image {
        order: -1;
    }

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

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

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .header-cta span {
        display: none;
    }

    .header-cta {
        padding: 10px;
        border-radius: 50%;
    }

    .hero {
        min-height: 90vh;
        padding: 100px 20px 60px;
    }

    .hero-title-line {
        font-size: 2.8rem;
    }

    .hero-title-accent {
        font-size: 1.3rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
        max-width: 320px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 8px;
    }

    .trust-divider {
        display: none;
    }

    .stats-inner {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .why-section,
    .services-section,
    .testimonials-section,
    .contact-section {
        padding: 70px 0;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 24px 20px;
    }

    /* Photo band mobile: 2-col grid */
    .photo-band {
        padding: 4px;
    }

    .photo-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px;
        animation: none;
        width: auto;
    }

    .photo-grid img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }

    .photo-grid .scroll-dupe {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .featured-testimonial {
        padding: 32px 24px;
    }

    .ft-text {
        font-size: 1rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title-line {
        font-size: 2.2rem;
    }

    .hero-title-accent {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .section-heading {
        font-size: 1.8rem;
    }
}

/* Print */
@media print {
    .site-header,
    .floating-cta,
    .photo-band {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .hero {
        min-height: auto;
        padding: 20px;
    }

    .hero-bg, .hero-overlay {
        display: none;
    }
}
