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

:root {
    --black: #000000;
    --white: #ffffff;
    --gold: #FFB81B;
    --gold-light: #FFD166;
    --gray: #C8C8C8;
    --dark-gray: #111111;
    --darker-gray: #0a0a0a;
    --burnt-barn-red: #8A0A08;
    --rust-amber: #E04717;
    --burnt-amber: #DA6912;
    --deep-turquoise: #136F81;
    --sunlight-gold: #FFB81B;
    --heading: 'Instrument Sans', 'Inter', Helvetica, Arial, sans-serif;
    --body: 'Instrument Sans', 'Inter', Helvetica, Arial, sans-serif;
    --sans: 'Instrument Sans', 'Inter', Helvetica, Arial, sans-serif;
    /* Legacy alias */
    --serif: 'Instrument Sans', 'Inter', Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--body);
    font-weight: 400;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--black);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-text {
    font-family: var(--heading);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--white);
    animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ===== NAV ===== */
nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 1.5rem 2.5rem;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px);
    transition: background 0.4s ease, padding 0.4s ease;
}
nav.scrolled {
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 2.5rem;
    box-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.nav-logo {
    display: flex; align-items: center;
    text-decoration: none; color: var(--white);
}
.nav-logo img {
    height: 52px; width: auto;
    object-fit: contain;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
    color: var(--white); text-decoration: none;
    font-family: var(--sans); font-size: 0.75rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    position: relative; padding-bottom: 4px;
    transition: color 0.3s;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--deep-turquoise);
    transition: width 0.4s ease;
}
.nav-links a { color: var(--sunlight-gold); }
.nav-links a.active { color: var(--sunlight-gold); }
.nav-links a:hover { color: var(--sunlight-gold); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; background: none; border: none; padding: 8px; z-index: 1001;
}
.hamburger span {
    width: 28px; height: 2px; background: var(--white);
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 999;
    background: rgba(10,10,10,0.98);
    flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
    color: var(--white); text-decoration: none;
    font-family: var(--serif); font-size: 2rem;
    transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block; padding: 1rem 2.5rem;
    font-family: var(--sans); font-size: 0.75rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    text-decoration: none; transition: all 0.4s ease;
    cursor: pointer; border: none;
}
.btn-primary {
    background: var(--deep-turquoise); color: var(--white);
    border: 1px solid var(--deep-turquoise);
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.btn-outline {
    background: transparent; color: var(--deep-turquoise);
    border: 1px solid var(--deep-turquoise);
}
.btn-outline:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.btn-sm { padding: 0.75rem 1.5rem; font-size: 0.7rem; }

/* ===== CONTAINERS ===== */
.container { max-width: 1400px; margin: 0 auto; }
section { padding: 5rem 2.5rem; position: relative; }
section + section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06) 30%, rgba(255,255,255,0.06) 70%, transparent);
}
.page-hero::before,
.hero::before { display: none; }

/* ===== SECTION TYPOGRAPHY ===== */
.section-label {
    font-family: var(--sans); font-size: 0.8rem;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.5rem;
}
.section-title {
    font-family: var(--heading); font-weight: 700;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    line-height: 1.2; margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}
.section-text {
    font-family: var(--body); font-size: 1.15rem;
    line-height: 1.8; color: rgba(255,255,255,0.7);
    max-width: 1200px; font-weight: 400;
    margin-left: auto; margin-right: auto;
    text-align: justify;
}
/* Keep short CTA/hero lines centered, not justified */
.closing-cta .section-text,
.locations-cta-section .section-text,
.page-hero .section-text,
.hero .section-text {
    max-width: 720px;
    text-align: center;
}

/* ===== HERO ===== */
.hero {
    height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative; overflow: hidden;
    background: var(--black);
}
.hero-bg-image {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}
.hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}
.hero-video-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.85) 100%);
}
.hero-grain {
    position: absolute; inset: 0; opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; padding: 0 2rem; }
.hero-super {
    font-family: var(--sans); font-size: 0.85rem;
    letter-spacing: 0.3em; text-transform: uppercase;
    margin-bottom: 1.5rem; opacity: 0;
    animation: fadeIn 1s 0.3s forwards;
}
.hero-super-word { color: var(--white); }
.hero-dot { color: var(--gold); margin: 0 0.75rem; }
.hero-title {
    font-family: var(--heading); font-weight: 700;
    font-size: clamp(3rem, 9vw, 7rem);
    line-height: 1.05; letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}
