/* ============================================
   WILDCAT RV PARK — Editorial Style Sheet
   Midnight Blue + Mint | Playfair + Inter
   ============================================ */

/* ─── Reset & Base ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --midnight: #0A1F3F;
    --midnight-light: #122D54;
    --midnight-dark: #061529;
    --mint: #5EEAD4;
    --mint-dark: #3DD1BA;
    --mint-light: #B5F5EC;
    --cream: #F8F7F4;
    --cream-dark: #EDEBE6;
    --white: #FFFFFF;
    --text-dark: #0A1F3F;
    --text-mid: #3A506B;
    --text-light: #6B8299;
    --text-inverse: #C8D8E8;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-heading {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.section-heading--light {
    color: var(--white);
}

.section-heading em {
    font-style: italic;
    font-weight: 600;
}

.text-mint {
    color: var(--mint);
}

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.5s var(--ease-out);
}

.nav.scrolled {
    background: rgba(10, 31, 63, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 rgba(94, 234, 212, 0.1);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: -0.01em;
}

.nav-logo svg {
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-inverse);
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--mint);
    transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
    color: var(--mint);
}

.nav-links a::after {
    width: 100%;
}

.nav-cta {
    background: var(--mint) !important;
    color: var(--midnight) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--mint-light) !important;
    transform: translateY(-1px);
}

/* Mobile Menu Button */
.nav-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 1001;
}

.nav-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.nav-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--midnight-dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-close {
    position: absolute;
    top: 1.25rem;
    right: 2rem;
    color: var(--white);
    padding: 0.5rem;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.mobile-menu li a {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    padding: 0.75rem 1rem;
    transition: color 0.3s ease;
    display: block;
}

.mobile-menu li a:hover {
    color: var(--mint);
}

.mobile-cta {
    margin-top: 1rem;
    font-family: var(--font-sans) !important;
    font-size: 1rem !important;
    background: var(--mint);
    color: var(--midnight) !important;
    padding: 0.875rem 2rem !important;
    border-radius: 100px;
    font-weight: 600;
}

/* ─── Hero ─── */
.hero {
    min-height: 100vh;
    background: var(--midnight);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(94, 234, 212, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(94, 234, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-inner {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-headline em {
    font-style: italic;
    color: var(--mint);
    font-weight: 600;
}

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-inverse);
    margin-bottom: 2.5rem;
    max-width: 440px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.875rem 1.75rem;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--mint);
    color: var(--midnight);
}

.btn-primary:hover {
    background: var(--mint-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(94, 234, 212, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--mint);
    color: var(--mint);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-stat-num {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero Image Stack */
.hero-image-stack {
    position: relative;
    height: 600px;
}

.hero-img {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.hero-img-primary {
    width: 340px;
    height: 440px;
    top: 0;
    right: 0;
}

.hero-img-accent {
    width: 260px;
    height: 200px;
    bottom: 40px;
    right: 140px;
    border: 4px solid var(--midnight);
}

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

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

.hero-img-badge {
    position: absolute;
    bottom: 260px;
    left: -20px;
    background: var(--mint);
    color: var(--midnight);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 8px 30px rgba(94, 234, 212, 0.3);
    z-index: 2;
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    z-index: 1;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── About ─── */
.about {
    padding: 8rem 0;
    background: var(--cream);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.label-line {
    width: 40px;
    height: 2px;
    background: var(--mint);
    flex-shrink: 0;
}

.label-text {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mid);
}

.about-text {
    max-width: 480px;
}

.about-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 1.25rem;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(10, 31, 63, 0.12);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.about-image:hover img {
    transform: scale(1.03);
}

/* ─── Amenities ─── */
.amenities {
    padding: 8rem 0;
    background: var(--midnight);
    position: relative;
}

.amenities::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(94, 234, 212, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 10% 90%, rgba(94, 234, 212, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.amenities-header {
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

.amenities-header .section-heading {
    color: var(--white);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.amenity-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s var(--ease-out);
}

.amenity-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(94, 234, 212, 0.3);
    transform: translateY(-4px);
}

.amenity-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(94, 234, 212, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint);
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.amenity-card:hover .amenity-icon {
    background: var(--mint);
    color: var(--midnight);
}

.amenity-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.amenity-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-inverse);
}

/* ─── CTA Band ─── */
.cta-band {
    padding: 6rem 0;
    background: var(--cream);
}

.cta-band-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-band-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 1rem;
}

.cta-band-headline {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.cta-band-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(10, 31, 63, 0.12);
    aspect-ratio: 16/11;
}

.cta-band-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.cta-band-image:hover img {
    transform: scale(1.03);
}

/* ─── Location ─── */
.location {
    padding: 8rem 0;
    background: var(--cream-dark);
}

.location-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-info {
    padding-top: 1rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.location-detail {
    display: flex;
    gap: 1rem;
}

.location-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--midnight);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint);
    flex-shrink: 0;
}

.location-detail strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.location-detail p {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.location-detail a {
    color: var(--midnight);
    font-weight: 500;
    transition: color 0.3s ease;
}

.location-detail a:hover {
    color: var(--mint-dark);
}

.location-map {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(10, 31, 63, 0.12);
    aspect-ratio: 9/8;
}

.location-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
}

/* ─── Contact ─── */
.contact {
    padding: 8rem 0;
    background: var(--midnight);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 50% 50% at 90% 10%, rgba(94, 234, 212, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info {
    padding-top: 1rem;
}

.contact-desc {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-inverse);
    margin: 1.5rem 0 2rem;
}

.contact-quick {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-quick-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-quick-item:hover {
    color: var(--mint);
}

.contact-quick-item svg {
    color: var(--mint);
    flex-shrink: 0;
}

/* Form */
.contact-form-wrap {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

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

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-inverse);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--white);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--mint);
    background: rgba(94, 234, 212, 0.08);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B8299' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--midnight);
    color: var(--white);
}

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

/* Form Success */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem 1rem;
}

.form-success.show {
    display: flex;
}

.success-icon {
    color: var(--mint);
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--white);
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--text-inverse);
    line-height: 1.7;
    max-width: 320px;
}

