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

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f7f4ee;
    color: #213238;
    line-height: 1.6;
}

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

.container {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
}

/* HEADER */
.site-header {
    background-color: #16748a;
    border-bottom: 4px solid #c9bb83;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-link img {
    width: 86px;
    height: auto;
}

.brand-text h1 {
    color: #ffffff;
    font-size: 1.8rem;
    line-height: 1.1;
    margin-bottom: 4px;
}

.brand-text p {
    color: #e8dfbf;
    font-size: 0.95rem;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.main-nav a:hover {
    background-color: #c9bb83;
    color: #04495b;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background-color: #c9bb83;
    color: #04495b;
    border: none;
    padding: 10px 14px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
}

/* HERO */
.hero,
.subhero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-home {
    background-image: url("../images/cottages/lakeside/kakabeka.jpg");
    min-height: 84vh;
}

.subhero-about {
    background-image: url("../images/cottages/lakeside/cascade.png");
    min-height: 430px;
}

.subhero-activities {
    background-image: url("../images/cottages/lakeside/split-rock.jpg");
    min-height: 430px;
}

.subhero-contact {
    background-image: url("../images/activities/shoreline.jpg");
    min-height: 400px;
}

.subhero-accommodations {
    background-image: url("../images/cottages/lakeside/split-rock.jpg");
    min-height: 400px;
}

.hero-overlay,
.subhero-overlay {
    background-color: rgba(4, 73, 91, 0.40);
    min-height: inherit;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 720px;
    padding: 60px 0;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.82rem;
    color: #d7c88e;
    font-weight: bold;
    margin-bottom: 12px;
}

.hero h2,
.subhero h2 {
    color: #ffffff;
    font-size: 3.4rem;
    line-height: 1.1;
    margin-bottom: 18px;
}

.hero-copy {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 24px;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* BUTTONS */
.btn {
    display: inline-block;
    background-color: #b99f2d;
    color: #ffffff;
    text-decoration: none;
    padding: 13px 22px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #9e8827;
    transform: scale(1.04);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #ffffff;
}

.btn-outline:hover {
    background-color: rgba(255,255,255,0.15);
}

/* SECTIONS */
.welcome-section,
.experience-section,
.split-section,
.accordion-section,
.image-text-band {
    padding: 80px 0;
}

.light-section {
    background-color: #efe7d3;
}

.two-column {
    display: flex;
    align-items: center;
    gap: 48px;
}

.two-column > div {
    flex: 1;
}

.text-block h2,
.section-heading h2,
.split-text h2,
.cta-inner h2 {
    font-size: 2.2rem;
    color: #04495b;
    line-height: 1.2;
    margin-bottom: 18px;
}

.text-block p,
.split-text p {
    margin-bottom: 16px;
}

.image-frame {
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.image-frame img,
.split-image img {
    width: 100%;
    border-radius: 4px;
}

.section-heading {
    text-align: center;
    margin-bottom: 34px;
}

/* FEATURE CARDS */
.feature-grid {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.three-column-grid {
    display: flex;
    gap: 24px;
}

.feature-card,
.info-box {
    background-color: #ffffff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    border-radius: 4px;
    overflow: hidden;
}

.feature-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.14);
}

.feature-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.feature-card-content {
    padding: 22px;
    flex: 1;
}

.feature-card-content h3,
.info-box h3 {
    color: #04495b;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.info-box {
    flex: 1;
    padding: 28px;
}

/* SPLIT SECTION */
.split-section {
    background-color: #ffffff;
}

.split-layout {
    display: flex;
    gap: 44px;
    align-items: center;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-image,
.split-text {
    flex: 1;
}

.text-link {
    color: #04495b;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #b99f2d;
}

/* ACCORDION */
.accordion-item {
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.accordion-title {
    padding: 18px 20px;
    background-color: #c9bb83;
    color: #04495b;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accordion-title:hover {
    background-color: #bbaa6f;
}

.accordion-content {
    display: none;
    padding: 20px;
}

/* CONTACT FORM */
.contact-form {
    max-width: 850px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 4px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row div {
    flex: 1;
}

.contact-form label {
    display: block;
    margin-top: 16px;
    margin-bottom: 6px;
    font-weight: bold;
    color: #04495b;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #c9bb83;
    border-radius: 4px;
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
}

.form-button {
    margin-top: 20px;
}

/* CONFIRMATION */
.confirmation-box {
    background-color: #ffffff;
    padding: 28px;
    border-radius: 4px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 0 auto 24px;
}

.confirmation-box p {
    margin-bottom: 12px;
}

.confirmation-note {
    text-align: center;
}

/* ACCOMMODATIONS */
.accommodation-heading {
    color: #04495b;
    font-size: 2rem;
    margin: 50px 0 24px;
    border-bottom: 3px solid #c9bb83;
    padding-bottom: 8px;
}

.accommodation-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.accommodation-card {
    width: calc(33.333% - 16px);
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.accommodation-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.14);
}

.accommodation-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.accommodation-content {
    padding: 20px;
}

.accommodation-content h3 {
    color: #04495b;
    margin-bottom: 10px;
}

.accommodation-content p {
    margin-bottom: 10px;
}

/* CTA */
.cta-banner {
    padding: 80px 0;
    background-color: #16748a;
    text-align: center;
}

.cta-inner .eyebrow {
    color: #d7c88e;
}

.cta-inner h2 {
    color: #ffffff;
    font-size: 2.3rem;
    margin-bottom: 20px;
}

/* FOOTER */
.site-footer {
    background-color: #0f5f73;
    border-top: 4px solid #c9bb83;
    padding: 28px 0;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand img {
    width: 76px;
    height: auto;
}

.footer-brand h3 {
    color: #ffffff;
    margin-bottom: 4px;
}

.footer-brand p {
    color: #e8dfbf;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d7c88e;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1024px) {
    .nav-wrap,
    .two-column,
    .feature-grid,
    .three-column-grid,
    .split-layout,
    .footer-flex {
        flex-direction: column;
        align-items: stretch;
    }

    .main-nav ul {
        justify-content: center;
    }

    .hero h2,
    .subhero h2 {
        font-size: 2.6rem;
    }

    .hero-home {
        min-height: 70vh;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .accommodation-card {
        width: calc(50% - 12px);
    }
}

@media screen and (max-width: 768px) {
    .feature-card img {
        height: 200px;
    }

    .accommodation-card img {
        height: 210px;
    }
}

@media screen and (max-width: 480px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        width: 100%;
    }

    .main-nav ul {
        flex-direction: column;
        margin-top: 12px;
    }

    .main-nav a {
        display: block;
        text-align: center;
    }

    .brand {
        align-items: flex-start;
    }

    .brand-link img {
        width: 72px;
    }

    .brand-text h1 {
        font-size: 1.35rem;
    }

    .hero h2,
    .subhero h2 {
        font-size: 2rem;
    }

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

    .hero-home {
        min-height: 58vh;
    }

    .subhero-about,
    .subhero-activities,
    .subhero-contact,
    .subhero-accommodations {
        min-height: 300px;
    }

    .welcome-section,
    .experience-section,
    .split-section,
    .accordion-section,
    .image-text-band,
    .cta-banner {
        padding: 50px 0;
    }

    .text-block h2,
    .section-heading h2,
    .split-text h2,
    .cta-inner h2 {
        font-size: 1.7rem;
    }

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

    .accommodation-card {
        width: 100%;
    }

    .contact-form {
        padding: 22px;
    }
}