/*
Theme Name: Nikoo Homes 7
Theme URI: https://nikoohomes.com/nikoo-homes-7/
Author: Performance Marketing Build
Author URI: https://nikoohomes.com
Description: Custom landing page theme for Nikoo Homes 7 — Bhartiya Garden Estate, North Bengaluru. Single-page performance-marketing lander with CF7 lead capture, Meta CAPI, GTM, ACF image management, and Customizer-driven content. Mobile-first, sub-second load targets.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Proprietary
Text Domain: nikoo7
*/

/* ============================================================
   DESIGN TOKENS — editable via Customizer via CSS custom props
   ============================================================ */
:root {
    --accent: #C4402C;          /* Nikoo coral — overridden by Customizer */
    --accent-hover: #A53620;
    --bg: #FAF7F2;              /* Warm cream */
    --bg-alt: #F1ECE2;
    --sage: #A8BB99;            /* Landscape sage */
    --sage-light: #D9E0D0;
    --text: #1F1F1F;
    --text-muted: #6B6B6B;
    --border: #E5DFD2;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 2px rgba(31, 31, 31, 0.04);
    --shadow-md: 0 4px 12px rgba(31, 31, 31, 0.08);
    --shadow-lg: 0 12px 32px rgba(31, 31, 31, 0.12);
    --radius: 4px;
    --radius-lg: 8px;
    --header-h: 64px;
    --max-w: 1280px;
}

/* ============================================================
   RESET + BASE (mobile-first, 375px baseline)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(15px, 4vw, 17px);
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4 {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 0.5em;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 8vw, 4.25rem); }
h2 { font-size: clamp(1.65rem, 5.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 4vw, 1.75rem); }
h4 { font-size: clamp(1rem, 3.5vw, 1.25rem); }
p { margin: 0 0 1em; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   BUTTONS (min tap target 44px)
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 24px;
    font-family: inherit;
    font-size: clamp(14px, 3.5vw, 16px);
    font-weight: 600;
    line-height: 1;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    white-space: nowrap;
}
.btn--primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.btn--primary:hover, .btn--primary:focus {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn--ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--text);
}
.btn--ghost:hover {
    background: var(--text);
    color: var(--white);
}
.btn--whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}
.btn--whatsapp:hover {
    background: #1fa855;
    color: var(--white);
}
.btn--block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    background: rgba(250, 247, 242, 0.96);
    backdrop-filter: saturate(180%) blur(8px);
    -webkit-backdrop-filter: saturate(180%) blur(8px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    transition: transform 0.3s;
}
.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.site-brand {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--text);
}
.site-brand .mark { color: var(--accent); }
.site-brand .sep { color: var(--border); font-weight: 400; }
.site-brand .sub { font-size: 11px; font-weight: 500; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
    margin: 0 auto;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.primary-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    transform: translateY(-150%);
    transition: transform 0.3s;
    box-shadow: var(--shadow-md);
}
.primary-nav.is-open { transform: translateY(0); }
.primary-nav ul { list-style: none; padding: 0; margin: 0; }
.primary-nav li { border-bottom: 1px solid var(--border); }
.primary-nav li:last-child { border: 0; }
.primary-nav a {
    display: block;
    padding: 14px 0;
    color: var(--text);
    font-weight: 500;
}
.nav-cta { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    padding: calc(var(--header-h) + 40px) 0 80px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    background: linear-gradient(135deg, #3d4a38 0%, #2a3326 100%);
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(31,31,31,0.35) 0%, rgba(31,31,31,0.65) 100%);
}
.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero__eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    font-size: clamp(2.25rem, 9vw, 5rem);
    line-height: 1.05;
    margin: 0 0 16px;
}
.hero__title em {
    font-style: italic;
    color: var(--sage-light);
}
.hero__subtitle {
    font-size: clamp(16px, 4vw, 20px);
    font-weight: 400;
    opacity: 0.92;
    max-width: 560px;
    margin: 0 0 32px;
}
.hero__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 320px;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
}
.stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: center;
}
.stat__num {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 7vw, 2.75rem);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
}
.stat__label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section {
    padding: 64px 0;
}
.section--alt { background: var(--bg-alt); }
.section--dark { background: #1F2419; color: var(--white); }
.section--dark h2 { color: var(--white); }

.section__head { margin-bottom: 40px; text-align: center; }
.section__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}
.section__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    margin-bottom: 12px;
}
.section__lead {
    max-width: 640px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
    display: grid;
    gap: 32px;
}
.about__image {
    aspect-ratio: 4/3;
    background: var(--sage-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.about__body h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 16px;
}
.about__highlights {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}
.about__highlights li {
    position: relative;
    padding: 12px 0 12px 32px;
    border-top: 1px solid var(--border);
}
.about__highlights li:last-child { border-bottom: 1px solid var(--border); }
.about__highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 18px;
    height: 2px;
    background: var(--accent);
}

/* ============================================================
   CONFIGURATIONS
   ============================================================ */
