:root {
    --ph-ink: #101828;
    --ph-muted: #667085;
    --ph-line: #e7e9ee;
    --ph-sand: #f7f3ed;
    --ph-gold: #b88a44;
    --ph-gold-dark: #8a622b;
    --ph-night: #101b2c;
    --ph-card: #ffffff;
    --ph-shadow: 0 24px 60px rgba(16, 24, 40, .10);
}

.ph-page {
    min-height: 100vh;
    background: #fff;
    color: var(--ph-ink);
    font-family: inherit;
}

.ph-topbar {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    max-width: 1500px;
    margin: auto;
    padding: 24px 42px;
    color: #fff;
}

.ph-topbar.compact {
    position: relative;
    max-width: none;
    background: #fff;
    color: var(--ph-ink);
    border-bottom: 1px solid var(--ph-line);
}

.ph-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
}

.ph-brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255,255,255,.92);
    padding: 5px;
}

.ph-brand strong,
.ph-brand small {
    display: block;
}

.ph-brand strong {
    font-size: 1rem;
    font-weight: 900;
}

.ph-brand small {
    margin-top: 2px;
    opacity: .68;
    font-size: .72rem;
}

.ph-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.ph-nav a {
    color: inherit;
    text-decoration: none;
    font-size: .86rem;
    font-weight: 700;
    opacity: .85;
}

.ph-nav a:hover {
    opacity: 1;
}

.ph-header-cta {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    background: #fff;
    color: var(--ph-night);
    text-decoration: none;
    font-weight: 900;
}

.ph-header-cta.secondary {
    border: 1px solid var(--ph-line);
    background: var(--ph-night);
    color: #fff;
}

.ph-hero {
    position: relative;
    min-height: 830px;
    display: flex;
    align-items: center;
    padding: 150px 6vw 180px;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    color: #fff;
    isolation: isolate;
}

.ph-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(4, 12, 24, .90) 0%, rgba(4,12,24,.55) 46%, rgba(4,12,24,.18) 100%),
        linear-gradient(0deg, rgba(4,12,24,.55), transparent 55%);
}

.ph-hero-content {
    width: min(760px, 100%);
}

.ph-overline,
.ph-section-head span,
.ph-experience-copy > span,
.ph-location > div > span,
.ph-inner-hero > span,
.ph-room-description > span {
    display: inline-block;
    color: #e0bd80;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .18em;
}

.ph-hero h1 {
    max-width: 760px;
    margin: 16px 0;
    font-size: clamp(2.8rem, 6vw, 5.9rem);
    line-height: 1.06;
    font-weight: 900;
}

.ph-hero-content > p {
    max-width: 670px;
    margin: 0;
    font-size: 1.08rem;
    line-height: 2;
    opacity: .83;
}

.ph-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.ph-hero-stats > div {
    min-width: 150px;
    padding: 14px 17px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
}

.ph-hero-stats strong,
.ph-hero-stats span {
    display: block;
}

.ph-hero-stats strong {
    font-size: 1.15rem;
}

.ph-hero-stats span {
    margin-top: 3px;
    opacity: .7;
    font-size: .76rem;
}

.ph-search-card {
    position: absolute;
    right: 6vw;
    left: 6vw;
    bottom: -62px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
    gap: 8px;
    padding: 14px;
    border-radius: 22px;
    background: #fff;
    color: var(--ph-ink);
    box-shadow: 0 28px 70px rgba(3, 13, 27, .24);
}

.ph-search-field {
    padding: 6px 14px;
    border-left: 1px solid var(--ph-line);
}

.ph-search-field label {
    display: block;
    margin-bottom: 6px;
    color: var(--ph-muted);
    font-size: .73rem;
    font-weight: 800;
}

.ph-search-field > div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.ph-search-field i {
    color: var(--ph-gold);
}

.ph-search-field input,
.ph-search-field select {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ph-ink);
    font-weight: 800;
}

.ph-search-button {
    min-width: 205px;
    border: 0;
    border-radius: 15px;
    background: var(--ph-gold);
    color: #fff;
    font-weight: 900;
}

.ph-trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 95px;
    padding: 0 6vw;
}

.ph-trust-strip > div {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 22px;
    background: var(--ph-sand);
}

.ph-trust-strip i {
    color: var(--ph-gold);
    font-size: 1.35rem;
}

