/* ============================================
   ADAM THEME - Main Stylesheet
   Made for Good Living
   ============================================ */

/* --- CSS Variables --- */
:root {
    --color-primary: #1a3c2a;
    --color-primary-dark: #0f2a1c;
    --color-primary-light: #2d5a3f;
    --color-accent: #c9a96e;
    --color-accent-light: #d4b97f;
    --color-white: #ffffff;
    --color-off-white: #f8f6f3;
    --color-cream: #f0ebe3;
    --color-dark: #1a1a1a;
    --color-text: #333333;
    --color-text-light: #777777;
    --color-border: rgba(255, 255, 255, 0.15);

    --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --header-height: 80px;
    --section-padding: 120px;
    --container-width: 1400px;

    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;

    --scrollbar-track: var(--color-cream);
    --scrollbar-thumb: var(--color-primary);
    --scrollbar-thumb-hover: var(--color-primary-light);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-off-white);
    overflow-x: clip;
}

.main-content {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

/* Custom Scrollbar */
*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

*::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
}

*::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb);
    border-radius: 999px;
    border: 2px solid var(--scrollbar-track);
    transition: background 0.2s ease;
}

*::-webkit-scrollbar-thumb:hover {
    background: var(--scrollbar-thumb-hover);
}

*::-webkit-scrollbar-corner {
    background: var(--scrollbar-track);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    /* height: var(--header-height); */
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(26, 60, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.header-inner {
    /* max-width: var(--container-width); */
    width: 100%;
    max-width: 100%;
    margin: 20px auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-sizing: border-box;
}

.site-header.scrolled .header-inner {
    margin: 0;
}

.header-logo {
    padding: 8px 0;
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
}

.header-logo a,
.header-logo .custom-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    max-width: 100%;
}

.header-logo img {
    max-width: 100%;
    height: auto;
}

.header-logo .custom-logo {
    /* max-height: 55px; */
    max-height: 70px;
    max-width: min(220px, 50vw);
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo-icon {
    flex-shrink: 0;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    padding: 6px;
    border-radius: 50%;
    transition: var(--transition-fast);
    opacity: 0.8;
    font-size: 16px;
    line-height: 1;
}

.header-social-btn:hover {
    opacity: 1;
    color: var(--color-accent);
}

/* Hamburger - always visible */
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    margin-left: 4px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 26px;
}

.hamburger span {
    display: block;
    height: 1.5px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger span:nth-child(1) {
    width: 100%;
}

.hamburger span:nth-child(2) {
    width: 70%;
    margin-left: auto;
}

.hamburger span:nth-child(3) {
    width: 100%;
}

.menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
}

.menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* Fullscreen Overlay Menu */
.fullscreen-menu {
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 999;
    background: var(--color-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-menu-inner {
    text-align: center;
    width: 100%;
    max-width: min(600px, 100%);
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.fullscreen-nav-menu {
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.fullscreen-nav-menu li {
    overflow: hidden;
    margin-bottom: 4px;
}

.fullscreen-nav-menu li a {
    display: inline-block;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
    transform: translateY(100%);
    opacity: 0;
}

.fullscreen-menu.active .fullscreen-nav-menu li a {
    transform: translateY(0);
    opacity: 1;
}

.fullscreen-menu.active .fullscreen-nav-menu li:nth-child(1) a {
    transition-delay: 0.1s;
}

.fullscreen-menu.active .fullscreen-nav-menu li:nth-child(2) a {
    transition-delay: 0.15s;
}

.fullscreen-menu.active .fullscreen-nav-menu li:nth-child(3) a {
    transition-delay: 0.2s;
}

.fullscreen-menu.active .fullscreen-nav-menu li:nth-child(4) a {
    transition-delay: 0.25s;
}

.fullscreen-menu.active .fullscreen-nav-menu li:nth-child(5) a {
    transition-delay: 0.3s;
}

.fullscreen-menu.active .fullscreen-nav-menu li:nth-child(6) a {
    transition-delay: 0.35s;
}

.fullscreen-menu.active .fullscreen-nav-menu li:nth-child(7) a {
    transition-delay: 0.4s;
}

.fullscreen-menu.active .fullscreen-nav-menu li:nth-child(8) a {
    transition-delay: 0.45s;
}

.fullscreen-nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.4s ease;
}

.fullscreen-nav-menu li a:hover,
.fullscreen-nav-menu li a.active,
.fullscreen-nav-menu li.active>a,
.fullscreen-nav-menu li.current-menu-item>a,
.fullscreen-nav-menu li.current_page_item>a {
    color: var(--color-accent);
}

.fullscreen-nav-menu li a:hover::after,
.fullscreen-nav-menu li a.active::after,
.fullscreen-nav-menu li.active>a::after,
.fullscreen-nav-menu li.current-menu-item>a::after,
.fullscreen-nav-menu li.current_page_item>a::after {
    width: 60%;
}

/* Menu Footer */
.fullscreen-menu-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.4s, transform 0.5s ease 0.4s;
}

.fullscreen-menu.active .fullscreen-menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.fullscreen-contact {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 100%;
}

.fullscreen-contact a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: anywhere;
    text-align: center;
}

.fullscreen-contact a:hover {
    color: var(--color-accent);
}

.fullscreen-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.fullscreen-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    font-size: 16px;
    line-height: 1;
}

.fullscreen-social a:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(201, 169, 110, 0.08);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--color-primary-dark);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg,
            rgba(15, 42, 28, 0.7) 0%,
            rgba(26, 60, 42, 0.4) 50%,
            rgba(0, 0, 0, 0.3) 100%); */
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 150px;
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(52px, 7vw, 96px);
    font-weight: 300;
    color: var(--color-white);
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--color-white);
    text-transform: uppercase;
    margin-bottom: 40px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border: 1px solid var(--color-accent);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: var(--transition);
}

.hero-btn:hover {
    background: var(--color-accent);
    color: var(--color-primary-dark);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--color-white);
    border-radius: 2px;
    animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 150px 0 400px 0;
    background-color: var(--color-off-white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.about-inner {
    /* max-width: var(--container-width); */
    margin: 0 auto;
    padding: 0 140px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 70px;
    align-items: start;
}

.section-label {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    /* color: var(--color-text-light); */
    color: #203b5a;
    display: block;
    margin-bottom: 10px;
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(42px, 5vw, 95px);
    font-weight: 500;
    /* color: var(--color-primary); */
    color: #203b5a;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 30px;
}

.about-images {
    margin-top: 20px;
}

.about-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.about-description {
    position: relative;
    padding: 30px 0 30px 30px;
    margin-top: 50px;
}

.about-description-deco {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.about-description-deco::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 1px;
    background: #203b5a;
    transform: translateX(-50%);
}

.about-description-deco::after {
    content: '';
    position: absolute;
    top: 32px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2ec4d9;
}

.about-deco-label {
    position: absolute;
    bottom: -170px;
    left: 50%;
    transform: translateX(-50%);
    writing-mode: vertical-rl;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.18em;
    color: #203b5a;
    white-space: nowrap;
}

.about-description p {
    position: relative;
    z-index: 1;
    font-size: 20px;
    line-height: 1.9;
    /* color: var(--color-text-light); */
    color: #203b5a;
    padding: 0 150px 30px 0;
}

.about-location-img {
    max-width: 100%;
    margin-top: -25px;
}

.about-location-title {
    font-family: var(--font-heading);
    /* font-size: clamp(72px, 9vw, 140px); */
    /* font-weight: 300; */
    font-size: clamp(118px, 31vw, 310px);
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1;
    /* margin-bottom: 30px; */
    text-transform: uppercase;
    /* opacity: 0.15; */
    /* position: absolute; */
    /* top: -72%; */
    /* transform: translateY(-60px); */

    height: 100%;
    background: rgba(80, 80, 80, .75);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Floating image between About & Rooms sections */
.section-float-img {
    position: absolute;
    z-index: 2;
    width: 100%;
    margin-top: -600px;
    line-height: 0;
    pointer-events: none;
}



/* ============================================
   ROOM & FACILITIES SECTION
   ============================================ */
.rooms-section {
    padding: 400px 0 650px;
    background-color: #0a1f1a;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    z-index: 1;
}


.rooms-title-img {
    display: block;
    width: 100%;
    max-width: min(100%, 700px);
}


.rooms-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 31, 26, 0.45) 0%,
            rgba(10, 31, 26, 0.15) 28%,
            transparent 55%);
    pointer-events: none;
}

