/* Melrose Gold Buyers — Lime Green Theme */

:root {
    --lime: #84CC16;
    --lime-light: #BEF264;
    --lime-dark: #65A30D;
    --lime-glow: rgba(132, 204, 22, 0.45);
    --lime-soft: rgba(132, 204, 22, 0.14);
    --lime-border: rgba(132, 204, 22, 0.35);
    --black: #080808;
    --dark: #0F0F0F;
    --dark-elevated: #1A1A1A;
    --surface: #F7FAF2;
    --surface-alt: #EEF5E4;
    --white: #FFFFFF;
    --text: #141414;
    --text-muted: #525252;
    --text-soft: #737373;
    --text-inverse: #E5E5E5;
    --border: rgba(0, 0, 0, 0.08);
    --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius-sm: 10px;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.22);
    --header-h: 88px;
    --header-logo-size: 72px;
    --footer-logo-size: 56px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-apple: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --duration-fast: 0.4s;
    --duration-medium: 0.75s;
    --duration-slow: 1.1s;
    --reveal-distance: 48px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: clip;
    max-width: 100%;
}

@media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
    max-width: 100%;
    width: 100%;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
svg { display: block; max-width: 100%; }

a { color: var(--lime-dark); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--lime); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.625rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.35rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-accent, .text-gold { color: var(--lime-light); }

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    padding: 0.75rem 1.25rem;
    background: var(--lime);
    color: var(--black);
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.skip-link:focus { top: 1rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.625rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1;
    border: 2px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--lime-light), var(--lime), var(--lime-dark));
    color: var(--black);
    box-shadow: 0 4px 20px var(--lime-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--lime-glow);
    color: var(--black);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--lime-light);
    border-color: var(--lime-border);
}

.btn-secondary:hover { background: var(--lime-soft); color: var(--lime-light); }

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: var(--lime-light);
    color: var(--lime-light);
    background: var(--lime-soft);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text);
    border-color: rgba(0, 0, 0, 0.15);
}

.btn-outline-dark:hover {
    border-color: var(--lime-dark);
    color: var(--lime-dark);
    background: var(--lime-soft);
}

.btn-white {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-white:hover { background: var(--surface); color: var(--black); transform: translateY(-2px); }

.btn-sm { padding: 0.625rem 1.125rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(8, 8, 8, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: height 0.55s var(--ease-apple), background 0.55s var(--ease-apple), box-shadow 0.55s var(--ease-apple), border-color 0.55s var(--ease-apple), transform 0.55s var(--ease-apple);
    will-change: background, box-shadow;
}

/* Blur on pseudo-element so fixed mobile nav is not trapped in the header box */
.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: opacity 0.3s var(--ease);
}

.site-header-over-slider {
    background: transparent;
    border-bottom-color: transparent;
}

.site-header-over-slider::before {
    opacity: 0;
}

.site-header-over-slider.scrolled,
.site-header.scrolled {
    background: rgba(8, 8, 8, 0.96);
    border-bottom-color: rgba(132, 204, 22, 0.15);
    box-shadow: var(--shadow-lg);
}

.site-header-over-slider.scrolled::before,
.site-header.scrolled::before {
    opacity: 1;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    flex-shrink: 0;
}

.site-header .logo-mark {
    position: relative;
    isolation: isolate;
    width: var(--header-logo-size);
    height: var(--header-logo-size);
    flex-shrink: 0;
    perspective: 900px;
    overflow: hidden;
}

/* Orbiting light accent */
.site-header .logo-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22%;
    height: 22%;
    margin: -11% 0 0 -11%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(190, 242, 98, 0.95) 0%, transparent 72%);
    filter: blur(3px);
    animation: logoOrbOrbit 7s linear infinite;
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: screen;
}

.logo-mark svg,
.logo-mark .logo-img,
.logo-mark img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: var(--radius-sm);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform, filter;
}

.js-ready .site-header .logo-mark .logo-img {
    animation: logoReveal 1s var(--ease-apple) both, logoTilt3d 7s ease-in-out 1s infinite;
}

.site-header .logo:hover .logo-mark::after {
    animation-duration: 4s;
    filter: blur(2px);
}

