:root {
    --ink: #10212b;
    --muted: #5b6f78;
    --line: #d8e4e6;
    --paper: #f7fbfa;
    --white: #ffffff;
    --lake: #0f6f8f;
    --deep: #063d57;
    --sun: #f5a73b;
    --leaf: #2f7d68;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--paper);
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(18px, 5vw, 72px);
    background: rgba(247, 251, 250, 0.92);
    border-bottom: 1px solid rgba(16, 33, 43, 0.08);
    backdrop-filter: blur(12px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
}

.brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

nav {
    display: flex;
    gap: 8px;
}

nav a {
    padding: 10px 12px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

nav a:hover {
    color: var(--ink);
}

.hero {
    position: relative;
    min-height: 88vh;
    display: grid;
    align-items: end;
    overflow: hidden;
    isolation: isolate;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(to bottom, rgba(6, 35, 50, 0.18), rgba(6, 35, 50, 0.08) 42%, rgba(247, 251, 250, 0.96)),
        linear-gradient(to right, rgba(6, 35, 50, 0.34), rgba(6, 35, 50, 0.02)),
        url("/assets/lake-hero.jpg") center 42% / cover;
}

.sun {
    position: absolute;
    width: 170px;
    height: 170px;
    left: 12vw;
    top: 15vh;
    border-radius: 50%;
    background: var(--sun);
    opacity: 0.9;
    display: none;
}

.mountain {
    position: absolute;
    bottom: 28vh;
    width: 56vw;
    height: 34vh;
    clip-path: polygon(0 100%, 33% 10%, 56% 72%, 74% 28%, 100% 100%);
    background: #2e6570;
    opacity: 0.92;
    display: none;
}

.mountain-a {
    left: -6vw;
}

.mountain-b {
    right: -12vw;
    bottom: 24vh;
    background: #1f5365;
    opacity: 0.82;
}

.lake {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 34vh;
    background:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px 18px),
        linear-gradient(180deg, #2a96ad, #0e5f7b);
    display: none;
}

.hero-content {
    width: min(760px, calc(100% - 36px));
    margin: 0 auto clamp(48px, 10vh, 110px);
    text-align: center;
}

.hero-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 16px 50px rgba(6, 61, 87, 0.18);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--lake);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 18px;
    font-size: clamp(42px, 8vw, 78px);
    line-height: 0.98;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(30px, 5vw, 52px);
    line-height: 1.05;
}

h3 {
    margin-bottom: 10px;
    font-size: 21px;
}

p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.hero-copy {
    max-width: 660px;
    margin: 0 auto 28px;
    color: #203942;
    font-size: 19px;
}

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

.btn {
    min-width: 150px;
    padding: 13px 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
}

.btn.primary {
    background: var(--deep);
    color: var(--white);
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(16, 33, 43, 0.16);
}

.camp-photo-band {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: end;
    margin: 0;
    background:
        linear-gradient(to bottom, rgba(16, 33, 43, 0.1), rgba(16, 33, 43, 0.18)),
        url("/assets/camp-building.jpg") center / cover fixed;
}

.camp-photo-caption {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto 34px;
    padding: 18px 20px;
    border-radius: 8px;
    color: var(--white);
    background: rgba(6, 61, 87, 0.76);
}

.camp-photo-caption span,
.camp-photo-caption strong {
    display: block;
}

.camp-photo-caption span {
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.camp-photo-caption strong {
    font-size: clamp(22px, 4vw, 38px);
    line-height: 1.08;
}

.section,
.split-section,
.contact-section {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
    padding: 76px 0;
}

.section-head {
    max-width: 720px;
    margin-bottom: 28px;
}

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

article,
.contact-card,
.feature-photo,
.food-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

article {
    padding: 26px;
}

.feature-icon {
    display: inline-flex;
    margin-bottom: 28px;
    color: var(--leaf);
    font-weight: 900;
}

.split-section,
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
}

.feature-photo {
    min-height: 360px;
    overflow: hidden;
}

.feature-photo img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: block;
    object-fit: cover;
}

.contact-card span,
.contact-card a,
footer span {
    display: block;
    color: var(--muted);
}

.food-section {
    padding-top: 34px;
}

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

.food-card {
    position: relative;
    min-height: 220px;
    margin: 0;
    overflow: hidden;
}

.food-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.food-card img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: block;
    object-fit: cover;
}

.food-card figcaption {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 8px 10px;
    border-radius: 6px;
    color: var(--white);
    background: rgba(6, 61, 87, 0.78);
    font-size: 14px;
    font-weight: 800;
}

.lounge-section {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
    padding: 40px 0 86px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 28px;
    align-items: stretch;
}

.lounge-copy {
    padding: 34px;
    border-radius: 8px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(6, 61, 87, 0.92), rgba(16, 33, 43, 0.96));
}

.lounge-copy p,
.lounge-copy .eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.lounge-gallery {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
}

.lounge-gallery img {
    width: 100%;
    height: 100%;
    min-height: 190px;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.lounge-gallery img:first-child {
    grid-row: span 2;
}

.contact-section {
    margin-bottom: 46px;
    padding: 42px;
    border-radius: 8px;
    background: var(--deep);
    color: var(--white);
}

.contact-section p,
.contact-section .eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.contact-card {
    padding: 24px;
}

.contact-card a {
    margin-bottom: 14px;
    color: var(--deep);
    font-weight: 900;
}

.contact-card span {
    margin-top: 10px;
}

footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 26px clamp(18px, 5vw, 72px);
    border-top: 1px solid var(--line);
}

@media (max-width: 760px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    nav {
        width: 100%;
        justify-content: space-between;
    }

    .hero {
        min-height: 840px;
    }

    .camp-photo-band {
        min-height: 520px;
        background-attachment: scroll;
        background-position: center;
    }

    .feature-grid,
    .split-section,
    .contact-section,
    .food-grid,
    .lounge-section,
    .lounge-gallery {
        grid-template-columns: 1fr;
    }

    .food-card.large {
        grid-column: auto;
        grid-row: auto;
    }

    .lounge-gallery {
        grid-template-rows: auto;
    }

    .lounge-gallery img:first-child {
        grid-row: auto;
    }

    .contact-section {
        width: min(100% - 24px, 1120px);
        padding: 28px;
    }

    footer {
        flex-direction: column;
    }
}