.hero-title .line { display: block; overflow: hidden; padding-top: 0.1em; padding-bottom: 0.15em; }
.hero-title .line span {
    display: inline-block;
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform: translateY(110%);
}
.hero-title .line:nth-child(2) span { animation-delay: 0.15s; }
@keyframes slideUp { to { transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }

.hero-tagline {
    font-family: var(--sans); font-weight: 400;
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    letter-spacing: 0.02em; text-transform: none;
    color: rgba(255,255,255,0.7); opacity: 0;
    animation: fadeIn 1s 0.6s forwards;
    max-width: 650px; margin: 0 auto; line-height: 1.7;
}
.hero-cta {
    margin-top: 2.5rem; display: flex;
    gap: 1rem; justify-content: center; flex-wrap: wrap;
    opacity: 0; animation: fadeIn 1s 0.9s forwards;
}
.scroll-indicator {
    position: absolute; bottom: 3rem; left: 50%;
    transform: translateX(-50%); opacity: 0;
    animation: fadeIn 1s 1.5s forwards;
}
.scroll-indicator .line {
    width: 1px; height: 60px; background: rgba(255,184,27,0.4);
    margin: 0 auto; position: relative; overflow: hidden;
}
.scroll-indicator .line::after {
    content: ''; position: absolute; top: -60px; left: 0;
    width: 1px; height: 60px; background: var(--gold);
    animation: scrollLine 2s infinite;
}
@keyframes scrollLine { 0% { top: -60px; } 100% { top: 60px; } }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    padding: 10rem 2.5rem 5rem;
    text-align: center; position: relative; overflow: hidden;
    background: linear-gradient(to bottom, var(--deep-turquoise) 0%, var(--black) 100%);
}
.page-hero .hero-bg-image {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}
.page-hero .hero-content { position: relative; z-index: 1; }
.page-hero .section-title {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    margin-bottom: 1rem;
}
.page-hero .btn-outline {
    background: var(--deep-turquoise);
    color: var(--white);
    border-color: var(--deep-turquoise);
}
.page-hero .btn-outline:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* ===== NJ INCENTIVES ===== */
.nj-incentives { background: var(--dark-gray); }
.incentives-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
}
.incentives-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.incentive-card {
    background: var(--black);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px; padding: 2rem;
    transition: border-color 0.4s;
}
.incentive-card:hover { border-color: rgba(255,184,27,0.3); }
.incentive-number {
    font-family: var(--serif); font-size: 2rem;
    font-weight: 700; color: var(--gold); margin-bottom: 0.5rem;
}
.incentive-detail {
    font-family: var(--body); font-size: 1.1rem;
    color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.6;
}

/* ===== LANDSCAPES ===== */
.landscapes { background: var(--dark-gray); }
.landscapes-header { margin-bottom: 3rem; text-align: center; }
.landscapes-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.landscape-item {
    position: relative; border-radius: 6px;
    overflow: hidden; cursor: pointer; aspect-ratio: 4/3;
    background-color: var(--black);
}
.landscape-img {
    position: absolute; inset: -1px;
    width: calc(100% + 2px); height: calc(100% + 2px);
    background-size: cover; background-position: center;
    background-color: var(--black);
    transition: transform 0.6s ease;
}
.landscape-item:hover .landscape-img { transform: scale(1.08); }
.landscape-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.1) 50%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.5rem; transition: background 0.4s;
}
.landscape-overlay h3 {
    font-family: var(--serif); font-size: 1.2rem; font-weight: 700;
}
.landscape-overlay span {
    font-family: var(--sans); font-size: 0.65rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); margin-top: 0.35rem;
}

/* ===== FEATURED LOCATIONS ===== */
.featured-locations { background: var(--dark-gray); }
.featured-header { margin-bottom: 3rem; }
.featured-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.featured-card {
    background: var(--black); border-radius: 8px;
    overflow: hidden; border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s;
}
.featured-card:hover { border-color: rgba(255,184,27,0.25); transform: translateY(-4px); }
.featured-img {
    width: 100%; aspect-ratio: 16/10;
    background-size: cover; background-position: center;
}
.featured-info { padding: 1.5rem; }
.featured-info h3 {
    font-family: var(--serif); font-size: 1.25rem; font-weight: 700;
}
.featured-info span {
    font-family: var(--sans); font-size: 0.7rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); margin-top: 0.25rem; display: block;
}
.featured-cta { text-align: center; margin-top: 3rem; }

/* ===== SERVICES PREVIEW ===== */
.services-preview { background: var(--black); }
.services-preview-header { margin-bottom: 3rem; }
.services-preview-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.service-preview-item {
    text-align: center; padding: 2.5rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 8px; transition: all 0.4s;
}
.service-preview-item:hover {
    border-color: rgba(255,184,27,0.2);
    background: rgba(255,184,27,0.03);
}
.service-preview-icon {
    width: 56px; height: 56px; margin: 0 auto 1.25rem;
    color: var(--gold);
}
.service-preview-icon svg { width: 100%; height: 100%; }
.service-preview-item h3 {
    font-family: var(--serif); font-size: 1.2rem;
    font-weight: 700; margin-bottom: 0.5rem;
}
.service-preview-item p {
    font-family: var(--body); font-size: 1rem;
    color: rgba(255,255,255,0.5); font-weight: 300;
}
.services-preview-cta { text-align: center; margin-top: 3rem; }

/* ===== ABOUT PREVIEW ===== */
.about-preview { background: var(--dark-gray); }
.about-preview-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
}
.about-preview-image {
    aspect-ratio: 3/4; border-radius: 6px; overflow: hidden;
}
.about-preview-img-inner {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #151515 0%, #222 50%, #151515 100%);
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,184,27,0.15); border-radius: 6px;
}
.about-preview-img-inner svg { width: 80px; height: 80px; opacity: 0.15; }

/* ===== SERVICES STRIP (homepage) ===== */
.services-strip { background: var(--black); }
.services-strip-content {
    display: flex; align-items: center; justify-content: space-between;
    gap: 3rem; flex-wrap: wrap;
}
.services-strip-text { max-width: 720px; }
.services-strip-text .section-text { margin-top: 1rem; }