.form-success a {
    color: var(--mint);
    font-weight: 600;
}

/* ─── Footer ─── */
.footer {
    background: var(--midnight-dark);
    padding: 4rem 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col ul li a,
.footer-col ul li {
    font-size: 0.9375rem;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* ─── Animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 7rem;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-sub {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-stack {
        height: 400px;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-img-primary {
        width: 260px;
        height: 340px;
    }

    .hero-img-accent {
        width: 200px;
        height: 160px;
        right: 60px;
    }

    .hero-img-badge {
        left: -10px;
        bottom: 180px;
    }

    .about-layout,
    .location-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .cta-band-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-band-image {
        order: -1;
        max-height: 300px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-menu-btn {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-bottom: 4rem;
    }

    .hero-inner {
        padding-top: 6rem;
        padding-bottom: 2rem;
    }

    .hero-headline {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .hero-image-stack {
        height: 320px;
    }

    .hero-img-primary {
        width: 220px;
        height: 280px;
    }

    .hero-img-accent {
        width: 160px;
        height: 130px;
        right: 30px;
        bottom: 20px;
    }

    .hero-img-badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.875rem;
        bottom: 140px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-stat-divider {
        display: none;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .location-map {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-headline {
        font-size: 2.2rem;
    }

    .section-heading {
        font-size: 1.875rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .hero-image-stack {
        height: 260px;
    }

    .hero-img-primary {
        width: 180px;
        height: 240px;
    }

    .hero-img-accent {
        width: 140px;
        height: 110px;
        right: 10px;
        bottom: 10px;
    }

    .hero-img-badge {
        display: none;
    }
}
