/* ============================================
   Costa Colbún — Lake Life Style
   ============================================ */

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

:root {
    --lake-deep: #0c3547;
    --lake-mid: #1a6b8a;
    --lake-light: #3ea8c8;
    --lake-sky: #b8e4f0;
    --lake-pale: #e8f6fa;
    --sand: #f5f0e8;
    --sand-dark: #d4c9b5;
    --forest: #2d5016;
    --forest-light: #5a8a3c;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(12, 53, 71, 0.08);
    --shadow-lg: 0 12px 48px rgba(12, 53, 71, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--lake-mid);
    color: var(--white);
    border-color: var(--lake-mid);
}

.btn-primary:hover {
    background: var(--lake-deep);
    border-color: var(--lake-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 107, 138, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--lake-deep);
    border-color: var(--white);
}

.btn-full { width: 100%; }

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; }

.nav-logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
    filter: brightness(0) invert(1);
    drop-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.scrolled .nav-logo-img {
    filter: none;
    height: 45px;
}

/* Logo glow for contrast on transparent nav */
.nav-logo::after {
    content: '';
    position: absolute;
    inset: -8px -12px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.15) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
    transition: var(--transition);
}
.scrolled .nav-logo::after {
    opacity: 0;
}
.nav-logo {
    position: relative;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.scrolled .logo-text { color: var(--lake-deep); }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-menu a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    border-radius: 50px;
    transition: var(--transition);
}

.scrolled .nav-menu a { color: var(--gray-700); }

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.scrolled .nav-menu a:hover,
.scrolled .nav-menu a.active {
    color: var(--lake-mid);
    background: var(--lake-pale);
}

.nav-cta {
    background: rgba(255, 255, 255, 0.2) !important;
    color: var(--white) !important;
    font-weight: 500 !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.nav-cta:hover {
    background: var(--white) !important;
    color: var(--lake-deep) !important;
}

.scrolled .nav-cta {
    background: var(--lake-mid) !important;
    color: var(--white) !important;
    border-color: var(--lake-mid) !important;
}

.scrolled .nav-cta:hover {
    background: var(--lake-deep) !important;
    border-color: var(--lake-deep) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.scrolled .nav-toggle span { background: var(--gray-800); }

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(12, 53, 71, 0.3) 0%, rgba(12, 53, 71, 0.5) 100%),
        url('https://costacolbun.cl/img/familia-muelle-2.jpg') center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12, 53, 71, 0.4) 0%,
        rgba(12, 53, 71, 0.25) 40%,
        rgba(12, 53, 71, 0.5) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 24px;
}

.hero-pretitle {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title em {
    font-style: italic;
    color: var(--lake-sky);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    margin: 8px auto 0;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translate(0, 0); }
    50% { transform: rotate(45deg) translate(4px, 4px); }
}

/* --- Sections --- */
.section {
    padding: 100px 0;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lake-mid);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* --- About --- */
.section-about {
    background: var(--gray-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-img-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.about-image {
    position: relative;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--lake-mid);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.3;
}

.about-content .section-label { display: block; }

.about-text {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--lake-deep);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Features --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--lake-light);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--lake-mid);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Pricing highlight */
.pricing-highlight {
    background: linear-gradient(135deg, var(--lake-deep) 0%, var(--lake-mid) 100%);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    color: var(--white);
}

.pricing-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 8px;
}

.pricing-value {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-detail {
    display: block;
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 24px;
}

.pricing-highlight .btn-primary {
    background: var(--white);
    color: var(--lake-deep);
    border-color: var(--white);
}

.pricing-highlight .btn-primary:hover {
    background: var(--sand);
    border-color: var(--sand);
}

/* --- Lake Life --- */
.section-lakelife {
    position: relative;
    background: var(--lake-deep);
    color: var(--white);
    overflow: hidden;
}

.lakelife-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(12, 53, 71, 0.92), rgba(26, 107, 138, 0.88)),
        url('https://costacolbun.cl/img/wakeboard-2.jpg') center/cover;
}

.section-lakelife .container {
    position: relative;
    z-index: 1;
}

.section-header-light .section-label {
    color: var(--lake-sky);
}

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

.section-header-light .section-desc {
    color: rgba(255, 255, 255, 0.75);
}

.lakelife-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.lakelife-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
}

.lakelife-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
}

.lakelife-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.lakelife-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.lakelife-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* --- Gallery --- */
.section-gallery {
    background: var(--gray-50);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/10;
}