/* ===== SOCIAL PROOF ===== */
.social-proof { background: var(--dark-gray); padding: 4rem 2rem; }
.proof-credits { text-align: center; }
.proof-poster-link {
    display: inline-block; margin-top: 1.5rem;
    border-radius: 6px; overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.proof-poster-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}
.proof-poster-link img {
    display: block; max-width: 180px; width: 100%; height: auto;
    transition: opacity 0.3s;
}
.proof-poster-link:hover img { opacity: 0.9; }

/* ===== CLOSING CTA ===== */
.closing-cta {
    background: var(--dark-gray);
    text-align: center;
    padding: 5rem 2rem;
}
.closing-cta-content .section-title { margin-bottom: 1rem; }
.closing-cta .btn-outline {
    background: var(--deep-turquoise);
    color: var(--white);
    border-color: var(--deep-turquoise);
}
.closing-cta .btn-outline:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* ===== SERVICES PAGE ===== */
.services-full { background: var(--black); padding-top: 3rem; }
.services-full-header { margin-bottom: 4rem; }
.services-full .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 4rem;
}
.services-full-grid {
    display: grid; grid-template-columns: 1fr; gap: 0;
}
.service-full-item {
    display: block;
    background: var(--dark-gray);
    border-radius: 8px;
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.04);
    transition: border-color 0.4s;
}
.service-full-item:hover { border-color: rgba(255,184,27,0.2); }
.service-full-item:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
}
.service-full-number {
    font-family: var(--serif); font-size: 4rem;
    font-weight: 900; color: rgba(255,184,27,0.15);
    margin-bottom: 1rem;
}
.service-full-text h3 {
    font-family: var(--serif); font-size: 1.8rem;
    font-weight: 700; color: var(--gold-light); margin-bottom: 1rem;
}
.service-full-text p {
    font-family: var(--body); font-size: 1.15rem;
    line-height: 1.8; color: rgba(255,255,255,0.7); font-weight: 300;
    text-align: justify;
}

/* ===== ABOUT PAGE ===== */
.about-story { background: var(--black); padding-top: 3rem; }
.about-story-layout {
    margin: 0 auto;
    text-align: center;
}
.about-story .section-text + .section-text { margin-top: 1.5rem; }

.crew-section { background: var(--dark-gray); }
.crew-header { margin-bottom: 3rem; }
.crew-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.crew-card {
    background: var(--black); border-radius: 8px;
    overflow: hidden; border: 1px solid rgba(255,255,255,0.06);
    transition: border-color 0.4s;
}
.crew-card:hover { border-color: rgba(255,184,27,0.25); }
.crew-photo {
    width: 100%; aspect-ratio: 1;
    background: linear-gradient(135deg, #1a1a1a, #252525);
    display: flex; align-items: center; justify-content: center;
}
.crew-photo svg { width: 40px; height: 40px; opacity: 0.1; stroke: white; fill: none; }
.crew-info { padding: 1.5rem; }
.crew-info h3 {
    font-family: var(--serif); font-size: 1.15rem; font-weight: 700;
}
.crew-info span {
    font-family: var(--sans); font-size: 0.7rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); display: block; margin-top: 0.25rem;
}

.signup-section { background: var(--black); }
.signup-layout {
    max-width: 700px; margin: 0 auto; text-align: center;
}

/* ===== WHY NJ PAGE ===== */
.nj-tax-details { background: var(--black); text-align: center; }
.tax-grid {
    display: grid; grid-template-columns: 1fr;
    gap: 2rem; margin-top: 3rem;
}
.tax-card:nth-child(1),
.tax-card:nth-child(4) {
    grid-column: auto;
    max-width: none;
    margin: 0;
}
.tax-card {
    background: var(--dark-gray); border-radius: 8px; padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.04);
    transition: border-color 0.4s;
    text-align: justify;
}
.tax-card:hover { border-color: rgba(255,184,27,0.2); }
.tax-card h3 {
    font-family: var(--serif); font-size: 1.4rem;
    font-weight: 700; color: var(--gold-light); margin-bottom: 0.75rem;
}
.tax-card p {
    font-family: var(--body); font-size: 1.15rem;
    color: rgba(255,255,255,0.65); line-height: 1.7; font-weight: 300;
}

.proximity-section { background: var(--black); }
.proximity-layout {
    margin: 0 auto;
    text-align: center;
}
.proximity-map {
    aspect-ratio: 4/3; background: var(--black);
    border-radius: 8px; display: flex;
    align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.06);
    font-family: var(--sans); font-size: 0.8rem;
    color: var(--gray); letter-spacing: 0.1em;
}

/* ===== LOCATIONS CATALOG PAGE ===== */
.locations-catalog { background: var(--black); padding-top: 4rem; }