.rooms-inner {
    position: relative;
    margin: 0 auto;
    padding: 0 140px;
    z-index: 1;
}

.rooms-deco {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.rooms-deco::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 150px;
    width: 1px;
    background: rgba(255, 255, 255, 0.35);
    transform: translateX(-50%);
}

.rooms-deco-label {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    writing-mode: vertical-rl;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

.rooms-layout {
    position: relative;
    padding-right: 72px;
}

.rooms-header {
    position: relative;
    z-index: 2;
    padding-top: 12px;
}

.rooms-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 5.5vw, 84px);
    font-weight: 500;
    color: #f0ebe3;
    line-height: 1.05;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.rooms-grid {
    display: grid;
    grid-template-columns: minmax(0, 42%) minmax(0, 58%);
    column-gap: clamp(28px, 5vw, 72px);
    row-gap: clamp(28px, 4vw, 56px);
    margin-top: clamp(-90px, -8vw, -40px);
}

.room-card {
    position: relative;
    overflow: visible;
    border-radius: 0;
}

.room-card-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.room-card:hover .room-card-img img {
    transform: scale(1.03);
}

.room-card-info {
    padding: 14px 0 0;
}

.room-card-info--right {
    text-align: right;
}

.room-card-info h3 {
    font-family: var(--font-heading);
    /* font-size: clamp(13px, 1.2vw, 16px); */
    font-size: clamp(13px, 1.5vw, 40px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.room-card--bedroom {
    grid-column: 2;
    grid-row: 1;
}

.room-card--gym {
    grid-column: 1;
    grid-row: 1;
    margin-top: clamp(170px, 20vw, 270px);
}

.room-card--living-room {
    grid-column: 2;
    grid-row: 2;
}

.room-card--reception {
    grid-column: 1;
    grid-row: 2;
    margin-top: clamp(16px, 2.5vw, 48px);
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location-wrap {
    position: relative;
    z-index: 2;
    margin-top: -900px;
}

.location-bg-img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
}

.location-section {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: clamp(280px, 30vw, 500px) 0 var(--section-padding);
    background: transparent;
    overflow: visible;
}

.location-title-img {
    display: block;
    width: 100%;
    max-width: min(100%, 650px);
    margin-left: auto;
}



.location-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-cream) 0%, #e8e0d5 100%);
}

.location-overlay {
    position: absolute;
    inset: 0;
    background: url('') center/cover no-repeat;
    opacity: 0.05;
}

.location-inner {
    /* max-width: var(--container-width); */
    margin: 0 auto;
    padding: 0 150px;
    position: relative;
    z-index: 1;
}

.location-header {
    margin-bottom: 60px;
}

.location-title {
    font-family: var(--font-heading);
    font-size: clamp(52px, 7vw, 100px);
    font-weight: 300;
    color: var(--color-primary);
    line-height: 1;
    text-transform: uppercase;
    text-align: right;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: start;
    width: 100%;
    min-width: 0;
}

.location-content>* {
    min-width: 0;
}

.location-image {
    position: relative;
    overflow: visible;
    margin-left: 56px;
}

.location-image img {
    width: 100%;
    object-fit: cover;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.location-image-deco {
    position: absolute;
    top: 0;
    left: -80px;
    width: 0;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.location-image-deco::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 500px;
    width: 1px;
    background: #292929;
    transform: translateX(-50%);
}

.location-deco-label {
    position: absolute;
    bottom: 350px;
    left: 50%;
    transform: translateX(-50%);
    writing-mode: vertical-rl;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.18em;
    color: #292929;
    white-space: nowrap;
}

.location-details {
    padding: 50px;
}

.location-table {
    width: 100%;
    border-collapse: collapse;
}

.location-table tr {
    /* border-bottom: 1px solid rgba(26, 60, 42, 0.1); */
    border-bottom: 1px solid #292929;
}

.location-table td {
    padding: 22px 0;
    font-size: 16px;
}

.location-table .loc-name {
    /* color: var(--color-text); */
    color: #292929;
    font-weight: 500;
}

.location-table .loc-distance {
    /* color: var(--color-text-light); */
    color: #292929;
    text-align: right;
    font-weight: 400;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 14px 36px;
    /* background: var(--color-primary); */
    background: #121f1b;
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    /* border-radius: 4px; */
    transition: var(--transition);
}

.location-btn:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 60, 42, 0.3);
}

/* ============================================
   INSTAGRAM SECTION
   ============================================ */
.instagram-section {
    /* padding: var(--section-padding) 0; */
    /* background: var(--color-primary-dark); */
    overflow: hidden;
}

.instagram-header {
    position: absolute;
    bottom: clamp(24px, 4vw, 50px);
    left: 0;
    right: 0;
    z-index: 2;
    /* max-width: var(--container-width); */
    margin: 0 auto;
    /* padding: 0 150px; */
    padding: 0 80px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.instagram-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 400;
    color: var(--color-white);
    line-height: 1;
    text-transform: uppercase;
}

.instagram-handle {
    display: inline-flex;
    align-items: center;
    padding: 10px 28px;
    font-size: 12px;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(90deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.instagram-handle:hover {
    color: var(--color-white);
    opacity: 0.9;
    transform: translateY(-1px);
}

.instagram-grid {
    /* max-width: var(--container-width); */
    margin: 0 auto;
    /* padding: 0 40px; */
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* gap: 10px; */
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    /* border-radius: 4px; */
    cursor: pointer;
    background: var(--color-primary);
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 60, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--color-white);
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

/* ============================================
   CONTACT CTA SECTION
   ============================================ */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--color-off-white);
    text-align: center;
}

.contact-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.contact-text {
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 60, 42, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #0c1a12;
    color: var(--color-white);
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow: clip;
}

.footer-inner {
    /* max-width: var(--container-width); */
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 100px;
    box-sizing: border-box;
}

/* Footer Top - 4 equal columns */
.footer-top {
    display: grid;
    grid-template-columns: auto 1fr 1fr 1fr;
    column-gap: clamp(56px, 7vw, 110px);
    row-gap: 30px;
    align-items: start;
    padding: 90px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Footer Brand / Logo */
.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: clamp(56px, 7vw, 110px);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    max-width: 100%;
}

