/* =========================================================
   BLUE HERON HIDEAWAY
   Global Design System
   ========================================================= */

:root {
    --blue-deep: #1E4462;
    --blue: #78AEC6;
    --blue-grey: #68828E;

    --off-white: #F5F3EE;
    --white: #FFFFFF;

    --text: #1E4462;
    --text-soft: #4F6675;

    --border: rgba(30, 68, 98, 0.16);
    --border-light: rgba(255, 255, 255, 0.16);

    --content-width: 1400px;
    --narrow-width: 760px;

    --page-padding: clamp(24px, 6vw, 90px);
    --section-padding: clamp(76px, 9vw, 140px);

    --font-sans:
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;

    --font-serif:
        Georgia,
        "Times New Roman",
        serif;
}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    min-height: 100vh;
    margin: 0;

    background: var(--off-white);
    color: var(--text);

    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

main {
    width: 100%;
}

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

img {
    height: auto;
}

video {
    background: var(--blue-deep);
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 4px;
}

::selection {
    background: var(--blue-deep);
    color: var(--white);
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

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

h1,
h2,
h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: -0.035em;
}

h1,
h2,
h3 {
    text-wrap: balance;
}

h1 {
    margin-bottom: 0;

    font-size: clamp(58px, 9vw, 126px);
    line-height: 0.9;
}

h2 {
    margin-bottom: 30px;

    font-size: clamp(46px, 6vw, 84px);
    line-height: 0.96;
}

h3 {
    margin-bottom: 20px;

    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.04;
}

p {
    max-width: 650px;
}

.eyebrow {
    margin-bottom: 20px;

    color: var(--blue-deep);

    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    padding:
        22px
        var(--page-padding);

    background: var(--white);
    color: var(--blue-deep);
}

.brand {
    display: inline-flex;
    align-items: center;

    color: var(--blue-deep);
}

.brand img {
    display: block;

    width: auto;
    height: 42px;
    max-width: 220px;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;
    padding: 0 24px;

    border: 1px solid var(--blue-deep);
    border-radius: 2px;

    background: transparent;
    color: var(--blue-deep);

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    transition:
        background-color 200ms ease,
        color 200ms ease,
        border-color 200ms ease;
}

.header-cta:hover {
    background: var(--blue-deep);
    color: var(--white);
}

.header-cta:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 100svh;

    overflow: hidden;

    background: var(--blue-deep);
    color: var(--white);
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    z-index: 0;
}

.hero-media video {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.hero-overlay {
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(30, 68, 98, 0.58) 0%,
            rgba(30, 68, 98, 0.24) 52%,
            rgba(30, 68, 98, 0.06) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    width: min(
        calc(100% - (var(--page-padding) * 2)),
        var(--content-width)
    );

    margin: 0 auto;
    padding-top: 90px;
}

.hero-content .eyebrow {
    color: var(--white);
}

.hero-intro {
    max-width: 500px;
    margin: 28px 0 0;

    color: rgba(255, 255, 255, 0.92);

    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.45;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;
    margin-top: 30px;
    padding: 0 34px;

    border: 1px solid transparent;
    border-radius: 2px;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;

    transition:
        background-color 200ms ease,
        color 200ms ease,
        border-color 200ms ease;
}

.button-light {
    background: var(--white);
    color: var(--blue-deep);
}

.button-light:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.button-dark {
    background: var(--blue-deep);
    color: var(--white);
}

.button-dark:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.button:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
}

.scroll-indicator {
    position: absolute;
    right: var(--page-padding);
    bottom: 30px;
    z-index: 3;

    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--white);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.scroll-arrow {
    font-size: 20px;
    line-height: 1;
}


/* =========================================================
   IMAGE SYSTEM
   ========================================================= */

.setting-image,
.together-image,
.cottage-image,
.lake-media,
.landing-image,
.lookout-image {
    overflow: hidden;
}

.cottage-image {
    border: 4px solid rgba(30, 68, 98, 0.12);
}

.setting-image img,
.together-image img,
.cottage-image img,
.lake-media img,
.landing-image img,
.lookout-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.setting-image {
    width: 100%;
}

.setting-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}


/* =========================================================
   GENERIC SECTIONS
   ========================================================= */

.section {
    padding:
        var(--section-padding)
        var(--page-padding);
}

.section-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    gap: clamp(45px, 8vw, 120px);

    align-items: center;

    width: min(var(--content-width), 100%);
    margin: 0 auto;
}

