/* ============================================================
   Megan Tucker Photography — Global Stylesheet
   Fonts: Cormorant Garamond (serif) + DM Sans (sans)
   ============================================================

   TABLE OF CONTENTS
   1.  Reset & Base
   2.  Navigation (Desktop + Mobile)
   3.  Hero
   4.  Filter Bar
   5.  Location Badge
   6.  Gallery Sections & Section Labels
   7.  Masonry Grid
   8.  Video Break
   9.  Lightbox
   10. Gallery Info Block
   11. Site Footer
   12. Homepage — Hero, Category Grid, About
   13. Landscapes Hub — Collections Grid
   14. Contact Page
   15. Real Estate Grid
   16. Aerial Crosslink Banner
   17. Responsive / Mobile
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=DM+Sans:wght@300;400&display=swap');


/* ================================================================
   1. RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black:     #0a0a0a;
    --off-black: #111;
    --charcoal:  #1c1c1c;
    --mid:       #2e2e2e;
    --muted:     #666;
    --silver:    #aaa;
    --light:     #e8e4df;
    --cream:     #f5f1eb;
    --accent:    #c8a96e;
    --accent2:   #8b6c3e;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    background: var(--black);
    color: var(--light);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    scroll-behavior: smooth;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; }


/* ================================================================
   2. NAVIGATION
   ================================================================ */
.desktop-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 500;
    display: flex; justify-content: center; align-items: center; gap: 36px;
    padding: 18px 0; background: transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
    letter-spacing: 0.12em; font-size: 11px; text-transform: uppercase;
}
.desktop-nav.scrolled {
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.desktop-nav a { text-decoration: none; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.desktop-nav a:hover  { color: #fff; }
.desktop-nav a.active { color: var(--accent); }

.mobile-nav {
    display: none; position: fixed; top: 0; left: 0; right: 0; z-index: 500;
    flex-direction: column; background: rgba(10,10,10,0.97);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav-header {
    display: flex; align-items: center; justify-content: space-between; padding: 16px 20px;
}
.mobile-logo { font-family: 'Cormorant Garamond', serif; font-size: 18px; letter-spacing: 0.05em; color: var(--light); }
.hamburger   { font-size: 22px; cursor: pointer; color: var(--light); line-height: 1; }
.mobile-links {
    display: none; flex-direction: column; padding: 8px 20px 16px; gap: 2px;
}
.mobile-links a {
    text-decoration: none; color: rgba(255,255,255,0.7); font-size: 13px;
    text-transform: uppercase; letter-spacing: 0.1em; padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-links a.active { color: var(--accent); }


/* ================================================================
   3. HERO  (used on all gallery/trip pages)
   ================================================================ */
.hero {
    position: relative; height: 100vh; min-height: 600px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center 40%;
    transform: scale(1.06); transition: transform 8s ease; filter: brightness(0.45);
}
.hero:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom,rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 40%,rgba(10,10,10,0.7) 80%,var(--black) 100%);
}
.hero-content {
    position: relative; z-index: 2; text-align: center; padding: 0 24px;
    animation: heroFadeUp 1.2s ease both;
}
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
    display: inline-block; font-size: 10px; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
    animation: heroFadeUp 1.2s 0.15s ease both;
}
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 9vw, 110px); font-weight: 300; line-height: 0.92;
    letter-spacing: -0.01em; color: #fff; animation: heroFadeUp 1.2s 0.25s ease both;
}
.hero-title em { font-style: italic; color: var(--accent); }
.hero-title-sm {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 7vw, 80px); font-weight: 300; line-height: 0.95;
    letter-spacing: -0.01em; color: #fff; animation: heroFadeUp 1.2s 0.25s ease both;
}
.hero-title-sm em { font-style: italic; color: var(--accent); }
.hero-subtitle {
    margin-top: 24px; font-size: 13px; letter-spacing: 0.15em;
    text-transform: uppercase; color: rgba(255,255,255,0.5);
    animation: heroFadeUp 1.2s 0.4s ease both;
}
.hero-scroll {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.35); font-size: 9px; letter-spacing: 0.2em;
    text-transform: uppercase; animation: heroFadeUp 1.2s 0.8s ease both;
}
.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50%       { opacity: 1;   transform: scaleY(1.1); }
}


