/* ========================================
   WRAP AUTO BOUTIQUE
   Architectural / Editorial — Light Mode
   ======================================== */

:root {
    --black: #0a0a0a;
    --dark: #111111;
    --gray-800: #1a1a1a;
    --gray-700: #333;
    --gray-500: #666;
    --gray-400: #888;
    --gray-300: #aaa;
    --gray-200: #ccc;
    --gray-100: #e8e8e8;
    --off-white: #f5f5f3;
    --white: #ffffff;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    --s-xs: 0.5rem;
    --s-sm: 1rem;
    --s-md: 2rem;
    --s-lg: 4rem;
    --s-xl: 8rem;
    --s-2xl: 12rem;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    --container: min(88%, 1340px);
    --header-h: 5.5rem;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans); background: var(--white); color: var(--black); line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
button { font-family: var(--font-sans); }

.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--black); color: var(--white); padding: 0.5rem 1rem; z-index: 9999; font-size: 0.875rem; }
.skip-link:focus { top: 1rem; }

/* ========================================
   Shared Elements
   ======================================== */

.label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: var(--s-md);
}

.gold-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--black);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 0.95;
    color: var(--black);
}

/* ========================================
   Header
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: var(--gray-100);
    box-shadow: 0 1px 30px rgba(0,0,0,0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: var(--container);
    margin: 0 auto;
    height: var(--header-h);
}

.logo {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1.4;
    color: var(--black);
}

.nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav a {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-500);
    transition: color 0.2s;
}
.nav a:hover { color: var(--black); }

.nav-cta {
    background: var(--black);
    color: var(--white) !important;
    padding: 0.65rem 1.8rem;
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    transition: transform 0.2s, background 0.2s !important;
}
.nav-cta:hover {
    transform: translateY(-1px);
    background: var(--gray-700);
    color: var(--white) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--black);
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.hamburger.active span { background: var(--white); }
.hamburger.active span:first-child { transform: translateY(3.75px) rotate(45deg); }
.hamburger.active span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-out);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-nav { display: flex; flex-direction: column; align-items: center; gap: var(--s-md); }
.mobile-menu-nav a {
    color: var(--white);
    font-family: var(--font-serif);
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), color 0.2s;
}
.mobile-menu.open .mobile-menu-nav a { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mobile-menu-nav a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu-nav a:hover { color: var(--gray-300); }
.mobile-menu-footer { position: absolute; bottom: var(--s-lg); text-align: center; }
.mobile-menu-footer p { color: var(--gray-500); font-size: 0.8rem; margin-bottom: 0.3rem; }
.mobile-menu-footer a:hover { color: var(--white); }

/* ========================================
   Hero — Full dark cinematic (keeps dark bg for drama)
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: var(--s-2xl) 6% var(--s-xl);
    overflow: hidden;
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.5) 40%,
        rgba(10, 10, 10, 0.25) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: var(--s-md);
}
.hero-eyebrow .gold-line { background: var(--white); }

.label-hero {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 0.9;
    margin-bottom: var(--s-md);
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--gray-300);
    line-height: 1.7;
    max-width: 42ch;
    margin-bottom: var(--s-lg);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    color: var(--black);
    padding: 1rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: transform 0.2s, background 0.2s;
}
.hero-cta:hover { transform: translateY(-2px); background: var(--gray-100); }
.hero-cta .arrow { font-size: 1rem; transition: transform 0.2s; }
.hero-cta:hover .arrow { transform: translateX(4px); }

.hero-scroll-hint {
    position: absolute;
    bottom: var(--s-lg);
    right: 6%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
}
.hero-scroll-hint span {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-400);
    writing-mode: vertical-rl;
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--gray-500);
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    animation: scrollDown 2s var(--ease-in-out) infinite;
}

@keyframes scrollDown {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
}

/* ========================================
   Marquee Strip
   ======================================== */