.configs__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.config-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.25s;
}
.config-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.config-card__type {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}
.config-card__name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    font-weight: 400;
    margin: 0 0 4px;
}
.config-card__size {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.config-card__price {
    font-size: clamp(1.15rem, 4vw, 1.35rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}
.config-card__price small {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 2px;
}
.config-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}
.config-card__cta::after {
    content: '→';
    transition: transform 0.2s;
}
.config-card:hover .config-card__cta::after { transform: translateX(4px); }

/* ============================================================
   AMENITIES
   ============================================================ */
.amenities__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.amenity {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    transition: all 0.2s;
}
.amenity:hover {
    border-color: var(--accent);
    background: var(--bg);
}
.amenity__icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 10px;
    color: var(--accent);
}
.amenity__icon svg { width: 100%; height: 100%; }
.amenity__label {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.gallery__item {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--sage-light);
    background-size: cover;
    background-position: center;
    position: relative;
}
.gallery__item::after {
    content: attr(data-label);
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 6px 12px;
    background: rgba(31,31,31,0.75);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: var(--radius);
    backdrop-filter: blur(4px);
}

/* ============================================================
   LOCATION
   ============================================================ */
.location__grid {
    display: grid;
    gap: 24px;
}
.location__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.location__list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
}
.location__list li:last-child { border-bottom: 1px solid var(--border); }
.location__dist {
    font-weight: 700;
    color: var(--accent);
    font-size: 14px;
    min-width: 60px;
}
.location__map {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--sage-light);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    padding: 56px 0;
    background: linear-gradient(135deg, #C4402C 0%, #A53620 100%);
    color: var(--white);
    text-align: center;
}
.cta-banner h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    color: var(--white);
}
.cta-banner p { opacity: 0.92; margin-bottom: 28px; }
.cta-banner .btn--primary {
    background: var(--white);
    color: var(--accent);
    border-color: var(--white);
}
.cta-banner .btn--primary:hover {
    background: var(--bg);
    color: var(--accent-hover);
}

/* ============================================================
   CONTACT FORM (CF7 styled)
   ============================================================ */
.contact {
    background: var(--text);
    color: var(--white);
    padding: 64px 0;
}
.contact h2 { color: var(--white); font-family: 'Playfair Display', Georgia, serif; font-weight: 400; }
.contact .section__lead { color: rgba(255,255,255,0.75); }

.contact-form-wrap {
    max-width: 560px;
    margin: 0 auto;
    background: var(--white);
    color: var(--text);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
}
.wpcf7-form p { margin-bottom: 16px; }
.wpcf7-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 16px; /* prevent iOS zoom */
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    outline: 0;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(196, 64, 44, 0.15);
}
.wpcf7-form textarea { min-height: 96px; resize: vertical; }
.wpcf7-form .wpcf7-submit,
.wpcf7-form input[type="submit"] {
    width: 100%;
    min-height: 52px;
    padding: 14px 24px;
    background: var(--accent);
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    border: 0;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
}
.wpcf7-form .wpcf7-submit:hover:not(:disabled) { background: var(--accent-hover); }
.wpcf7-form .wpcf7-submit:disabled {
    opacity: 0.7;
    cursor: wait;
}
.wpcf7-form .ajax-loader { display: none; } /* we use our own spinner */
.btn-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

