.about-highlight {
    background: #efefef;
    padding: 54px 20px 58px;
}

.about-highlight-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 44px;
    align-items: start;
}

.about-image-col {
    position: relative;
}

.about-image-col img {
    width: 100%;
    max-width: 330px;
    display: block;
    position: relative;
    z-index: 2;
}

.about-image-frame {
    position: absolute;
    width: 165px;
    height: 165px;
    border: 1px solid #dcdcdc;
    top: -16px;
    right: 0;
    z-index: 1;
}

.about-content-col h2 {
    margin: 0 0 12px;
    color: #0f2035;
    font-size: clamp(30px, 2.5vw, 44px);
}

.about-content-col p {
    margin: 0 0 22px;
    line-height: 1.7;
    color: #4f5b6a;
    font-size: 14px;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 10px 18px;
    margin-bottom: 20px;
}

.about-feature-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 10px;
    align-items: center;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    color: #11243d;
}

.about-icon {
    border: 1px solid var(--brand-gold);
    color: var(--brand-gold);
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 980px) {
    .about-highlight {
        padding: 38px 16px;
    }

    .about-highlight-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-image-col img {
        max-width: 100%;
    }

    .about-image-frame {
        width: 110px;
        height: 110px;
        top: -10px;
        right: -6px;
    }

    .about-feature-grid {
        grid-template-columns: 1fr;
    }
}


/* Floor Section (Index) */
.floor-plans-section {
    background: #ececec;
    padding: 44px 20px 70px;
}

.floor-plans-wrap {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.floor-script-title {
    margin: 0;
    font-size: clamp(46px, 6.2vw, 110px);
    line-height: 0.9;
    color: rgba(182, 170, 150, 0.34);
    font-style: italic;
}

.floor-plans-wrap h1 {
    margin: -12px 0 8px;
    color: #0f3f4b;
    letter-spacing: 2.2px;
    font-size: clamp(28px, 2.2vw, 42px);
}

.floor-offering {
    margin: 0 0 12px;
    color: #0f3f4b;
    font-size: clamp(26px, 2.05vw, 50px);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.floor-plans-intro {
    margin: 0;
    color: #0b1e33;
    font-size: clamp(12px, 0.8vw, 14px);
    letter-spacing: 2px;
    font-weight: 700;
}

.floor-divider-icon {
    margin: 8px auto 32px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #000;
    display: block;
    position: relative;
}

.floor-divider-icon::before {
    content: "";
    position: absolute;
    top: 46%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg);
}

.floor-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.floor-plan-tile {
    border: 1px solid #285145;
    border-radius: 10px;
    padding: 20px 18px 14px;
}

.floor-plan-tile img {
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 0 auto 14px;
}

.floor-plan-tile p {
    margin: 0 auto;
    width: fit-content;
    background: #285145;
    color: #fff;
    border-radius: 4px;
    padding: 8px 20px;
    font-size: clamp(16px, 0.92vw, 28px);
    font-weight: 700;
}

@media (max-width: 980px) {
    .floor-plans-section {
        padding: 40px 14px 48px;
    }

    .floor-plan-grid {
        grid-template-columns: 1fr;
    }

    .floor-script-title {
        font-size: clamp(40px, 15vw, 74px);
    }
}


/* Gallery Section (Index) */
.photo-gallery-section {
    background: #f2f2f2;
    padding: 54px 20px 70px;
}

.photo-gallery-wrap {
    max-width: 1240px;
    margin: 0 auto;
}

.photo-gallery-head {
    max-width: 780px;
    margin: 0 auto 30px;
    text-align: center;
}

.photo-gallery-head h1 {
    margin: 0 0 10px;
    color: #15263f;
    font-size: clamp(36px, 2.4vw, 52px);
}

.photo-gallery-head p {
    margin: 0;
    color: #5d6775;
    line-height: 1.7;
    font-size: 15px;
}

.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.photo-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(20, 37, 62, 0.08);
    transform: translateY(0);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    cursor: pointer;
}

.photo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(20, 37, 62, 0.16);
}

.photo-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16, 36, 63, 0.3), transparent 52%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.photo-card:hover::after {
    opacity: 1;
}

.photo-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
    animation: galleryZoomPulse 11s ease-in-out infinite alternate;
}

.photo-card-info {
    padding: 14px 14px 16px;
    transition: transform 0.35s ease;
    position: relative;
    z-index: 1;
}