.gallery-item-large {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 2rem;
    padding: 12px;
    transition: var(--transition);
    opacity: 0.7;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; }

.lightbox-close { top: 20px; right: 24px; font-size: 2.5rem; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); font-size: 3rem; }

/* --- Tour 360 --- */
.section-tour {
    background: var(--lake-deep);
    color: var(--white);
}

.section-tour .section-label { color: var(--lake-sky); }
.section-tour .section-title { color: var(--white); }
.section-tour .section-desc { color: rgba(255, 255, 255, 0.75); }

.tour-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--gray-900);
}

.tour-container iframe {
    display: block;
    min-height: 400px;
}

.tour-hint {
    text-align: center;
    margin-top: 16px;
}

.tour-hint p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
}

/* --- Footer Logo (used in tour section spacer) --- */

/* --- Nearby / Location --- */
.nearby-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.nearby-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: var(--transition);
}

.nearby-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--lake-light);
}

.nearby-distance {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--lake-mid);
    background: var(--lake-pale);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
    letter-spacing: 0.03em;
}

.nearby-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--gray-900);
}

.nearby-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* --- Contact --- */
.section-contact {
    background: var(--sand);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info .section-title { color: var(--gray-900); }

.contact-text {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 14px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--lake-mid);
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-item a {
    color: var(--gray-800);
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 12px;
    transition: var(--transition);
    padding: 6px;
}

.social-links a svg {
    width: 100%;
    height: 100%;
}

.social-links a:hover {
    transform: translateY(-2px) scale(1.1);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--gray-50);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--lake-mid);
    box-shadow: 0 0 0 3px rgba(26, 107, 138, 0.1);
    background: var(--white);
}

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

/* --- Footer --- */
.footer {
    background: var(--lake-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand { max-width: 260px; }

.footer-logo-box {
    background: var(--white);
    border-radius: 10px;
    padding: 12px 16px;
    display: inline-block;
    margin-bottom: 14px;
}

.footer-logo {
    height: 50px;
    width: auto;
    display: block;
}

.footer-brand p {
    font-size: 0.8rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.footer-nav h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-nav a,
.footer-nav .footer-address {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    margin-bottom: 8px;
}

.footer-nav a:hover { color: var(--lake-light); }

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-social a:hover { color: var(--lake-light); }

.footer-social a svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 28px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 6px;
}

.footer-seo {
    font-size: 0.7rem !important;
    color: rgba(255, 255, 255, 0.2) !important;
    letter-spacing: 0.03em;
}

/* --- Scroll Animations --- */
.animate-ready {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.features-grid .animate-ready:nth-child(2) { transition-delay: 0.1s; }
.features-grid .animate-ready:nth-child(3) { transition-delay: 0.2s; }
.features-grid .animate-ready:nth-child(4) { transition-delay: 0.3s; }
.features-grid .animate-ready:nth-child(5) { transition-delay: 0.4s; }
.features-grid .animate-ready:nth-child(6) { transition-delay: 0.5s; }

.lakelife-grid .animate-ready:nth-child(2) { transition-delay: 0.1s; }
.lakelife-grid .animate-ready:nth-child(3) { transition-delay: 0.2s; }
.lakelife-grid .animate-ready:nth-child(4) { transition-delay: 0.3s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .about-grid { gap: 40px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .lakelife-grid { grid-template-columns: repeat(2, 1fr); }
    .nearby-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 72px 0; }

    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 4px;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
        transition: right 0.3s ease;
    }

    .nav-menu.active { right: 0; }

    .nav-menu a {
        color: var(--gray-700) !important;
        padding: 12px 16px;
        font-size: 1rem;
        width: 100%;
    }

    .nav-menu a:hover {
        background: var(--lake-pale) !important;
        color: var(--lake-mid) !important;
    }

    .nav-cta {
        background: var(--lake-mid) !important;
        color: var(--white) !important;
        text-align: center;
        margin-top: 12px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-badge {
        bottom: -16px;
        right: 16px;
    }

    .about-stats { gap: 20px; }

    .features-grid { grid-template-columns: 1fr; }
    .lakelife-grid { grid-template-columns: 1fr; }

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

    .gallery-item-large {
        grid-column: span 1;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-highlight { padding: 32px 24px; }
    .pricing-value { font-size: 2.5rem; }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 280px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .section-title { font-size: 1.7rem; }
    .about-stats { flex-direction: column; gap: 16px; }
    .contact-form-wrapper { padding: 24px; }
}