/* Filter Bar */
.loc-filters {
    display: flex; gap: 1.5rem; align-items: flex-end;
    flex-wrap: wrap; margin-bottom: 1.5rem;
    padding: 2rem; background: var(--dark-gray);
    border-radius: 8px; border: 1px solid rgba(255,255,255,0.06);
}
.loc-filter-group { flex: 1; min-width: 180px; }
.loc-filter-group label {
    font-family: var(--sans); font-size: 0.65rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); display: block; margin-bottom: 0.5rem;
}
.loc-filter-group select {
    width: 100%; padding: 0.75rem 1rem;
    background: var(--black); color: var(--white);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px; font-family: var(--body);
    font-size: 1rem; cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    transition: border-color 0.3s;
}
.loc-filter-group select:hover,
.loc-filter-group select:focus {
    border-color: var(--gold); outline: none;
}
.loc-filter-group select option {
    background: var(--black); color: var(--white);
}
.loc-filter-reset {
    padding: 0.75rem 1.5rem; background: transparent;
    color: var(--gray); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px; font-family: var(--sans);
    font-size: 0.7rem; letter-spacing: 0.15em;
    text-transform: uppercase; cursor: pointer;
    transition: all 0.3s; white-space: nowrap;
}
.loc-filter-reset:hover { color: var(--gold); border-color: var(--gold); }

/* Results bar */
.loc-results-bar {
    margin-bottom: 2rem; padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.loc-results-bar span {
    font-family: var(--sans); font-size: 0.75rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gray);
}

/* Property Grid */
.loc-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

/* Property Card */
.loc-card {
    background: var(--dark-gray); border-radius: 8px;
    overflow: hidden; cursor: pointer;
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.4s ease;
    animation: locCardIn 0.5s ease both;
}
@keyframes locCardIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.loc-card:hover {
    border-color: rgba(255,184,27,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.loc-card-img {
    width: 100%; aspect-ratio: 16/10;
    background-size: cover; background-position: center;
    position: relative; transition: transform 0.6s;
}
.loc-card:hover .loc-card-img { transform: scale(1.03); }
.loc-card-badge {
    position: absolute; bottom: 0.75rem; right: 0.75rem;
    background: rgba(10,10,10,0.85); backdrop-filter: blur(8px);
    padding: 0.35rem 0.75rem; border-radius: 4px;
    font-family: var(--sans); font-size: 0.65rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold);
}
.loc-card-info { padding: 1.25rem 1.5rem; }
.loc-card-info h3 {
    font-family: var(--serif); font-size: 1.15rem;
    font-weight: 700; margin-bottom: 0.25rem;
}
.loc-card-county {
    font-family: var(--sans); font-size: 0.7rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gray);
}
.loc-card-tags {
    display: flex; gap: 0.5rem; margin-top: 0.75rem;
}
.loc-card-tags span {
    padding: 0.25rem 0.6rem; background: rgba(255,184,27,0.08);
    border: 1px solid rgba(255,184,27,0.15); border-radius: 3px;
    font-family: var(--sans); font-size: 0.6rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold-light);
}

/* ===== CATEGORY TILES (logged-out view) ===== */
.loc-category-tile {
    background: var(--dark-gray); border-radius: 8px;
    overflow: hidden; cursor: pointer;
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.4s ease;
    animation: locCardIn 0.5s ease both;
    position: relative;
}
.loc-category-tile:hover {
    border-color: rgba(255,184,27,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* Mosaic layout */
.cat-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.cat-mosaic-main {
    grid-row: 1 / -1;
    background-size: cover; background-position: center;
    min-height: 100%;
    transition: transform 0.6s;
}
.loc-category-tile:hover .cat-mosaic-main { transform: scale(1.03); }

/* When no side photos, main takes full width */
.cat-mosaic-main:only-child {
    grid-column: 1 / -1;
}

.cat-mosaic-side {
    display: flex; flex-direction: column;
    gap: 2px;
    min-height: 0;
    overflow: hidden;
}
.cat-mosaic-thumb {
    background-size: cover; background-position: center;
    flex: 1; min-height: 0;
    transition: transform 0.6s;
}
.loc-category-tile:hover .cat-mosaic-thumb { transform: scale(1.03); }

/* Overlay with category label */
.cat-tile-overlay {
    padding: 1.25rem 1.5rem;
    display: flex; align-items: center; gap: 0.75rem;
}
.cat-tile-icon {
    font-size: 1.4rem;
    line-height: 1;
}
.cat-tile-label {
    font-family: var(--serif); font-size: 1.15rem;
    font-weight: 700; flex: 1;
    color: var(--white);
}
.cat-tile-count {
    font-family: var(--sans); font-size: 0.65rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold);
    background: rgba(255,184,27,0.08);
    border: 1px solid rgba(255,184,27,0.15);
    padding: 0.3rem 0.7rem; border-radius: 3px;
    white-space: nowrap;
}

/* Empty state */
.loc-empty {
    text-align: center; padding: 5rem 2rem;
}
.loc-empty p {
    font-family: var(--body); font-size: 1.2rem;
    color: var(--gray); margin-bottom: 1.5rem;
}

/* ===== LIGHTBOX ===== */
.loc-lightbox {
    position: fixed; inset: 0; z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}
.loc-lightbox.active { opacity: 1; visibility: visible; }
.loc-lightbox-overlay {
    position: absolute; inset: 0;
    background: rgba(10,10,10,0.95);
}
.loc-lightbox-content {
    position: relative; z-index: 1;
    width: 90vw; max-width: 1000px;
    max-height: 90vh; overflow: hidden;
    display: flex; flex-direction: column;
}
.loc-lightbox-close {
    position: absolute; top: -0.5rem; right: 0;
    background: none; border: none; color: var(--white);
    font-size: 2.5rem; cursor: pointer; z-index: 2;
    line-height: 1; transition: color 0.3s;
}
.loc-lightbox-close:hover { color: var(--gold); }
.loc-lightbox-header { margin-bottom: 1.5rem; }
.loc-lightbox-header h3 {
    font-family: var(--serif); font-size: 1.8rem;
    font-weight: 700; color: var(--white);
}
.loc-lightbox-header span {
    font-family: var(--sans); font-size: 0.7rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); margin-top: 0.25rem; display: block;
}
.loc-lightbox-main {
    position: relative; display: flex;
    align-items: center; gap: 1rem;
    flex: 1; min-height: 0;
}
.loc-lb-img-wrap {
    flex: 1; position: relative;
    border-radius: 6px; overflow: hidden;
    background: var(--dark-gray);
    max-height: 100%;
}
.loc-lb-img-wrap img {
    width: 100%; display: block;
    max-height: calc(90vh - 220px); object-fit: contain;
}
.loc-lb-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 0.75rem 1rem;
    background: linear-gradient(transparent, rgba(10,10,10,0.8));
    font-family: var(--sans); font-size: 0.7rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}