.ph-trust-strip strong,
.ph-trust-strip small {
    display: block;
}

.ph-trust-strip small {
    margin-top: 3px;
    color: var(--ph-muted);
}

.ph-section {
    padding: 100px 6vw;
}

.ph-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 34px;
}

.ph-section-head h2,
.ph-experience-copy h2,
.ph-location h2,
.ph-room-description h2 {
    margin: 9px 0;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.18;
}

.ph-section-head p,
.ph-experience-copy p,
.ph-location p,
.ph-room-description p {
    margin: 0;
    color: var(--ph-muted);
    line-height: 1.9;
}

.ph-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ph-ink);
    text-decoration: none;
    font-weight: 900;
}

.ph-room-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.ph-room-card {
    overflow: hidden;
    border: 1px solid var(--ph-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(16,24,40,.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.ph-room-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ph-shadow);
}

.ph-room-media {
    position: relative;
    display: block;
    aspect-ratio: 1.25 / 1;
    overflow: hidden;
}

.ph-room-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.ph-room-card:hover .ph-room-media img {
    transform: scale(1.045);
}

.ph-room-category,
.ph-video-badge {
    position: absolute;
    top: 14px;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 900;
}

.ph-room-category {
    right: 14px;
    background: rgba(255,255,255,.92);
    color: var(--ph-ink);
}

.ph-video-badge {
    left: 14px;
    background: rgba(16,27,44,.82);
    color: #fff;
}

.ph-room-body {
    padding: 18px;
}

.ph-room-title {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 14px;
}

.ph-room-title h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 900;
}

.ph-room-title > div:first-child > span {
    display: block;
    margin-top: 4px;
    color: var(--ph-muted);
    font-size: .76rem;
}

.ph-price {
    text-align: left;
}

.ph-price strong,
.ph-price span {
    display: block;
}

.ph-price strong {
    color: var(--ph-gold-dark);
    font-size: 1.05rem;
}

.ph-price span {
    color: var(--ph-muted);
    font-size: .68rem;
}

.ph-room-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 17px;
    color: var(--ph-muted);
    font-size: .77rem;
}

.ph-room-meta i {
    color: var(--ph-gold);
}

.ph-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

.ph-amenities span {
    padding: 6px 9px;
    border-radius: 8px;
    background: var(--ph-sand);
    color: #5f5140;
    font-size: .68rem;
}

.ph-room-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid var(--ph-line);
    color: var(--ph-ink);
    text-decoration: none;
    font-weight: 900;
}

.ph-experience {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    min-height: 680px;
    background: var(--ph-night);
    color: #fff;
}

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

.ph-experience-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 6vw;
}

.ph-experience-copy p {
    color: rgba(255,255,255,.68);
}

.ph-experience-points {
    display: grid;
    gap: 13px;
    margin-top: 27px;
}

.ph-experience-points div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.ph-experience-points i {
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: rgba(224,189,128,.14);
    color: #e0bd80;
}

.ph-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ph-category-card {
    position: relative;
    min-height: 260px;
    padding: 27px;
    overflow: hidden;
    border: 1px solid var(--ph-line);
    border-radius: 22px;
    background: linear-gradient(145deg, #fff, var(--ph-sand));
    color: var(--ph-ink);
    text-decoration: none;
}

.ph-category-number {
    position: absolute;
    top: 15px;
    left: 18px;
    color: rgba(16,24,40,.09);
    font-size: 4.5rem;
    font-weight: 900;
}

.ph-category-card h3 {
    position: relative;
    margin: 70px 0 9px;
    font-size: 1.35rem;
    font-weight: 900;
}

.ph-category-card p {
    min-height: 50px;
    color: var(--ph-muted);
    line-height: 1.7;
}

.ph-category-card > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 23px;
    padding-top: 16px;
    border-top: 1px solid rgba(16,24,40,.08);
    font-size: .78rem;
}

.ph-category-card strong {
    color: var(--ph-gold-dark);
}

.ph-location {
    display: grid;
    grid-template-columns: 1fr .7fr;
    gap: 60px;
    align-items: center;
    padding: 85px 6vw;
    background: var(--ph-sand);
}

.ph-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.ph-contact-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    border-radius: 999px;
    background: #fff;
    color: var(--ph-ink);
    text-decoration: none;
    font-size: .8rem;
    font-weight: 800;
}