.site-header .logo:hover .logo-mark .logo-img {
    animation: logoTilt3dHover 3.5s ease-in-out infinite;
}

@keyframes logoReveal {
    from {
        opacity: 0;
        transform: perspective(700px) rotateX(22deg) rotateY(-28deg) scale(0.86);
        filter: blur(10px) brightness(1.15);
    }
    to {
        opacity: 1;
        transform: perspective(700px) rotateX(0deg) rotateY(0deg) scale(1);
        filter: blur(0) brightness(1);
    }
}

@keyframes logoTilt3d {
    0%, 100% {
        transform: perspective(700px) rotateX(7deg) rotateY(-9deg) translateZ(0);
    }
    33% {
        transform: perspective(700px) rotateX(-5deg) rotateY(11deg) translateZ(6px);
    }
    66% {
        transform: perspective(700px) rotateX(4deg) rotateY(-7deg) translateZ(3px);
    }
}

@keyframes logoTilt3dHover {
    0%, 100% {
        transform: perspective(700px) rotateX(10deg) rotateY(-12deg) scale(1.05) translateZ(8px);
    }
    50% {
        transform: perspective(700px) rotateX(-8deg) rotateY(14deg) scale(1.08) translateZ(12px);
    }
}

@keyframes logoOrbOrbit {
    from { transform: rotate(0deg) translateX(62%) rotate(0deg); }
    to { transform: rotate(360deg) translateX(62%) rotate(-360deg); }
}

html.motion-reduced .site-header .logo-mark::after {
    animation: none;
    opacity: 0;
}

html.motion-reduced .site-header .logo-mark .logo-img {
    animation: none !important;
    filter: none !important;
    transform: none !important;
}

.logo-text { display: flex; flex-direction: column; gap: 0.1rem; }

.logo-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}

.site-header .logo-name { font-size: 1.25rem; }
.site-header .logo-tagline { font-size: 0.6875rem; }

.logo-tagline {
    font-size: 0.6875rem;
    color: var(--lime-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
}

.main-nav { display: flex; }

.nav-list { display: flex; list-style: none; gap: 0.25rem; }

.nav-list a {
    display: block;
    padding: 0.5rem 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 999px;
    transition: all 0.2s var(--ease);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--lime-light);
    background: var(--lime-soft);
}

.header-actions { display: flex; align-items: center; gap: 0.75rem; }

.header-phone {
    display: none;
    align-items: center;
    gap: 0.4rem;
    color: var(--lime-light);
    font-size: 0.875rem;
    font-weight: 600;
}

.header-phone:hover { color: var(--lime); }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.25s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 560px;
    max-height: 900px;
    overflow: hidden;
    background: var(--black);
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.1s var(--ease-apple), visibility 1.1s var(--ease-apple);
    z-index: 1;
}

.slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.12);
    transition: transform 1.4s var(--ease-apple), opacity 1.1s var(--ease-apple);
    will-change: transform;
}

.slide.is-active .slide-bg {
    transform: scale(1);
}

.slide.is-active.slide-animate-in .slide-bg {
    animation: heroKenBurns 9s var(--ease-out-smooth) forwards;
}

@keyframes heroKenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.07); }
}

.cta-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(8, 8, 8, 0.88) 0%,
        rgba(8, 8, 8, 0.65) 45%,
        rgba(8, 8, 8, 0.35) 100%
    );
    transition: opacity 1s var(--ease-apple);
}

.slide:not(.is-active) .slide-overlay { opacity: 0.6; }

.slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--header-h);
    padding-bottom: 5rem;
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    padding: 0.45rem 1rem 0.45rem 0.75rem;
    background: var(--lime-soft);
    border: 1px solid var(--lime-border);
    border-radius: 999px;
    color: var(--lime-light);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 1.25rem;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--lime-light);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--lime);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.45; }
}

.slide-content h1,
.slide-content h2.slide-heading {
    color: var(--white);
    margin-bottom: 1rem;
}