/* ================================================================
   4. FILTER BAR
   ================================================================ */
.filter-bar {
    position: sticky; top: 0; z-index: 100;
    background: var(--off-black); border-bottom: 1px solid rgba(255,255,255,0.07);
    display: flex; align-items: center; justify-content: center; gap: 4px;
    padding: 14px 20px; flex-wrap: wrap;
}
.filter-btn {
    background: none; border: 1px solid transparent; color: var(--silver);
    font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 400;
    letter-spacing: 0.18em; text-transform: uppercase; padding: 8px 20px;
    cursor: pointer; border-radius: 2px; transition: all 0.2s;
}
.filter-btn:hover { color: var(--light); border-color: rgba(255,255,255,0.15); }
.filter-btn.active { color: var(--black); background: var(--accent); border-color: var(--accent); }
.filter-count { font-size: 9px; opacity: 0.6; margin-left: 5px; }


/* ================================================================
   5. LOCATION BADGE
   ================================================================ */
.location-badge {
    position: fixed; top: 70px; right: 24px; z-index: 200;
    background: rgba(10,10,10,0.85); backdrop-filter: blur(8px);
    border: 1px solid rgba(200,169,110,0.3); border-radius: 3px;
    padding: 8px 14px; font-size: 10px; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--accent);
    opacity: 0; transform: translateX(10px); transition: all 0.3s ease; pointer-events: none;
}
.location-badge.visible { opacity: 1; transform: translateX(0); }


/* ================================================================
   6. GALLERY SECTIONS & SECTION LABELS
   ================================================================ */
