/* BASE & VARIABLES */
:root {
    /* Color Palette - Canadian Contemporary */
    --lake-blue: #245B67;
    --pine-ink: #172C2F;
    --cloud: #F5F7F4;
    --warm-linen: #E8E1D5;
    --slate: #53656A;
    --driftwood: #B7AA98;
    --white: #FFFFFF;
    --copper: #B76E4C;

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --max-width: 1440px;
    --header-height: 80px;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--pine-ink);
    background-color: var(--cloud);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--pine-ink);
}

h1 { font-size: clamp(3rem, 5vw, 5rem); }
h2 { font-size: clamp(2.5rem, 4vw, 4rem); }
h3 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
h4 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; color: var(--slate); }

p {
    font-size: 1.125rem;
    color: var(--slate);
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

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

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 2px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--lake-blue);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--copper);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.btn-primary:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary:hover {
    background-color: var(--pine-ink);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--pine-ink);
    color: var(--pine-ink);
}

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

.btn-text {
    background-color: transparent;
    color: var(--pine-ink);
    padding: 1rem 0;
    border-bottom: 1px solid var(--copper);
}

.btn-text:hover {
    color: var(--lake-blue);
    border-bottom-color: var(--lake-blue);
}

/* HEADER - ASYMMETRIC EDITORIAL */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--white);
    z-index: 1000;
    border-bottom: 1px solid var(--warm-linen);
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    height: 70px;
    box-shadow: 0 4px 20px rgba(23, 44, 47, 0.05);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 3rem;
    height: 100%;
    display: grid;
    grid-template-columns: 2fr 3fr 2fr;
    align-items: center;
}

.header-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--pine-ink);
    line-height: 1;
}

.brand-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--slate);
    margin-top: 0.2rem;
}

.header-center {
    display: flex;
    justify-content: center;
    padding-right: 4rem; /* Offset asymmetrical layout */
}

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

.main-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate);
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--pine-ink);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--copper);
    opacity: 0;
    transition: var(--transition-smooth);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    opacity: 1;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--pine-ink);
    position: absolute;
    transition: var(--transition-smooth);
}

.menu-toggle span:first-child { top: 0; }
.menu-toggle span:nth-child(2) { top: 9px; width: 70%; right: 0; }
.menu-toggle span:last-child { bottom: 0; }

.menu-toggle.active span:first-child { transform: rotate(45deg); top: 9px; }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:last-child { transform: rotate(-45deg); bottom: 9px; }

/* MOBILE MENU */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--pine-ink);
    z-index: 999;
    transition: right 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.mobile-menu-panel.open {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
    text-align: right;
}

.mobile-nav li {
    margin-bottom: 2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.mobile-menu-panel.open .mobile-nav li {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-panel.open .mobile-nav li:nth-child(1) { transition-delay: 0.2s; }
.mobile-menu-panel.open .mobile-nav li:nth-child(2) { transition-delay: 0.3s; }
.mobile-menu-panel.open .mobile-nav li:nth-child(3) { transition-delay: 0.4s; }
.mobile-menu-panel.open .mobile-nav li:nth-child(4) { transition-delay: 0.5s; }
.mobile-menu-panel.open .mobile-nav li:nth-child(5) { transition-delay: 0.6s; }

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--white);
    text-decoration: none;
}

.mobile-nav a:hover {
    color: var(--copper);
}

/* HERO - SPLIT ARCHITECTURAL */
.hero-split {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background-color: var(--cloud);
}

.hero-text-area {
    padding: 10rem 4rem 4rem 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text-area h1 {
    margin-bottom: 2rem;
}

.hero-text-area p {
    font-size: 1.25rem;
    max-width: 450px;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-image-area {
    position: relative;
    height: 100%;
    padding: 2rem 2rem 2rem 0;
}

.hero-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s linear infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-floating-label {
    position: absolute;
    bottom: 4rem;
    left: -3rem;
    background-color: var(--white);
    padding: 1rem 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--pine-ink);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    z-index: 10;
}

/* INTRODUCTION */
.section-intro {
    padding: 10rem 10%;
    background-color: var(--white);
    display: flex;
    justify-content: flex-end;
}

.intro-content {
    max-width: 800px;
    margin-right: auto;
    margin-left: 15%;
}

.intro-content h2 {
    margin-bottom: 2rem;
    color: var(--lake-blue);
}

.intro-content p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--pine-ink);
}

/* STAY SECTION - EDITORIAL */
.section-stay {
    padding: 8rem 10%;
    background-color: var(--warm-linen);
}

.stay-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.stay-image {
    position: relative;
}

.stay-image::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: -2rem;
    width: 50%;
    height: 50%;
    border-top: 1px solid var(--slate);
    border-left: 1px solid var(--slate);
    z-index: 0;
}

.stay-image img {
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(23, 44, 47, 0.1);
}

.stay-content h2 {
    margin-bottom: 2rem;
}

.stay-features {
    list-style: none;
    margin: 3rem 0;
    border-top: 1px solid var(--driftwood);
}

.stay-features li {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--driftwood);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--pine-ink);
    display: flex;
    align-items: center;
}

.stay-features li::before {
    content: '—';
    margin-right: 1rem;
    color: var(--copper);
}

/* CANADIAN EXPERIENCE - HORIZONTAL SCROLL */
.section-experience {
    padding: 8rem 0;
    background-color: var(--pine-ink);
    color: var(--cloud);
    overflow: hidden;
}

.experience-header {
    padding: 0 10%;
    margin-bottom: 4rem;
}

.experience-header h2 {
    color: var(--cloud);
}