.slide-content h1 .text-accent,
.slide-content h2.slide-heading .text-accent {
    display: block;
    margin-top: 0.2rem;
    background: linear-gradient(135deg, #D9F99D, var(--lime-light), var(--lime));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 540px;
    margin-bottom: 1.75rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-actions.centered { justify-content: center; }

/* Hero slide content entrance */
.slide-content > * {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s var(--ease-apple), transform 0.9s var(--ease-apple);
}

.slide.is-active.slide-animate-in .slide-content > .hero-badge {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.08s;
}

.slide.is-active.slide-animate-in .slide-content > h1,
.slide.is-active.slide-animate-in .slide-content > h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.18s;
}

.slide.is-active.slide-animate-in .slide-content > .slide-desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.28s;
}

.slide.is-active.slide-animate-in .slide-content > .hero-actions {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.38s;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.25s var(--ease);
}

.slider-btn:hover {
    background: var(--lime);
    border-color: var(--lime);
    color: var(--black);
}

.slider-prev { left: 1.25rem; }
.slider-next { right: 1.25rem; }

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    padding: 0;
    transition: all 0.25s var(--ease);
}

.slider-dot.is-active {
    background: var(--lime-light);
    width: 28px;
    border-radius: 999px;
    box-shadow: 0 0 12px var(--lime-glow);
}

/* Hero stats */
.hero-stats {
    background: var(--dark);
    border-bottom: 3px solid var(--lime);
}

.hero-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1.25rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem;
    background: var(--dark-elevated);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-thumb {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--lime-border);
}

.stat-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lime-light);
    line-height: 1.2;
}

.stat-item span {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

/* Sections */
.section { padding: 5rem 0; }

.section-dark {
    background: var(--dark);
    color: var(--text-inverse);
}

.section-dark h2, .section-dark h3 { color: var(--white); }
.section-alt { background: var(--surface); }

.section-header { margin-bottom: 3rem; max-width: 620px; }

.section-header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    color: var(--lime-dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.875rem;
}

.section-dark .section-label { color: var(--lime); }

.section-header p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    margin-top: 0.875rem;
}

.section-dark .section-header p { color: rgba(255, 255, 255, 0.55); }
.section-cta { text-align: center; margin-top: 3rem; }

.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Feature cards with images */
.feature-card {
    background: var(--dark-elevated);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.feature-img-wrap {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.feature-card:hover .feature-img { transform: scale(1.06); }

.feature-card h3 {
    padding: 1.25rem 1.25rem 0.375rem;
    color: var(--white);
}

.feature-card p {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.55);
}

/* Buy cards with images */
.buy-card-image {
    padding: 0;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
}

.buy-card-image:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--lime-border);
}

.buy-card-img-wrap {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.buy-card-img-wrap-lg { aspect-ratio: 16 / 9; }

.buy-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.buy-card-image:hover .buy-card-img { transform: scale(1.05); }

.buy-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.buy-card-body h2, .buy-card-body h3 { margin-bottom: 0.5rem; }
.buy-card-body p { font-size: 0.9375rem; color: var(--text-muted); margin: 0; }

.buy-card-lg .buy-card-body { padding: 1.5rem 1.75rem 1.75rem; }

/* Process cards */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.process-grid-detailed { grid-template-columns: repeat(2, 1fr); }

.process-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.process-card-img-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.process-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-badge {
    position: absolute;
    top: 0.875rem;
    left: 0.875rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lime);
    color: var(--black);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 4px 12px var(--lime-glow);
}

.process-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.process-card-body h2, .process-card-body h3 { margin-bottom: 0.5rem; }
.process-card-body p { font-size: 0.9375rem; color: var(--text-muted); margin: 0; }

.process-card-lg .process-card-body h2 { font-size: 1.375rem; }

/* Location */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.location-desc {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.65);
}

.location-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 2px solid var(--lime-border);
}

.location-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.info-cards { display: flex; flex-direction: column; gap: 0.875rem; margin-bottom: 1.5rem; }

.info-card {
    padding: 1rem 1.25rem;
    background: var(--dark-elevated);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--lime);
    border-radius: var(--radius-sm);
}

