* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0f1f2e;
    --secondary: #1a3a52;
    --accent: #d4af37;
    --light: #f5f3f0;
    --dark: #0a0a0a;
    --text: #2c2c2c;
    --border: #e0dcd7;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Garamond', serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--light);
}

/* HEADER & NAVIGATION */
header {
    background: rgba(15, 31, 46, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 1.2rem 5%;
}

header.hidden {
    transform: translateY(-100%);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .name {
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.logo-text .title {
    font-size: 0.7rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav a {
    text-decoration: none;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.3px;
    position: relative;
}

nav a:hover,
nav a.active {
    color: var(--accent);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2.5px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
}

/* NAV DROPDOWN */
.has-dropdown {
    position: relative;
}

.dropdown-arrow {
    display: inline-block;
    font-size: 0.6rem;
    margin-left: 0.35rem;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.has-dropdown:hover .dropdown-arrow,
.has-dropdown:focus-within .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 10px);
    min-width: 170px;
    background: var(--secondary);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 2px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    list-style: none;
    padding: 0.6rem 0;
    margin-top: 0.75rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1001;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

/* Invisible bridge so the dropdown stays open while the mouse
   travels through the gap between the nav link and the menu */
.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -0.75rem;
    left: 0;
    right: 0;
    height: 0.75rem;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 0.65rem 1.75rem;
    font-size: 0.85rem;
    white-space: nowrap;
    color: rgba(255,255,255,0.75);
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    color: var(--accent);
    background: rgba(212, 175, 55, 0.08);
}

/* HERO SECTION */
.hero {
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(15, 31, 46, 0.7) 0%, rgba(26, 58, 82, 0.6) 100%),
                url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -1px;
}

.hero .tagline {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 0.92;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 1.1rem 3rem;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
    transition: all 0.4s ease;
    border: 2px solid var(--accent);
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-button:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--primary);
}

/* PAGE SECTIONS */
.page {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 3.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    color: #888;
    font-size: 1.15rem;
    margin-bottom: 4rem;
    font-style: italic;
    font-weight: 300;
}

/* ABOUT SECTION */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    width: 100%;
}

.about-image img {
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.about-text h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.about-text p {
    margin-bottom: 1.8rem;
    line-height: 1.9;
    color: #555;
    font-size: 1.05rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

.highlight-box {
    background: white;
    padding: 2rem;
    border-radius: 2px;
    border-top: 3px solid var(--accent);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.highlight-box strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* PROPERTIES GRID */
.properties-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.property-card {
    display: block;
    background: white;
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    flex: 1 1 380px;
    max-width: 440px;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.property-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.property-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #b0b0b0, #d0d0d0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-card:hover .property-image {
    transform: scale(1.08);
}

.property-info {
    padding: 2.5rem;
}

.property-price {
    font-size: 2.2rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.property-address {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.2rem;
    font-size: 1.15rem;
}

.property-details {
    display: flex;
    gap: 2rem;
    font-size: 0.95rem;
    color: #777;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.property-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.property-card:hover .property-link {
    color: var(--primary);
}

.property-image.placeholder {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.property-image.placeholder svg {
    width: 64px;
    height: 64px;
    fill: rgba(212, 175, 55, 0.35);
}

.property-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--primary);
    color: var(--accent);
    padding: 0.4rem 1.1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--accent);
    z-index: 2;
}

.property-badge.sold,
.property-badge.open-house {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.rent-period {
    font-size: 1rem;
    color: #999;
    font-weight: 400;
    letter-spacing: 0;
}

/* SUBSECTIONS (e.g. Rentals: Available / Currently Unavailable) */
.subsection-title {
    font-size: 1.6rem;
    color: var(--primary);
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.subsection-title:not(:first-of-type) {
    margin-top: 5rem;
}

.no-listings-message {
    width: 100%;
    text-align: center;
    color: #888;
    font-style: italic;
    font-size: 1.05rem;
    padding: 1rem 0 2rem;
}

/* LISTING DETAIL PAGE */
.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--primary);
}

.listing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.listing-address {
    font-size: 2.8rem;
    color: var(--primary);
    font-weight: 400;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

.listing-location {
    color: #888;
    font-size: 1.05rem;
    font-style: italic;
}

.open-house-notice {
    display: inline-block;
    margin-top: 1rem;
    background: var(--accent);
    color: var(--primary);
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 2px;
}

.listing-price {
    font-size: 2.6rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: -0.5px;
}

.listing-hero {
    width: 100%;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    margin-bottom: 3rem;
}

.listing-hero img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    display: block;
}

.listing-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 4rem;
    text-align: center;
}

.fact strong {
    display: block;
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.fact span {
    font-size: 0.85rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.listing-body h2,
.listing-gallery h2,
.listing-video h2,
.listing-cta h2 {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.listing-gallery,
.listing-video,
.listing-cta {
    margin-top: 4rem;
}

.listing-description p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.8rem;
}

.listing-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.4s ease;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

.gallery-photo-extra {
    display: none;
}

.gallery-grid.expanded .gallery-photo-extra {
    display: block;
}

.gallery-toggle {
    display: block;
    margin: 2.5rem auto 0;
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 0.9rem 2.5rem;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-toggle:hover {
    background: var(--accent);
    color: var(--primary);
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 31, 46, 0.95);
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 88vw;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.85);
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--accent);
}

.lightbox-close {
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
}

.lightbox-prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    letter-spacing: 1.5px;
}