.marquee {
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    padding: 1.2rem 0;
    overflow: hidden;
    background: var(--white);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
    animation: marqueeScroll 20s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.marquee-dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--black);
    border-radius: 50%;
    flex-shrink: 0;
}

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

/* ========================================
   Work / Gallery
   ======================================== */

.work {
    padding: var(--s-2xl) 6%;
    background: var(--white);
}

.work-header {
    margin-bottom: var(--s-xl);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 280px;
    gap: 0.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

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

.gallery-item--tall {
    grid-row: span 2;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--s-md);
    background: linear-gradient(transparent 50%, rgba(10,10,10,0.8));
    opacity: 0;
    transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-tag {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-200);
    margin-bottom: 0.25rem;
}
.gallery-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
}

/* ========================================
   Brands
   ======================================== */

.brands {
    padding: var(--s-2xl) 6%;
    background: var(--off-white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.brands-inner {
    width: var(--container);
    margin: 0 auto;
}

.brands-header {
    margin-bottom: var(--s-xl);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--gray-200);
}

.brand-card {
    background: var(--off-white);
    padding: var(--s-lg) var(--s-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    transition: background 0.3s;
    text-decoration: none;
    color: var(--black);
}
.brand-card:hover {
    background: var(--white);
}

.brand-name {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.brand-arrow {
    font-size: 1.2rem;
    color: var(--gray-300);
    align-self: flex-end;
    transition: color 0.2s, transform 0.2s;
}
.brand-card:hover .brand-arrow {
    color: var(--black);
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Services
   ======================================== */

.services {
    padding: var(--s-2xl) 6%;
    background: var(--off-white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.services-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--s-xl);
    width: var(--container);
    margin: 0 auto;
}

.services-intro {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-top: var(--s-md);
    max-width: 40ch;
}

.service-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--s-md);
    align-items: start;
    padding: var(--s-md) 0;
    border-top: 1px solid var(--gray-200);
    transition: border-color 0.3s;
}
.service-item:hover { border-top-color: var(--black); }
.service-item:last-child { border-bottom: 1px solid var(--gray-200); }

.service-num {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-400);
    letter-spacing: 0.05em;
    padding-top: 0.35rem;
}

.service-content h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--black);
}
.service-content p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.65;
    max-width: 50ch;
}

.service-arrow {
    font-size: 1.2rem;
    color: var(--gray-300);
    padding-top: 0.2rem;
    transition: color 0.2s, transform 0.2s;
}
.service-item:hover .service-arrow { color: var(--black); transform: translateX(4px); }

/* ========================================
   Pricing
   ======================================== */

.pricing {
    padding: var(--s-2xl) 6%;
    background: var(--white);
}

.pricing-inner {
    width: var(--container);
    margin: 0 auto;
}

.pricing-header {
    margin-bottom: var(--s-xl);
}

.pricing-note {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-top: var(--s-md);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--gray-100);
}

.pricing-card {
    background: var(--white);
    padding: var(--s-lg) var(--s-md);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: background 0.3s;
}
.pricing-card:hover { background: var(--off-white); }

.pricing-card.featured {
    background: var(--black);
    color: var(--white);
}
.pricing-card.featured .pricing-vehicle { color: var(--gray-400); }
.pricing-card.featured .pricing-gst { color: var(--gray-500); }

.pricing-vehicle {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
}

.pricing-dollar {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.4;
}

.pricing-number {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.pricing-gst {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gray-400);
    letter-spacing: 0.05em;
}

/* ========================================
   Quote Calculator
   ======================================== */

.quote-section {
    padding: var(--s-2xl) 6%;
    background: var(--off-white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.quote-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--s-xl);
    width: var(--container);
    margin: 0 auto;
}

.quote-field {
    margin-bottom: var(--s-lg);
}

.quote-field > label:first-child {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: var(--s-sm);
}

select {
    width: 100%;
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--gray-200);
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-sans);
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}
select:focus { border-color: var(--black); }