.info-card strong {
    display: block;
    color: var(--lime-light);
    margin-bottom: 0.25rem;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.info-card p { font-size: 0.9375rem; margin-bottom: 0.25rem; color: rgba(255, 255, 255, 0.7); }
.info-card a { font-size: 0.875rem; font-weight: 600; color: var(--lime-light); }

.hours-badge {
    display: inline-block;
    padding: 0.35rem 0.875rem;
    background: var(--lime-soft);
    border-radius: 999px;
    font-weight: 600;
    color: var(--lime-light);
    font-size: 0.875rem;
}

.service-areas { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.service-areas strong { color: var(--white); font-size: 0.875rem; }

.area-tag {
    padding: 0.35rem 0.875rem;
    background: rgba(132, 204, 22, 0.1);
    border: 1px solid var(--lime-border);
    border-radius: 999px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.75);
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 420px;
    border: 2px solid var(--lime-border);
    box-shadow: var(--shadow-lg);
}

.location-map iframe { display: block; width: 100%; min-height: 420px; }
.location-map-full { max-width: 100%; }

/* CTA banner */
.cta-banner {
    position: relative;
    padding: 4.5rem 0;
    overflow: hidden;
    transition: padding 0.5s var(--ease-apple);
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
}

.cta-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-banner-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(101, 163, 13, 0.92), rgba(132, 204, 22, 0.85));
}

.cta-banner-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-banner-text h2 { color: var(--black); margin-bottom: 0.5rem; }
.cta-banner-text p { color: rgba(0, 0, 0, 0.65); font-size: 1.0625rem; }
.cta-banner-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Page hero */
.page-hero {
    padding: calc(var(--header-h) + 3.5rem) 0 3rem;
    background: var(--black);
    text-align: center;
    position: relative;
}

.page-hero-image {
    padding: calc(var(--header-h) + 4rem) 0 3.5rem;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,8,8,0.7) 0%, rgba(8,8,8,0.88) 100%);
    transition: opacity 0.8s var(--ease-apple);
}

.page-hero-image .container { position: relative; z-index: 2; }

.page-hero h1 { color: var(--white); margin-bottom: 1rem; }

.page-hero-lead {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.75;
}

.page-hero-image .section-label { color: var(--lime-light); }

/* Two col with images */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }

.col-image-block .col-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 1.25rem;
    border: 2px solid var(--lime-border);
}

.check-list { list-style: none; }

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 1rem;
}

.check-list .check { color: var(--lime-dark); font-weight: 700; flex-shrink: 0; }

.centered-content { text-align: center; max-width: 640px; margin: 0 auto; }
.centered-content .lead { font-size: 1.125rem; color: rgba(255,255,255,0.65); margin-bottom: 2rem; }

/* Promise cards */
.promise-card-image {
    padding: 0;
    overflow: hidden;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.promise-card-image:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.promise-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.promise-card-image h3 {
    padding: 1.25rem 1.25rem 0.375rem;
    color: var(--lime-dark);
}

.promise-card-image p {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition:
        border-color 0.4s var(--ease-apple),
        box-shadow 0.4s var(--ease-apple),
        transform 0.4s var(--ease-apple);
}

.faq-item[open] {
    box-shadow: var(--shadow-sm);
    border-color: rgba(132, 204, 22, 0.25);
}

.faq-item summary {
    padding: 1.125rem 1.25rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: color 0.35s var(--ease-apple);
}

.faq-item summary h3 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
    flex: 1;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.375rem;
    color: var(--lime-dark);
    font-weight: 400;
    flex-shrink: 0;
    transition: transform 0.45s var(--ease-apple), color 0.35s var(--ease-apple);
}

.faq-item[open] summary::after { content: '−'; transform: rotate(180deg); }
.faq-item[open] summary { border-bottom: 1px solid var(--border); }

.faq-item p {
    padding: 1rem 1.25rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
    animation: faqOpen 0.55s var(--ease-apple) both;
}

@keyframes faqOpen {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 3rem;
    align-items: start;
}

.contact-cards { display: flex; flex-direction: column; gap: 0.875rem; margin-bottom: 2rem; }

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    transition: all 0.25s var(--ease);
    border: 1px solid var(--border);
}