.photo-card:hover .photo-card-info {
    transform: translateY(-4px);
}

.photo-card:hover img {
    transform: scale(1.12);
    filter: contrast(1.05) saturate(1.05);
    animation-play-state: paused;
}

.photo-card-info p {
    margin: 0;
    color: #5b6678;
    font-size: 14px;
    line-height: 1.5;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.photo-card:nth-child(2n) img {
    animation-duration: 12.5s;
}

.photo-card:nth-child(3n) img {
    animation-duration: 13.5s;
}

@keyframes galleryZoomPulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    .photo-card img {
        animation: none;
        transition: none;
    }
}

@media (max-width: 980px) {
    .photo-gallery-section {
        padding: 38px 14px 48px;
    }

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


/* Amenities Section (Index) */
.amenities-spec-section {
    background: #f2f2f2;
    padding: 56px 20px 66px;
}

.amenities-spec-wrap {
    max-width: 1240px;
    margin: 0 auto;
}

.amenities-spec-wrap h1 {
    margin: 0;
    text-align: center;
    font-size: clamp(34px, 2.2vw, 50px);
    color: #16263d;
}

.amenities-spec-wrap > p {
    max-width: 740px;
    margin: 12px auto 34px;
    text-align: center;
    color: #657081;
    line-height: 1.7;
    font-size: 14px;
}

.amenities-spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.amenities-spec-card {
    background: #efefef;
    padding: 26px 24px;
    min-height: 430px;
}

.amenities-spec-card h2,
.amenities-spec-card h3 {
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 16px;
    color: #13253e;
    font-size: clamp(20px, 1.3vw, 26px);
    position: relative;
    padding-bottom: 12px;
}

.amenities-spec-card h2::after,
.amenities-spec-card h3::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 90px;
    height: 2px;
    background: var(--brand-gold);
}

.amenities-spec-card h3 {
    margin-top: 14px;
}

.amenities-spec-card ul {
    margin: 0;
    padding-left: 16px;
    color: #2e3950;
    line-height: 1.55;
    font-size: 14px;
}

@media (max-width: 980px) {
    .amenities-spec-section {
        padding: 40px 14px 46px;
    }

    .amenities-spec-grid {
        grid-template-columns: 1fr;
    }

    .amenities-spec-card {
        min-height: 0;
    }
}


/* Contact Section (Index) */
.contact-section {
    background: #f5f6f8;
    padding: 60px 20px 70px;
}

.contact-wrap {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 26px;
}

.contact-info {
    background: #fff;
    padding: 30px;
}

.contact-info h1 {
    margin: 0 0 12px;
    color: #13253e;
    font-size: clamp(34px, 2.2vw, 50px);
}

.contact-info p {
    margin: 0 0 18px;
    color: #586476;
    line-height: 1.7;
    font-size: 15px;
}

.contact-info ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-info li {
    margin: 0 0 10px;
    color: #243248;
    font-size: 16px;
}

.contact-form {
    background: #fff;
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.contact-field {
    display: grid;
    gap: 7px;
}

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

.contact-field label {
    color: #2a3548;
    font-size: 14px;
    font-weight: 700;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border: 1px solid #d5d5d5;
    background: #ececec;
    padding: 14px 12px;
    color: #4b5f79;
    font-size: clamp(18px, 1.2vw, 36px);
    font-family: inherit;
}

.contact-field input {
    min-height: 58px;
}

.contact-field textarea {
    min-height: 170px;
    resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: var(--brand-gold);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #4b5f79;
    opacity: 1;
}

.contact-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-ribbon {
    display: block;
    width: 140px;
    height: 26px;
    margin: -2px 0 -2px;
    background: #c95a4a;
    clip-path: polygon(0 0, 80% 0, 100% 100%, 0 100%);
}

.contact-submit {
    grid-column: 1 / -1;
    justify-self: start;
    padding: 13px 26px;
    background: var(--brand-gold);
    border: 0;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 18px rgba(161, 183, 87, 0.35);
}

.contact-submit:disabled {
    cursor: not-allowed;
    opacity: 0.75;
}

.contact-status {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.contact-status.is-pending {
    color: #7a5b15;
}

.contact-status.is-success {
    color: #1f7a3f;
}

.contact-status.is-error {
    color: #b72833;
}

@media (max-width: 980px) {
    .contact-section {
        padding: 40px 14px 46px;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-ribbon {
        width: 110px;
        height: 22px;
    }
}

