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

:root {
    --blue: #2E7DC4;
    --blue2: #1D5F9E;
    --blue3: #0F3D6B;
    --blueTint: rgba(46, 125, 196, 0.08);
    --gray: #8B8D8F;
    --gray2: #5A5C5E;
    --ink: #10141A;
    --ink2: #161B23;
    --ink3: #1C222C;
    --white: #FFFFFF;
    --cream: #F6F7F9;
    --stone: #E4E8ED;
    --text: #C2C8D0;
    --muted: #68737E;
    --D: 'Nunito', sans-serif;
    --B: 'Nunito Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--B);
    background: var(--ink);
    color: var(--white);
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 2px;
}

::-webkit-scrollbar-track {
    background: var(--ink);
}

::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 1px;
}

/* ━━ NAV ━━ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 60px;
    transition: padding 0.4s, background 0.4s, border-color 0.4s;
    border-bottom: 1px solid transparent;
}

nav.pinned {
    padding: 14px 60px;
    background: rgba(16, 20, 26, 0.97);
    backdrop-filter: blur(20px);
    border-bottom-color: rgba(46, 125, 196, 0.2);
}

.nav-logo img {
    height: 63px;
    display: block;
    filter: brightness(0) invert(1);
    transition: height 0.3s;
}

@media (max-width: 525px) {
    .nav-logo img {
        height: 37px;
    }
}

nav.pinned .nav-logo img {
    height: 28px;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-family: var(--B);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.85);
}

.nav-cta {
    font-family: var(--B);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 11px 26px;
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--blue2);
}

/* ━━ HERO ━━ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 796px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.hero-img {
    position: relative;
    overflow: hidden;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    animation: slowZoom 14s ease-out forwards;
}

/* Right-edge fade into panel */
.hero-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 50%, rgba(16, 20, 26, 0.7) 80%, var(--ink) 100%);
}

.hero-panel {
    background: var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 80px 64px 76px 52px;
    position: relative;
}

/* Subtle dot grid matching logo energy */
.hero-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(46, 125, 196, 0.07) 1px, transparent 1px);
    background-size: 32px 32px;
}

.hp {
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--B);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 28px;
    opacity: 0;
    animation: up 0.9s 0.2s forwards;
}

.hero-tag::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--blue);
}

.hero-h1 {
    font-family: var(--D);
    font-size: clamp(52px, 6.5vw, 75px);
    font-weight: 300;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 8px;
    opacity: 0;
    animation: up 0.9s 0.35s forwards;
    letter-spacing: -0.01em;
}

.hero-h1 strong {
    font-weight: 600;
    color: var(--blue);
    display: block;
}

.hero-rule {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 28px 0;
    opacity: 0;
    animation: up 0.9s 0.5s forwards;
}

.hero-rule::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--blue);
}

.hero-rule::after {
    content: '';
    display: block;
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
}

.hero-sub {
    font-family: var(--B);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text);
    max-width: 380px;
    margin-bottom: 48px;
    opacity: 0;
    animation: up 0.9s 0.6s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    animation: up 0.9s 0.75s forwards;
}