.contact-card:hover {
    border-color: var(--lime-border);
    box-shadow: var(--shadow);
    color: inherit;
    transform: translateX(4px);
}

.contact-card-highlight {
    background: linear-gradient(135deg, rgba(132,204,22,0.14), rgba(132,204,22,0.05));
    border-color: var(--lime-border);
}

.contact-card-image .contact-card-thumb {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--lime-border);
}

.contact-hero-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 2.5rem;
    border: 2px solid var(--lime-border);
    box-shadow: var(--shadow);
}

.contact-hero-img img {
    width: 100%;
    aspect-ratio: 21 / 6;
    object-fit: cover;
}

.contact-card strong {
    display: block;
    font-size: 0.75rem;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.25rem;
}

.contact-value { font-size: 1rem; font-weight: 600; color: var(--text); }

.social-section h3 { margin-bottom: 1rem; font-family: var(--font-body); font-size: 1rem; }

.social-links { display: flex; gap: 0.625rem; }

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.25s var(--ease);
}

.social-links a:hover { background: var(--lime); color: var(--black); border-color: var(--lime); }

.social-links-lg { flex-wrap: wrap; }

.social-btn {
    padding: 0.625rem 1.125rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    transition: all 0.25s var(--ease);
}

.social-btn:hover { background: var(--lime); color: var(--black); border-color: var(--lime); }

.contact-form-section {
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.contact-form-section h2 { margin-bottom: 0.5rem; }
.contact-form-section > p { color: var(--text-muted); margin-bottom: 1.75rem; }

.google-form-embed {
    --form-height: 980px;
    height: var(--form-height);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.google-form-embed::-webkit-scrollbar {
    display: none;
}

/* Wider iframe + clip hides Google’s inner vertical scrollbar */
.google-form-embed iframe {
    display: block;
    width: calc(100% + 18px);
    height: var(--form-height);
    max-height: var(--form-height);
    margin-right: -18px;
    border: 0;
    overflow: hidden;
}

.google-form-fallback {
    margin-top: 1rem;
    margin-bottom: 0;
    text-align: center;
}

.contact-form { display: flex; flex-direction: column; gap: 1.125rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.125rem; }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.required { color: #DC2626; }

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
    background: var(--white);
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--lime);
    box-shadow: 0 0 0 3px rgba(132, 204, 22, 0.2);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-success {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-lg);
}

.form-success svg { color: #16A34A; margin: 0 auto 1rem; }
.form-success h3 { margin-bottom: 0.5rem; }

.form-error {
    padding: 1rem 1.25rem;
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: var(--radius-sm);
    color: #DC2626;
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
}

/* Footer */
.site-footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.5);
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--lime-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.25fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-name { font-size: 1.2rem; }

.logo-footer .logo-mark {
    width: var(--footer-logo-size);
    height: var(--footer-logo-size);
}

.footer-desc {
    margin: 1.25rem 0;
    font-size: 0.9375rem;
    line-height: 1.75;
    max-width: 320px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 1.125rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.625rem; font-size: 0.9375rem; }
.footer-col a { color: rgba(255, 255, 255, 0.5); }
.footer-col a:hover { color: var(--lime-light); }
.footer-col address { font-style: normal; }
.footer-col address p { margin-bottom: 0.5rem; font-size: 0.9375rem; }
.footer-col address a { color: rgba(255, 255, 255, 0.72); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8125rem;
}

/* SEO content block */
.seo-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.seo-content p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.seo-content p:last-child { margin-bottom: 0; }

.seo-content a { font-weight: 600; }

.landing-content-left { text-align: left; }

.landing-link-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.875rem;
}

.landing-link-grid-wide {
    grid-template-columns: repeat(4, 1fr);
}

.landing-link-card {
    display: block;
    padding: 1rem 1.125rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: border-color 0.35s var(--ease-apple), transform 0.35s var(--ease-apple), box-shadow 0.35s var(--ease-apple);
}