.footer-logo {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .footer-logo {
        max-width: 100%;
    }
}

.footer-logo-link:hover {
    color: rgba(255, 255, 255, 0.6);
}

.footer-logo-svg {
    width: 60px;
    height: 60px;
}

.footer-logo-link .custom-logo {
    height: 60px;
    width: auto;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
}

/* Footer Columns */
.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 3vw, 48px);
    min-width: 0;
}

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col ul li a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-fast);
    white-space: nowrap;
    display: inline-block;
    max-width: 100%;
}

.footer-col ul li a:hover,
.footer-col ul li a.active,
.footer-col ul li.active>a {
    color: var(--color-accent);
}

/* Social + Phone column */
.footer-social-contact {
    display: flex;
    align-items: flex-start;
    gap: clamp(16px, 2vw, 28px);
    min-width: 0;
    flex-wrap: wrap;
}

.footer-social-flat {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    padding-top: 2px;
}

.footer-social-flat a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-fast);
    font-size: 18px;
    line-height: 1;
}

.footer-social-flat a:hover {
    color: var(--color-white);
}

.footer-phone,
.footer-email a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-fast);
    white-space: nowrap;
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.footer-email {
    min-width: 0;
}

.footer-phone:hover,
.footer-email a:hover {
    color: var(--color-accent);
}

/* Legacy class - kept for compatibility */
.footer-contact-inline {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.footer-contact-inline a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-fast);
    white-space: nowrap;
}

.footer-contact-inline a:hover {
    color: var(--color-accent);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.footer-copyright,
.footer-credit {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.2);
    margin: 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

/* Hero */
.contact-hero {
    position: relative;
    height: 75vh;
    min-height: 320px;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--color-dark);
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(10, 26, 18, 0.45) 100%); */
    background: linear-gradient(to top, rgba(15, 42, 28, 1) 0%, transparent 30%);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.contact-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    color: var(--color-white);
    text-align: center;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Contact Info Section */
.contact-info-section {
    background: #102922;
    padding: clamp(70px, 9vw, 110px) 0;
    position: relative;
    overflow: hidden;
}

.contact-info-inner {
    /* max-width: var(--container-width); */
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px) 0 0;
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(280px, 1fr) 100px;
    gap: clamp(40px, 6vw, 90px);
    align-items: start;
    position: relative;
}

/* Contact Images */
.contact-images {
    display: block;
}

.contact-img img {
    width: 100%;
    /* height: 100%; */
    display: block;
    object-fit: cover;
}

.contact-img-1 {
    /* aspect-ratio: 3 / 4; */
}

.contact-img-2 {
    /* aspect-ratio: 1 / 1; */
}

/* Contact Details */
.contact-details {
    margin: auto 0;
    padding: 0 0 0 50px;
}

.contact-detail-item {
    margin-bottom: clamp(28px, 3.5vw, 42px);
}

.contact-detail-item:last-child {
    margin-bottom: 0;
}

.contact-detail-label {
    font-family: var(--font-heading);
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-detail-value {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 420px;
}



.contact-detail-value a {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition-fast);
}

.contact-detail-value a:hover {
    color: var(--color-accent);
}

/* Social Icons */
.contact-social-icons {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 8px;
}

.contact-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-fast);
}

.contact-social-icons a:hover {
    color: var(--color-accent);
}

/* Decorative side */
.contact-decor {
    position: relative;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.14);
    pointer-events: none;
}

.contact-decor-leaf {
    position: absolute;
    inset: auto 0 0 auto;
    width: min(180px, 100%);
    height: auto;
    opacity: 0.9;
}

.contact-side-deco {
    position: relative;
    z-index: 1;
    width: 0;
    height: 70%;
    min-height: 280px;
    align-self: center;
}

.contact-side-deco::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    height: 38%;
    width: 1px;
    background: rgba(255, 255, 255, 0.7);
    transform: translateX(-50%);
}

.contact-side-label {
    position: absolute;
    top: 44%;
    left: 50%;
    writing-mode: sideways-lr;
    transform: translateX(-50%) rotate(180deg);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    -webkit-writing-mode: sideways-lr;
    -ms-writing-mode: sideways-lr;
}

/* ---- Form Section ---- */
.contact-form-section {
    background: #e8e8e8;
    padding: clamp(70px, 9vw, 110px) 0;
}

.contact-form-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(48px, 6vw, 72px) clamp(36px, 6vw, 80px) clamp(56px, 7vw, 88px);
    border: 1px solid rgba(64, 64, 64, 0.35);
    background: transparent;
}

.contact-form-header {
    text-align: center;
    margin-bottom: clamp(36px, 5vw, 52px);
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 400;
    color: #2a2a2a;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.contact-form-desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    max-width: 460px;
    margin: 0 auto;
}

/* ---- WPForms Custom Styling ---- */
.contact-form-wrap .wpforms-container {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.contact-form-wrap .wpforms-form .wpforms-field-label {
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #2a2a2a !important;
    letter-spacing: 0.02em;
    margin-bottom: 10px !important;
}

.contact-form-wrap .wpforms-form .wpforms-field-required .wpforms-required-label {
    color: #2a2a2a !important;
}

.contact-form-wrap .wpforms-form input[type="text"],
.contact-form-wrap .wpforms-form input[type="email"],
.contact-form-wrap .wpforms-form input[type="tel"],
.contact-form-wrap .wpforms-form input[type="url"],
.contact-form-wrap .wpforms-form input[type="number"],
.contact-form-wrap .wpforms-form textarea,
.contact-form-wrap .wpforms-form select {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid #3a3a3a !important;
    border-radius: 0 !important;
    padding: 8px 0 12px !important;
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    color: #2a2a2a !important;
    box-shadow: none !important;
    transition: border-color 0.3s ease !important;
    width: 100% !important;
    min-height: 0 !important;
}

.contact-form-wrap .wpforms-form input[type="text"]:focus,
.contact-form-wrap .wpforms-form input[type="email"]:focus,
.contact-form-wrap .wpforms-form input[type="tel"]:focus,
.contact-form-wrap .wpforms-form input[type="url"]:focus,
.contact-form-wrap .wpforms-form input[type="number"]:focus,
.contact-form-wrap .wpforms-form textarea:focus,
.contact-form-wrap .wpforms-form select:focus {
    border-bottom-color: #111 !important;
    outline: none !important;
    background: transparent !important;
}

.contact-form-wrap .wpforms-form select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%232a2a2a' d='M6 8L0 0h12z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 2px center !important;
    padding-right: 24px !important;
}