.loc-lb-arrow {
    flex-shrink: 0; width: 44px; height: 44px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%; color: var(--white);
    font-size: 1.5rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.loc-lb-arrow:hover {
    background: rgba(255,184,27,0.15);
    border-color: var(--gold); color: var(--gold);
}
.loc-lb-thumbs {
    display: flex; gap: 0.5rem; margin-top: 1rem;
    overflow-x: auto; padding-bottom: 0.5rem;
}
.loc-lb-thumb {
    flex-shrink: 0; width: 64px; height: 44px;
    background-size: cover; background-position: center;
    border-radius: 4px; cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5; transition: all 0.3s;
}
.loc-lb-thumb:hover { opacity: 0.8; }
.loc-lb-thumb.active {
    opacity: 1; border-color: var(--gold);
}
.loc-lb-cta {
    margin-top: 1.5rem; text-align: center;
}

/* ===== NAV AUTH BUTTON ===== */
.nav-auth {
    display: flex; align-items: center; gap: 1rem; margin-left: 1.5rem;
}
.btn-nav-login {
    background: transparent; border: 1px solid var(--deep-turquoise);
    color: var(--deep-turquoise); padding: 0.5rem 1.25rem;
    font-family: var(--sans); font-size: 0.7rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s; border-radius: 3px;
}
.btn-nav-login:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.nav-user { display: flex; align-items: center; gap: 1rem; }
.nav-user-name {
    font-family: var(--sans); font-size: 0.7rem;
    letter-spacing: 0.1em; color: var(--gold-light);
}
.mobile-login-link { color: var(--gold) !important; font-size: 1.2rem !important; }

/* ===== ACCESS BANNER ===== */
.loc-access-banner {
    background: rgba(255,184,27,0.08); border-bottom: 1px solid rgba(255,184,27,0.15);
    padding: 1rem 4rem;
}
.access-banner-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem; flex-wrap: wrap;
}
.access-banner-text {
    display: flex; align-items: center; gap: 0.75rem;
    font-family: var(--sans); font-size: 0.8rem;
    color: var(--gold-light); line-height: 1.5;
}
.access-banner-text svg { flex-shrink: 0; color: var(--gold); }

/* ===== SEARCH BAR ===== */
.loc-search-bar {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 1.5rem; margin-bottom: 1rem;
    background: var(--dark-gray); border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: border-color 0.3s;
}
.loc-search-bar:focus-within { border-color: var(--gold); }
.loc-search-bar svg { color: var(--gray); flex-shrink: 0; }
.loc-search-bar input {
    flex: 1; background: transparent; border: none;
    color: var(--white); font-family: var(--body);
    font-size: 1.1rem; outline: none;
}
.loc-search-bar input::placeholder { color: var(--gray); }

/* ===== RESULTS BAR (updated with flex) ===== */
.loc-results-bar {
    margin-bottom: 1rem; padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: space-between;
}

/* ===== VIEW TOGGLE ===== */
.loc-view-toggle { display: flex; gap: 0.5rem; }
.loc-view-btn {
    width: 36px; height: 36px; display: flex;
    align-items: center; justify-content: center;
    background: transparent; border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px; color: var(--gray);
    cursor: pointer; transition: all 0.3s;
}
.loc-view-btn:hover { border-color: var(--gold); color: var(--gold); }
.loc-view-btn.active { background: rgba(255,184,27,0.1); border-color: var(--gold); color: var(--gold); }

/* ===== SHORTLIST BAR ===== */
.loc-shortlist-bar {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 1.5rem; padding: 0.75rem 1.25rem;
    background: rgba(255,184,27,0.06); border-radius: 6px;
    border: 1px solid rgba(255,184,27,0.1);
}
.loc-shortlist-bar span {
    font-family: var(--sans); font-size: 0.75rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold-light);
}

/* ===== CARD IMAGE WRAP (for overlay elements) ===== */
.loc-card-img-wrap {
    position: relative; overflow: hidden;
}