.landing-link-card:hover {
    color: var(--lime-dark);
    border-color: var(--lime-border);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.landing-link-card-accent {
    background: var(--lime-soft);
    border-color: var(--lime-border);
    color: var(--lime-dark);
}

.section-dark .landing-link-card {
    background: var(--dark-elevated);
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
}

.section-dark .landing-link-card:hover {
    color: var(--lime-light);
    border-color: var(--lime-border);
}

@media (max-width: 1024px) {
    .landing-link-grid-wide { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .landing-link-grid,
    .landing-link-grid-wide { grid-template-columns: 1fr; }
}

/* Mobile CTA */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 998;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--lime-light), var(--lime));
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--black);
    box-shadow: 0 6px 24px var(--lime-glow);
    transition: transform 0.25s var(--ease);
}

.mobile-cta:hover { transform: scale(1.06); color: var(--black); }

/* ─── Apple-style motion & scroll reveals ─── */

.js-ready main {
    animation: pageEnter 0.9s var(--ease-apple) both;
}

@keyframes pageEnter {
    from { opacity: 0; }
    to { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(var(--reveal-distance));
    transition:
        opacity var(--duration-slow) var(--ease-apple),
        transform var(--duration-slow) var(--ease-apple);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-fade {
    opacity: 0;
    transform: none;
    transition: opacity var(--duration-medium) var(--ease-apple);
}

.reveal-fade.is-visible { opacity: 1; }

.reveal-scale {
    opacity: 0;
    transform: scale(0.94);
    transition:
        opacity var(--duration-slow) var(--ease-apple),
        transform var(--duration-slow) var(--ease-apple);
}

.reveal-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition:
        opacity var(--duration-slow) var(--ease-apple),
        transform var(--duration-slow) var(--ease-apple);
}

.reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition:
        opacity var(--duration-slow) var(--ease-apple),
        transform var(--duration-slow) var(--ease-apple);
}

.reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 400ms; }
.reveal-stagger > .reveal:nth-child(n+7) { transition-delay: 480ms; }

.section {
    transition: background-color 0.6s var(--ease-apple);
}

.section-header.reveal.is-visible .section-label {
    animation: labelIn 0.8s var(--ease-apple) both;
}

@keyframes labelIn {
    from { opacity: 0; letter-spacing: 0.2em; }
    to { opacity: 1; letter-spacing: 0.12em; }
}

.feature-card,
.buy-card-image,
.process-card,
.promise-card-image,
.contact-card-image,
.stat-item,
.info-card {
    transition:
        transform 0.55s var(--ease-apple),
        box-shadow 0.55s var(--ease-apple),
        border-color 0.55s var(--ease-apple);
}

.feature-card:hover,
.buy-card-image:hover,
.process-card:hover,
.promise-card-image:hover {
    transform: translateY(-6px);
}

.stat-item:hover {
    transform: translateY(-3px);
    border-color: rgba(132, 204, 22, 0.2);
}

.btn {
    transition:
        transform 0.35s var(--ease-apple),
        box-shadow 0.35s var(--ease-apple),
        background 0.35s var(--ease-apple),
        border-color 0.35s var(--ease-apple),
        color 0.25s var(--ease-apple);
}

.btn:active { transform: scale(0.97) translateY(0); }

.btn-primary:hover { transform: translateY(-3px); }
.btn-white:hover { transform: translateY(-3px); }

.nav-list a {
    transition:
        color 0.3s var(--ease-apple),
        background 0.3s var(--ease-apple),
        transform 0.3s var(--ease-apple);
}

.nav-list a:hover { transform: translateY(-1px); }

.logo {
    transition: transform 0.45s var(--ease-apple), opacity 0.45s var(--ease-apple);
}

.logo:hover { transform: scale(1.02); }

.page-hero-bg,
.cta-banner-bg img,
.location-img,
.col-img,
.contact-hero-img img {
    transition: transform 0.8s var(--ease-apple);
    will-change: transform;
}

.parallax-wrap {
    overflow: hidden;
}

.cta-banner-inner.reveal.is-visible {
    animation: ctaIn 0.9s var(--ease-apple) both;
}