.checkbox-group { display: flex; flex-direction: column; gap: 0.5rem; }

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-500);
    cursor: pointer;
    transition: color 0.2s;
    border-bottom: 1px solid var(--gray-100);
}
.checkbox-label:hover { color: var(--black); }
.checkbox-label input[type="checkbox"] { display: none; }

.checkbox-custom {
    width: 16px;
    height: 16px;
    border: 1px solid var(--gray-300);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, border-color 0.15s;
}
.checkbox-label input:checked + .checkbox-custom {
    background: var(--black);
    border-color: var(--black);
}
.checkbox-label input:checked + .checkbox-custom::after {
    content: '';
    width: 4px;
    height: 8px;
    border: solid var(--white);
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg) translateY(-1px);
}

.checkbox-text { flex: 1; }
.addon-price { color: var(--gray-400); font-size: 0.8rem; font-weight: 600; }

.quote-total {
    margin-top: var(--s-md);
    padding: var(--s-lg);
    border: 1px solid var(--gray-200);
    background: var(--white);
    text-align: center;
}
.quote-total-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: var(--s-sm);
}
.quote-price {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--black);
}
.quote-disclaimer {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: var(--s-sm);
}

/* ========================================
   Contact + Location
   ======================================== */

.contact-section {
    padding: var(--s-2xl) 6%;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--s-xl);
    width: var(--container);
    margin: 0 auto;
}

.info-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-lg);
    margin-top: var(--s-xl);
}

.info-label {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 0.75rem;
}

.info-block p,
.info-block address {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
}
.info-block a { transition: color 0.2s; }
.info-block a:hover { color: var(--black); }

.contact-form {
    padding-top: var(--s-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-md);
}

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

.form-group label {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: var(--s-xs);
}

input, textarea {
    width: 100%;
    padding: 0.85rem 0;
    border: none;
    border-bottom: 1px solid var(--gray-200);
    background: transparent;
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--font-sans);
    color: var(--black);
    outline: none;
    transition: border-color 0.3s;
}
input:focus, textarea:focus { border-color: var(--black); }
input::placeholder, textarea::placeholder { color: var(--gray-300); }
textarea { resize: vertical; min-height: 80px; }

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--black);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    margin-top: var(--s-sm);
}
.submit-btn:hover { transform: translateY(-2px); background: var(--gray-700); }
.submit-btn:active { transform: translateY(0); }
.btn-arrow { font-size: 1rem; transition: transform 0.2s; }
.submit-btn:hover .btn-arrow { transform: translateX(4px); }

/* ========================================
   Footer
   ======================================== */

.footer {
    padding: var(--s-lg) 6%;
    border-top: 1px solid var(--gray-100);
    background: var(--off-white);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: var(--container);
    margin: 0 auto;
}

.footer-logo {
    display: block;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 0.3rem;
}
.footer-tagline {
    font-size: 0.75rem;
    color: var(--gray-400);
}
.footer-copy {
    font-size: 0.7rem;
    color: var(--gray-400);
}

/* ========================================
   Reviews
   ======================================== */

.reviews {
    padding: var(--s-2xl) 6%;
    background: var(--off-white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.reviews-inner {
    width: var(--container);
    margin: 0 auto;
}

.reviews-header {
    margin-bottom: var(--s-xl);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--gray-200);
}

.review-card {
    background: var(--off-white);
    padding: var(--s-lg) var(--s-md);
    display: flex;
    flex-direction: column;
    gap: var(--s-md);
    transition: background 0.3s;
}
.review-card:hover {
    background: var(--white);
}

.review-stars {
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: var(--black);
}

.review-text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.7;
    font-style: italic;
    color: var(--gray-700);
    flex: 1;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: var(--s-sm);
    border-top: 1px solid var(--gray-100);
}

.review-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--black);
}