.gallery-section { padding: 48px 20px 0; max-width: 1400px; margin: 0 auto; }
.section-label {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 28px; padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.section-label-text {
    font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300;
    font-style: italic; color: var(--light); white-space: nowrap;
}
.section-label-line { flex: 1; height: 1px; background: rgba(255,255,255,0.07); }
.section-label-count { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.gallery-section .masonry { padding: 0; }


/* ================================================================
   7. MASONRY GRID
   ================================================================ */
.masonry { columns: 3; column-gap: 10px; max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.masonry-item {
    break-inside: avoid; margin-bottom: 10px; position: relative;
    overflow: hidden; border-radius: 2px; cursor: pointer;
}
.masonry-item img {
    width: 100%; height: auto; display: block;
    transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s ease;
    filter: brightness(0.92);
}
.masonry-item:hover img { transform: scale(1.04); filter: brightness(1); }
.masonry-item .photo-hover {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.3s ease;
    display: flex; align-items: flex-end; padding: 14px;
}
.masonry-item:hover .photo-hover { opacity: 1; }
.photo-hover-text { font-size: 11px; letter-spacing: 0.08em; color: rgba(255,255,255,0.8); text-transform: uppercase; }
.masonry-item.hidden { display: none; }


/* ================================================================
   8. VIDEO BREAK
   ================================================================ */
.video-break { max-width: 1400px; margin: 48px auto; padding: 0 20px; }
.video-label { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.video-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; font-style: italic; color: var(--light); margin-bottom: 20px; }
.video-wrapper { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 3px; overflow: hidden; }
.video-wrapper iframe { width: 100%; height: 100%; border: none; }


/* ================================================================
   9. LIGHTBOX
   ================================================================ */
.lightbox {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.97);
    z-index: 2000; justify-content: center; align-items: center; padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-inner {
    position: relative; max-width: 90vw; max-height: 90vh;
    display: flex; flex-direction: column; align-items: center;
}
.lightbox-inner img { max-width: 85vw; max-height: 78vh; object-fit: contain; border-radius: 2px; display: block; }
.lightbox-caption-bar {
    width: 100%; display: flex; justify-content: space-between;
    align-items: flex-end; padding: 16px 4px 0;
}
.lb-caption-text { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-style: italic; color: rgba(255,255,255,0.75); line-height: 1.4; }
.lb-caption-text b { font-style: normal; font-weight: 400; color: var(--light); }
.lb-caption-meta { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); white-space: nowrap; margin-left: 24px; padding-bottom: 2px; }
.lb-close {
    position: fixed; top: 20px; right: 20px;
    background: rgba(255,255,255,0.08); border: none; color: rgba(255,255,255,0.7);
    font-size: 20px; width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: all 0.2s; z-index: 2001;
}
.lb-close:hover { background: rgba(255,255,255,0.18); color: #fff; }
.lb-nav {
    position: fixed; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.06); border: none; color: rgba(255,255,255,0.6);
    font-size: 22px; width: 48px; height: 64px; border-radius: 3px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: all 0.2s; z-index: 2001;
}
.lb-nav:hover { background: rgba(255,255,255,0.15); color: #fff; }
.lb-prev { left: 12px; }
.lb-next { right: 12px; }
.lb-counter { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); font-size: 11px; letter-spacing: 0.2em; color: var(--muted); z-index: 2001; }


/* ================================================================
   10. GALLERY INFO BLOCK
   ================================================================ */
.gallery-info {
    max-width: 1400px; margin: 0 auto; padding: 48px 20px 0;
    display: flex; gap: 40px; align-items: flex-start;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.info-block { flex: 1; }
.info-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.info-text { font-size: 13px; color: var(--silver); line-height: 1.7; }
.order-btn {
    display: inline-block; margin-top: 12px; padding: 11px 26px;
    border: 1px solid var(--accent); color: var(--accent); text-decoration: none;
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    border-radius: 2px; transition: all 0.25s;
}
.order-btn:hover { background: var(--accent); color: var(--black); }


/* ================================================================
   11. SITE FOOTER
   ================================================================ */
.site-footer {
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1400px; margin: 48px auto 0; padding: 24px 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 11px; color: var(--muted); letter-spacing: 0.05em;
}
.footer-right { display: flex; gap: 18px; align-items: center; }
.social-icon img { width: 18px; height: 18px; opacity: 0.5; transition: opacity 0.2s; filter: invert(1); }
.social-icon img:hover { opacity: 0.9; }


/* ================================================================
   12. HOMEPAGE
   ================================================================ */
.home-hero {
    position: relative; height: 100vh; min-height: 600px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    overflow: hidden;
}
.home-hero-bg {
    position: absolute; inset: 0; background-image: url('jpgs/landmountain.jpg');
    background-size: cover; background-position: center 55%;
    transform: scale(1.04); transition: transform 10s ease; filter: brightness(0.4);
}
.home-hero:hover .home-hero-bg { transform: scale(1.0); }
.home-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom,rgba(0,0,0,0.05) 0%,rgba(0,0,0,0) 35%,rgba(10,10,10,0.65) 75%,var(--black) 100%);
}
.home-hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; }
.home-hero-name {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 6vw, 72px);
    font-weight: 300; letter-spacing: 0.06em; color: #fff;
    animation: heroFadeUp 1.2s 0.1s ease both;
}
.home-hero-tagline {
    margin-top: 16px; font-size: 11px; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--accent); animation: heroFadeUp 1.2s 0.35s ease both;
}
.home-hero-sub {
    margin-top: 10px; font-size: 12px; letter-spacing: 0.12em;
    text-transform: uppercase; color: rgba(255,255,255,0.4); animation: heroFadeUp 1.2s 0.5s ease both;
}

.category-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px;
    max-width: 1400px; margin: 0 auto; padding: 48px 20px 0;
}
.category-card {
    position: relative; overflow: hidden; aspect-ratio: 4/3;
    cursor: pointer; text-decoration: none; display: block;
}
.category-card img {
    width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6);
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s ease;
}
.category-card:hover img { transform: scale(1.05); filter: brightness(0.8); }
.category-card-label {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 24px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}
.category-card-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: #fff; letter-spacing: 0.02em; }
.category-card-sub { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-top: 4px; }

