/* ─── TOKENS ─────────────────────────────────────────────────── */
    :root {
      --forest:   #1A1A18;
      --forest-2: #2C2C29;
      --gold:     #F05F40;
      --gold-lt:  #FF7A5C;
      --cream:    #F7F3ED;
      --cream-2:  #EDE6DA;
      --bark:        #3D2B1F;
      --mist:     #7A9A85;
      --text:     #2A2018;
      --text-muted: #6B5E50;

      --font-display: 'Playfair Display', Georgia, serif;
      --font-body:    'Inter', sans-serif;
      --font-italic:  'EB Garamond', Georgia, serif;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ─── UTILITIES ──────────────────────────────────────────────── */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .section-label {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 600;
      color: var(--bark);
      line-height: 1.15;
    }
    .btn-primary {
      display: inline-block;
      background: var(--gold);
      color: #fff;
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 14px 32px;
      text-decoration: none;
      transition: background 0.25s, transform 0.2s;
      cursor: pointer;
      border: none;
    }
    .btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }

    .btn-outline {
      display: inline-block;
      border: 1.5px solid var(--gold);
      color: var(--gold);
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 13px 32px;
      text-decoration: none;
      transition: all 0.25s;
      cursor: pointer;
      background: transparent;
    }
    .btn-outline:hover { background: var(--gold); color: #fff; }

    /* ─── NAVBAR ──────────────────────────────────────────────────── */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 18px 32px;
      transition: padding 0.35s, background 0.35s;
    }
    .navbar.scrolled {
      padding: 10px 32px;
      background: rgba(26,26,24,0.92);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 4px 32px rgba(0,0,0,0.22);
    }
    .navbar-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    /* Logo — circular emblem + wordmark */
    .navbar-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      flex-shrink: 0;
    }
    .navbar-logo-emblem {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: none;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 22px;
      flex-shrink: 0;
      overflow: hidden;
    }
    .navbar-logo-text { display: flex; flex-direction: column; gap: 1px; }
    .navbar-logo-name {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.04em;
      line-height: 1;
    }
    .navbar-logo-tag {
      font-family: var(--font-body);
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-lt);
    }

    /* Central pill nav group */
    .navbar-links-wrap {
      background: rgba(20, 20, 20, 0.52);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-radius: 100px;
      padding: 6px 8px;
      border: 1px solid rgba(255,255,255,0.1);
      transition: background 0.35s;
    }
    .navbar.scrolled .navbar-links-wrap {
      background: rgba(255,255,255,0.07);
    }
    .navbar-links {
      display: flex;
      align-items: center;
      gap: 2px;
      list-style: none;
    }
    .navbar-links li a {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.04em;
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      padding: 9px 18px;
      border-radius: 100px;
      display: flex;
      align-items: center;
      gap: 5px;
      transition: background 0.2s, color 0.2s;
      white-space: nowrap;
    }
    .navbar-links li a:hover {
      background: rgba(255,255,255,0.12);
      color: #fff;
    }
    .navbar-links li a.active {
      background: rgba(255,255,255,0.15);
      color: #fff;
    }

    /* Right side — phone + CTA + hamburger */
    .navbar-right {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }
    .navbar-phone {
      font-size: 14px;
      font-weight: 500;
      color: rgba(255,255,255,0.9);
      text-decoration: none;
      letter-spacing: 0.02em;
      white-space: nowrap;
      transition: color 0.2s;
    }
    .navbar-phone:hover { color: var(--gold-lt); }

    /* White pill Book Now button */
    .navbar-cta {
      display: inline-flex;
      align-items: center;
      background: #fff;
      color: var(--bark) !important;
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 11px 24px;
      border-radius: 100px;
      text-decoration: none;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
      white-space: nowrap;
      box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    }
    .navbar-cta:hover {
      background: var(--gold-lt) !important;
      color: #fff !important;
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(184,134,11,0.35);
    }

    /* Rounded square hamburger */
    .hamburger {
      display: none;
      background: rgba(20,20,20,0.5);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 10px;
      cursor: pointer;
      color: #fff;
      font-size: 20px;
      width: 42px;
      height: 42px;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
      flex-shrink: 0;
    }
    .hamburger:hover { background: rgba(255,255,255,0.15); }

    /* ─── HERO ────────────────────────────────────────────────────── */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 620px;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      padding-bottom: 100px;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom, rgba(26,26,24,0.25) 0%, rgba(26,26,24,0.65) 100%),
        url('https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?w=1600&q=80') center/cover no-repeat;
      transform: scale(1.05);
      transition: transform 8s ease-out;
    }
    .hero-bg.loaded { transform: scale(1); }

    /* Organic leaf accent top-right */
    .hero-accent {
      position: absolute;
      top: 120px; right: -80px;
      width: 420px; height: 420px;
      border-radius: 60% 40% 70% 30% / 40% 50% 60% 50%;
      border: 1px solid rgba(184,134,11,0.3);
      opacity: 0.5;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      width: 100%;
    }
    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }
    .hero-eyebrow span {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold-lt);
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 40px;
      height: 1px;
      background: var(--gold);
    }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(3rem, 7vw, 5.5rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.06;
      max-width: 780px;
      margin-bottom: 20px;
    }
    .hero-title em {
      font-style: italic;
      color: var(--gold-lt);
    }
    .hero-sub {
      font-family: var(--font-italic);
      font-size: 18px;
      color: rgba(255,255,255,0.75);
      max-width: 480px;
      line-height: 1.6;
      margin-bottom: 36px;
    }
    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 8px;
    }
    .hero-stat-val {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 700;
      color: #fff;
    }
    .hero-stat-lbl {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      margin-top: 2px;
    }

    /* Scroll indicator */
    .hero-scroll {
      position: absolute;
      bottom: 36px;
      right: 48px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.55);
      font-size: 10px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      z-index: 2;
    }
    .hero-scroll-line {
      width: 1px;
      height: 50px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
      animation: scrollline 2s ease-in-out infinite;
    }
    @keyframes scrollline {
      0%, 100% { opacity: 0.4; transform: scaleY(1); }
      50% { opacity: 1; transform: scaleY(0.6); }
    }

    /* ─── BOOKING BAR ─────────────────────────────────────────────── */
    .booking-bar {
      background: var(--forest);
      padding: 0 24px;
      position: relative;
      z-index: 10;
    }
    .booking-bar-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr auto;
      align-items: stretch;
      min-height: 76px;
    }
    .booking-field {
      padding: 14px 24px;
      border-right: 1px solid rgba(255,255,255,0.1);
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 4px;
    }
    .booking-field:last-of-type { border-right: none; }
    .booking-field label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold-lt);
    }
    .booking-field input, .booking-field select {
      background: transparent;
      border: none;
      outline: none;
      color: #fff;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 400;
      cursor: pointer;
      width: 100%;
    }
    .booking-field select option { background: var(--forest); color: #fff; }
    .booking-field input::placeholder { color: rgba(255,255,255,0.5); }
    input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1) opacity(0.5); }

    .booking-submit {
      background: var(--gold);
      border: none;
      padding: 0 32px;
      color: #fff;
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s;
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
    }
    .booking-submit:hover { background: var(--gold-lt); }

    /* ─── ABOUT ────────────────────────────────────────────────────── */
    .about {
      padding: 100px 24px;
      background: var(--cream);
    }
    .about-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-images {
      position: relative;
    }
    .about-img-main {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      display: block;
    }
    .about-img-inset {
      position: absolute;
      bottom: -32px;
      right: -32px;
      width: 48%;
      aspect-ratio: 3/4;
      object-fit: cover;
      border: 5px solid var(--cream);
    }

    /* YouTube video embed in about section */
    .about-video-wrap {
      position: absolute;
      bottom: -32px;
      right: -32px;
      width: 55%;
      aspect-ratio: 16/10;
      border: 5px solid var(--cream);
      background: #000;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    }
    .about-video-wrap iframe {
      width: 100%;
      height: 100%;
      display: block;
      border: none;
    }
    .about-video-label {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(26,26,24,0.85), transparent);
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 14px 14px 10px;
      display: flex;
      align-items: center;
      gap: 6px;
      pointer-events: none;
    }
    .about-video-label i { font-size: 18px; color: var(--gold); }
    .about-badge {
      position: absolute;
      top: 32px;
      left: -24px;
      background: var(--gold);
      color: #fff;
      padding: 18px 22px;
      text-align: center;
    }
    .about-badge-num {
      font-family: var(--font-display);
      font-size: 32px;
      font-weight: 700;
      line-height: 1;
    }
    .about-badge-txt {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-top: 4px;
      opacity: 0.9;
    }
    .about-content { padding-bottom: 32px; }
    .about-content .section-label { margin-bottom: 12px; display: block; }
    .about-content .section-title { margin-bottom: 20px; }
    .about-text {
      font-family: var(--font-italic);
      font-size: 18px;
      line-height: 1.75;
      color: var(--text-muted);
      margin-bottom: 28px;
    }
    .about-features {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px 24px;
      margin-bottom: 36px;
    }
    .about-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text);
    }
    .about-features li i {
      color: var(--gold);
      font-size: 16px;
      flex-shrink: 0;
    }

    /* ─── ROOMS CAROUSEL ────────────────────────────────────────────── */
    .rooms {
      padding: 100px 0;
      background: var(--bark);
      overflow: hidden;
    }
    .rooms-head {
      text-align: center;
      margin-bottom: 56px;
      padding: 0 24px;
    }
    .rooms-head .section-label {
      color: var(--gold-lt);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    .rooms-head .section-label::before,
    .rooms-head .section-label::after {
      content: '✦';
      font-size: 10px;
      color: var(--gold);
    }
    .rooms-head .section-title {
      color: #fff;
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    /* Carousel viewport */
    .rooms-carousel-wrap {
      position: relative;
      width: 100%;
      padding: 20px 0 32px;
    }
    .rooms-track {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      transition: none;
      position: relative;
      height: 520px;
    }

    /* Each slide */
    .room-slide {
      position: absolute;
      width: 48%;
      max-width: 680px;
      height: 480px;
      border-radius: 4px;
      overflow: hidden;
      transition: all 0.55s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      flex-shrink: 0;
    }

    /* Active / centre slide */
    .room-slide.active {
      z-index: 10;
      transform: translateX(0) scale(1);
      opacity: 1;
      left: 50%;
      margin-left: -24%;
    }
    /* Left peek */
    .room-slide.prev {
      z-index: 5;
      transform: translateX(0) scale(0.88);
      opacity: 0.45;
      left: 0;
      margin-left: 0;
      filter: brightness(0.65);
    }
    /* Right peek */
    .room-slide.next {
      z-index: 5;
      transform: translateX(0) scale(0.88);
      opacity: 0.45;
      right: 0;
      left: auto;
      margin-left: 0;
      filter: brightness(0.65);
    }
    /* Hidden slides */
    .room-slide.hidden {
      opacity: 0;
      pointer-events: none;
      z-index: 1;
      left: 50%;
      margin-left: -24%;
    }

    .room-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }
    .room-slide.active:hover img { transform: scale(1.04); }

    /* White info panel at bottom of active card */
    .room-slide-info {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: #fff;
      padding: 24px 28px;
      transform: translateY(0);
      transition: opacity 0.4s;
    }
    .room-slide:not(.active) .room-slide-info {
      opacity: 0;
      pointer-events: none;
    }
    .room-slide-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 10px;
    }
    .room-slide-name {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 500;
      color: var(--bark);
      line-height: 1.2;
    }
    .room-slide-price-wrap {
      text-align: right;
      flex-shrink: 0;
    }
    .room-slide-price {
      font-family: var(--font-display);
      font-size: 26px;
      font-weight: 700;
      color: var(--bark);
      line-height: 1;
    }
    .room-slide-price span {
      font-size: 13px;
      font-weight: 400;
      color: var(--text-muted);
    }
    .room-slide-location {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 14px;
    }
    .room-slide-location i { color: var(--gold); font-size: 15px; }
    .room-slide-divider {
      height: 1px;
      background: var(--cream-2);
      margin-bottom: 14px;
    }
    .room-slide-meta {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }
    .room-slide-meta-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      color: var(--text-muted);
    }
    .room-slide-meta-item i { font-size: 16px; color: var(--text-muted); }

    /* View room button inside active slide */
    .room-slide-view-btn {
      display: inline-flex; align-items: center; gap: 8px;
      margin-top: 14px; padding: 10px 20px;
      background: var(--gold); color: #fff;
      font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; text-decoration: none;
      transition: background 0.2s, transform 0.2s;
      opacity: 0; transform: translateY(8px);
      transition: opacity 0.3s 0.1s, transform 0.3s 0.1s, background 0.2s;
    }
    .room-slide.active .room-slide-view-btn { opacity: 1; transform: translateY(0); }
    .room-slide-view-btn:hover { background: var(--gold-lt); }

    /* Active slide shows pointer cursor */
    .room-slide.active { cursor: pointer; }

    /* Carousel controls */
    .rooms-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 12px;
      padding: 0 24px;
    }
    .rooms-arrow {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
      backdrop-filter: blur(4px);
    }
    .rooms-arrow:hover {
      background: rgba(255,255,255,0.22);
      transform: scale(1.08);
    }
    .rooms-dots {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .rooms-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.25);
      border: none;
      cursor: pointer;
      transition: all 0.25s;
      padding: 0;
    }
    .rooms-dot.active {
      width: 24px;
      border-radius: 4px;
      background: var(--gold);
    }

    @media (max-width: 768px) {
      .room-slide { width: 85%; max-width: none; height: 420px; }
      .room-slide.active { margin-left: -42.5%; }
      .room-slide.prev { display: none; }
      .room-slide.next { display: none; }
      .room-slide-name { font-size: 18px; }
      .room-slide-price { font-size: 20px; }
    }

    /* ─── AMENITIES ───────────────────────────────────────────────── */
    .amenities {
      padding: 100px 24px;
      background: var(--cream-2);
    }
    .amenities-inner {
      max-width: 1200px;
      margin: 0 auto;
    }
    .amenities-head {
      text-align: center;
      margin-bottom: 64px;
    }
    .amenities-head .section-label { margin-bottom: 12px; display: block; }
    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
    }
    .amenity-item {
      background: #fff;
      padding: 40px 32px;
      text-align: center;
      transition: background 0.25s, transform 0.25s;
      position: relative;
      overflow: hidden;
    }
    .amenity-item::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform 0.3s;
    }
    .amenity-item:hover::before { transform: scaleX(1); }
    .amenity-item:hover { background: var(--forest); transform: translateY(-4px); }
    .amenity-icon {
      font-size: 36px;
      color: var(--gold);
      margin-bottom: 16px;
      display: block;
      transition: color 0.25s;
    }
    .amenity-item:hover .amenity-icon { color: var(--gold-lt); }
    .amenity-name {
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 600;
      color: var(--bark);
      margin-bottom: 8px;
      transition: color 0.25s;
    }
    .amenity-item:hover .amenity-name { color: #fff; }
    .amenity-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      transition: color 0.25s;
    }
    .amenity-item:hover .amenity-desc { color: rgba(255,255,255,0.65); }

    /* ─── EXPERIENCE STRIP ────────────────────────────────────────── */
    .experience {
      position: relative;
      padding: 100px 24px;
      background:
        linear-gradient(rgba(26,26,24,0.72), rgba(26,26,24,0.72)),
        url('https://images.unsplash.com/photo-1500916434205-0c77489c6cf7?w=1600&q=80') center/cover fixed;
    }
    .experience-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 80px;
      align-items: center;
    }
    .experience-nums {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    .experience-num-item {
      border-left: 2px solid var(--gold);
      padding-left: 24px;
    }
    .experience-num-val {
      font-family: var(--font-display);
      font-size: 48px;
      font-weight: 700;
      color: #fff;
      line-height: 1;
    }
    .experience-num-lbl {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold-lt);
      margin-top: 4px;
    }
    .experience-content .section-label { color: var(--gold-lt); margin-bottom: 12px; display: block; }
    .experience-content .section-title { color: #fff; margin-bottom: 20px; }
    .experience-text {
      font-family: var(--font-italic);
      font-size: 18px;
      color: rgba(255,255,255,0.72);
      line-height: 1.75;
      margin-bottom: 36px;
    }
    .experience-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 40px;
    }
    .experience-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      color: rgba(255,255,255,0.8);
    }
    .experience-list li i { color: var(--gold); font-size: 16px; }

    /* ─── DINING ──────────────────────────────────────────────────── */
    .dining {
      padding: 100px 24px;
      background: var(--cream);
    }
    .dining-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .dining-content .section-label { margin-bottom: 12px; display: block; }
    .dining-content .section-title { margin-bottom: 20px; }
    .dining-text {
      font-family: var(--font-italic);
      font-size: 18px;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 28px;
    }
    .dining-times {
      display: flex;
      gap: 40px;
      margin-bottom: 36px;
      padding: 24px 0;
      border-top: 1px solid var(--cream-2);
      border-bottom: 1px solid var(--cream-2);
    }
    .dining-time h4 {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 4px;
    }
    .dining-time p {
      font-size: 15px;
      font-weight: 500;
      color: var(--bark);
    }
    .dining-images {
      position: relative;
    }
    .dining-img-top {
      width: 80%;
      aspect-ratio: 4/3;
      object-fit: cover;
      display: block;
    }
    .dining-img-btm {
      position: absolute;
      bottom: -40px;
      right: 0;
      width: 60%;
      aspect-ratio: 1;
      object-fit: cover;
      border: 5px solid var(--cream);
    }

    /* ─── LOCATION ────────────────────────────────────────────────── */
    .location {
      padding: 100px 24px;
      background: var(--bark);
    }
    .location-inner {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }
    .location-inner .section-label { color: var(--gold-lt); margin-bottom: 12px; display: block; }
    .location-inner .section-title { color: #fff; margin-bottom: 16px; }
    .location-sub {
      font-family: var(--font-italic);
      font-size: 17px;
      color: rgba(255,255,255,0.6);
      margin-bottom: 56px;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }
    .location-points {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      margin-bottom: 56px;
    }
    .location-point {
      background: rgba(255,255,255,0.06);
      padding: 32px 24px;
      text-align: center;
      transition: background 0.25s;
    }
    .location-point:hover { background: rgba(255,255,255,0.1); }
    .location-point i {
      font-size: 28px;
      color: var(--gold);
      margin-bottom: 12px;
      display: block;
    }
    .location-point h4 {
      font-family: var(--font-display);
      font-size: 16px;
      color: #fff;
      margin-bottom: 6px;
    }
    .location-point p {
      font-size: 13px;
      color: rgba(255,255,255,0.5);
      line-height: 1.5;
    }
    .location-map {
      width: 100%;
      height: 380px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      overflow: hidden;
      position: relative;
    }
    .location-map iframe {
      width: 100%;
      height: 100%;
      border: none;
      filter: grayscale(0.3) contrast(0.9);
    }

    /* ─── FAQ ──────────────────────────────────────────────────────── */
    .faq {
      padding: 80px 40px;
      background: var(--cream);
    }
    .faq-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.1fr 1fr;
      gap: 0;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 60px rgba(0,0,0,0.1);
    }

    /* Left image card */
    .faq-card {
      position: relative;
      min-height: 580px;
      overflow: hidden;
      cursor: pointer;
    }
    .faq-card img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }
    .faq-card:hover img { transform: scale(1.05); }
    .faq-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26,26,24,0.82) 0%, rgba(26,26,24,0.1) 55%);
    }
    .faq-card-body {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 32px;
    }
    .faq-card-title {
      font-family: var(--font-display);
      font-size: 26px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 10px;
      line-height: 1.2;
    }
    .faq-card-desc {
      font-size: 14px;
      color: rgba(255,255,255,0.7);
      line-height: 1.6;
      margin-bottom: 20px;
    }
    .faq-card-link {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #fff;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-bottom: 1px solid rgba(255,255,255,0.4);
      padding-bottom: 2px;
      transition: border-color 0.2s, color 0.2s;
    }
    .faq-card-link:hover { color: var(--gold-lt); border-color: var(--gold-lt); }

    /* Centre panel */
    .faq-centre {
      background: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 56px 48px;
      position: relative;
    }
    /* Subtle corner border accent like the reference */
    .faq-centre::before {
      content: '';
      position: absolute;
      top: 28px; left: 28px;
      width: 60px; height: 60px;
      border-top: 1.5px solid var(--cream-2);
      border-left: 1.5px solid var(--cream-2);
      pointer-events: none;
    }
    .faq-centre::after {
      content: '';
      position: absolute;
      bottom: 28px; right: 28px;
      width: 60px; height: 60px;
      border-bottom: 1.5px solid var(--cream-2);
      border-right: 1.5px solid var(--cream-2);
      pointer-events: none;
    }
    .faq-eyebrow {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }
    .faq-eyebrow-plain {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .faq-eyebrow-pill {
      background: rgba(184,134,11,0.12);
      color: var(--gold);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 100px;
    }
    .faq-title {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 2.5vw, 2.2rem);
      font-weight: 600;
      color: var(--bark);
      line-height: 1.2;
      margin-bottom: 10px;
    }
    .faq-subtitle {
      font-family: var(--font-italic);
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 32px;
    }

    /* Accordion */
    .faq-accordion {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-bottom: 36px;
      border-top: 1px solid var(--cream-2);
    }
    .faq-item {
      border-bottom: 1px solid var(--cream-2);
    }
    .faq-question {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      padding: 16px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      cursor: pointer;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 500;
      color: var(--bark);
      transition: color 0.2s;
    }
    .faq-question:hover { color: var(--gold); }
    .faq-question.open { color: var(--gold); }
    .faq-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1.5px solid var(--cream-2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 16px;
      color: var(--text-muted);
      transition: all 0.25s;
      background: var(--cream);
    }
    .faq-question.open .faq-icon {
      background: var(--gold);
      border-color: var(--gold);
      color: #fff;
      transform: rotate(45deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.25s ease;
    }
    .faq-answer.open {
      max-height: 200px;
    }
    .faq-answer-inner {
      padding: 0 0 16px;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* CTA button — matches reference terracotta/gold pill with arrow */
    .faq-cta {
      display: inline-flex;
      align-items: center;
      gap: 0;
      text-decoration: none;
    }
    .faq-cta-arrow {
      width: 48px;
      height: 48px;
      background: rgba(184,134,11,0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 18px;
      flex-shrink: 0;
      transition: background 0.2s;
    }
    .faq-cta:hover .faq-cta-arrow { background: rgba(184,134,11,0.28); }
    .faq-cta-label {
      background: var(--gold);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 0 28px;
      height: 48px;
      display: flex;
      align-items: center;
      border-radius: 0 100px 100px 0;
      transition: background 0.2s;
    }
    .faq-cta:hover .faq-cta-label { background: var(--gold-lt); }

    @media (max-width: 1024px) {
      .faq { padding: 60px 24px; }
      .faq-inner { grid-template-columns: 1fr 1.2fr; }
      .faq-card:last-child { display: none; }
      .faq-centre { padding: 40px 36px; }
    }
    @media (max-width: 680px) {
      .faq-inner { grid-template-columns: 1fr; border-radius: 12px; }
      .faq-card { min-height: 280px; }
      .faq-card:first-child { display: block; }
      .faq-centre { padding: 36px 24px; }
    }

    /* ─── CONTACT ─────────────────────────────────────────────────── */
    .contact {
      padding: 100px 24px 56px;
      background: var(--cream);
    }
    .contact-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 80px;
      align-items: start;
    }
    .contact-info .section-label { margin-bottom: 12px; display: block; }
    .contact-info .section-title { margin-bottom: 20px; }
    .contact-info-text {
      font-family: var(--font-italic);
      font-size: 17px;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 40px;
    }
    .contact-details { display: flex; flex-direction: column; gap: 24px; }
    .contact-detail {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .contact-detail-icon {
      width: 44px;
      height: 44px;
      background: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
      flex-shrink: 0;
    }
    .contact-detail h4 {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 4px;
    }
    .contact-detail p {
      font-size: 15px;
      color: var(--text);
      line-height: 1.5;
    }

    .contact-form {
      background: #fff;
      padding: 48px;
      box-shadow: 0 2px 40px rgba(0,0,0,0.06);
    }
    .contact-form h3 {
      font-family: var(--font-display);
      font-size: 26px;
      color: var(--bark);
      margin-bottom: 32px;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 20px;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .form-group label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      border: 1px solid var(--cream-2);
      padding: 13px 16px;
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--text);
      outline: none;
      transition: border-color 0.2s;
      background: var(--cream);
      border-radius: 0;
      width: 100%;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus { border-color: var(--gold); background: #fff; }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-group.full { grid-column: 1 / -1; }

    /* ─── FOOTER ──────────────────────────────────────────────────── */
    footer {
      background: #1A1A18;
      padding: 64px 40px 0;
    }
    .footer-main {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
      padding-bottom: 52px;
    }

    /* Left side: logo + 3 contact columns */
    .footer-left {}
    .footer-logo-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 36px;
    }
    .footer-logo-icon {
      color: var(--gold-lt);
      font-size: 22px;
      line-height: 1;
    }
    .footer-logo-name {
      font-family: var(--font-display);
      font-size: 26px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.02em;
    }
    .footer-contacts {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .footer-contact-col {}
    .footer-contact-label {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 500;
      color: var(--gold-lt);
      margin-bottom: 8px;
    }
    .footer-contact-label i { font-size: 14px; }
    .footer-contact-val {
      font-size: 15px;
      font-weight: 500;
      color: #fff;
      line-height: 1.5;
      text-decoration: none;
      transition: color 0.2s;
      display: block;
    }
    a.footer-contact-val:hover { color: var(--gold-lt); }

    /* Right side: newsletter */
    .footer-right {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }
    .footer-newsletter-title {
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 20px;
    }
    .footer-newsletter-form {
      display: flex;
      height: 52px;
    }
    .footer-newsletter-form input {
      flex: 1;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.12);
      border-right: none;
      padding: 0 20px;
      font-family: var(--font-body);
      font-size: 14px;
      color: #fff;
      outline: none;
      transition: border-color 0.2s, background 0.2s;
    }
    .footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
    .footer-newsletter-form input:focus {
      border-color: var(--gold);
      background: rgba(255,255,255,0.08);
    }
    .footer-newsletter-form button {
      background: var(--gold);
      border: none;
      padding: 0 28px;
      color: #fff;
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s;
      white-space: nowrap;
    }
    .footer-newsletter-form button:hover { background: var(--gold-lt); }

    /* Divider */
    .footer-divider {
      max-width: 1280px;
      margin: 0 auto;
      height: 1px;
      background: rgba(255,255,255,0.1);
    }

    /* Bottom bar */
    .footer-bottom {
      max-width: 1280px;
      margin: 0 auto;
      padding: 22px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .footer-copyright {
      font-size: 13px;
      color: rgba(255,255,255,0.35);
    }
    .footer-bottom-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    .footer-bottom-links a {
      font-size: 13px;
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-bottom-links a:hover { color: #fff; }

    /* Scroll-to-top button */
    .scroll-top {
      position: fixed;
      bottom: 32px;
      right: 32px;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--gold);
      color: #fff;
      border: none;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(184,134,11,0.4);
      transition: background 0.2s, transform 0.2s, opacity 0.3s;
      opacity: 0;
      pointer-events: none;
      z-index: 900;
    }

    /* ── WHATSAPP WIDGET ────────────────────────────────────── */
    .whatsapp-widget {
      position: fixed;
      bottom: 90px;
      right: 32px;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: #25D366;
      color: #fff;
      font-size: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(37,211,102,0.45);
      z-index: 900;
      transition: transform 0.2s, box-shadow 0.2s;
      animation: whatsapp-pulse 2.5s ease-in-out infinite;
    }
    .whatsapp-widget:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 28px rgba(37,211,102,0.6);
    }
    @keyframes whatsapp-pulse {
      0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
      50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.75); }
    }
    .scroll-top.visible { opacity: 1; pointer-events: auto; }
    .scroll-top:hover { background: var(--gold-lt); transform: translateY(-3px); }

    @media (max-width: 900px) {
      .footer-main { grid-template-columns: 1fr; gap: 40px; }
      .footer-contacts { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      footer { padding: 48px 24px 0; }
      .footer-contacts { grid-template-columns: 1fr; gap: 20px; }
      .footer-bottom { flex-direction: column; text-align: center; gap: 16px; }
      .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
      .scroll-top { bottom: 20px; right: 20px; }
    }

    /* ─── MOBILE NAV MENU ─────────────────────────────────────────── */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--forest);
      z-index: 2000;
      flex-direction: column;
      padding: 80px 40px 40px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu-close {
      position: absolute;
      top: 24px; right: 24px;
      background: none;
      border: none;
      color: #fff;
      font-size: 28px;
      cursor: pointer;
    }
    .mobile-nav-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .mobile-nav-links a {
      font-family: var(--font-display);
      font-size: 32px;
      font-weight: 600;
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      display: block;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      transition: color 0.2s;
    }
    .mobile-nav-links a:hover { color: var(--gold-lt); }
    .mobile-nav-cta { margin-top: 40px; }

    /* ─── RESPONSIVE ──────────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .about-inner { grid-template-columns: 1fr; gap: 60px; }
      .about-img-inset { right: 0; }
      .about-badge { left: 0; }
      .amenities-grid { grid-template-columns: 1fr 1fr; }
      .experience-inner { grid-template-columns: 1fr; gap: 48px; }
      .experience-nums { flex-direction: row; flex-wrap: wrap; }
      .dining-inner { grid-template-columns: 1fr; gap: 60px; }
      .location-points { grid-template-columns: 1fr 1fr; }
      .contact-inner { grid-template-columns: 1fr; }
    }

    @media (max-width: 1024px) {
      .navbar-phone { display: none; }
    }
    @media (max-width: 768px) {
      .navbar-links-wrap { display: none; }
      .hamburger { display: flex; }
      .hero-title { font-size: 2.8rem; }
      .hero-stats { gap: 20px; }
      .hero-scroll { display: none; }
      .booking-bar-inner {
        grid-template-columns: 1fr 1fr;
      }
      .booking-field { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
      .booking-submit { grid-column: 1 / -1; justify-content: center; padding: 18px; }
      .amenities-grid { grid-template-columns: 1fr 1fr; }
      .location-points { grid-template-columns: 1fr 1fr; }
      .contact-form { padding: 32px 24px; }
      .form-row { grid-template-columns: 1fr; }
    }

    @media (max-width: 480px) {
      .amenities-grid { grid-template-columns: 1fr; }
      .location-points { grid-template-columns: 1fr; }
      .booking-bar-inner { grid-template-columns: 1fr; }
      .hero-stats { flex-direction: column; gap: 12px; }
    }

    /* ─── SCROLL REVEAL ──────────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    /* ─── TOKENS ─────────────────────────────────────────────── */
    :root {
      --forest:      #1A1A18;
      --gold:        #F05F40;
      --gold-lt:     #FF7A5C;
      --cream:       #F7F3ED;
      --cream-2:     #EDE6DA;
      --bark:        #3D2B1F;
      --text:        #2A2018;
      --text-muted:  #6B5E50;
      --border:      #E5DDD4;
      --font-display:'Playfair Display', Georgia, serif;
      --font-body:   'Inter', sans-serif;
      --font-italic: 'EB Garamond', Georgia, serif;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font-body); background: #fff; color: var(--text); overflow-x: hidden; }
    a { text-decoration: none; color: inherit; }

    /* ─── NAVBAR (same as homepage) ───────────────────────────── */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 18px 32px;
      background: rgba(26,26,24,0.92);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 4px 32px rgba(0,0,0,0.22);
    }
    .navbar-inner {
      max-width: 1280px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
    }
    .navbar-logo { display: flex; align-items: center; gap: 12px; }
    .navbar-logo-emblem {
      width: 48px; height: 48px; border-radius: 50%;
      border: none; background: transparent;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 20px; overflow: hidden;
    }
    .navbar-logo-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #fff; }
    .navbar-logo-tag { font-size: 9px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-lt); }
    .navbar-links-wrap {
      background: rgba(20,20,20,0.52); backdrop-filter: blur(12px);
      border-radius: 100px; padding: 6px 8px; border: 1px solid rgba(255,255,255,0.1);
    }
    .navbar-links { display: flex; align-items: center; gap: 2px; list-style: none; }
    .navbar-links li a {
      font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.85);
      padding: 9px 18px; border-radius: 100px; display: flex; align-items: center; gap: 5px;
      transition: background 0.2s, color 0.2s;
    }
    .navbar-links li a:hover { background: rgba(255,255,255,0.12); color: #fff; }
    .navbar-right { display: flex; align-items: center; gap: 12px; }
    .navbar-phone { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); }
    .navbar-cta {
      display: inline-flex; align-items: center;
      background: #fff; color: var(--bark) !important;
      font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
      padding: 11px 24px; border-radius: 100px; box-shadow: 0 2px 12px rgba(0,0,0,0.15);
      transition: background 0.2s, transform 0.2s;
    }
    .navbar-cta:hover { background: var(--gold-lt) !important; color: #fff !important; transform: translateY(-1px); }
    .hamburger {
      display: none; background: rgba(20,20,20,0.5); border: 1px solid rgba(255,255,255,0.15);
      border-radius: 10px; cursor: pointer; color: #fff; font-size: 20px;
      width: 42px; height: 42px; align-items: center; justify-content: center;
    }

    /* ─── HERO BANNER ─────────────────────────────────────────── */
    .room-hero {
      height: 420px;
      position: relative;
      background-color: #1A1A18;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      display: flex; align-items: flex-end;
      padding-bottom: 52px;
    }
    /* Dark overlay always applied on top of whatever bg image is set */
    .room-hero::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, rgba(26,26,24,0.45) 0%, rgba(26,26,24,0.78) 100%);
      z-index: 1;
    }
    .room-hero-inner {
      position: relative; z-index: 2;
      max-width: 1280px; margin: 0 auto; padding: 0 40px; width: 100%;
    }
    .breadcrumb {
      display: flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
      text-transform: uppercase; color: rgba(255,255,255,0.6);
      margin-bottom: 16px;
    }
    .breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
    .breadcrumb a:hover { color: var(--gold-lt); }
    .breadcrumb i { font-size: 14px; }
    .breadcrumb span { color: rgba(255,255,255,0.9); }
    .room-hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 700; color: #fff; line-height: 1.1;
    }

    /* ─── MAIN LAYOUT ─────────────────────────────────────────── */
    .room-page {
      max-width: 1280px; margin: 0 auto;
      padding: 56px 40px 100px;
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 56px;
      align-items: start;
    }

    /* ─── LEFT COLUMN ─────────────────────────────────────────── */

    /* Gallery */
    .gallery { margin-bottom: 48px; }
    .gallery-main {
      width: 100%; aspect-ratio: 16/9;
      object-fit: cover; display: block;
      cursor: pointer; transition: opacity 0.2s;
    }
    .gallery-main:hover { opacity: 0.95; }
    .gallery-thumbs {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 8px;
    }
    .gallery-thumb {
      width: 100%; aspect-ratio: 4/3; object-fit: cover; cursor: pointer;
      opacity: 0.72; transition: opacity 0.2s; display: block;
    }
    .gallery-thumb:hover, .gallery-thumb.active { opacity: 1; }
    .gallery-actions {
      display: flex; align-items: center; gap: 20px; margin-top: 14px;
    }
    .gallery-action-btn {
      display: flex; align-items: center; gap: 7px;
      font-size: 13px; font-weight: 500; color: var(--text-muted);
      background: none; border: none; cursor: pointer; padding: 0;
      transition: color 0.2s;
    }
    .gallery-action-btn:hover { color: var(--gold); }
    .gallery-action-btn i { font-size: 16px; }

    /* About section */
    .room-section { margin-bottom: 48px; }
    .room-section-title {
      font-family: var(--font-display);
      font-size: 22px; font-weight: 600; color: var(--bark);
      margin-bottom: 16px; padding-bottom: 12px;
      border-bottom: 2px solid var(--cream-2);
    }
    .room-desc {
      font-family: var(--font-italic);
      font-size: 17px; line-height: 1.8; color: var(--text-muted);
    }

    /* What this room packs */
    .room-includes-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px;
    }
    .room-include-item {
      display: flex; align-items: center; gap: 10px;
      font-size: 14px; font-weight: 500; color: var(--text);
    }
    .room-include-item i { color: var(--gold); font-size: 18px; flex-shrink: 0; }

    /* Amenities */
    .amenities-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    }
    .amenity-tile {
      background: var(--cream); padding: 20px 18px;
      display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
      border: 1px solid var(--border); transition: border-color 0.2s, background 0.2s;
    }
    .amenity-tile:hover { border-color: var(--gold); background: #fff; }
    .amenity-tile i { font-size: 24px; color: var(--gold); }
    .amenity-tile span { font-size: 13px; font-weight: 500; color: var(--text); line-height: 1.4; }

    /* Policies */
    .policies-list { display: flex; flex-direction: column; gap: 14px; }
    .policy-item {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 16px; background: var(--cream); border-left: 3px solid var(--gold);
    }
    .policy-item i { font-size: 20px; color: var(--gold); flex-shrink: 0; margin-top: 1px; }
    .policy-item h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bark); margin-bottom: 4px; }
    .policy-item p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

    /* ─── RIGHT SIDEBAR ───────────────────────────────────────── */
    .sidebar { position: sticky; top: 104px; }

    /* Spec card */
    .spec-card {
      background: var(--forest); padding: 32px 28px; margin-bottom: 20px;
    }
    .spec-card-eyebrow {
      font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--gold-lt); margin-bottom: 6px;
    }
    .spec-card-name {
      font-family: var(--font-display);
      font-size: 24px; font-weight: 700; color: #fff;
      margin-bottom: 20px; line-height: 1.2;
    }
    .spec-rows { display: flex; flex-direction: column; gap: 0; }
    .spec-row {
      display: flex; align-items: center; justify-content: space-between; gap: 12px;
      padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .spec-row:last-child { border-bottom: none; }
    .spec-row-label {
      display: flex; align-items: center; gap: 9px;
      font-size: 13px; color: rgba(255,255,255,0.55);
    }
    .spec-row-label i { font-size: 16px; color: var(--gold-lt); }
    .spec-row-val {
      font-size: 13px; font-weight: 600; color: #fff; text-align: right;
    }
    .spec-price-row {
      margin-top: 24px; padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.12);
      display: flex; align-items: baseline; justify-content: space-between;
    }
    .spec-price-label { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
    .spec-price-val { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: #fff; }
    .spec-price-per { font-size: 13px; color: rgba(255,255,255,0.45); margin-left: 4px; }

    /* Tags */
    .spec-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
    .spec-tag {
      background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.65);
      font-size: 11px; font-weight: 500; padding: 5px 12px;
      border-radius: 100px; border: 1px solid rgba(255,255,255,0.12);
    }

    /* Reservation form */
    .reservation-card { background: #fff; border: 1px solid var(--border); padding: 28px; }
    .reservation-card h3 {
      font-family: var(--font-display);
      font-size: 20px; font-weight: 600; color: var(--bark);
      margin-bottom: 20px;
    }
    .res-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
    .res-field label {
      font-size: 10px; font-weight: 700; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--gold);
    }
    .res-field input, .res-field select {
      border: 1px solid var(--border); padding: 12px 14px;
      font-family: var(--font-body); font-size: 14px; color: var(--text);
      outline: none; background: var(--cream); transition: border-color 0.2s;
      border-radius: 0; width: 100%;
    }
    .res-field input:focus, .res-field select:focus { border-color: var(--gold); background: #fff; }
    .res-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .res-total {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
      margin: 16px 0;
    }
    .res-total-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
    .res-total-val { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--bark); }
    .btn-book {
      width: 100%; background: var(--gold); color: #fff; border: none;
      padding: 16px; font-family: var(--font-body); font-size: 13px; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer;
      display: flex; align-items: center; justify-content: center; gap: 10px;
      transition: background 0.2s;
    }
    .btn-book:hover { background: var(--gold-lt); }
    .res-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 12px; line-height: 1.5; }

    /* Contact card */
    .contact-card {
      margin-top: 16px; background: var(--cream); padding: 20px;
      display: flex; flex-direction: column; gap: 14px;
    }
    .contact-card-item {
      display: flex; align-items: center; gap: 12px;
      font-size: 13px; color: var(--text-muted);
    }
    .contact-card-item i { font-size: 16px; color: var(--gold); flex-shrink: 0; }
    .contact-card-item strong { color: var(--text); font-weight: 600; }

    /* ─── RELATED TAGS ────────────────────────────────────────── */
    .related-tags { margin-top: 16px; }
    .related-tags h4 {
      font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px;
    }
    .tags-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
    .tag {
      background: #fff; border: 1px solid var(--border);
      color: var(--text-muted); font-size: 12px; font-weight: 500;
      padding: 6px 14px; cursor: pointer; transition: all 0.2s;
    }
    .tag:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

    /* ─── FOOTER (compact version matching homepage) ──────────── */
    footer { background: #1A1A18; padding: 56px 40px 0; }
    .footer-main {
      max-width: 1280px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
      align-items: start; padding-bottom: 48px;
    }
    .footer-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 32px; }
    .footer-logo-icon { color: var(--gold-lt); font-size: 22px; }
    .footer-logo-name { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: #fff; }
    .footer-contacts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .footer-contact-label { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; color: var(--gold-lt); margin-bottom: 6px; }
    .footer-contact-label i { font-size: 14px; }
    .footer-contact-val { font-size: 15px; font-weight: 500; color: #fff; display: block; }
    .footer-newsletter-title { font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
    .footer-newsletter-form { display: flex; height: 50px; }
    .footer-newsletter-form input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-right: none; padding: 0 18px; font-family: var(--font-body); font-size: 14px; color: #fff; outline: none; }
    .footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
    .footer-newsletter-form button { background: var(--gold); border: none; padding: 0 24px; color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
    .footer-newsletter-form button:hover { background: var(--gold-lt); }
    .footer-divider { max-width: 1280px; margin: 0 auto; height: 1px; background: rgba(255,255,255,0.1); }
    .footer-bottom { max-width: 1280px; margin: 0 auto; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
    .footer-copyright { font-size: 13px; color: rgba(255,255,255,0.35); }
    .footer-bottom-links { display: flex; gap: 28px; list-style: none; }
    .footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
    .footer-bottom-links a:hover { color: #fff; }
    .scroll-top {
      position: fixed; bottom: 32px; right: 32px;
      width: 46px; height: 46px; border-radius: 50%;
      background: var(--gold); color: #fff; border: none; font-size: 18px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; box-shadow: 0 4px 16px rgba(184,134,11,0.4);
      transition: background 0.2s, transform 0.2s, opacity 0.3s;
      opacity: 0; pointer-events: none; z-index: 900;
    }
    .scroll-top.visible { opacity: 1; pointer-events: auto; }
    .scroll-top:hover { background: var(--gold-lt); transform: translateY(-3px); }

    /* ─── LIGHTBOX ────────────────────────────────────────────── */
    .lightbox {
      display: none; position: fixed; inset: 0; z-index: 2000;
      background: rgba(0,0,0,0.92); align-items: center; justify-content: center;
    }
    .lightbox.open { display: flex; }
    .lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; display: block; }
    .lightbox-close {
      position: absolute; top: 24px; right: 28px;
      background: none; border: none; color: #fff; font-size: 32px; cursor: pointer;
    }
    .lightbox-arrow {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,0.12); border: none; color: #fff;
      font-size: 24px; width: 52px; height: 52px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center; cursor: pointer;
      transition: background 0.2s;
    }
    .lightbox-arrow:hover { background: rgba(255,255,255,0.25); }
    .lightbox-arrow.prev { left: 24px; }
    .lightbox-arrow.next { right: 24px; }

    /* ─── MOBILE NAV ──────────────────────────────────────────── */
    .mobile-menu {
      display: none; position: fixed; inset: 0; background: var(--forest);
      z-index: 2000; flex-direction: column; padding: 80px 40px 40px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: #fff; font-size: 28px; cursor: pointer; }
    .mobile-nav-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .mobile-nav-links a { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: rgba(255,255,255,0.85); display: block; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }

    /* ─── RESPONSIVE ──────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .room-page { grid-template-columns: 1fr; padding: 40px 24px 80px; }
      .sidebar { position: static; }
      .amenities-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-main { grid-template-columns: 1fr; gap: 36px; }
      .footer-contacts { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .navbar-links-wrap { display: none; }
      .navbar-phone { display: none; }
      .hamburger { display: flex; }
      .room-hero { height: 320px; }
      .room-hero-inner { padding: 0 24px; }
      .gallery-thumbs { grid-template-columns: repeat(3, 1fr); }
      .room-includes-grid { grid-template-columns: 1fr; }
      .amenities-grid { grid-template-columns: 1fr 1fr; }
      .res-row { grid-template-columns: 1fr; }
      .footer-contacts { grid-template-columns: 1fr; gap: 16px; }
      .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
      .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
    }