@keyframes ctaIn {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.site-footer {
    transition: border-color 0.6s var(--ease-apple);
}

.footer-col a,
.social-links a {
    transition:
        color 0.35s var(--ease-apple),
        transform 0.35s var(--ease-apple),
        background 0.35s var(--ease-apple);
}

.social-links a:hover { transform: translateY(-2px); }

.mobile-cta {
    transition:
        transform 0.4s var(--ease-apple),
        box-shadow 0.4s var(--ease-apple);
}

.slider-dot {
    transition:
        transform 0.4s var(--ease-apple),
        background 0.4s var(--ease-apple),
        width 0.4s var(--ease-apple);
}

.slider-dot.is-active { transform: scale(1.15); }

.slider-btn {
    transition:
        background 0.35s var(--ease-apple),
        transform 0.35s var(--ease-apple),
        opacity 0.35s var(--ease-apple);
}

.slider-btn:hover { transform: translateY(-50%) scale(1.08); }

.area-tag {
    transition:
        transform 0.35s var(--ease-apple),
        background 0.35s var(--ease-apple),
        border-color 0.35s var(--ease-apple);
}

.area-tag:hover { transform: translateY(-2px); }

.hero-stats {
    transition: transform 0.6s var(--ease-apple);
}

html.motion-reduced .reveal,
html.motion-reduced .reveal-fade,
html.motion-reduced .reveal-scale,
html.motion-reduced .reveal-left,
html.motion-reduced .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
}

html.motion-reduced .slide-bg,
html.motion-reduced .slide-content > *,
html.motion-reduced main {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
}

html.motion-reduced .page-hero-bg,
html.motion-reduced .cta-banner-bg img {
    transform: none !important;
}

/* Responsive */
@media (min-width: 900px) {
    .header-phone { display: inline-flex; }
}