.experience-scroll-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 0 10% 4rem 10%;
    scrollbar-width: none;
}

.experience-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.experience-panel {
    flex: 0 0 70vw;
    height: 60vh;
    min-height: 400px;
    scroll-snap-align: center;
    position: relative;
}

@media (min-width: 1024px) {
    .experience-panel {
        flex: 0 0 40vw;
    }
}

.experience-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(23,44,47,0.8) 0%, rgba(23,44,47,0) 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
}

.experience-overlay h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.experience-overlay p {
    color: var(--warm-linen);
    margin-bottom: 0;
    font-size: 1rem;
}

/* DESTINATION OAKVILLE */
.section-destination {
    padding: 10rem 10%;
    background-color: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.destination-content h4 {
    margin-bottom: 1rem;
}

.destination-content h2 {
    margin-bottom: 2rem;
    color: var(--lake-blue);
}

/* SEASONAL CANADA STRIP */
.section-seasons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 70vh;
}

.season-panel {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.season-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.season-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(23, 44, 47, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.4s ease;
}

.season-panel h3 {
    color: var(--white);
    font-size: 2.5rem;
    letter-spacing: 2px;
    opacity: 0.9;
    transition: var(--transition-smooth);
}

.season-panel .season-desc {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    color: var(--white);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

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

.season-panel:hover .season-overlay {
    background-color: rgba(36, 91, 103, 0.7);
}

.season-panel:hover h3 {
    transform: translateY(-20px);
}

.season-panel:hover .season-desc {
    opacity: 1;
    transform: translateY(0);
}

/* PHILOSOPHY STATEMENT */
.section-philosophy {
    padding: 10rem 10%;
    background-color: var(--cloud);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.philosophy-text h2 {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    margin-bottom: 2rem;
}

.philosophy-image img {
    border-radius: 2px;
}

/* PLAN STAY CTA ARCHITECTURAL */
.section-cta {
    padding: 6rem 10%;
    background-color: var(--white);
}

.cta-panel {
    background-color: var(--warm-linen);
    padding: 6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--driftwood);
    position: relative;
}

.cta-panel::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    border: 1px solid rgba(183, 110, 76, 0.3); /* Copper minimal accent */
    pointer-events: none;
}

.cta-panel h2 {
    max-width: 500px;
    margin: 0;
}

/* CONTACT SECTION */
.section-contact {
    padding: 8rem 10%;
    background-color: var(--cloud);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.contact-form {
    background-color: var(--white);
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(23,44,47,0.03);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--driftwood);
    background-color: var(--cloud);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--pine-ink);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--lake-blue);
    background-color: var(--white);
}

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

/* PAGE HEADERS (For inner pages) */
.page-header {
    margin-top: var(--header-height);
    padding: 10rem 10% 4rem 10%;
    background-color: var(--warm-linen);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
}

/* GENERIC TEXT CONTENT PAGES */
.text-page-content {
    padding: 6rem 10%;
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
}

.text-page-content h2 {
    margin: 3rem 0 1.5rem 0;
    font-size: 2rem;
}

.text-page-content h3 {
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.text-page-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--slate);
}

.text-page-content li {
    margin-bottom: 0.5rem;
}

/* FOOTER - EDITORIAL */
.site-footer {
    background-color: var(--pine-ink);
    color: var(--white);
    padding: 8rem 10% 2rem 10%;
}

.footer-top {
    margin-bottom: 6rem;
    max-width: 600px;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--cloud);
}

.footer-desc {
    color: var(--warm-linen);
    font-size: 1.2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 1rem;
}

.footer-column a {
    color: var(--driftwood);
    font-size: 1rem;
}

.footer-column a:hover {
    color: var(--copper);
}

/* Strict requirement: Address inside footer under Contact */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.address-label {
    color: var(--driftwood);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.footer-contact-info address {
    font-style: normal;
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--driftwood);
    font-size: 0.9rem;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 350px;
    background-color: var(--white);
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(23,44,47,0.15);
    border-left: 4px solid var(--lake-blue);
    z-index: 9999;
    transform: translateY(150%);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cookie-actions .btn {
    width: 100%;
    padding: 0.8rem;
    font-size: 0.8rem;
}

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .header-inner {
        padding: 0 2rem;
    }
    .main-nav ul { gap: 1.5rem; }
}

@media (max-width: 1024px) {
    /* Header */
    .header-center { display: none; }
    .header-right .btn { display: none; }
    .menu-toggle { display: block; }
    .header-inner { grid-template-columns: 1fr 1fr; }

    /* Hero */
    .hero-split {
        grid-template-columns: 1fr;
        grid-template-rows: auto 50vh;
    }
    .hero-text-area { padding: 6rem 2rem; }
    .hero-image-area { padding: 0; }
    .hero-floating-label { left: 2rem; bottom: 2rem; }

    /* Layout Adjustments */
    .stay-grid, 
    .section-destination, 
    .section-philosophy, 
    .section-contact {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .section-seasons {
        grid-template-columns: 1fr 1fr;
        height: auto;
    }
    .season-panel { height: 35vh; }

    .cta-panel {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding: 4rem 2rem;
    }

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

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .section-intro, 
    .section-stay, 
    .section-experience, 
    .section-destination, 
    .section-philosophy, 
    .section-cta, 
    .section-contact {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .intro-content {
        margin-left: 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .contact-form {
        padding: 2rem;
    }

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

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

    .cookie-banner {
        width: calc(100% - 2rem);
        right: 1rem;
        bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .section-seasons {
        grid-template-columns: 1fr;
    }
    .season-panel { height: 30vh; }
}