.review-source {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.reviews-cta {
    margin-top: var(--s-lg);
    font-size: 0.85rem;
    color: var(--gray-400);
    text-align: center;
}
.reviews-cta a {
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}
.reviews-cta a:hover {
    color: var(--gray-500);
}

/* ========================================
   Map
   ======================================== */

.map-section {
    background: var(--black);
    border-bottom: 1px solid var(--gray-100);
}

.map-section iframe {
    filter: grayscale(1) contrast(1.1);
    transition: filter 0.4s;
}
.map-section:hover iframe {
    filter: grayscale(0);
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .map-section iframe {
        height: 300px;
    }
}

/* ========================================
   WhatsApp Floating Button
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 98;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}
.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}
.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

/* ========================================
   Scroll Animations
   ======================================== */

[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate-stagger] > * {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-animate-stagger].visible > * {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--i, 0) * 100ms);
}

/* ========================================
   Floating Motion Elements
   ======================================== */

.floating-shapes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border: 1px solid var(--gray-200);
    opacity: 0.4;
}

.shape--circle {
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    right: -80px;
    animation: floatSlow 18s var(--ease-in-out) infinite alternate;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: -40px;
    animation: floatMed 14s var(--ease-in-out) infinite alternate;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 35%;
    left: 30%;
    animation: floatFast 10s var(--ease-in-out) infinite alternate;
}

.shape-4 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: 15%;
    animation: floatSlow 22s var(--ease-in-out) infinite alternate-reverse;
}

.shape-5 {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 60%;
    border-color: var(--gray-100);
    animation: floatFast 12s var(--ease-in-out) infinite alternate-reverse;
}

@keyframes floatSlow {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(30px, -40px) rotate(15deg); }
}

@keyframes floatMed {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-20px, 30px) rotate(-10deg); }
}

@keyframes floatFast {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(15px, -20px) rotate(20deg); }
}

/* Moving horizontal line */
.moving-line {
    position: fixed;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.moving-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -30%;
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, transparent, var(--gray-200), transparent);
    animation: moveLine 8s linear infinite;
}

@keyframes moveLine {
    0% { left: -30%; }
    100% { left: 100%; }
}

/* Cursor follower dot */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--black);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s var(--ease-out), opacity 0.3s;
    opacity: 0;
    mix-blend-mode: difference;
}
.cursor-dot.visible { opacity: 1; }

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid var(--black);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s;
    opacity: 0;
    mix-blend-mode: difference;
}
.cursor-ring.visible { opacity: 0.5; }
.cursor-ring.hovering {
    width: 56px;
    height: 56px;
    border-color: var(--gray-400);
}

/* ========================================
   Accessibility
   ======================================== */

:focus-visible { outline: 2px solid var(--black); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .floating-shapes, .moving-line, .cursor-dot, .cursor-ring { display: none; }
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 1024px) {
    .services-inner,
    .quote-inner,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: var(--s-lg);
    }

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

    .cursor-dot, .cursor-ring { display: none; }
}

@media (max-width: 768px) {
    :root {
        --s-2xl: 6rem;
        --s-xl: 4rem;
    }

    .nav { display: none; }
    .hamburger { display: flex; }

    .hero {
        padding: var(--s-xl) 6% var(--s-lg);
        align-items: flex-end;
    }
    .hero-title { font-size: clamp(3rem, 12vw, 5rem); }
    .hero-scroll-hint { display: none; }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    .gallery-item--tall { grid-row: span 1; }

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

    .info-blocks { grid-template-columns: 1fr; gap: var(--s-md); }
    .form-row { grid-template-columns: 1fr; }

    .footer-inner { flex-direction: column; align-items: flex-start; gap: var(--s-sm); }

    .floating-shapes, .moving-line { display: none; }
}

@media (max-width: 480px) {
    section, .work, .services, .pricing, .quote-section, .contact-section {
        padding-left: var(--s-md);
        padding-right: var(--s-md);
    }
    .hero { padding-left: var(--s-md); padding-right: var(--s-md); }
    .pricing-grid { grid-template-columns: 1fr; }
    .section-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
}