.listing-video,
.listing-cta {
    text-align: center;
}

.listing-video p,
.listing-cta p {
    color: #555;
    margin-bottom: 1.5rem;
}

.video-embed {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    margin: 0 auto 2rem;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* TESTIMONIALS */
.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.testimonial {
    background: white;
    padding: 2.5rem;
    border-radius: 2px;
    border-top: 3px solid var(--accent);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.stars {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 3px;
}

.testimonial-text {
    color: #666;
    margin-bottom: 1.8rem;
    font-style: italic;
    line-height: 1.8;
    font-size: 1.05rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.05rem;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--accent);
    margin-top: 0.3rem;
}

/* CONTACT SECTION */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    font-weight: 400;
}

.contact-item {
    margin-bottom: 3rem;
}

.contact-item-label {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    display: block;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.15rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent);
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.08);
}

.form-submit {
    background: var(--primary);
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
}

.form-submit:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}

/* FOOTER */
footer {
    background: var(--primary);
    color: white;
    padding: 3rem 5%;
    margin-top: 6rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

footer p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.footer-logo {
    max-width: 280px;
    width: 100%;
    height: auto;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--accent);
    transition: fill 0.3s ease;
}

.social-icon:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.social-icon:hover svg {
    fill: var(--primary);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    header {
        padding: 1rem 3%;
    }

    nav ul {
        gap: 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--primary);
        padding: 1.5rem;
        gap: 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .dropdown-arrow {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        margin: 0.75rem 0 0;
        padding: 0;
    }

    .dropdown-menu::before {
        content: none;
    }

    .dropdown-menu a {
        padding: 0.6rem 0 0.6rem 1.25rem;
        font-size: 0.85rem;
        color: rgba(255,255,255,0.6);
    }

    .hero {
        margin-top: 60px;
        height: auto;
        padding: 4rem 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .tagline {
        font-size: 1.1rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .page {
        padding: 4rem 3%;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-logo {
        max-width: 220px;
    }

    .listing-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .listing-address {
        font-size: 2rem;
    }

    .listing-price {
        font-size: 2rem;
    }

    .listing-hero img {
        max-height: 320px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 1.5rem;
        padding: 0.4rem;
    }

    .lightbox-close {
        font-size: 2rem;
        top: 1rem;
        right: 1rem;
    }
}