.about-section {
    max-width: 1400px; margin: 48px auto 0; padding: 72px 20px 0;
    display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.about-left img { width: 100%; border-radius: 2px; filter: brightness(0.9); }
.about-heading { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 300; font-style: italic; color: var(--light); margin-bottom: 28px; line-height: 1; }
.about-body { font-size: 14px; color: var(--silver); line-height: 1.8; margin-bottom: 16px; }
.about-btns { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.btn-primary {
    display: inline-block; padding: 12px 28px; background: var(--accent); color: var(--black);
    text-decoration: none; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    border-radius: 2px; transition: background 0.2s; font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--accent2); color: #fff; }
.btn-outline {
    display: inline-block; padding: 12px 28px; border: 1px solid rgba(255,255,255,0.25);
    color: var(--light); text-decoration: none; font-size: 10px; letter-spacing: 0.2em;
    text-transform: uppercase; border-radius: 2px; transition: all 0.2s; font-family: 'DM Sans', sans-serif;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }


/* ================================================================
   13. LANDSCAPES HUB
   ================================================================ */
.hub-intro { max-width: 1400px; margin: 0 auto; padding: 100px 20px 48px; text-align: center; }
.hub-intro-eyebrow { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.hub-intro-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 5vw, 64px); font-weight: 300; color: var(--light); line-height: 1; }
.hub-intro-title em { font-style: italic; color: var(--accent); }
.hub-intro-sub { margin-top: 16px; font-size: 13px; color: var(--muted); letter-spacing: 0.05em; }

.hub-featured { max-width: 1400px; margin: 0 auto 3px; padding: 0 20px; }
.hub-featured-card {
    position: relative; overflow: hidden; border-radius: 2px; height: 480px;
    cursor: pointer; text-decoration: none; display: block;
}
.hub-featured-card img {
    width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5);
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s;
}
.hub-featured-card:hover img { transform: scale(1.03); filter: brightness(0.65); }
.hub-featured-label {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center; padding: 24px;
}
.hub-featured-star {
    font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--accent);
    margin-bottom: 14px; border: 1px solid rgba(200,169,110,0.4); padding: 5px 14px; border-radius: 2px;
}
.hub-featured-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px, 6vw, 72px); font-weight: 300; color: #fff; line-height: 0.95; }
.hub-featured-title em { font-style: italic; color: var(--accent); }
.hub-featured-sub { margin-top: 14px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.hub-featured-cta {
    margin-top: 24px; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--accent); border: 1px solid var(--accent); padding: 10px 24px; border-radius: 2px;
    transition: all 0.25s; display: inline-block;
}
.hub-featured-card:hover .hub-featured-cta { background: var(--accent); color: var(--black); }

.hub-grid {
    max-width: 1400px; margin: 0 auto; padding: 3px 20px 0;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px;
}
.hub-card {
    position: relative; overflow: hidden; border-radius: 2px; aspect-ratio: 4/3;
    cursor: pointer; text-decoration: none; display: block;
}
.hub-card img {
    width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5);
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s;
}
.hub-card:hover img { transform: scale(1.05); filter: brightness(0.7); }
.hub-card-label {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}
.hub-card-eyebrow { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.hub-card-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; color: #fff; line-height: 1.1; }
.hub-card-meta { font-size: 10px; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); margin-top: 5px; text-transform: uppercase; }

.hub-instagram { max-width: 1400px; margin: 48px auto 0; padding: 0 20px; text-align: center; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 48px; }
.hub-instagram p { font-size: 13px; color: var(--muted); margin-bottom: 16px; letter-spacing: 0.05em; }


/* ================================================================
   14. CONTACT PAGE
   ================================================================ */