/* Checkbox & Radio */
.contact-form-wrap .wpforms-form .wpforms-field-checkbox ul,
.contact-form-wrap .wpforms-form .wpforms-field-radio ul {
    padding: 4px 0 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

.contact-form-wrap .wpforms-form .wpforms-field-checkbox li,
.contact-form-wrap .wpforms-form .wpforms-field-radio li {
    margin-bottom: 10px !important;
}

.contact-form-wrap .wpforms-form .wpforms-field-checkbox li label,
.contact-form-wrap .wpforms-form .wpforms-field-radio li label {
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    color: #2a2a2a !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.contact-form-wrap .wpforms-form input[type="checkbox"],
.contact-form-wrap .wpforms-form input[type="radio"] {
    width: 16px !important;
    height: 16px !important;
    margin: 0 !important;
    accent-color: #2a2a2a;
    flex-shrink: 0;
}

/* reCAPTCHA */
.contact-form-wrap .wpforms-form .wpforms-field-recaptcha,
.contact-form-wrap .wpforms-form .wpforms-recaptcha-container {
    display: flex !important;
    justify-content: center !important;
}

/* Submit Button */
.contact-form-wrap .wpforms-form .wpforms-submit-container {
    text-align: center !important;
    padding-top: 28px !important;
}

.contact-form-wrap .wpforms-form button[type="submit"],
.contact-form-wrap .wpforms-form .wpforms-submit {
    background: #2a2a2a !important;
    color: #fff !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 14px 56px !important;
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.04em !important;
    text-transform: none !important;
    cursor: pointer !important;
    transition: background 0.3s ease, opacity 0.3s ease !important;
    min-width: 160px;
}

.contact-form-wrap .wpforms-form button[type="submit"]:hover,
.contact-form-wrap .wpforms-form .wpforms-submit:hover {
    background: #111 !important;
    color: #fff !important;
    opacity: 0.92;
}

/* WPForms field spacing */
.contact-form-wrap .wpforms-form .wpforms-field {
    padding: 14px 0 !important;
    margin: 0 !important;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-info-inner {
        grid-template-columns: 1fr 1.2fr;
        gap: 40px;
    }

    .contact-decor {
        display: none;
    }
}

@media (max-width: 768px) {
    .contact-info-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .contact-details {
        padding-left: 0;
    }

    .contact-img-1 {
        /* aspect-ratio: 4 / 5; */
        max-width: 420px;
    }

    .contact-hero {
        height: 35vh;
        min-height: 240px;
    }

    .contact-form-inner {
        padding: 40px 20px 48px;
        margin: 0 20px;
    }

    .contact-form-section {
        padding: 50px 0 60px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        height: 30vh;
        min-height: 200px;
    }

    .contact-info-section {
        padding: 50px 0;
    }

    .contact-detail-label {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .contact-form-section {
        padding: 50px 0 60px;
    }
}

/* ============================================
   CONSTRUCTION UPDATE PAGE
   ============================================ */
.construction-hero {
    position: relative;
    height: 60vh;
    min-height: 320px;
    overflow: hidden;
}

.construction-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--color-dark);
}

.construction-hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(10, 26, 18, 0.5) 100%); */
    background: linear-gradient(to top, rgba(15, 42, 28, 1) 0%, transparent 20%);
}

.construction-content {
    /* background: var(--color-dark); */
    background: #102922;
    padding: 60px 0 80px;
}

.construction-content-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.construction-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 35px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Dropdown Filter */
.construction-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

.construction-filter-label {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

.construction-dropdown-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.construction-dropdown {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 13px;
    padding: 6px 30px 6px 4px;
    cursor: pointer;
    outline: none;
    min-width: 180px;
    letter-spacing: 0.5px;
}

.construction-dropdown option {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 8px;
}

.construction-dropdown-arrow {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: rgba(255, 255, 255, 0.4);
}

/* Photo Grid */
.construction-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.construction-item {
    position: relative;
    overflow: hidden;
    /* border-radius: 6px; */
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

.construction-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.construction-item:hover img {
    transform: scale(1.05);
}

.construction-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--color-white);
}

.construction-item:hover .construction-item-overlay {
    opacity: 1;
}

/* Empty State */
.construction-empty {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.5);
}

.construction-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--color-accent);
    color: var(--color-dark);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition);
}

.construction-upload-btn:hover {
    background: var(--color-white);
    color: var(--color-dark);
}

/* ============================================
   BLOG / INDEX STYLES
   ============================================ */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: calc(var(--header-height) + 40px) 0 60px;
}

.post-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.post-thumbnail img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.post-content {
    padding: 25px;
}

.post-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}

.post-title a {
    color: var(--color-primary);
}

.post-title a:hover {
    color: var(--color-accent);
}