/* ===== HEART / SHORTLIST BUTTON ===== */
.loc-card-heart {
    position: absolute; top: 0.75rem; right: 0.75rem;
    width: 36px; height: 36px; z-index: 2;
    background: rgba(10,10,10,0.6); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15); border-radius: 50%;
    color: var(--white); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; opacity: 0;
}
.loc-card:hover .loc-card-heart { opacity: 1; }
.loc-card-heart:hover { background: rgba(255,184,27,0.2); border-color: var(--gold); color: var(--gold); }
.loc-card-heart.active { opacity: 1; color: #e74c3c; border-color: #e74c3c; background: rgba(231,76,60,0.15); }
.loc-card-heart.active svg { fill: currentColor; }

/* ===== HOVER PREVIEW DOTS ===== */
.loc-card-dots {
    position: absolute; bottom: 0.75rem; left: 50%;
    transform: translateX(-50%); z-index: 2;
    display: flex; gap: 5px;
}
.loc-card-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,0.35);
    transition: all 0.3s;
}
.loc-card-dot.active { background: var(--gold); transform: scale(1.3); }

/* ===== LOCK BADGE (public cards) ===== */
.loc-card-lock-badge {
    position: absolute; top: 0.75rem; left: 0.75rem; z-index: 2;
    display: flex; align-items: center; gap: 0.35rem;
    background: rgba(10,10,10,0.75); backdrop-filter: blur(8px);
    padding: 0.3rem 0.65rem; border-radius: 4px;
    font-family: var(--sans); font-size: 0.6rem;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

/* ===== AESTHETIC TAGS ===== */
.tag-aesthetic {
    background: rgba(255,184,27,0.04) !important;
    border-color: rgba(255,184,27,0.08) !important;
    color: var(--gray) !important;
}

/* ===== MAP CONTAINER ===== */
.loc-map-container {
    border-radius: 8px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}

/* Map pin styles */
.loc-map-pin { background: transparent !important; border: none !important; }
.loc-pin-inner {
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--gold); border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    transition: transform 0.2s;
}
.loc-map-pin:hover .loc-pin-inner { transform: scale(1.3); }

/* Leaflet popup overrides */
.leaflet-popup-content-wrapper {
    background: var(--dark-gray) !important;
    color: var(--white) !important;
    border-radius: 10px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6) !important;
    padding: 0 !important;
}
.leaflet-popup-tip { background: var(--dark-gray) !important; }
.leaflet-popup-content { margin: 0 !important; font-family: var(--sans) !important; font-size: 0.85rem !important; width: 280px !important; }
.loc-map-popup-wrapper .leaflet-popup-content { margin: 0 !important; }
.loc-map-popup { overflow: hidden; border-radius: 10px; }
.loc-map-popup strong { font-family: var(--serif); font-size: 1.05rem; line-height: 1.3; }

/* Map popup carousel */
.map-popup-carousel { position: relative; }
.map-popup-img-wrap {
    position: relative; width: 100%; height: 170px; overflow: hidden;
    border-radius: 10px 10px 0 0;
}
.map-popup-img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; transition: opacity 0.3s;
}
.map-popup-img-type {
    position: absolute; bottom: 8px; left: 8px;
    background: rgba(10,10,10,0.75); backdrop-filter: blur(6px);
    padding: 3px 8px; border-radius: 3px;
    font-family: var(--sans); font-size: 0.6rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold-light);
}
.map-popup-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(10,10,10,0.6); backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white); font-size: 1.1rem;
    cursor: pointer; display: flex;
    align-items: center; justify-content: center;
    transition: all 0.2s; line-height: 1;
}
.map-popup-prev { left: 8px; }
.map-popup-next { right: 8px; }
.map-popup-arrow:hover {
    background: rgba(255,184,27,0.25); border-color: var(--gold); color: var(--gold);
}

