/* Keep only room specific styles */
  .page-hero {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 0 4rem 5rem;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background: url("/images/gallery/1.png") center/cover;
    transform: scale(1.06);
    animation: slowZoom 18s ease-in-out infinite alternate;
  }
  @keyframes slowZoom {
    from { transform: scale(1.06); }
    to { transform: scale(1); }
  }
  .page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(160deg, rgba(13, 12, 10, 0.2) 0%, rgba(13, 12, 10, 0.5) 60%, rgba(13, 12, 10, 0.92) 100%);
  }
  .page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(13, 12, 10, 1) 0%, transparent 55%);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    animation: heroReveal 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
  }
  @keyframes heroReveal {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .breadcrumb {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .breadcrumb span { opacity: 0.4; }
  .page-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.8rem, 7vw, 6.5rem);
    font-weight: 300;
    line-height: 1;
    color: var(--white);
  }
  .page-title em { font-style: italic; color: var(--gold-light); }
  .hero-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.45);
    margin-top: 1rem;
  }

  /* LIST VIEW STYLES */
  .rooms-section {
    padding: 4rem;
    background: var(--dark);
    min-height: 60vh;
  }
  .rooms-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .room-card-list {
    background: var(--dark);
    display: grid;
    grid-template-columns: 450px 1fr;
    overflow: hidden;
    border: 1px solid rgba(85, 224, 255, 0.1);
    transition: background 0.3s, border-color 0.3s;
  }
  .room-card-list:hover {
    background: #111009;
    border-color: rgba(85, 224, 255, 0.3);
  }
  .list-img-wrap {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 350px;
  }
  .list-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.82) saturate(0.9);
    transition: transform 0.7s, filter 0.4s;
  }
  .room-card-list:hover .list-img-wrap img {
    transform: scale(1.05);
    filter: brightness(0.92) saturate(1.05);
  }
  .card-badges {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    gap: 0.4rem;
    z-index: 2;
  }
  .badge {
    font-size: 0.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    font-weight: 400;
  }
  .badge-cat {
    background: rgba(13, 12, 10, 0.75);
    color: var(--gold-light);
    border: 1px solid rgba(85, 224, 255, 0.3);
  }

  .list-body {
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .list-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
  }
  .list-cat {
    font-size: 0.55rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
  }
  .list-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
  }
  .list-price-block {
    text-align: right;
    flex-shrink: 0;
    margin-left: 2rem;
  }
  .list-price {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 300;
    line-height: 1;
  }
  .list-price-label {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.4rem;
  }
  .list-desc {
    font-size: 0.85rem;
    line-height: 1.9;
    color: rgba(245, 240, 232, 0.6);
    font-weight: 300;
    max-width: 55ch;
    margin-bottom: 2rem;
  }
  .list-specs {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
  }
  .list-spec {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.6);
  }
  .list-spec svg {
    color: var(--gold);
  }
  .list-amenities {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
  }
  .pill {
    font-size: 0.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.35rem 0.8rem;
    border: 1px solid rgba(85, 224, 255, 0.2);
    color: rgba(85, 224, 255, 0.8);
  }
  .list-footer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .list-cta-primary {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dark);
    background: var(--gold);
    border: none;
    padding: 1rem 2.5rem;
    font-family: "Jost", sans-serif;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
  }
  .list-cta-primary:hover {
    background: var(--gold-light);
  }
  .list-cta-ghost {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
    border: 1px solid rgba(245, 240, 232, 0.3);
    padding: 1rem 2.5rem;
    font-family: "Jost", sans-serif;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
  }
  .list-cta-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  @media (max-width: 960px) {
    .page-hero { padding: 0 2rem 3.5rem; }
    .rooms-section { padding: 2rem; }
    .room-card-list { grid-template-columns: 1fr; }
    .list-img-wrap { height: 250px; min-height: auto; }
    .list-body { padding: 2rem; }
    .list-top { flex-direction: column; gap: 1rem; }
    .list-price-block { margin-left: 0; text-align: left; }
  }

  /* CTA */
  .cta {
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(13, 12, 10, 0.65), rgba(13, 12, 10, 0.65)), url("/images/cta.png") center/cover;
  }
  .cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
  }
  .section-label {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  .section-label::before,
  .section-label::after {
    content: "";
    width: 30px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
  }
  .cta-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1.25rem;
  }
  .cta-title em { font-style: italic; color: var(--gold-light); }
  .cta-sub {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.45);
    margin-bottom: 2.5rem;
  }
  .cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--dark);
    padding: 1rem 2.5rem;
    border: none;
    font-family: "Jost", sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
  }
  .btn-ghost {
    color: var(--cream);
    border: 1px solid rgba(245, 240, 232, 0.3);
    padding: 1rem 2.5rem;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
  }