.post-excerpt {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .about-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .rooms-inner {
        padding: 0 80px;
    }

    .rooms-deco {
        right: 40px;
    }

    .rooms-layout {
        padding-right: 48px;
    }

    .room-card--gym {
        margin-top: clamp(140px, 18vw, 220px);
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .about-inner {
        grid-template-columns: 1fr;
    }

    .section-float-img {
        margin-top: -160px;
        margin-bottom: -120px;
    }

    .rooms-section {
        padding-top: calc(var(--section-padding) + 80px);
    }

    .rooms-inner {
        padding: 0 40px;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        margin-top: 32px;
    }

    .room-card--bedroom,
    .room-card--gym,
    .room-card--living-room,
    .room-card--reception {
        grid-column: 1;
        grid-row: auto;
        margin-top: 0;
    }

    .room-card-info--right {
        text-align: left;
    }

    .rooms-deco {
        display: none;
    }

    .rooms-layout {
        padding-right: 0;
    }

    .location-wrap {
        margin-top: -140px;
    }

    .location-section {
        padding-top: clamp(200px, 26vw, 360px);
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-image-deco {
        display: none;
    }

    .location-image {
        margin-left: 0;
    }

    .location-title {
        text-align: left;
    }

    .footer-inner {
        padding: 0 40px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        column-gap: 40px;
        row-gap: 40px;
        padding: 60px 0;
    }

    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
        border-right: none;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .footer-email {
        grid-column: 1 / -1;
    }

    .footer-contact-inline {
        text-align: left;
    }

    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --header-height: 70px;
    }

    .header-inner {
        margin: 12px auto;
        padding: 0 16px;
        gap: 8px;
    }

    .site-header.scrolled .header-inner {
        margin: 0;
    }

    .header-logo .custom-logo {
        max-height: 50px;
        max-width: min(160px, 42vw);
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-name {
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    .header-actions {
        gap: 6px;
    }

    .header-social-btn {
        padding: 4px;
        font-size: 15px;
    }

    .menu-toggle {
        padding: 6px;
        margin-left: 0;
    }

    .fullscreen-menu-inner {
        padding: 0 20px;
        gap: 40px;
    }

    .fullscreen-nav-menu li a {
        letter-spacing: 2px;
        font-size: clamp(16px, 4.5vw, 24px);
        max-width: 100%;
        word-break: break-word;
        white-space: normal;
    }

    .fullscreen-contact {
        gap: 16px;
    }

    .hero-content {
        padding: 0 30px;
    }

    .hero-title {
        font-size: clamp(36px, 10vw, 56px);
    }

    .about-inner {
        padding: 0 20px;
    }

    .about-section {
        padding-bottom: 180px;
    }

    .section-float-img {
        margin-top: -100px;
        margin-bottom: -80px;
    }

    .rooms-section {
        padding-top: calc(var(--section-padding) + 60px);
    }

    .location-wrap {
        margin-top: -90px;
    }

    .location-section {
        padding-top: clamp(160px, 38vw, 260px);
    }

    .about-description p {
        padding-right: 0;
    }

    .about-deco-label {
        font-size: 10px;
        letter-spacing: 0.14em;
    }

    .about-location-title {
        font-size: 72px;
    }

    .rooms-inner {
        padding: 0 20px;
    }

    .rooms-title {
        font-size: clamp(36px, 10vw, 52px);
    }

    .room-card-img {
        aspect-ratio: 4 / 3;
    }

    .location-inner {
        padding: 0 20px;
    }

    .location-image img {
        height: 300px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }

    .instagram-header {
        padding: 0 20px;
        bottom: 20px;
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 16px;
    }

    .instagram-title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .instagram-handle {
        padding: 8px 20px;
        font-size: 13px;
        flex-shrink: 0;
    }

    .footer-inner {
        padding: 0 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 32px;
        padding: 50px 0;
    }

    .footer-brand {
        display: flex;
        justify-content: center;
        padding-bottom: 28px;
    }

    .footer-brand-name {
        white-space: normal;
    }

    .footer-links {
        gap: 24px;
    }

    .footer-col ul li a {
        white-space: normal;
        font-size: 14px;
        line-height: 1.6;
    }

    .footer-social-contact {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center;
    }

    .footer-social-flat {
        justify-content: center;
        padding-top: 0;
    }

    .footer-phone,
    .footer-email a {
        white-space: normal;
        font-size: 14px;
        text-align: center;
    }

    .footer-email {
        text-align: center;
    }

    .footer-contact-inline {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
        padding: 20px 0 28px;
    }

    .footer-copyright,
    .footer-credit {
        font-size: 13px;
        line-height: 1.5;
    }

    .contact-actions {
        flex-direction: column;
        align-items: center;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 0 12px;
    }

    .header-logo .custom-logo {
        max-height: 42px;
        max-width: min(120px, 38vw);
    }

    .header-social-btn {
        display: none;
    }

    .hero-btn {
        padding: 12px 28px;
        font-size: 11px;
    }

    .rooms-title {
        font-size: 36px;
    }

    .btn {
        padding: 14px 32px;
        width: 100%;
    }

    .footer-inner {
        padding: 0 16px;
    }

    .footer-top {
        padding: 40px 0;
        row-gap: 28px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-col+.footer-col {
        margin-top: 4px;
    }

    .footer-col ul li {
        margin-bottom: 4px;
    }

    .footer-col ul li a {
        font-size: 16px;
    }

    .footer-phone,
    .footer-email a {
        font-size: 16px;
    }

    .footer-bottom {
        padding: 18px 0 24px;
    }

    .footer-copyright,
    .footer-credit {
        font-size: 12px;
    }

    .fullscreen-menu-inner {
        padding: 0 16px;
        gap: 32px;
    }

    .fullscreen-nav-menu li a {
        letter-spacing: 1px;
        font-size: clamp(15px, 4.2vw, 20px);
        padding: 6px 0;
    }
}

/* ============================================
   PHOTO GALLERY PAGE
   ============================================ */
.gallery-page {
    background: var(--color-primary-dark);
}

/* Gallery Hero Banner */
.gallery-hero {
    position: relative;
    height: 60vh;
    min-height: 320px;
    /* max-height: 500px; */
    overflow: hidden;
}

.gallery-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--color-primary);
}

.gallery-hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to bottom,
            rgba(15, 42, 28, 0.3) 0%,
            rgba(15, 42, 28, 0.7) 100%); */
    background: linear-gradient(to top, rgba(15, 42, 28, 1) 0%, transparent 20%);

}

/* Gallery Content */
.gallery-content {
    position: relative;
    padding: 60px 0 100px;
}

.gallery-content-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.gallery-page-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    color: var(--color-white);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 40px;
}

/* Filter Tabs */
.gallery-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
}

.gallery-filter-btn {
    background: none;
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 32px;
    /* border-radius: 30px; */
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.gallery-filter-btn:hover {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.gallery-filter-btn.active {
    color: #0f2a1c;
    border-color: var(--color-white);
    background: #fff;
    /* background: rgba(255, 255, 255, 0.08); */
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.gallery-item {
    position: relative;
    /* border-radius: 8px; */
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    background: var(--color-primary);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 60, 42, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--color-white);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

/* Gallery item fade animation for filter */
.gallery-item.fade-out {
    animation: galleryFadeOut 0.3s ease forwards;
}

.gallery-item.fade-in {
    animation: galleryFadeIn 0.4s ease forwards;
}

@keyframes galleryFadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0.95);
    }
}

@keyframes galleryFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   LIGHTBOX
   ============================================ */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: var(--transition-fast);
    z-index: 10;
    opacity: 0.7;
}

.lightbox-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    cursor: pointer;
    padding: 14px;
    border-radius: 50%;
    transition: var(--transition-fast);
    z-index: 10;
    opacity: 0.7;
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.15);
}

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
}

/* Gallery Empty State */
.gallery-empty {
    text-align: center;
    padding: 80px 20px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
}

.gallery-empty svg {
    display: inline-block;
}

/* ============================================
   GALLERY RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .gallery-hero {
        height: 35vh;
        min-height: 250px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .gallery-content-inner {
        padding: 0 20px;
    }

    .gallery-filters {
        gap: 6px;
    }

    .gallery-filter-btn {
        padding: 10px 22px;
        font-size: 12px;
        letter-spacing: 1px;
    }

    .gallery-grid {
        gap: 10px;
    }

    .lightbox-prev {
        left: 12px;
        padding: 10px;
    }

    .lightbox-next {
        right: 12px;
        padding: 10px;
    }

    .lightbox-prev svg,
    .lightbox-next svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .gallery-hero {
        height: 30vh;
        min-height: 200px;
    }

    .gallery-page-title {
        letter-spacing: 3px;
    }

    .gallery-filter-btn {
        padding: 8px 16px;
        font-size: 11px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    /* .gallery-item {
        border-radius: 6px;
    } */
}

/* Construction Update Responsive */
@media (max-width: 1024px) {
    .construction-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .construction-content-inner {
        padding: 0 20px;
    }

    .construction-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .construction-hero {
        height: 35vh;
        min-height: 240px;
    }
}

@media (max-width: 480px) {
    .construction-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .construction-hero {
        height: 30vh;
        min-height: 200px;
    }

    .construction-title {
        letter-spacing: 1px;
    }

    /* .construction-item {
        border-radius: 4px;
    } */
}

/* ============================================
   LOCATION PAGE
   ============================================ */
.location-page {
    background: var(--color-off-white);
}

/* Location Hero */
.loc-hero {
    position: relative;
    height: 55vh;
    min-height: 350px;
    max-height: 600px;
    overflow: hidden;
}

.loc-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-color: var(--color-cream);
}

.loc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 42, 28, 1) 0%, transparent 20%);
}

/* Location Intro */
.loc-intro {
    padding: 100px 0 80px;
    /* background: var(--color-off-white); */
    background: #f3eeee;
}

.loc-intro-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.loc-intro-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400;
    color: var(--color-primary);
    line-height: 1.15;
    text-transform: uppercase;
}

.loc-intro-text {
    font-size: 16px;
    line-height: 2;
    color: var(--color-text-light);
    padding-top: 10px;
}

/* Map & Distances */
.loc-map-section {
    padding: 0 0 100px;
    /* background: var(--color-off-white); */
    background: #f3eeee;
}

.loc-map-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    background: #f3eeee;

}

.loc-map-illustration {
    position: relative;
}