.contact-page {
    max-width: 1100px; margin: 0 auto; padding: 120px 20px 0;
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start;
}
.contact-left { text-align: center; }
.contact-photo { width: 100%; max-width: 320px; border-radius: 2px; margin: 0 auto 28px; filter: brightness(0.9); }
.contact-left h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 300; font-style: italic; color: var(--light); margin-bottom: 20px; }
.contact-link-btn {
    display: block; margin: 10px auto; max-width: 240px; padding: 11px 20px;
    background: var(--mid); color: var(--light); text-decoration: none;
    font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
    border-radius: 2px; border: 1px solid rgba(255,255,255,0.08); transition: all 0.2s;
}
.contact-link-btn:hover { background: var(--charcoal); border-color: var(--accent); color: var(--accent); }
.contact-right h2 { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 300; font-style: italic; color: var(--light); margin-bottom: 10px; }
.contact-right > p { font-size: 13px; color: var(--silver); line-height: 1.7; margin-bottom: 28px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: -8px; }
.contact-form input,
.contact-form textarea {
    padding: 12px 14px; background: var(--charcoal); color: var(--light);
    border: 1px solid rgba(255,255,255,0.08); border-radius: 2px;
    font-size: 14px; font-family: 'DM Sans', sans-serif; font-weight: 300; width: 100%;
    transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--accent); }
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-submit {
    display: inline-block; padding: 13px 32px; background: var(--accent); color: var(--black);
    border: none; font-family: 'DM Sans', sans-serif; font-size: 10px;
    letter-spacing: 0.2em; text-transform: uppercase; border-radius: 2px;
    cursor: pointer; transition: background 0.2s; align-self: flex-start;
}
.contact-submit:hover { background: var(--accent2); color: #fff; }


/* ================================================================
   15. REAL ESTATE — 2-COLUMN GRID
   ================================================================ */
.re-grid { columns: 2; column-gap: 10px; max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.re-grid .masonry-item { break-inside: avoid; }


/* ================================================================
   16. AERIAL CROSSLINK BANNER
   ================================================================ */
.aerial-crosslink { max-width: 1400px; margin: 48px auto 0; padding: 0 20px; }
.aerial-crosslink-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    padding: 28px 36px; border: 1px solid rgba(200,169,110,0.2); border-radius: 3px;
    background: rgba(200,169,110,0.04);
}
.aerial-crosslink-text .eyebrow { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.aerial-crosslink-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; color: var(--light); }
.aerial-crosslink-text p { font-size: 13px; color: var(--silver); margin-top: 5px; line-height: 1.6; }


/* ================================================================
   17. RESPONSIVE / MOBILE
   ================================================================ */
@media (max-width: 1024px) {
    .masonry       { columns: 2; }
    .re-grid       { columns: 2; }
    .hub-grid      { grid-template-columns: repeat(2, 1fr); }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .desktop-nav   { display: none; }
    .mobile-nav    { display: flex; }

    .masonry       { columns: 2; column-gap: 6px; }
    .masonry-item  { margin-bottom: 6px; }
    .re-grid       { columns: 1; }

    .hero-title    { font-size: 52px; }
    .hero-title-sm { font-size: 38px; }
    .home-hero-name { font-size: 32px; }

    .category-grid { grid-template-columns: 1fr; }
    .category-card { aspect-ratio: 3/2; }

    .about-section { grid-template-columns: 1fr; gap: 32px; padding-top: 48px; }
    .about-left img { max-width: 280px; }

    .hub-grid { grid-template-columns: 1fr; }
    .hub-featured-card { height: 300px; }
    .hub-featured-title { font-size: 36px; }

    .gallery-info { flex-direction: column; gap: 24px; }

    .contact-page { grid-template-columns: 1fr; padding-top: 80px; gap: 40px; }

    .aerial-crosslink-inner { flex-direction: column; text-align: center; padding: 24px 20px; }

    .lightbox-inner img { max-width: 92vw; max-height: 60vh; }
    .lb-prev { left: 4px; }
    .lb-next { right: 4px; }
    .lb-nav  { width: 36px; height: 52px; font-size: 18px; }

    .location-badge { display: none; }
    .filter-btn { padding: 7px 12px; font-size: 10px; }
}