.section-copy p:not(.eyebrow),
.together-copy p:not(.eyebrow),
.landing-copy p:not(.eyebrow) {
    color: var(--text-soft);
}

.section-copy p + p,
.together-copy p + p,
.lake-content p + p,
.creek-copy p + p,
.landing-copy p + p {
    margin-top: 20px;
}


/* =========================================================
   COTTAGES
   ========================================================= */

.cottages {
    padding:
        var(--section-padding)
        var(--page-padding);
}

.section-intro {
    width: min(720px, 100%);
    margin:
        0 auto 90px;

    text-align: center;
}

.section-intro p:last-child {
    margin-right: auto;
    margin-left: auto;

    color: var(--text-soft);
}

.cottage-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: clamp(28px, 5vw, 70px);

    width: min(1180px, 100%);
    margin: 0 auto;
}

.cottage-card {
    overflow: hidden;

    background: rgba(255, 255, 255, 0.45);
}

.cottage-card-offset {
    margin-top: 90px;
}

.cottage-image {
    aspect-ratio: 3 / 4;
    overflow: hidden;

    background: var(--blue-deep);
}

.cottage-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.cottage-card-content {
    padding: 38px 34px 42px;
}

.cottage-card-content p:not(.eyebrow) {
    color: var(--text-soft);
}

.text-link {
    display: inline-block;

    margin-top: 10px;

    color: var(--blue-deep);

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;

    transition:
        color 180ms ease,
        opacity 180ms ease;
}

.text-link:hover {
    color: var(--blue);
}

.text-link:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 4px;
}


/* =========================================================
   THE HIDEAWAY
   ========================================================= */

.together-section {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, 0.85fr);

    background: var(--white);
}

.together-image {
    min-height: 700px;
}

.together-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding:
        clamp(50px, 8vw, 120px)
        clamp(30px, 7vw, 100px);
}


/* =========================================================
   DARK SECTIONS
   ========================================================= */

.dark-section {
    background: var(--blue-deep);
    color: var(--white);
}

.dark-section .eyebrow {
    color: var(--blue);
}

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


/* =========================================================
   THE LAKE
   ========================================================= */

.lake-section {
    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    padding:
        var(--section-padding)
        var(--page-padding);

    align-items: stretch;
}

.lake-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding:
        clamp(20px, 5vw, 80px);
}

.lake-media {
    min-height: 650px;

    background:
        linear-gradient(
            145deg,
            rgba(120, 174, 198, 0.38),
            rgba(255, 255, 255, 0.08)
        );

    color: var(--white);
}


/* =========================================================
   THE LOOKOUT
   ========================================================= */

.lookout-section {
    padding:
        var(--section-padding)
        var(--page-padding);
}

.lookout-intro {
    width: min(720px, 100%);
    margin:
        0 auto 90px;

    text-align: center;
}

.lookout-intro p:last-child {
    margin-right: auto;
    margin-left: auto;

    color: var(--text-soft);
}

.lookout-gallery {
    display: grid;

    grid-template-columns:
        0.75fr
        1.25fr;

    gap: 24px;

    align-items: stretch;
}

.lookout-image {
    height: 520px;
}

.lookout-image-portrait,
.lookout-image-landscape {
    height: 520px;
}

.lookout-closing {
    padding-top: 70px;

    text-align: center;
}

.lookout-closing p {
    max-width: none;
    margin: 0;

    color: var(--blue-deep);

    font-family: var(--font-serif);
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1;
    letter-spacing: -0.03em;
}


/* =========================================================
   CREEK & MARSH
   ========================================================= */

.creek-section {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, 0.85fr);

    padding:
        var(--section-padding)
        var(--page-padding);

    align-items: stretch;
}

.creek-media {
    min-height: 640px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(120, 174, 198, 0.30),
            rgba(255, 255, 255, 0.06)
        );
}

.creek-media video {
    width: 100%;
    height: 100%;
    min-height: 640px;

    object-fit: cover;
}

.creek-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding:
        clamp(30px, 7vw, 100px);
}

.wildlife-list {
    margin-top: 20px;

    color: var(--blue) !important;

    font-size: 13px;
    letter-spacing: 0.04em;
}


/* =========================================================
   THE LANDING
   ========================================================= */

.landing-section {
    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    background: var(--white);
}

.landing-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding:
        var(--section-padding)
        clamp(30px, 7vw, 100px);
}