.loc-map-illustration img {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Distance List */
.loc-distances {
    display: flex;
    flex-direction: column;
}

.loc-distance-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    transition: background 0.2s ease;
}

.loc-distance-row:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.loc-distance-row:hover {
    background: rgba(26, 60, 42, 0.03);
    padding-left: 8px;
    padding-right: 8px;
    margin-left: -8px;
    margin-right: -8px;
    border-radius: 4px;
}

.loc-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 600;
    flex-shrink: 0;
}

.loc-distance-row .loc-name {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
}

.loc-dist {
    font-size: 13px;
    color: var(--color-text-light);
    font-weight: 400;
    white-space: nowrap;
    text-align: right;
}

/* Google Map Embed */
.loc-google-map {
    width: 100%;
    line-height: 0;
    /* background: var(--color-cream); */
    background: #f3eeee;
}

.loc-google-map iframe {
    width: 100%;
    /* height: 450px; */
    height: 700px;
    display: block;
    padding: 50px 80px;
}

/* Bottom Wave */
.loc-wave {
    position: relative;
    /* height: 40vh; */
    height: 100vh;
    /* min-height: 280px; */
    /* max-height: 500px; */
    overflow: hidden;
}

.loc-wave-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--color-primary);
}

/* ============================================
   LOCATION PAGE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .loc-intro-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .loc-map-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .loc-map-illustration img {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .loc-hero {
        height: 40vh;
        min-height: 260px;
    }

    .loc-intro {
        padding: 60px 0 50px;
    }

    .loc-intro-inner {
        padding: 0 20px;
    }

    .loc-map-inner {
        padding: 0 20px;
    }

    .loc-map-section {
        padding-bottom: 60px;
    }

    .loc-google-map iframe {
        height: 350px;
        padding: 20px 0;
    }

    .loc-wave {
        height: 30vh;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .loc-intro-title {
        font-size: 46px;
    }

    .loc-distance-row {
        gap: 12px;
        padding: 12px 0;
    }

    .loc-number {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }

    .loc-distance-row .loc-name {
        font-size: 16px;
    }

    .loc-dist {
        font-size: 16px;
    }

    .loc-google-map iframe {
        height: 280px;
        padding: 12px 0;
    }
}

/* ============================================
   FACILITIES PAGE
   ============================================ */
.facilities-page {
    background: var(--color-primary-dark);
}

/* Facilities Hero */
.fac-hero {
    position: relative;
    /* height: 85vh; */
    /* min-height: 300px; */
    height: 60vh;
    min-height: 320px;
    /* max-height: 1920px; */
    overflow: hidden;
}

.fac-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-color: var(--color-primary);
}

.fac-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 42, 28, 1) 0%, transparent 20%);
}

/* Facilities Main Grid */
.fac-main {
    padding: clamp(60px, 8vw, 100px) 0 clamp(50px, 6vw, 80px);
    position: relative;
    background: var(--color-primary-dark);
}

.fac-main-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
}

.fac-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.fac-lightbox-item {
    cursor: pointer;
}

.fac-lightbox-item:hover img {
    transform: scale(1.02);
    opacity: 0.92;
}

.fac-label {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(11px, 1.2vw, 24px);
    font-weight: 400;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 14px;
}

@media (max-width: 768px) {
    .fac-label {
        font-size: 16px;
    }
}

/* Title Row: Pool + Title/Gym */
.fac-title-row {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(28px, 4vw, 64px);
    margin-bottom: clamp(48px, 6vw, 80px);
    align-items: start;
}

.fac-item-pool {
    max-width: 100%;
}

.fac-item-pool img {
    aspect-ratio: 16 / 9;
}

.fac-title-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-top: clamp(8px, 1.5vw, 24px);
}

.fac-page-title {
    font-family: var(--font-heading);
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.05;
    text-transform: uppercase;
    text-align: right;
    margin: 0 0 clamp(36px, 5vw, 72px);
    width: 100%;
}

.fac-item-gym {
    width: 88%;
    margin-left: auto;
    margin-top: auto;
}

.fac-item-gym img {
    aspect-ratio: 16 / 10;
}

/* Lobby Row */
.fac-row-lobby {
    display: flex;
    justify-content: center;
    margin-bottom: clamp(48px, 6vw, 80px);
}

.fac-item-lobby {
    position: relative;
    width: min(72%, 820px);
    margin-left: 72px;
}

.fac-item-lobby img {
    aspect-ratio: 16 / 9;
}

.fac-lobby-deco {
    position: absolute;
    top: 0;
    left: -72px;
    width: 0;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.fac-lobby-deco::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 55%;
    width: 1px;
    background: rgba(255, 255, 255, 0.55);
    transform: translateX(-50%);
}

.fac-lobby-deco-label {
    position: absolute;
    top: 48%;
    left: 50%;
    writing-mode: vertical-rl;
    transform: translateX(-50%) rotate(180deg);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

/* Garden + Parking | Shuttle */
.fac-row-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 4vw, 64px);
    align-items: stretch;
}

.fac-col-left {
    display: flex;
    flex-direction: column;
    gap: clamp(36px, 5vw, 56px);
}

.fac-item-garden img,
.fac-item-parking img {
    aspect-ratio: 16 / 9;
}

.fac-col-right {
    display: flex;
}

.fac-item-shuttle {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.fac-item-shuttle img {
    flex: 1;
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    aspect-ratio: 3 / 4;
}

/* ============================================
   PROPERTY MANAGEMENT SECTION
   ============================================ */
.fac-property {
    background: #e5e5e5;
    padding: clamp(80px, 10vw, 120px) 0;
    position: relative;
    overflow: hidden;
}

.fac-property-inner {
    position: relative;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px) 0 clamp(24px, 5vw, 80px);
}

.fac-property-top {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
    margin-bottom: clamp(40px, 5vw, 64px);
}

.fac-property-images {
    display: block;
}

.fac-prop-img-1,
.fac-prop-img-2 {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

.fac-property-right {
    padding-top: clamp(8px, 1vw, 20px);
}

.fac-property-title {
    font-family: var(--font-heading);
    font-size: clamp(50px, 4.5vw, 56px);
    font-weight: 400;
    color: #333333;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0 0 clamp(24px, 3vw, 36px);
}

.fac-property-text {
    position: relative;
}

.fac-property-text p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.85;
    color: #555555;
    margin-bottom: 18px;
}



.fac-property-text p:last-child {
    margin-bottom: 0;
}

.fac-property-bottom {
    max-width: 100%;
    padding-right: clamp(48px, 6vw, 90px);
}

.fac-property-bottom p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.85;
    color: #555555;
    margin-bottom: 18px;
}

.fac-property-bottom p:last-child {
    margin-bottom: 0;
}