/* Map popup counter + dots */
.map-popup-counter {
    display: flex; align-items: center; justify-content: space-between;
    padding: 6px 12px; background: rgba(10,10,10,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.map-popup-counter-text {
    font-family: var(--sans); font-size: 0.6rem;
    letter-spacing: 0.1em; color: var(--gray);
}
.map-popup-dots { display: flex; gap: 4px; align-items: center; }
.map-popup-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: rgba(255,255,255,0.25); transition: all 0.2s;
}
.map-popup-dot.active { background: var(--gold); transform: scale(1.4); }
.map-popup-dot-more {
    font-family: var(--sans); font-size: 0.55rem;
    color: var(--gray); margin-left: 2px;
}

/* Map popup info section */
.map-popup-info { padding: 12px; }
.map-popup-header {
    display: flex; align-items: flex-start; justify-content: space-between; gap: 8px;
    margin-bottom: 8px;
}
.map-popup-meta {
    font-size: 0.75rem; opacity: 0.6; line-height: 1.6;
}
.map-popup-heart {
    flex-shrink: 0; width: 30px; height: 30px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%; color: var(--white);
    cursor: pointer; display: flex;
    align-items: center; justify-content: center;
    transition: all 0.2s;
}
.map-popup-heart:hover { border-color: var(--gold); color: var(--gold); background: rgba(255,184,27,0.1); }
.map-popup-heart.active { color: #e74c3c; border-color: #e74c3c; background: rgba(231,76,60,0.12); }

/* Map popup tags */
.map-popup-tags {
    display: flex; gap: 6px; margin-bottom: 10px;
}
.map-popup-tags span {
    padding: 2px 7px; background: rgba(255,184,27,0.08);
    border: 1px solid rgba(255,184,27,0.12); border-radius: 3px;
    font-family: var(--sans); font-size: 0.58rem;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--gold-light);
}

/* Map popup gallery button */
.map-popup-gallery-btn {
    width: 100%; padding: 8px; border: 1px solid var(--gold);
    background: transparent; color: var(--gold);
    font-family: var(--sans); font-size: 0.68rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    cursor: pointer; border-radius: 4px;
    transition: all 0.2s;
}
.map-popup-gallery-btn:hover { background: var(--gold); color: var(--black); }

/* ===== LOGIN MODAL ===== */
.login-modal {
    position: fixed; inset: 0; z-index: 3000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
}
.login-modal.active { opacity: 1; visibility: visible; }
.login-overlay {
    position: absolute; inset: 0;
    background: rgba(10,10,10,0.9); backdrop-filter: blur(10px);
}
.login-content {
    position: relative; z-index: 1;
    width: 90vw; max-width: 420px;
    background: var(--dark-gray); border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 2.5rem;
}
.login-header { margin-bottom: 2rem; }
.login-header h3 {
    font-family: var(--serif); font-size: 1.8rem;
    font-weight: 700; margin-bottom: 0.5rem;
}
.login-header p {
    font-family: var(--body); font-size: 1rem;
    color: var(--gray); line-height: 1.6;
}
.login-form { display: flex; flex-direction: column; gap: 1.25rem; }
.login-form .form-group input {
    padding: 0.85rem 1rem; background: var(--black);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 6px;
    font-size: 1rem; transition: border-color 0.3s;
}
.login-form .form-group input:focus { border-color: var(--gold); border-bottom-color: var(--gold); }
.login-error {
    font-family: var(--sans); font-size: 0.8rem;
    color: #e74c3c; padding: 0.5rem 0;
}
.login-divider {
    display: flex; align-items: center; gap: 1rem;
    margin: 1.5rem 0; color: var(--gray);
}
.login-divider::before, .login-divider::after {
    content: ''; flex: 1; height: 1px;
    background: rgba(255,255,255,0.08);
}
.login-divider span {
    font-family: var(--sans); font-size: 0.75rem;
    letter-spacing: 0.1em; text-transform: uppercase;
}
.login-signup p {
    font-family: var(--body); font-size: 1rem;
    color: var(--gray); margin-bottom: 1rem; text-align: center;
}

/* ===== TEASER MODAL (public) ===== */
.loc-teaser-modal {
    position: fixed; inset: 0; z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
}
.loc-teaser-modal.active { opacity: 1; visibility: visible; }
.loc-teaser-overlay {
    position: absolute; inset: 0;
    background: rgba(10,10,10,0.95);
}
.loc-teaser-content {
    position: relative; z-index: 1;
    width: 90vw; max-width: 520px;
    display: flex; flex-direction: column;
}
.loc-teaser-img-wrap {
    border-radius: 8px 8px 0 0; overflow: hidden;
}
.loc-teaser-img-wrap img {
    width: 100%; display: block;
    aspect-ratio: 16/10; object-fit: cover;
}
.loc-teaser-info {
    background: var(--dark-gray); padding: 1.5rem;
}
.loc-teaser-info h3 {
    font-family: var(--serif); font-size: 1.4rem;
    font-weight: 700; margin-bottom: 0.25rem;
}
.loc-teaser-info span {
    font-family: var(--sans); font-size: 0.7rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold); display: block; margin-bottom: 0.5rem;
}
.loc-teaser-info p {
    font-family: var(--body); font-size: 1rem;
    color: var(--gray); line-height: 1.6;
}
.loc-teaser-lock {
    background: var(--dark-gray); padding: 2rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-radius: 0 0 8px 8px;
    text-align: center;
}
.loc-teaser-lock svg { color: var(--gold); margin-bottom: 0.75rem; }
.loc-teaser-lock p {
    font-family: var(--body); font-size: 1rem;
    color: var(--gray); margin-bottom: 1.25rem; line-height: 1.6;
}

/* Legacy teaser styles kept for compatibility */
.locations-teaser { background: var(--black); }
.locations-teaser-header { margin-bottom: 2rem; text-align: center; }
.locations-teaser-header .section-title { margin-bottom: 1rem; }
.locations-teaser-header .section-text { margin: 0 auto 2rem; text-align: center; }

.locations-cta-section {
    background: var(--dark-gray); text-align: center;
}
.locations-cta-content { margin: 0 auto; }

/* ===== CONTACT PAGE ===== */
.contact-full { background: var(--black); }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group label {
    font-family: var(--sans); font-size: 0.7rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gray); display: block; margin-bottom: 0.5rem;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 1rem 0; background: transparent;
    border: none; border-bottom: 1px solid rgba(255,255,255,0.15);
    color: var(--white); font-family: var(--body); font-size: 1.1rem;
    outline: none; transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-bottom-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--black); color: var(--white); }
.contact-info-item { margin-bottom: 2.5rem; }
.contact-info-item h4 {
    font-family: var(--sans); font-size: 0.7rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.75rem;
}
.contact-info-item p, .contact-info-item a {
    font-family: var(--sans); font-size: 0.7rem;
    color: var(--white); text-decoration: none;
    line-height: 1.6; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
}
.contact-info-item a:hover { color: var(--gold); }
.social-links {
    display: flex; gap: 1rem; margin-top: 1rem;
}
.social-links a {
    width: 42px; height: 42px;
    border: 1px solid rgba(19,111,129,0.4); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--deep-turquoise); transition: all 0.3s;
}
.social-links a:hover {
    border-color: var(--gold); color: var(--gold);
    background: rgba(255,184,27,0.1);
}
.social-links a svg { width: 16px; height: 16px; }