.wpcf7-response-output {
    margin: 16px 0 0 !important;
    padding: 12px 14px !important;
    border-radius: var(--radius);
    font-size: 14px;
}
.wpcf7-not-valid-tip {
    color: var(--accent);
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.form-success {
    text-align: center;
    padding: 24px 16px;
}
.form-success__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    color: var(--accent);
}
.form-success h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    margin-bottom: 8px;
}
.form-success p { color: var(--text-muted); margin-bottom: 24px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #141613;
    color: rgba(255,255,255,0.75);
    padding: 48px 0 24px;
    font-size: 14px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}
.site-footer h4 {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}
.site-footer a { color: rgba(255,255,255,0.85); }
.site-footer a:hover { color: var(--accent); }
.footer-disclaimer {
    font-size: 11px;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-rera {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 8px;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
    position: fixed;
    bottom: 88px; /* above mobile sticky CTA */
    right: 16px;
    z-index: 95;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.05); color: var(--white); }
.wa-float svg { width: 28px; height: 28px; }
.wa-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.4;
    animation: pulse 2s infinite;
    z-index: -1;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================================
   MOBILE STICKY CTA (hidden on desktop)
   ============================================================ */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
    padding-bottom: env(safe-area-inset-bottom);
}
.mobile-cta a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 4px;
    min-height: 56px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text);
    border-right: 1px solid var(--border);
}
.mobile-cta a:last-child { border-right: 0; }
.mobile-cta a:hover { color: var(--accent); background: var(--bg); }
.mobile-cta svg { width: 20px; height: 20px; }
.mobile-cta .is-book { background: var(--accent); color: var(--white); }
.mobile-cta .is-book:hover { background: var(--accent-hover); color: var(--white); }

/* ============================================================
   MODAL (contact form on mobile can open fullscreen)
   ============================================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow-y: auto;
}
.modal.is-open { display: flex; }
.modal__panel {
    background: var(--white);
    width: 100%;
    max-width: 560px;
    max-height: 100vh;
    overflow-y: auto;
    padding: 56px 20px 32px;
    position: relative;
}
.modal__close {
    position: sticky;
    top: 0;
    margin-left: auto;
    margin-right: 0;
    display: block;
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    z-index: 2;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
.hidden { display: none !important; }

/* ============================================================
   BREAKPOINT: 768px — Tablet
   ============================================================ */
@media (min-width: 768px) {
    .container { padding: 0 32px; }
    .section { padding: 96px 0; }
    .hero { padding: calc(var(--header-h) + 60px) 0 100px; }
    .hero__actions { flex-direction: row; max-width: none; }

    .stats__grid { grid-template-columns: repeat(4, 1fr); }

    .about__grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 56px;
    }

    .configs__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .amenities__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .gallery__grid .gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: 1; }

    .location__grid { grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

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

    .mobile-cta { display: none; }
    .wa-float { bottom: 32px; right: 32px; width: 60px; height: 60px; }
}

/* ============================================================
   BREAKPOINT: 1024px — Desktop
   ============================================================ */
@media (min-width: 1024px) {
    .nav-toggle { display: none; }
    .primary-nav {
        position: static;
        transform: none;
        background: transparent;
        border: 0;
        padding: 0;
        box-shadow: none;
    }
    .primary-nav ul { display: flex; gap: 32px; }
    .primary-nav li { border: 0; }
    .primary-nav a { padding: 8px 0; font-size: 14px; font-weight: 500; }
    .nav-cta { display: inline-flex; }

    .configs__grid { grid-template-columns: repeat(3, 1fr); }
    .amenities__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   BREAKPOINT: 1440px — Wide desktop
   ============================================================ */
@media (min-width: 1440px) {
    :root { --max-w: 1320px; }
    .configs__grid { grid-template-columns: repeat(4, 1fr); }
    .amenities__grid { grid-template-columns: repeat(6, 1fr); }
}

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

/* ============================================================
   PRINT
   ============================================================ */
@media print {
    .site-header, .mobile-cta, .wa-float, .contact { display: none; }
}