.fac-property-deco {
    position: absolute;
    top: 0;
    right: clamp(12px, 2vw, 32px);
    width: 0;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.fac-property-deco::before {
    content: '';
    position: absolute;
    top: 12%;
    left: 50%;
    height: 28%;
    width: 1px;
    background: #555555;
    transform: translateX(-50%);
}

.fac-property-deco-label {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translateX(-50%);
    writing-mode: vertical-rl;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    color: #555555;
    white-space: nowrap;
}

/* ============================================
   FACILITIES RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .fac-title-row {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .fac-title-block {
        align-items: flex-start;
        padding-top: 0;
    }

    .fac-page-title {
        text-align: left;
        margin-bottom: 28px;
    }

    .fac-item-gym {
        width: 100%;
        margin-left: 0;
    }

    .fac-item-lobby {
        width: 100%;
        margin-left: 0;
    }

    .fac-lobby-deco {
        display: none;
    }

    .fac-row-bottom {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fac-item-shuttle img {
        min-height: 320px;
        aspect-ratio: 16 / 10;
    }

    .fac-property-top {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }

    .fac-property-deco {
        display: none;
    }

    .fac-property-bottom {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .fac-main {
        padding: 50px 0 40px;
    }

    .fac-title-row {
        display: flex;
        flex-direction: column;
    }

    .fac-title-block {
        display: contents;
    }

    .fac-page-title {
        order: -2;
        margin-bottom: 0;
    }

    .fac-item-pool {
        order: -1;
    }

    .fac-item-gym {
        order: 0;
    }

    .fac-main-inner {
        padding: 0 20px;
    }

    .fac-hero {
        height: 35vh;
        min-height: 240px;
    }

    .fac-title-row,
    .fac-row-lobby,
    .fac-row-bottom {
        margin-bottom: 36px;
    }

    .fac-col-left {
        gap: 28px;
    }

    .fac-property {
        padding: 60px 0;
    }

    .fac-property-inner {
        padding: 0 20px;
    }

    .fac-prop-img-1,
    .fac-prop-img-2 {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 480px) {
    .fac-item-shuttle img {
        min-height: 240px;
    }
}

/* ============================================
   MASTER PLAN & FLOOR PLAN PAGE
   ============================================ */
.masterplan-page {
    background: var(--color-off-white);
}

/* Hero */
.mp-hero {
    position: relative;
    /* height: 50vh; */
    height: 100vh;
    min-height: 350px;
    /* max-height: 550px; */
    max-height: 1920px;
    overflow: hidden;
}

.mp-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--color-primary);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.mp-hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to top, rgba(15, 42, 28, 0.6) 0%, transparent 60%); */
    background: linear-gradient(to top, rgba(15, 42, 28, 1) 0%, transparent 10%);
}

.mp-hero-text {
    position: relative;
    z-index: 2;
    padding: 40px;
    text-align: center;
    width: 100%;
}

.mp-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 8px;
    background: rgba(26, 60, 42, 0.7);
    display: inline-block;
    padding: 16px 50px;
    backdrop-filter: blur(5px);
}

/* Project Info */
.mp-info {
    background: var(--color-primary-dark);
    padding: 100px 0 80px 0;
}

.mp-info-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px 60px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.mp-info-title {
    font-family: var(--font-heading);
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 400;
    color: var(--color-white);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 30px;
}

.mp-info-img {
    position: relative;
    overflow: visible;
    margin-left: 72px;
}

.mp-info-img img {
    width: 80%;
    /* height: 280px; */
    object-fit: cover;
    /* border-radius: 6px; */
    margin: 0 0 0 auto;
    display: block;
}

.mp-info-img-deco {
    position: absolute;
    top: 0;
    left: -72px;
    width: 0;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.mp-info-img-deco::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 180px;
    width: 1px;
    background: rgba(255, 255, 255, 0.55);
    transform: translateX(-50%);
}

.mp-info-deco-label {
    position: absolute;
    bottom: 40px;
    left: 50%;
    writing-mode: vertical-rl;
    transform: translateX(-50%) rotate(180deg);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.mp-info-text {
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    line-height: 1.9;
    width: 85%;
}

.mp-info-text p {
    margin-bottom: 30px;
}

/* Project Details Table */
.mp-details {
    position: relative;
    background: var(--color-primary-dark);
    padding: 20px 0 100px;
    overflow: hidden;
}

.mp-details-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: clamp(40px, 6vw, 90px);
    row-gap: clamp(36px, 5vw, 64px);
}

.mp-detail-item {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

.mp-detail-label {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-white);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.95);
}

.mp-detail-value {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.55;
}

.mp-details-decor {
    position: absolute;
    right: clamp(-20px, 2vw, 40px);
    bottom: -40px;
    width: clamp(160px, 18vw, 240px);
    color: rgba(255, 255, 255, 0.12);
    pointer-events: none;
    z-index: 0;
}

.mp-details-decor svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Floor Plan Section */
.mp-floorplan {
    padding: 80px 0 100px;
    /* background: var(--color-off-white); */
    background: #dfdfdf;
}

.mp-floorplan-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.mp-floorplan-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 400;
    color: var(--color-primary);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 16px;
}

.mp-floorplan-legend {
    text-align: center;
    margin-bottom: 40px;
}

.mp-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-light);
}

.mp-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.mp-dot-sold {
    background: #c0392b;
}

/* Floor Plan Panels */
.mp-floorplan-content {
    min-height: 300px;
    margin-bottom: 40px;
}

.mp-fp-panel {
    display: none;
}

.mp-fp-panel.active {
    display: block;
    animation: fpFadeIn 0.4s ease;
}

@keyframes fpFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mp-fp-image {
    text-align: center;
    margin-bottom: 30px;
    cursor: pointer;
    position: relative;
}

.mp-fp-image img {
    max-width: 100%;
    height: auto;
    /* border-radius: 6px; */
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    margin: 0 auto;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.mp-fp-image:hover img {
    transform: scale(1.01);
    opacity: 0.92;
}

.mp-fp-image-label {
    display: block;
    margin-top: 12px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mp-fp-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--color-text-light);
    font-size: 15px;
}