.ph-location-card {
    min-height: 250px;
    display: grid;
    place-items: center;
    align-content: center;
    border-radius: 26px;
    background:
        radial-gradient(circle at 25% 20%, rgba(255,255,255,.18), transparent 25%),
        var(--ph-night);
    color: #fff;
    text-align: center;
}

.ph-location-card i {
    color: #e0bd80;
    font-size: 2.5rem;
}

.ph-location-card strong {
    margin-top: 13px;
    font-size: 1.25rem;
}

.ph-location-card span {
    margin-top: 5px;
    opacity: .65;
}

.ph-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 6vw;
    background: #09121f;
    color: #fff;
}

.ph-footer > span {
    opacity: .55;
    font-size: .78rem;
}

.ph-inner-page {
    background: #f8f9fb;
}

.ph-inner-hero {
    padding: 65px 6vw 42px;
    background: var(--ph-night);
    color: #fff;
}

.ph-inner-hero h1 {
    margin: 8px 0;
    font-size: clamp(2.1rem, 4vw, 4rem);
    font-weight: 900;
}

.ph-inner-hero p {
    margin: 0;
    opacity: .65;
}

.ph-filter-bar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr)) auto;
    gap: 8px;
    padding: 14px 6vw;
    border-bottom: 1px solid var(--ph-line);
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(14px);
}

.ph-filter-bar > div {
    padding: 8px 11px;
    border: 1px solid var(--ph-line);
    border-radius: 11px;
    background: #fff;
}

.ph-filter-bar label {
    display: block;
    color: var(--ph-muted);
    font-size: .68rem;
    font-weight: 800;
}

.ph-filter-bar input,
.ph-filter-bar select {
    width: 100%;
    margin-top: 4px;
    border: 0;
    outline: 0;
    background: transparent;
    font-weight: 800;
}

.ph-filter-bar button {
    border: 0;
    border-radius: 11px;
    padding: 0 18px;
    background: var(--ph-gold);
    color: #fff;
    font-weight: 900;
}

.ph-results-section {
    padding-top: 45px;
}

.ph-results-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.ph-results-head strong {
    font-size: 1.5rem;
}

.ph-results-head span {
    color: var(--ph-muted);
}

.ph-empty {
    padding: 75px 25px;
    border: 1px dashed #cfd5de;
    border-radius: 22px;
    background: #fff;
    text-align: center;
}

.ph-empty i {
    color: var(--ph-gold);
    font-size: 2.5rem;
}

.ph-details-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(340px, .6fr);
    gap: 28px;
    padding: 35px 6vw;
}

.ph-gallery {
    min-width: 0;
}

.ph-gallery-main {
    overflow: hidden;
    aspect-ratio: 1.55 / 1;
    border-radius: 24px;
    background: #111;
}

.ph-gallery-main img,
.ph-gallery-main video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ph-gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    margin-top: 11px;
    padding-bottom: 6px;
}

.ph-thumb {
    position: relative;
    flex: 0 0 105px;
    height: 78px;
    padding: 0;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 11px;
    background: #ddd;
}

.ph-thumb img,
.ph-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ph-thumb > span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0,0,0,.28);
    color: #fff;
    font-size: 1.35rem;
}

.ph-booking-card {
    position: sticky;
    top: 22px;
    align-self: start;
    padding: 26px;
    border: 1px solid var(--ph-line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--ph-shadow);
}

.ph-booking-card .ph-room-category {
    position: static;
    display: inline-flex;
    background: var(--ph-sand);
}

.ph-booking-card h1 {
    margin: 14px 0;
    font-size: 2rem;
    font-weight: 900;
}

.ph-details-price strong,
.ph-details-price span {
    display: block;
}

.ph-details-price strong {
    color: var(--ph-gold-dark);
    font-size: 1.65rem;
}

.ph-details-price span {
    color: var(--ph-muted);
}

.ph-availability {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 11px 13px;
    border-radius: 12px;
    font-weight: 800;
}

.ph-availability.available {
    background: #eaf8f1;
    color: #148052;
}

.ph-availability.unavailable {
    background: #fff0f0;
    color: #c63838;
}

.ph-stay-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 17px;
}

.ph-stay-summary > div {
    padding: 12px;
    border-radius: 11px;
    background: #f8f9fb;
}

.ph-stay-summary span,
.ph-stay-summary strong {
    display: block;
}