@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root {
        --header-h: 188px;
        --header-logo-size: 120px;
        --mobile-space: 1rem;
    }

    main,
    .site-header,
    .hero-slider,
    .container {
        max-width: 100%;
        overflow-x: clip;
    }

    .site-header {
        width: 100%;
    }

    .hero-stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--mobile-space);
        padding: var(--mobile-space);
    }

    .stat-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.625rem;
        padding: 0.875rem 0.625rem;
    }

    .stat-thumb {
        width: 48px;
        height: 48px;
    }

    .stat-item strong { font-size: 1.0625rem; }
    .stat-item span { font-size: 0.75rem; }

    .site-header-over-slider {
        background: rgba(8, 8, 8, 0.96);
        border-bottom-color: rgba(132, 204, 22, 0.15);
        box-shadow: var(--shadow-lg);
    }

    .site-header-over-slider::before {
        opacity: 1;
    }

    .site-header.scrolled {
        --header-h: 80px;
        --header-logo-size: 58px;
    }

    .header-inner {
        position: relative;
        display: grid;
        grid-template-columns: 48px 1fr 48px;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding-inline: 0;
        padding-block: 0.75rem;
    }

    .site-header .logo {
        grid-column: 2;
        grid-row: 1;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        max-width: 100%;
        text-align: center;
        transition: gap 0.55s var(--ease-apple), transform 0.55s var(--ease-apple);
    }

    .site-header.scrolled .header-inner {
        grid-template-columns: 1fr auto;
        align-items: center;
        padding-block: 0.625rem;
    }

    .site-header.scrolled .logo {
        grid-column: 1;
        flex-direction: row;
        gap: 0.625rem;
        max-width: calc(100% - 3.25rem);
        text-align: left;
    }

    /* Remove old balance pseudo — grid handles centering */
    .header-inner::before {
        display: none;
    }

    .header-actions {
        grid-column: 3;
        grid-row: 1;
        position: relative;
        top: auto;
        right: auto;
        justify-self: end;
        align-self: center;
        transform: none;
    }

    .site-header.scrolled .header-actions {
        grid-column: 2;
        align-self: center;
    }

    .site-header .logo-mark {
        width: var(--header-logo-size);
        height: var(--header-logo-size);
        filter: drop-shadow(0 8px 26px rgba(132, 204, 22, 0.3));
        transition:
            width 0.55s var(--ease-apple),
            height 0.55s var(--ease-apple),
            filter 0.55s var(--ease-apple);
    }

    .site-header.scrolled .logo-mark {
        filter: drop-shadow(0 4px 12px rgba(132, 204, 22, 0.16));
    }

    .site-header.scrolled .logo-mark::after {
        animation: logoOrbOrbit 11s linear infinite;
        opacity: 0.45;
    }

    .site-header .logo-mark .logo-img {
        transition: transform 0.55s var(--ease-apple), filter 0.55s var(--ease-apple);
    }

    .js-ready .site-header.scrolled .logo-mark .logo-img {
        animation: logoTilt3dCompact 5.5s ease-in-out infinite;
    }

    @keyframes logoTilt3dCompact {
        0%, 100% { transform: perspective(700px) rotateX(4deg) rotateY(-5deg); }
        50% { transform: perspective(700px) rotateX(-3deg) rotateY(6deg); }
    }

    .site-header .logo-text {
        align-items: center;
        gap: 0.15rem;
        transition: align-items 0.55s var(--ease-apple);
    }

    .site-header.scrolled .logo-text {
        align-items: flex-start;
        text-align: left;
    }

    .site-header .logo-name {
        font-size: 1.25rem;
        letter-spacing: -0.01em;
        transition: font-size 0.55s var(--ease-apple);
    }

    .site-header.scrolled .logo-name {
        font-size: 1rem;
    }

    .site-header .logo-tagline {
        font-size: 0.625rem;
        letter-spacing: 0.08em;
        transition: font-size 0.55s var(--ease-apple), opacity 0.55s var(--ease-apple);
    }

    .site-header.scrolled .logo-tagline {
        font-size: 0.5625rem;
    }

    .header-actions .btn-primary { display: none; }
    .nav-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        z-index: 1001;
        background: rgba(8, 8, 8, 0.98);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        padding: 1.5rem;
        transform: none;
        clip-path: inset(0 0 0 100%);
        transition: clip-path 0.55s var(--ease-apple), visibility 0.55s, opacity 0.55s var(--ease-apple);
        opacity: 0;
        overflow-x: hidden;
        overflow-y: auto;
        visibility: hidden;
        pointer-events: none;
    }

    .main-nav.open {
        clip-path: inset(0 0 0 0);
        visibility: visible;
        pointer-events: auto;
        opacity: 1;
    }

    .nav-toggle {
        position: relative;
        z-index: 1002;
    }

    .nav-list { flex-direction: column; gap: 0.25rem; }

    .nav-list a {
        padding: 1rem 1.25rem;
        font-size: 1.0625rem;
        border-radius: var(--radius);
    }

    .hero-slider {
        margin-top: var(--header-h);
        height: clamp(420px, 68vh, 560px);
        min-height: 420px;
        max-height: 560px;
    }

    .slide-content {
        max-width: 100%;
        justify-content: space-evenly;
        gap: 0;
        height: 100%;
        padding-block: 2rem 3.5rem;
    }

    .slide-content .hero-badge,
    .slide-content h1,
    .slide-content h2.slide-heading,
    .slide-content .slide-desc {
        margin-bottom: 0;
    }

    .slide-desc {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-actions {
        gap: var(--mobile-space);
        width: 100%;
    }

    .slider-btn { width: 40px; height: 40px; }
    .slider-prev { left: 0.75rem; }
    .slider-next { right: 0.75rem; }

    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .process-grid, .process-grid-detailed { grid-template-columns: 1fr; }
    .location-grid { grid-template-columns: 1fr; }
    .two-col { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .cta-banner-inner { flex-direction: column; text-align: center; }
    .cta-banner-actions { justify-content: center; width: 100%; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .mobile-cta { display: flex; }

    .contact-form-section { padding: 1.5rem; }

    .google-form-embed {
        --form-height: 1040px;
        height: var(--form-height);
    }

    .hero-actions { width: 100%; }
    .hero-actions .btn { flex: 1 1 auto; min-width: 0; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .cta-banner-actions { flex-direction: column; }
    .cta-banner-actions .btn { width: 100%; }
    .slider-dots { bottom: 1.25rem; }
}