/* Floor Plan Tabs */
.mp-fp-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.mp-fp-tab {
    /* background: none; */
    background: #cbc9c9;
    /* border: 1px solid rgba(26, 60, 42, 0.2); */
    border: none;
    color: var(--color-text-light);
    /* color: #939393; */
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    /* padding: 10px 24px; */
    padding: 13px 28px;
    /* border-radius: 30px; */
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.mp-fp-tab:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.mp-fp-tab.active {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* ============================================
   MASTER PLAN RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .mp-info-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mp-info-img-deco {
        display: none;
    }

    .mp-info-img {
        margin-left: 0;
    }

    .mp-details-inner {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 36px;
        row-gap: 40px;
    }

    .mp-details-decor {
        opacity: 0.7;
    }
}

@media (max-width: 768px) {
    .mp-hero {
        height: 40vh;
        min-height: 280px;
    }

    .mp-info {
        padding: 50px 0 0;
    }

    .mp-info-inner {
        padding: 0 20px 40px;
    }

    .mp-details {
        padding: 10px 0 60px;
    }

    .mp-details-inner {
        padding: 0 20px;
        grid-template-columns: 1fr;
        row-gap: 28px;
    }

    .mp-details-decor {
        display: none;
    }

    .mp-floorplan {
        padding: 50px 0 60px;
    }

    .mp-floorplan-inner {
        padding: 0 20px;
    }

    .mp-hero-title {
        letter-spacing: 4px;
        padding: 12px 30px;
    }

    .mp-info-img img {
        height: 220px;
        width: 100%;
    }

    .mp-info-text {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .mp-fp-tab {
        padding: 8px 16px;
        font-size: 11px;
    }

    .mp-hero-title {
        font-size: 22px;
        letter-spacing: 3px;
        padding: 10px 20px;
    }
}


.hero-divider {
    width: 30%;
    height: 0.5px;
    background: rgba(255, 255, 255, 0.271);
    margin: 20px 0;
}

/* Room card image offsets (desktop layout) */
.front-page .room-card-img--narrow {
    width: 80%;
}

.front-page .room-card-img--align-right {
    width: 80%;
    margin-left: auto;
}

/* ============================================
   FRONT PAGE — iPad & Mobile Responsive
   ============================================ */

/* iPad / Tablet landscape */
@media (max-width: 1024px) {
    .front-page .hero-content {
        padding: 0 50px;
    }

    .front-page .hero-section {
        min-height: 600px;
    }

    .front-page .about-inner {
        padding: 0 50px;
    }

    .front-page .about-section {
        padding: 100px 0 250px;
    }

    .front-page .about-location-img {
        max-width: 100%;
        margin-top: 0;
    }

    .front-page .about-description {
        padding-left: 20px;
        margin-top: 30px;
    }

    .front-page .about-description p {
        font-size: 17px;
        padding: 0 20px 24px 0;
    }

    .front-page .about-deco-label {
        bottom: -80px;
    }

    .front-page .section-float-img {
        margin-top: -280px;
    }

    .front-page .rooms-section {
        padding: 250px 0 350px;
    }

    .front-page .rooms-title-img {
        transform: none;
        -webkit-transform: none;
        width: 100%;
        max-width: min(100%, 360px);
        height: clamp(70px, 12vw, 100px);
        object-fit: cover;
        object-position: left top;
    }

    .front-page .location-wrap {
        margin-top: -400px;
    }

    .front-page .location-section {
        padding-top: clamp(180px, 22vw, 320px);
    }

    .front-page .location-inner {
        padding: 0 50px;
    }

    .front-page .location-title-img {
        transform: none;
        -webkit-transform: none;
        width: 100%;
        max-width: min(100%, 420px);
        height: clamp(50px, 8vw, 80px);
        object-fit: cover;
        object-position: left center;
        margin-left: 0;
        display: block;
    }

    .front-page .location-content {
        gap: 50px;
    }

    .front-page .location-details {
        padding: 30px 0;
    }

    .front-page .instagram-header {
        padding: 0 50px;
    }
}

/* iPad portrait / mobile */
@media (max-width: 768px) {
    .front-page .hero-section {
        height: auto;
        min-height: 100svh;
        min-height: 500px;
    }

    .front-page .hero-content {
        padding: 0 24px;
        max-width: 100%;
    }

    .front-page .hero-title {
        font-size: clamp(32px, 9vw, 52px);
        letter-spacing: -0.5px;
    }

    .front-page .hero-subtitle {
        font-size: 14px;
        letter-spacing: 3px;
        margin-bottom: 24px;
    }

    .front-page .hero-divider {
        width: 50%;
    }

    .front-page .about-section {
        padding: 70px 0 140px;
    }

    .front-page .about-inner {
        padding: 0 24px;
        gap: 28px;
    }

    .front-page .section-label {
        font-size: 22px;
    }

    .front-page .about-title {
        font-size: clamp(36px, 10vw, 56px);
        margin-bottom: 20px;
    }

    .front-page .about-description {
        padding: 10px;
        margin-top: 24px;
    }

    .front-page .about-description p {
        font-size: 16px;
        line-height: 1.75;
        padding: 0 0 16px 0;
    }

    .front-page .about-description-deco {
        display: none;
    }

    .front-page .section-float-img {
        /* margin-top: -60px; */
        margin-top: -150px;
        margin-bottom: -40px;
        position: relative;
    }

    .front-page .rooms-section {
        padding: 40px 0 50px;
    }

    .front-page .rooms-inner {
        padding: 0 24px;
    }

    .front-page .rooms-title-img {
        /* max-width: min(100%, 320px); */
        max-width:100%;
        /* height: clamp(60px, 16vw, 90px); */
        height: clamp(60px, 30.5vw, 150px);
        object-fit: cover;
        object-position: left top;
    }

    .front-page .room-card-img--narrow,
    .front-page .room-card-img--align-right {
        width: 100%;
        margin-left: 0;
    }

    .front-page .room-card-info h3 {
        font-size: 16px;
        letter-spacing: 0.15em;
    }

    .front-page .location-wrap {
        display: flex;
        flex-direction: column;
        margin-top: 40px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .front-page .location-section {
        order: 1;
        position: relative;
        width: 100%;
        max-width: 100%;
        padding-top: 32px;
        padding-bottom: 30px;
    }

    .front-page .location-bg-img {
        order: 2;
    }

    .front-page .location-bg-img--desktop {
        display: none;
    }

    .front-page .location-inner {
        width: 100%;
        max-width: 100%;
        padding: 0 24px;
    }

    .front-page .location-header {
        margin-bottom: 32px;
    }

    .front-page .location-title-img {
        max-width: min(100%, 280px);
        height: clamp(44px, 12vw, 64px);
        object-fit: cover;
        object-position: left center;
        margin-left: 0;
    }

    .front-page .location-content {
        width: 100%;
        min-width: 0;
        gap: 28px;
    }

    .front-page .location-content>* {
        min-width: 0;
    }

    .front-page .location-details {
        padding: 16px 0;
    }

    .front-page .location-table td {
        padding: 14px 0;
        font-size: 16px;
    }

    .front-page .location-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .front-page .instagram-header {
        order: 3;
        position: relative;
        bottom: auto;
        padding: 40px 24px 24px;
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .front-page .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }

    .front-page .instagram-title {
        font-size: clamp(28px, 7vw, 40px);
        color: var(--color-dark);
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .front-page .hero-content {
        padding: 0 20px;
    }

    .front-page .hero-title {
        font-size: 58px;
    }

    .front-page .about-inner,
    .front-page .rooms-inner,
    .front-page .location-inner {
        padding: 0 20px;
    }

    .front-page .location-table td {
        font-size: 16px;
    }

    .front-page .location-table .loc-distance {
        width: 38%;
        padding-left: 10px;
        white-space: normal;
        text-align: right;
    }
}

.contact-form-wrap .wpforms-form input[type="text"],
.contact-form-wrap .wpforms-form input[type="email"],
.contact-form-wrap .wpforms-form input[type="tel"],
.contact-form-wrap .wpforms-form input[type="url"],
.contact-form-wrap .wpforms-form input[type="number"],
.contact-form-wrap .wpforms-form textarea,
.contact-form-wrap .wpforms-form select {
    border-bottom: 1px solid rgba(58, 58, 58, 0.2) !important;
}

.wpforms-container input.wpforms-field-medium,
.wpforms-container select.wpforms-field-medium,
.wpforms-container .wpforms-field-row.wpforms-field-medium,
.wp-core-ui div.wpforms-container input.wpforms-field-medium,
.wp-core-ui div.wpforms-container select.wpforms-field-medium,
.wp-core-ui div.wpforms-container .wpforms-field-row.wpforms-field-medium {
    max-width: 100% !important;
}

div.wpforms-container-full input[type=checkbox]:before,
div.wpforms-container-full input[type=checkbox]:after,
div.wpforms-container-full input[type=radio]:before,
div.wpforms-container-full input[type=radio]:after {
    left: 0px !important;
    top: 0px !important;
    border: 1px solid #999 !important;
}