.ph-stay-summary span {
    color: var(--ph-muted);
    font-size: .72rem;
}

.ph-stay-summary strong {
    margin-top: 4px;
    font-size: .8rem;
}

.ph-estimated-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 17px;
    border-top: 1px solid var(--ph-line);
}

.ph-estimated-total strong {
    color: var(--ph-gold-dark);
    font-size: 1.25rem;
}

.ph-book-now {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 51px;
    margin-top: 18px;
    border-radius: 13px;
    background: var(--ph-gold);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
}

.ph-book-now.secondary {
    background: var(--ph-night);
}

.ph-booking-note {
    display: block;
    margin-top: 12px;
    color: var(--ph-muted);
    line-height: 1.7;
    text-align: center;
}

.ph-room-information {
    padding: 35px 6vw 90px;
}

.ph-room-description {
    max-width: 850px;
}

.ph-room-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.ph-room-facts > div {
    padding: 18px;
    border: 1px solid var(--ph-line);
    border-radius: 15px;
    background: #fff;
}

.ph-room-facts i,
.ph-room-facts span,
.ph-room-facts strong {
    display: block;
}

.ph-room-facts i {
    color: var(--ph-gold);
    font-size: 1.2rem;
}

.ph-room-facts span {
    margin-top: 12px;
    color: var(--ph-muted);
    font-size: .72rem;
}

.ph-room-facts strong {
    margin-top: 4px;
}

.ph-full-amenities {
    margin-top: 28px;
    padding: 24px;
    border-radius: 18px;
    background: #fff;
}

.ph-full-amenities h3 {
    margin: 0 0 16px;
    font-weight: 900;
}

.ph-full-amenities > div {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 11px;
}

.ph-full-amenities span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #475467;
}

.ph-full-amenities i {
    color: var(--ph-gold);
}

@media (max-width: 1200px) {
    .ph-room-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ph-search-card {
        grid-template-columns: repeat(2, 1fr);
    }

    .ph-search-button {
        min-height: 54px;
        grid-column: span 2;
    }

    .ph-filter-bar {
        grid-template-columns: repeat(3, 1fr);
    }

    .ph-filter-bar button {
        min-height: 48px;
    }
}

@media (max-width: 900px) {
    .ph-topbar {
        grid-template-columns: 1fr auto;
        padding: 18px;
    }

    .ph-nav {
        display: none;
    }

    .ph-hero {
        min-height: 760px;
        padding: 125px 20px 210px;
    }

    .ph-search-card {
        right: 18px;
        left: 18px;
    }

    .ph-trust-strip {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 18px;
    }

    .ph-section {
        padding: 75px 18px;
    }

    .ph-experience,
    .ph-location,
    .ph-details-grid {
        grid-template-columns: 1fr;
    }

    .ph-experience-image {
        min-height: 420px;
    }

    .ph-category-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ph-booking-card {
        position: static;
    }

    .ph-room-facts,
    .ph-full-amenities > div {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .ph-topbar {
        padding: 13px;
    }

    .ph-header-cta {
        min-height: 40px;
        padding: 0 13px;
        font-size: .78rem;
    }

    .ph-hero {
        min-height: 830px;
        padding-bottom: 330px;
    }

    .ph-hero h1 {
        font-size: 2.55rem;
    }

    .ph-search-card {
        bottom: -260px;
        grid-template-columns: 1fr;
    }

    .ph-search-field {
        border-left: 0;
        border-bottom: 1px solid var(--ph-line);
    }

    .ph-search-button {
        grid-column: 1;
    }

    .ph-trust-strip {
        margin-top: 290px;
        grid-template-columns: 1fr;
    }

    .ph-room-grid,
    .ph-category-grid {
        grid-template-columns: 1fr;
    }

    .ph-section-head,
    .ph-footer,
    .ph-results-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .ph-filter-bar {
        position: relative;
        grid-template-columns: 1fr 1fr;
        padding: 12px;
    }

    .ph-filter-bar button {
        grid-column: 1 / -1;
    }

    .ph-details-grid,
    .ph-room-information {
        padding-right: 12px;
        padding-left: 12px;
    }

    .ph-room-facts,
    .ph-full-amenities > div {
        grid-template-columns: 1fr;
    }

    .ph-gallery-main {
        aspect-ratio: 1 / .9;
    }
}