/* ===== FOOTER ===== */
footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 4rem;
}
.footer-content {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: start;
}
.footer-left {
    display: flex; flex-direction: column;
}
.footer-left .footer-nav {
    order: 1;
}
.footer-left .footer-logo {
    order: 2;
    margin-top: 1.5rem;
}
.footer-logo {
    display: flex; align-items: center;
    margin-bottom: 1rem;
}
.footer-logo img {
    height: 44px; width: auto;
    object-fit: contain;
}
.footer-address {
    font-family: var(--sans); font-size: 0.75rem;
    color: var(--gray); line-height: 1.8; font-weight: 400;
    letter-spacing: 0.15em; text-transform: uppercase;
}
.footer-address a { color: var(--gray); text-decoration: none; transition: color 0.3s; }
.footer-address a:hover { color: var(--gold); }
.footer-center { display: none; }
.footer-nav {
    display: flex; flex-direction: column; gap: 0.75rem;
}
.footer-nav a {
    font-family: var(--sans); font-size: 0.75rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gray); text-decoration: none;
    transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-right .btn-outline {
    background: var(--deep-turquoise); border-color: var(--deep-turquoise); color: var(--white);
}
.footer-right .btn-outline:hover {
    background: var(--gold); border-color: var(--gold); color: var(--black);
}
.footer-right { text-align: right; }
.footer-right .social-links { justify-content: flex-end; margin-bottom: 1.5rem; }
.footer-bottom {
    max-width: 1200px; margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-bottom p {
    font-family: var(--sans); font-size: 0.7rem;
    color: rgba(255,255,255,0.3); letter-spacing: 0.1em;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    section { padding: 5rem 2rem; }
    nav { padding: 1.25rem 2rem; }
    nav.scrolled { padding: 0.75rem 2rem; }
    .nav-auth { display: none; }
    .incentives-layout { grid-template-columns: 1fr; gap: 3rem; }
    .about-preview-layout { grid-template-columns: 1fr; gap: 3rem; }
    .about-preview-image { max-height: 400px; }
    .proof-poster-link img { max-width: 260px; }
    .services-strip-content { flex-direction: column; text-align: center; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .featured-grid { grid-template-columns: repeat(2, 1fr); }
    .services-full .container { grid-template-columns: 1fr; }
    .service-full-item { max-width: 100%; }
    .service-full-item:last-child { max-width: 100%; }
    .about-story-layout { max-width: 100%; }
    .proximity-layout { max-width: 100%; }
    .tax-grid { grid-template-columns: 1fr; }
    .tax-card:nth-child(1),
    .tax-card:nth-child(4) {
        max-width: 100%;
    }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .footer-right { text-align: left; }
    .footer-right .social-links { justify-content: flex-start; }
    .page-hero { padding: 8rem 2rem 3rem; }
    .loc-grid { grid-template-columns: repeat(2, 1fr); }
    .loc-access-banner { padding: 1rem 2rem; }
}
@media (max-width: 768px) {
    section { padding: 4rem 1.5rem; }
    .nav-links { display: none; }
    .nav-auth { display: none; }
    .hamburger { display: flex; }
    .hero-title { font-size: clamp(3rem, 14vw, 5rem); }
    .landscapes-grid { grid-template-columns: repeat(2, 1fr); }
    .services-preview-grid { grid-template-columns: 1fr; }
    .proof-poster-link img { max-width: 220px; }
    .hero-super { font-size: 0.7rem; }
    .featured-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .footer-left { display: flex; flex-direction: column; }
    .footer-left .footer-logo { order: 2; margin-top: 1.5rem; margin-bottom: 0; }
    .footer-left .footer-nav { order: 1; margin-top: 0; }
    .footer-right { text-align: left; }
    .footer-right .social-links { justify-content: flex-start; }
    footer { padding: 3rem 1.5rem; }
    .page-hero { padding: 8rem 1.5rem 3rem; }
    .loc-filters { flex-direction: column; gap: 1rem; }
    .loc-filter-group { min-width: 100%; }
    .loc-grid { grid-template-columns: 1fr; }
    .loc-lb-arrow { display: none; }
    .loc-lightbox-content { width: 95vw; }
    .loc-access-banner { padding: 1rem 1.5rem; }
    .access-banner-inner { flex-direction: column; text-align: center; }
    .access-banner-text { flex-direction: column; text-align: center; }
    .loc-card-heart { opacity: 1; }
    .loc-shortlist-bar { flex-wrap: wrap; }
    .loc-map-container #locMap { height: 400px; }
    .login-content { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
    .landscapes-grid { grid-template-columns: 1fr; }
    .hero-super { font-size: 0.7rem; }
    .hero-dot { margin: 0 0.4rem; }
}

/* Mobile-only: card titles centered, "Producer-Led · Creator-Driven" on one line */
@media (max-width: 768px) {
    .service-full-text h3 { text-align: center; }
    .tax-card h3 { text-align: center; }
    .page-hero .section-label { white-space: nowrap; }
}