.btn-blue {
    display: inline-block;
    font-family: var(--B);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 36px;
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-blue:hover {
    background: var(--blue2);
    transform: translateY(-1px);
}

.btn-line {
    display: inline-block;
    font-family: var(--B);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 36px;
    background: transparent;
    color: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-line:hover {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ━━ STATS BAR ━━ */
.statsbar {
    background: var(--ink2);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(46, 125, 196, 0.15);
    border-bottom: 1px solid rgba(46, 125, 196, 0.15);
}

.lakestatsbar {
    background: var(--ink2);
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    @media (max-width: 500px) {
        grid-template-columns: 1fr;
    }

    border-top: 1px solid rgba(46, 125, 196, 0.15);
    border-bottom: 1px solid rgba(46, 125, 196, 0.15);
    align-items: end;
}

.small {
    font-size: 16px;
}

.sbar-item {
    padding: 28px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.sbar-item:last-child {
    border-right: none;
}

.sbar-val {
    font-family: var(--D);
    font-size: 36px;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.01em;
}

.sbar-val span {
    color: var(--blue);
}

.sbar-lbl {
    font-family: var(--B);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ━━ INTRO ━━ */
.intro {
    padding: 120px 60px;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: start;
    background: var(--ink);
}

.intro-left {
    position: sticky;
    top: 120px;
}

.section-tag {
    font-family: var(--B);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.section-tag::before {
    content: '';
    display: block;
    width: 22px;
    height: 1px;
    background: var(--blue);
}

.intro-h {
    font-family: var(--D);
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -0.01em;
}

.intro-h strong {
    font-weight: 600;
    color: var(--blue);
}

.intro-right {
    padding-top: 4px;
}

.intro-body {
    font-family: var(--B);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 20px;
}

.intro-img {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.intro-img img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

.intro-img-cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(0deg, rgba(16, 20, 26, 0.88), transparent);
    font-family: var(--B);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(194, 200, 208, 0.6);
}

.intro-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 36px;
    font-family: var(--B);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    text-decoration: none;
    transition: gap 0.2s;
}

.intro-cta:hover {
    gap: 16px;
}

.intro-cta::after {
    content: '→';
}

/* ━━ GALLERY ━━ */
.gallery {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 440px 300px;
    gap: 3px;
    background: var(--ink3);
}

.gcell {
    overflow: hidden;
    position: relative;
}

.gcell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gcell:hover img {
    transform: scale(1.05);
}

.gcell.tall {
    grid-row: 1 / 3;
}

.gcell.wide {
    grid-column: 2 / 4;
}

.gcell-cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 22px;
    background: linear-gradient(0deg, rgba(16, 20, 26, 0.85), transparent);
    font-family: var(--B);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

/* ━━ AMENITIES ━━ */
.amenities {
    background: var(--cream);
    padding: 120px 60px;
}

.amen-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 64px;
}

.amen-h {
    font-family: var(--D);
    font-size: clamp(40px, 4vw, 58px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.amen-h strong {
    font-weight: 600;
    color: var(--blue);
}

.amen-intro {
    font-family: var(--B);
    font-size: 15px;
    font-weight: 300;
    color: #586070;
    line-height: 1.85;
}

.amen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--stone);
}

.amen-card {
    background: var(--white);
    padding: 36px 28px 32px;
    border-top: 3px solid transparent;
    transition: border-color 0.25s, background 0.25s;
    cursor: default;
}

.amen-card:hover {
    border-top-color: var(--blue);
    background: #FAFBFF;
}

.amen-num {
    font-family: var(--B);
    font-size: 11px;
    font-weight: 300;
    color: var(--blue);
    margin-bottom: 18px;
    letter-spacing: 0.06em;
}

.amen-name {
    font-family: var(--D);
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.amen-desc {
    font-family: var(--B);
    font-size: 13px;
    font-weight: 300;
    color: #6A7480;
    line-height: 1.7;
}

/* ━━ AERIAL BREAK ━━ */
.aerial {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.aerial img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    filter: brightness(0.65);
}

.aerial-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px;
}

.aerial-q {
    font-family: var(--D);
    font-size: clamp(26px, 3.5vw, 46px);
    font-weight: 300;
    line-height: 1.3;
    color: var(--white);
    max-width: 760px;
    margin-bottom: 20px;
}

.aerial-q strong {
    font-weight: 600;
    color: #90C4F0;
}

.aerial-sub {
    font-family: var(--B);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

/* ━━ LOCATION ━━ */
.location {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--ink2);
}

.loc-panel {
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.loc-h {
    font-family: var(--D);
    font-size: clamp(36px, 3.5vw, 52px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -0.01em;
}

.loc-h strong {
    font-weight: 600;
    color: var(--blue);
}

.loc-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.loc-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.loc-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.loc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--blue);
    flex-shrink: 0;
    margin-top: 4px;
}

.loc-lbl {
    font-family: var(--B);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 5px;
}

.loc-val {
    font-family: var(--B);
    font-size: 14px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.65;
}

.loc-maps {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-family: var(--B);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    text-decoration: none;
    transition: gap 0.2s;
}

.loc-maps:hover {
    gap: 14px;
}

.loc-maps::after {
    content: '→';
}

.loc-map {
    overflow: hidden;
    position: relative;
}

.loc-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) brightness(0.88);
    min-height: 520px;
}

/* ━━ INQUIRY ━━ */
.inquiry {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.inq-left {
    position: relative;
    overflow: hidden;
    background: var(--ink3);
}

.inq-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
    position: absolute;
    inset: 0;
}

.inq-left-content {
    position: relative;
    z-index: 1;
    padding: 80px 56px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    background: linear-gradient(to top, rgba(16, 20, 26, 0.75) 0%, transparent 55%);
}

.inq-left-h {
    font-family: var(--D);
    font-size: clamp(36px, 3.5vw, 54px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.inq-left-h strong {
    font-weight: 600;
    color: #90C4F0;
}

.inq-left-p {
    font-family: var(--B);
    font-size: 14px;
    font-weight: 300;
    color: rgba(194, 200, 208, 0.85);
    line-height: 1.8;
    max-width: 380px;
    margin-bottom: 36px;
}

.inq-pts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.inq-pts li {
    font-family: var(--B);
    font-size: 13px;
    font-weight: 300;
    color: rgba(194, 200, 208, 0.7);
    display: flex;
    align-items: center;
    gap: 12px;
}

.inq-pts li::before {
    content: '';
    width: 18px;
    height: 1px;
    background: var(--blue);
    flex-shrink: 0;
}

/* ━━ FORM ━━ */
.inq-right {
    background: var(--white);
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-tag {
    font-family: var(--B);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.form-tag::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--blue);
}

.form-h {
    font-family: var(--D);
    font-size: clamp(32px, 3vw, 46px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: 36px;
}

.form-h strong {
    font-weight: 600;
    color: var(--blue);
}

.fg {
    margin-bottom: 22px;
}

.fg label {
    display: block;
    font-family: var(--B);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8090A8;
    margin-bottom: 8px;
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    font-family: var(--B);
    font-size: 14px;
    font-weight: 300;
    color: var(--ink);
    background: transparent;
    border: none;
    border-bottom: 1px solid #C8D4DE;
    padding: 10px 0;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color 0.2s;
    border-radius: 0;
}

.fg input::placeholder,
.fg textarea::placeholder {
    color: #B0BECB;
    font-weight: 300;
}

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

.fg textarea {
    resize: none;
    min-height: 76px;
}

.fg-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.sel-w {
    position: relative;
}

.sel-w::after {
    content: '';
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #90A0B0;
    pointer-events: none;
}

.form-sep {
    height: 1px;
    background: #E0E8F0;
    margin: 10px 0 26px;
}

.form-submit {
    width: 100%;
    padding: 17px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--B);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.form-submit:hover {
    background: var(--blue2);
    transform: translateY(-1px);
}

.form-submit::after {
    content: '→';
    font-size: 18px;
    font-weight: 300;
}

.form-note {
    font-family: var(--B);
    font-size: 11px;
    font-weight: 300;
    color: #A0AEBB;
    margin-top: 14px;
    line-height: 1.6;
    text-align: center;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 10px;
}

.s-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(46, 125, 196, 0.1);
    border: 1px solid rgba(46, 125, 196, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}

.s-circle svg {
    width: 26px;
    height: 26px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.form-success h3 {
    font-family: var(--D);
    font-size: 36px;
    font-weight: 300;
    color: var(--ink);
    margin-bottom: 12px;
}

.form-success p {
    font-family: var(--B);
    font-size: 14px;
    font-weight: 300;
    color: #586270;
    line-height: 1.8;
}

/* ━━ FOOTER ━━ */
footer {
    background: var(--ink);
    border-top: 1px solid rgba(46, 125, 196, 0.12);
    padding: 44px 60px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
}

.footer-logo img {
    height: 63px;
    filter: brightness(0) invert(1);
    opacity: 0.4;
}

.footer-mid {
    font-family: var(--B);
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 1);
    text-align: center;

    a {
        color: rgba(255, 255, 255, 1);
        text-decoration: none;

        &:hover {
            color: #fff;
        }
    }
}

.footer-addr {
    font-family: var(--B);
    font-size: 12px;
    font-weight: 300;
    color: var(--muted);
    text-align: right;
    line-height: 1.65;
}

/* ━━ ANIMATIONS ━━ */
@keyframes up {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slowZoom {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: 0.12s;
}

.d2 {
    transition-delay: 0.24s;
}

.d3 {
    transition-delay: 0.36s;
}

/* ━━ RESPONSIVE ━━ */
@media (max-width: 1024px) {
    nav {
        padding: 18px 28px;
    }

    nav.pinned {
        padding: 12px 28px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        height: auto;
    }

    .hero-img {
        height: 56vh;
    }

    .hero-img::after {
        background: linear-gradient(to bottom, transparent 40%, var(--ink) 100%);
    }

    .hero-panel {
        padding: 40px 28px 64px;
    }

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

    .sbar-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .sbar-item:nth-child(even) {
        border-bottom: none;
    }

    .intro {
        grid-template-columns: 1fr;
        gap: 52px;
        padding: 80px 28px;
    }

    .intro-left {
        position: static;
    }

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

    .gcell.tall {
        grid-row: auto;
        grid-column: 1 / 3;
    }

    .gcell.wide {
        grid-column: 1 / 3;
    }

    .gcell img {
        height: 260px;
    }

    .amenities {
        padding: 80px 28px;
    }

    .amen-head {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

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

    .loc-panel {
        padding: 72px 28px;
        gap: 32px;
    }

    .loc-map iframe {
        min-height: 300px;
    }

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

    .inq-left {
        min-height: 420px;
    }

    .inq-right {
        padding: 60px 28px;
    }

    .fg-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    footer {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 36px 28px;
        gap: 16px;
    }

    .footer-addr {
        text-align: center;
    }
}

@media (max-width: 1024px) {
    nav {
        padding: 18px 10px;
    }
}