.landing-image {
    min-height: 520px;
}

.landing-image img {
    min-height: 520px;
}


/* =========================================================
   THE STAY
   ========================================================= */

.stay-section {
    padding:
        var(--section-padding)
        var(--page-padding);
}

.stay-intro {
    width: min(var(--content-width), 100%);
    margin: 0 auto 70px;
}

.stay-facts {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    width: min(var(--content-width), 100%);
    margin: 0 auto;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stay-fact {
    min-height: 190px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 30px;

    border-right: 1px solid var(--border);
}

.stay-fact:last-child {
    border-right: 0;
}

.stay-label {
    margin-bottom: 12px;

    color: var(--blue);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.stay-fact strong {
    margin-bottom: 8px;

    color: var(--blue-deep);

    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.025em;
}

.stay-fact span:last-child {
    color: var(--text-soft);

    font-size: 13px;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-list {
    width: min(760px, 100%);
    margin-top: 42px;
}

.faq-item {
    margin: 0;
    padding: 0;

    border-top: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: 1px solid var(--border);
}

.faq-item summary {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 76px;
    padding: 22px 44px 22px 0;

    color: var(--blue-deep);

    font-family: var(--font-serif);
    font-size: clamp(21px, 2.2vw, 28px);
    line-height: 1.2;

    cursor: pointer;

    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";

    position: absolute;
    right: 4px;
    top: 50%;

    color: var(--blue);

    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 300;
    line-height: 1;

    transform:
        translateY(-50%)
        rotate(0deg);

    transition:
        transform 180ms ease,
        color 180ms ease;
}

.faq-item[open] summary::after {
    color: var(--blue-deep);

    transform:
        translateY(-50%)
        rotate(45deg);
}

.faq-item summary:hover {
    color: var(--blue-grey);
}

.faq-item p {
    max-width: 650px;

    margin: 0;
    padding:
        0
        44px
        28px
        0;

    color: var(--text-soft);

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   INQUIRY
   ========================================================= */

.inquiry-section {
    padding:
        var(--section-padding)
        var(--page-padding);

    background: var(--blue);
    color: var(--blue-deep);
}

.inquiry-section > div {
    width: min(1100px, 100%);
    margin: 0 auto;
}

.inquiry-section .eyebrow {
    color: var(--blue-deep);
}

.inquiry-section h2 {
    max-width: 800px;
}

.inquiry-contact {
    margin: 0 0 18px;

    color: var(--blue-deep);
}

.inquiry-contact + .inquiry-contact {
    margin-top: 8px;
}

.inquiry-contact a {
    color: inherit;
}

.inquiry-anchor {
    display: block;

    position: relative;
    top: -90px;

    height: 0;
    margin: 0;
    padding: 0;
}

.inquiry-form {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 30px 34px;

    margin-top: 60px;
}

.inquiry-field {
    display: flex;
    flex-direction: column;
}

.inquiry-field-full {
    grid-column: 1 / -1;
}

.inquiry-field label {
    margin-bottom: 9px;

    color: var(--blue-deep);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.inquiry-field input,
.inquiry-field select,
.inquiry-field textarea {
    width: 100%;

    padding: 13px 0;

    border: 0;
    border-bottom: 1px solid rgba(30, 68, 98, 0.45);
    border-radius: 0;

    outline: none;

    background: transparent;
    color: var(--blue-deep);

    font-size: 16px;
    line-height: 1.5;

    color-scheme: light;

    transition:
        border-color 180ms ease;
}

.inquiry-field input:focus,
.inquiry-field select:focus,
.inquiry-field textarea:focus {
    border-bottom-color: var(--blue-deep);
}

.inquiry-field input::placeholder,
.inquiry-field textarea::placeholder {
    color: rgba(30, 68, 98, 0.62);
}

.inquiry-field textarea {
    min-height: 130px;
    resize: vertical;
}

.inquiry-field select {
    appearance: none;
    cursor: pointer;

    background-image:
        linear-gradient(
            45deg,
            transparent 50%,
            var(--blue-deep) 50%
        ),
        linear-gradient(
            135deg,
            var(--blue-deep) 50%,
            transparent 50%
        );

    background-position:
        calc(100% - 8px) 50%,
        calc(100% - 3px) 50%;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;
}

.inquiry-field input:focus-visible,
.inquiry-field select:focus-visible,
.inquiry-field textarea:focus-visible {
    outline: 2px solid rgba(30, 68, 98, 0.35);
    outline-offset: 3px;
}

.inquiry-submit {
    grid-column: 1 / -1;

    padding-top: 15px;
}

.inquiry-submit .button {
    margin-top: 0;
    border-color: var(--blue-deep);
}

.hidden-field {
    position: absolute !important;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);

    white-space: nowrap;

    border: 0;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    padding:
        55px
        var(--page-padding);

    background: var(--blue-deep);
    color: var(--white);
}

.footer-brand p {
    margin: 0;

    font-size: 12px;
    line-height: 1.6;
}

.footer-brand p:first-child {
    font-weight: 600;
    letter-spacing: 0.05em;
}

.footer-brand p:last-child {
    color: rgba(255, 255, 255, 0.62);
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.site-footer nav a {
    color: rgba(255, 255, 255, 0.80);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;

    transition:
        color 180ms ease;
}

.site-footer nav a:hover {
    color: var(--blue);
}

.site-footer nav a:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 4px;
}


/* =========================================================
   404 PAGE
   ========================================================= */

.error-page {
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    background: var(--off-white);
}

.error-page .site-header {
    position: relative;
}

.error-main {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    padding:
        clamp(100px, 14vw, 180px)
        var(--page-padding);

    text-align: center;
}

.error-section {
    width: min(100%, 760px);
}

.error-section .eyebrow {
    margin-bottom: 1.5rem;
}

.error-section h1 {
    margin: 0;

    color: var(--blue-deep);

    font-family: var(--font-serif);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.error-copy {
    max-width: 480px;

    margin:
        2rem
        auto
        2.5rem;

    color: var(--text-soft);

    font-size: 1.05rem;
    line-height: 1.7;
}

.error-section .button {
    display: inline-flex;
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;

    padding: 10px 16px;

    background: var(--blue-deep);
    color: var(--white);

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;

    transform: translateY(-150%);

    transition:
        transform 150ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}


/* =========================================================
   PRIVACY PAGE
   ========================================================= */

.privacy-page .section {
    padding-top: 70px;
    padding-bottom: 70px;
}

.privacy-page .section:first-child {
    padding-top: clamp(110px, 12vw, 150px);
    padding-bottom: 55px;
}

.privacy-page .section-copy {
    width: min(760px, 100%);
}

.privacy-page h1 {
    margin-bottom: 32px;

    font-size: clamp(48px, 7vw, 88px);
    line-height: 0.96;
}

.privacy-page h2 {
    margin-bottom: 22px;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1;
}

.privacy-page .section-copy > p {
    margin-bottom: 18px;
    line-height: 1.7;
}

.privacy-page .section-copy > p:last-child {
    margin-bottom: 0;
}

.privacy-page .section:first-child .button {
    margin-top: 28px;
}

.privacy-page .section + .section {
    padding-top: 50px;
    padding-bottom: 50px;
}


/* =========================================================
   UTILITIES
   ========================================================= */

.nowrap {
    white-space: nowrap;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .section-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .together-section {
        grid-template-columns: 1fr;
    }

    .together-image {
        min-height: 560px;
    }

    .together-copy {
        padding-top: 80px;
        padding-bottom: 90px;
    }

    .lake-section,
    .creek-section,
    .landing-section {
        grid-template-columns: 1fr;
    }

    .lake-content,
    .creek-copy,
    .landing-copy {
        padding:
            80px
            var(--page-padding);
    }

    .lake-media,
    .creek-media,
    .landing-image {
        min-height: 560px;
    }

    .creek-media video {
        min-height: 560px;
    }

    .landing-image img {
        min-height: 560px;
    }

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

    .stay-fact:nth-child(2) {
        border-right: 0;
    }

    .stay-fact:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    :root {
        --page-padding: 20px;
        --section-padding: 70px;
    }

    html {
        scroll-padding-top: 75px;
    }

    .privacy-page .section {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .privacy-page .section:first-child {
        padding-top: 90px;
        padding-bottom: 45px;
    }

    .privacy-page .section + .section {
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .privacy-page h2 {
        font-size: 38px;
    }

    .privacy-page .section-copy > p {
        line-height: 1.65;
    }

    .site-header {
        padding:
            18px
            var(--page-padding);
    }

    .brand img {
        height: 34px;
        max-width: 180px;
    }

    .header-cta {
        min-height: 40px;
        padding: 0 18px;

        font-size: 10px;
    }

    .hero {
        min-height: 88svh;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(30, 68, 98, 0.68) 0%,
                rgba(30, 68, 98, 0.28) 100%
            );
    }

    .hero-content {
        width: calc(100% - 40px);
        padding-top: 80px;
    }

    h1 {
        font-size: clamp(54px, 16vw, 84px);
        line-height: 0.91;
    }

    h2 {
        font-size: clamp(44px, 13vw, 64px);
    }

    .hero-intro {
        max-width: 380px;
        font-size: 18px;
    }

    .button {
        min-height: 48px;
        padding: 0 27px;
    }

    .scroll-indicator {
        right: var(--page-padding);
        bottom: 20px;
    }

    .section {
        padding:
            var(--section-padding)
            var(--page-padding);
    }

    .section-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .section-copy {
        max-width: 600px;
    }

    .section-intro,
    .lookout-intro {
        margin-bottom: 55px;
        text-align: left;
    }

    .section-intro p:last-child,
    .lookout-intro p:last-child {
        margin-left: 0;
    }

    .cottage-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .cottage-card-offset {
        margin-top: 0;
    }

    .cottage-card-content {
        padding:
            30px
            24px
            34px;
    }

    .together-image {
        min-height: 420px;
    }

    .together-copy {
        padding:
            65px
            var(--page-padding)
            75px;
    }

    .lake-section,
    .creek-section,
    .landing-section {
        padding:
            0
            var(--page-padding);
    }

    .lake-section {
        padding-bottom: 32px;
    }

    .creek-media {
        margin-top: 32px;
    }

    .lake-content,
    .creek-copy,
    .landing-copy {
        padding:
            70px
            0;
    }

    .lake-media,
    .creek-media,
    .landing-image {
        min-height: 420px;
    }

    .creek-media video {
        min-height: 420px;
    }

    .landing-image img {
        min-height: 420px;
    }

    .lookout-gallery {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .lookout-image,
    .lookout-image-portrait,
    .lookout-image-landscape {
        height: 380px;
    }

    .lookout-closing {
        padding-top: 55px;
    }

    .lookout-closing p {
        font-size: 38px;
    }

    .stay-intro {
        margin-bottom: 45px;
    }

    .stay-facts {
        grid-template-columns: 1fr;
    }

    .stay-fact {
        min-height: 155px;

        padding:
            25px
            0;

        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .stay-fact:last-child {
        border-bottom: 0;
    }

    .faq-item summary {
        min-height: 70px;
        padding:
            20px
            40px
            20px
            0;

        font-size: 22px;
    }

    .faq-item p {
        padding:
            0
            35px
            25px
            0;
    }

    .inquiry-form {
        grid-template-columns: 1fr;
        gap: 25px;

        margin-top: 45px;
    }

    .inquiry-field-full,
    .inquiry-submit {
        grid-column: auto;
    }

    .inquiry-section {
        padding:
            75px
            var(--page-padding);
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;

        gap: 35px;

        padding:
            48px
            var(--page-padding);
    }

    .site-footer nav {
        gap: 16px 22px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .header-cta {
        min-height: 38px;
        padding: 0 15px;
    }

    .hero-content {
        padding-top: 65px;
    }

    h1 {
        font-size: 52px;
    }

    h2 {
        font-size: 42px;
    }

    .hero-intro {
        font-size: 17px;
    }

    .scroll-indicator {
        display: none;
    }

    .lake-media,
    .creek-media,
    .landing-image,
    .lookout-image,
    .lookout-image-portrait,
    .lookout-image-landscape {
        min-height: 330px;
    }

    .lookout-image,
    .lookout-image-portrait,
    .lookout-image-landscape {
        height: 330px;
    }

    .together-image {
        min-height: 330px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .hero-video,
    .creek-video {
        display: none;
    }

    .hero {
        background:
            linear-gradient(
                rgba(30, 68, 98, 0.10),
                rgba(30, 68, 98, 0.10)
            ),
            url("../images/lookout-daytime-lake-view.jpeg")
            center / cover no-repeat;
    }

    .creek-media {
        background: var(--blue-deep);
    }
}


/* =========================================================
   SMALL SCREEN ADJUSTMENT
   ========================================================= */

@media (max-width: 700px) {

    .error-main {
        padding-top: 80px;
        padding-bottom: 100px;
    }

    .error-section h1 {
        font-size: clamp(3.5rem, 17vw, 5.5rem);
    }

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