    :root {
      --linen: #EDE8E1;
      --ink: #1A1917;
      --gold: #B8965A;
      --light: #F7F4F0;
      --mid: #8A8480;
      --border: rgba(26, 25, 23, .06);
      --f-serif: 'Playfair Display', Georgia, serif;
      --f-sans: 'Inter', system-ui, sans-serif;
      --f-mono: 'DM Mono', monospace;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--light);
      color: var(--ink);
      font-family: var(--f-sans);
      font-size: 15px;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    body.loading-active {
      overflow: hidden;
    }

    /* SEO Visually Hidden Utility Class */
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* SPLASH / PRELOADER SCREEN */
    #loading-screen {
      position: fixed;
      inset: 0;
      background: var(--ink);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 1;
      visibility: visible;
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    #loading-screen.fade-out {
      opacity: 0;
      visibility: hidden;
    }

    .loading-content {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .loading-logo {
      font-family: var(--f-serif);
      font-size: clamp(2.5rem, 6vw, 4rem);
      font-weight: 500;
      color: var(--linen);
      letter-spacing: 0.15em;
      line-height: 1;
      margin-bottom: 8px;
      opacity: 0;
      transform: translateY(20px);
      animation: loadLogoIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .loading-logo .omega {
      color: var(--gold);
    }

    .loading-sub {
      font-family: var(--f-mono);
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(237, 232, 225, 0.4);
      margin-bottom: 24px;
      opacity: 0;
      transform: translateY(10px);
      animation: loadSubIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    }

    .loading-progress-wrap {
      width: 140px;
      height: 1px;
      background: rgba(237, 232, 225, 0.1);
      position: relative;
      overflow: hidden;
    }

    .loading-progress-bar {
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 0%;
      background: var(--gold);
      animation: loadProgressBar 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes loadLogoIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes loadSubIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes loadProgressBar {
      0% {
        width: 0%;
      }

      50% {
        width: 40%;
      }

      70% {
        width: 70%;
      }

      100% {
        width: 100%;
      }
    }

    /* Scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: var(--light);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--linen);
      border-radius: 4px;
      transition: background .3s;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--gold);
    }

    /* Reveal animations */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: transform, opacity;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* DEMO BANNER */
    .demo-banner {
      background: var(--gold);
      color: #fff;
      text-align: center;
      padding: 8px;
      font-family: var(--f-mono);
      font-size: .65rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 101;
      box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
      display: none;
    }

    body.has-demo-banner {
      padding-top: 30px;
    }

    body.has-demo-banner nav {
      top: 30px;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 6vw;
      background: rgba(247, 244, 240, .85);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--border);
      transition: background-color .3s, box-shadow .3s, border-color .3s;
    }

    nav.scrolled {
      background: rgba(247, 244, 240, .98);
      box-shadow: 0 10px 30px rgba(0, 0, 0, .02);
    }

    .nav-logo {
      font-family: var(--f-serif);
      font-size: 1.25rem;
      font-weight: 500;
      letter-spacing: .08em;
      color: var(--ink);
      text-decoration: none;
      transition: opacity .2s;
    }

    .nav-logo .omega {
      color: var(--gold);
    }

    .nav-logo:hover {
      opacity: .8;
    }

    .nav-links {
      display: flex;
      gap: 36px;
      align-items: center;
    }

    .nav-links a {
      position: relative;
      font-size: .72rem;
      font-weight: 500;
      letter-spacing: .15em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--mid);
      transition: color .2s;
      padding: 4px 0;
    }

    .nav-links a:hover {
      color: var(--ink);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform .3s ease;
    }

    .nav-links a:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    .nav-cta {
      background: var(--ink) !important;
      color: var(--light) !important;
      padding: 10px 24px !important;
      transition: background-color .3s cubic-bezier(0.16, 1, 0.3, 1), transform .3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }

    .nav-cta::after {
      display: none !important;
    }

    .nav-cta:hover {
      background: var(--gold) !important;
      transform: translateY(-2px);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .lang-toggle-btn {
      background: transparent;
      border: 1px solid rgba(26, 25, 23, .2);
      color: var(--ink);
      padding: 6px 12px;
      font-family: var(--f-mono);
      font-size: .65rem;
      letter-spacing: .1em;
      cursor: pointer;
      transition: border-color .2s, background-color .2s;
      text-transform: uppercase;
      outline: none;
    }

    .lang-toggle-btn:hover {
      border-color: var(--ink);
      background: rgba(26, 25, 23, .03);
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 140px 6vw 100px;
      position: relative;
      overflow: hidden;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
    }

    .hero-bg-wrapper {
      position: absolute;
      inset: 0;
      z-index: 1;
      overflow: hidden;
    }

    .hero-bg-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transform: scale(1) translateZ(0);
      will-change: transform, opacity;
      backface-visibility: hidden;
      transition: opacity 2.5s ease-in-out, transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .hero-bg-slide.active {
      opacity: 1;
      transform: scale(1.06) translateZ(0);
    }

    .hero-bg-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(26, 25, 23, 0.3) 0%, rgba(26, 25, 23, 0.55) 100%);
      z-index: 1;
    }

    .hero-eyebrow {
      font-family: var(--f-mono);
      font-size: .65rem;
      font-weight: 400;
      letter-spacing: .24em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
      animation: fadeIn 1s ease;
    }

    /* Live Weather widget in Hero */
    .hero-weather {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .15);
      padding: 6px 14px;
      border-radius: 20px;
      font-family: var(--f-mono);
      font-size: .65rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 24px;
      animation: fadeIn 1.2s ease;
    }

    .hero-logo-img {
      width: clamp(280px, 50vw, 560px);
      height: auto;
      display: block;
      margin-bottom: 0;
      filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(0, 0, 0, .15));
      animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .hero-logo-wrap {
      margin-bottom: 32px;
    }

    .hero-subtitle {
      font-family: var(--f-mono);
      font-size: .65rem;
      font-weight: 400;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 24px;
      animation: fadeIn 1.2s ease;
    }

    .hero-subtitle span {
      color: var(--gold);
      margin: 0 10px;
    }

    .hero-desc {
      font-size: .95rem;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.75);
      max-width: 480px;
      line-height: 2;
      margin-bottom: 32px;
      animation: slideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .hero .stat-n {
      color: #fff;
    }

    .hero .stat-l {
      color: rgba(255, 255, 255, 0.55);
    }

    .hero .btn-ghost {
      color: #fff;
      border-color: rgba(255, 255, 255, 0.3);
    }

    .hero .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: #fff;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      margin-bottom: 0;
      animation: slideUp 1.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .hero-indicators {
      display: flex;
      gap: 12px;
      z-index: 10;
      animation: fadeIn 1.5s ease;
      margin-top: 32px;
      margin-bottom: 40px;
    }

    .hero-indicator {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.4);
      background: transparent;
      cursor: pointer;
      transition: background 0.3s, border-color 0.3s, transform 0.3s;
    }

    .hero-indicator:hover {
      border-color: #fff;
      transform: scale(1.15);
    }

    .hero-indicator.active {
      background: #fff;
      border-color: #fff;
    }

    .btn-primary {
      background: var(--ink);
      color: var(--light);
      padding: 14px 36px;
      font-family: var(--f-sans);
      font-size: .72rem;
      font-weight: 500;
      letter-spacing: .16em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1px solid var(--ink);
      cursor: pointer;
      transition: background-color .3s cubic-bezier(0.16, 1, 0.3, 1), border-color .3s cubic-bezier(0.16, 1, 0.3, 1), transform .3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .3s cubic-bezier(0.16, 1, 0.3, 1);
      display: inline-block;
    }

    .btn-primary:hover {
      background: var(--gold);
      border-color: var(--gold);
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(184, 150, 90, .15);
    }

    .btn-ghost {
      background: transparent;
      color: var(--ink);
      padding: 14px 36px;
      font-family: var(--f-sans);
      font-size: .72rem;
      font-weight: 500;
      letter-spacing: .16em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1px solid rgba(26, 25, 23, .2);
      cursor: pointer;
      transition: border-color .3s cubic-bezier(0.16, 1, 0.3, 1), background-color .3s cubic-bezier(0.16, 1, 0.3, 1), transform .3s cubic-bezier(0.16, 1, 0.3, 1);
      display: inline-block;
    }

    .btn-ghost:hover {
      border-color: var(--ink);
      background: rgba(26, 25, 23, .02);
      transform: translateY(-2px);
    }

    .hero-stats {
      display: flex;
      gap: 64px;
      animation: fadeIn 1.5s ease;
    }

    .stat {
      text-align: center;
    }

    .stat-n {
      font-family: var(--f-serif);
      font-size: 1.6rem;
      font-weight: 400;
      color: var(--ink);
      line-height: 1.1;
    }

    .stat-l {
      font-size: .6rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--mid);
      margin-top: 6px;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    /* SECTIONS */
    section {
      padding: 110px 6vw;
    }

    .section-eyebrow {
      font-family: var(--f-mono);
      font-size: .62rem;
      font-weight: 400;
      letter-spacing: .24em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }

    .section-title {
      font-family: var(--f-serif);
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 400;
      line-height: 1.25;
      margin-bottom: 52px;
      color: var(--ink);
    }

    .section-title em {
      font-style: italic;
      font-weight: 400;
    }

    /* GALLERY CAROUSEL INLINE */
    #gallery {
      background: var(--light);
      overflow: hidden;
    }

    .gallery-carousel-wrap {
      position: relative;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .gallery-carousel-track-container {
      width: 100%;
      overflow: hidden;
    }

    .gallery-carousel-track {
      display: flex;
      gap: 20px;
      transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
      width: 100%;
    }

    .gallery-card {
      flex: 0 0 calc((100% - 40px) / 3);
      overflow: hidden;
      background: var(--linen);
      position: relative;
      cursor: pointer;
      border: 1px solid rgba(26, 25, 23, .03);
      aspect-ratio: 4/3;
    }

    .gallery-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .gallery-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26, 25, 23, .4) 0%, transparent 60%);
      opacity: 0;
      transition: opacity .4s ease;
    }

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

    .gallery-card:hover img {
      transform: scale(1.05);
    }

    .gallery-card-info {
      position: absolute;
      bottom: 20px;
      left: 24px;
      z-index: 2;
      color: var(--light);
      opacity: 0;
      transform: translateY(10px);
      transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .gallery-card:hover .gallery-card-info {
      opacity: 1;
      transform: translateY(0);
    }

    .gallery-card-title {
      font-family: var(--f-serif);
      font-size: 1.15rem;
      font-weight: 400;
    }

    .gallery-card-sub {
      font-family: var(--f-mono);
      font-size: .58rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: rgba(247, 244, 240, .75);
      margin-top: 4px;
    }

    .carousel-control {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      background: var(--light);
      border: 1px solid var(--border);
      color: var(--ink);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background-color .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
      box-shadow: 0 4px 12px rgba(0, 0, 0, .03);
      outline: none;
    }

    .carousel-control:hover {
      background: var(--ink);
      color: var(--light);
      border-color: var(--ink);
    }

    .carousel-control.prev {
      left: -24px;
    }

    .carousel-control.next {
      right: -24px;
    }

    .carousel-indicators {
      display: flex;
      gap: 8px;
      justify-content: center;
      margin-top: 32px;
    }

    .indicator-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--linen);
      cursor: pointer;
      transition: background .3s;
    }

    .indicator-dot.active {
      background: var(--gold);
    }

    /* AMENITIES */
    #amenities {
      background: var(--linen);
    }

    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border: 1px solid var(--border);
      background: var(--light);
      gap: 0;
    }

    .amenity {
      padding: 44px 36px;
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: transparent;
      transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      position: relative;
      overflow: hidden;
    }

    /* Remove outer borders on grid edges */
    .amenities-grid .amenity:nth-child(3n) {
      border-right: none;
    }

    .amenities-grid .amenity:nth-child(n+7) {
      border-bottom: none;
    }

    .amenity:hover {
      background: #fff;
      box-shadow: inset 0 0 40px rgba(184, 150, 90, 0.03);
    }

    /* Elegant sliding gold underline indicator */
    .amenity::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .amenity:hover::after {
      transform: scaleX(1);
    }

    .amenity-icon-svg {
      width: 24px;
      height: 24px;
      stroke-width: 1.25px;
      color: var(--gold);
      margin-bottom: 20px;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      display: inline-block;
    }

    .amenity:hover .amenity-icon-svg {
      transform: scale(1.1) translateY(-2px);
    }

    .amenity-name {
      font-family: var(--f-serif);
      font-size: 1.05rem;
      font-weight: 500;
      color: var(--ink);
      margin-bottom: 6px;
    }

    .amenity-desc {
      font-size: 0.82rem;
      color: var(--mid);
      line-height: 1.6;
    }

    @media(max-width: 980px) {
      .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .amenities-grid .amenity {
        border-right: 1px solid var(--border) !important;
        border-bottom: 1px solid var(--border) !important;
      }

      .amenities-grid .amenity:nth-child(2n) {
        border-right: none !important;
      }

      .amenities-grid .amenity:nth-child(n+8) {
        border-bottom: none !important;
      }
    }

    @media(max-width: 640px) {
      .amenities-grid {
        grid-template-columns: 1fr;
      }

      .amenities-grid .amenity {
        border-right: none !important;
        border-bottom: 1px solid var(--border) !important;
        padding: 32px 24px;
      }

      .amenities-grid .amenity:last-child {
        border-bottom: none !important;
      }
    }

    /* BOOKING */
    #booking {
      background: var(--light);
    }

    .booking-layout {
      display: grid;
      grid-template-columns: 1.2fr 380px;
      gap: 64px;
      align-items: start;
    }

    .cal-wrap {
      border: 1px solid var(--border);
      background: #FFFFFF;
      box-shadow: 0 20px 45px rgba(26, 25, 23, 0.03);
    }

    .cal-head {
      background: rgba(26, 25, 23, 0.85);
      backdrop-filter: blur(10px);
      color: var(--light);
      padding: 18px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .cal-month-lbl {
      font-family: var(--f-serif);
      font-size: 1.05rem;
      font-weight: 400;
      letter-spacing: .02em;
    }

    .cal-nav {
      background: none;
      border: none;
      color: var(--light);
      font-size: 1.3rem;
      cursor: pointer;
      padding: 4px 10px;
      transition: color .15s;
      line-height: 1;
    }

    .cal-nav:hover {
      color: var(--gold);
    }

    .cal-body {
      padding: 20px;
    }

    .cal-days {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 4px;
    }

    .cal-day-name {
      text-align: center;
      font-size: .62rem;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--mid);
      padding: 8px 0;
    }

    .cal-day {
      text-align: center;
      padding: 6px 2px;
      font-size: .82rem;
      cursor: pointer;
      transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .15s cubic-bezier(0.16, 1, 0.3, 1);
      border: 1px solid transparent;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      aspect-ratio: 1;
      border-radius: 8px;
      line-height: 1.25;
    }

    .cal-day:not(.booked):not(.past):not(.empty):hover {
      background: rgba(184, 150, 90, .1);
      color: var(--gold);
      transform: translateY(-1px);
    }

    .cal-day-num {
      font-weight: 500;
      font-size: 0.85rem;
    }

    .cal-day-price {
      font-size: 0.58rem;
      color: var(--mid);
      font-family: var(--f-mono);
      margin-top: 1px;
      opacity: 0.85;
    }

    .cal-day.booked {
      background: transparent;
      color: #BBB;
      text-decoration: line-through;
      cursor: default;
      pointer-events: none;
      opacity: .4;
    }

    .cal-day.selected {
      background: var(--ink) !important;
      color: var(--light) !important;
      font-weight: 500;
    }

    .cal-day.selected .cal-day-price {
      color: rgba(255, 255, 255, 0.85) !important;
    }

    .cal-day.in-range {
      background: rgba(184, 150, 90, .12) !important;
      border-radius: 0;
      color: var(--ink);
    }

    .cal-day.in-range .cal-day-price {
      color: var(--gold);
    }

    .cal-day.today {
      font-weight: 600;
      color: var(--gold);
      border: 1px solid var(--gold);
    }

    .cal-day.empty,
    .cal-day.past {
      color: #CCC;
      pointer-events: none;
      opacity: .5;
    }

    .cal-legend {
      display: flex;
      gap: 24px;
      padding: 14px 20px 18px;
      border-top: 1px solid var(--border);
    }

    .cal-leg {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: .65rem;
      color: var(--mid);
    }

    .cal-leg-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }

    .booking-card {
      background: #FFFFFF;
      padding: 40px 32px;
      border: 1px solid var(--border);
      position: sticky;
      top: 100px;
      box-shadow: 0 30px 60px rgba(26, 25, 23, 0.05);
    }

    .price-display {
      font-family: var(--f-serif);
      font-size: 2.2rem;
      font-weight: 400;
      margin-bottom: 4px;
      color: var(--ink);
    }

    .price-display sub {
      font-family: var(--f-sans);
      font-size: .85rem;
      font-weight: 300;
      color: var(--mid);
    }

    .rating-row {
      font-size: .78rem;
      color: var(--mid);
      margin-bottom: 28px;
    }

    .gold-stars {
      color: var(--gold);
      letter-spacing: 2px;
    }

    .f-group {
      margin-bottom: 16px;
    }

    .f-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .f-label {
      font-size: .62rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--mid);
      display: block;
      margin-bottom: 6px;
    }

    .f-input {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid rgba(26, 25, 23, 0.05);
      background: rgba(255, 255, 255, 0.5);
      color: var(--ink);
      font-family: var(--f-sans);
      font-size: .88rem;
      outline: none;
      transition: border-color .2s, background-color .2s;
    }

    .f-input:focus {
      border-color: var(--gold);
      background: #fff;
    }

    textarea.f-input {
      resize: vertical;
      min-height: 80px;
    }

    .price-breakdown {
      margin: 20px 0;
      padding: 18px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      display: none;
    }

    .price-line {
      display: flex;
      justify-content: space-between;
      font-size: .82rem;
      color: var(--mid);
      margin-bottom: 10px;
    }

    .price-line.total {
      font-size: .95rem;
      font-weight: 500;
      color: var(--ink);
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid var(--border);
      margin-bottom: 0;
    }

    .submit-btn {
      width: 100%;
      padding: 16px;
      background: var(--ink);
      color: var(--light);
      border: none;
      cursor: pointer;
      font-family: var(--f-sans);
      font-size: .75rem;
      font-weight: 500;
      letter-spacing: .16em;
      text-transform: uppercase;
      transition: background-color .3s cubic-bezier(0.16, 1, 0.3, 1), transform .3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .submit-btn:hover {
      background: var(--gold);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(184, 150, 90, .15);
    }

    .submit-btn:disabled {
      background: var(--mid);
      opacity: .6;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }

    .form-note {
      font-size: .64rem;
      color: var(--mid);
      text-align: center;
      margin-top: 12px;
    }

    /* RULES */
    #rules {
      background: var(--linen);
    }

    .rules-layout {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 64px;
      align-items: start;
    }

    .rules-intro {
      position: sticky;
      top: 120px;
    }

    .rules-lead {
      font-size: 0.95rem;
      color: var(--mid);
      line-height: 1.8;
      font-weight: 300;
    }

    .rules-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      border-top: 1px solid var(--border);
    }

    .rule-row {
      display: flex;
      gap: 24px;
      padding: 24px 0;
      border-bottom: 1px solid var(--border);
      transition: padding-left 0.3s ease, background-color 0.3s ease;
      align-items: flex-start;
    }

    .rule-row:hover {
      padding-left: 12px;
    }

    .rule-icon-wrap {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(184, 150, 90, 0.08);
      color: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    .rule-row:hover .rule-icon-wrap {
      background: var(--gold);
      color: var(--light);
    }

    .rule-icon-wrap svg {
      width: 20px;
      height: 20px;
      stroke-width: 1.5px;
    }

    .rule-row-title {
      font-family: var(--f-serif);
      font-size: 1.05rem;
      font-weight: 500;
      color: var(--ink);
      margin-bottom: 4px;
    }

    .rule-row-text {
      font-size: 0.82rem;
      color: var(--mid);
      line-height: 1.6;
    }

    @media(max-width: 768px) {
      .rules-layout {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .rules-intro {
        position: static;
      }
    }

    /* REVIEWS SLIDER */
    #reviews {
      background: var(--light);
    }

    .reviews-layout {
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 64px;
      align-items: start;
    }

    .score-big {
      font-family: var(--f-serif);
      font-size: 5.5rem;
      font-weight: 400;
      line-height: 1;
      color: var(--ink);
    }

    .score-meta {
      font-size: .65rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--mid);
      margin-top: 12px;
      line-height: 1.6;
    }

    .reviews-carousel-wrap {
      position: relative;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .reviews-carousel-track {
      min-height: 180px;
      position: relative;
    }

    .review-slide {
      opacity: 0;
      display: none;
      transition: opacity .4s ease;
      width: 100%;
    }

    .review-slide.active {
      opacity: 1;
      display: block;
    }

    .review-card {
      background: #FFFFFF;
      border: 1px solid var(--border);
      box-shadow: 0 20px 40px rgba(26, 25, 23, 0.03);
      padding: 36px 32px;
      width: 100%;
    }

    .reviewer-row {
      display: flex;
      gap: 14px;
      align-items: center;
      margin-bottom: 16px;
    }

    .reviewer-av {
      width: 38px;
      height: 38px;
      background: var(--ink);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--f-serif);
      font-size: .95rem;
      color: var(--light);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .reviewer-name {
      font-size: .85rem;
      font-weight: 500;
    }

    .reviewer-date {
      font-size: .72rem;
      color: var(--mid);
      margin-top: 1px;
    }

    .review-stars {
      color: var(--gold);
      font-size: .8rem;
      margin-bottom: 10px;
    }

    .review-text {
      font-size: .88rem;
      color: var(--mid);
      line-height: 1.8;
    }

    .reviews-carousel-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      margin-top: 16px;
    }

    .rev-control {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--ink);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color .2s, background-color .2s, color .2s;
      outline: none;
    }

    .rev-control:hover {
      border-color: var(--ink);
      background: rgba(26, 25, 23, .03);
    }

    .reviews-indicators {
      display: flex;
      gap: 8px;
    }

    .rev-indicator {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--linen);
      cursor: pointer;
      transition: background .3s;
    }

    .rev-indicator.active {
      background: var(--gold);
    }

    /* FAQ ACCORDION */
    #faq {
      background: var(--linen);
    }

    .faq-accordion {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: var(--light);
      border: 1px solid var(--border);
      overflow: hidden;
      transition: border-color .3s;
    }

    .faq-item:hover {
      border-color: var(--gold);
    }

    .faq-trigger {
      width: 100%;
      padding: 24px 28px;
      background: transparent;
      border: none;
      text-align: left;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: var(--f-serif);
      font-size: 1.05rem;
      color: var(--ink);
      cursor: pointer;
      outline: none;
    }

    .faq-icon {
      width: 18px;
      height: 18px;
      color: var(--mid);
      transition: transform .3s ease;
    }

    .faq-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      padding: 0 28px;
    }

    .faq-content p {
      font-size: .88rem;
      color: var(--mid);
      line-height: 1.7;
      padding-bottom: 24px;
    }

    .faq-item.active .faq-icon {
      transform: rotate(180deg);
      color: var(--gold);
    }

    .faq-item.active .faq-content {
      max-height: 250px;
      transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* LOCATION */
    #location {
      background: var(--light);
    }

    .location-layout {
      display: block;
    }

    #map {
      height: 480px;
      border: 1px solid var(--border);
      box-shadow: 0 10px 30px rgba(0, 0, 0, .02);
      z-index: 10;
      will-change: transform;
    }

    .map-header {
      margin-bottom: 36px;
    }

    .map-header .section-title {
      margin-bottom: 0;
    }

    /* FOOTER */
    footer {
      background: var(--ink);
      padding: 64px 6vw;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 32px;
      position: relative;
    }

    .footer-logo {
      font-family: var(--f-serif);
      font-size: 1.15rem;
      color: #F7F4F0;
      letter-spacing: .1em;
    }

    .footer-logo .omega {
      color: var(--gold);
    }

    .footer-links {
      display: flex;
      gap: 32px;
      flex-wrap: wrap;
    }

    .footer-links a {
      font-size: .68rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(237, 232, 225, .4);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-links a:hover {
      color: #F7F4F0;
    }

    .footer-connect {
      display: flex;
      gap: 16px;
      align-items: center;
    }

    .footer-connect a {
      color: rgba(237, 232, 225, .4);
      transition: color .2s, transform .2s, border-color .2s, background-color .2s;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border: 1px solid rgba(237, 232, 225, 0.15);
      border-radius: 50%;
      text-decoration: none;
    }

    .footer-connect a:hover {
      color: var(--gold);
      border-color: var(--gold);
      background: rgba(255, 255, 255, 0.03);
      transform: translateY(-2px);
    }

    .footer-copy {
      font-size: .65rem;
      color: rgba(237, 232, 225, .25);
      width: 100%;
      text-align: center;
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, .05);
      margin-top: 16px;
    }

    /* MODAL */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(26, 25, 23, .6);
      backdrop-filter: blur(8px);
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      transition: opacity .3s ease;
    }

    .modal-overlay.open {
      display: flex;
      opacity: 1;
    }

    .modal {
      background: var(--light);
      padding: 52px 40px;
      max-width: 460px;
      width: 100%;
      position: relative;
      transform: translateY(20px);
      transition: transform .3s ease;
      border: 1px solid var(--border);
    }

    .modal-overlay.open .modal {
      transform: translateY(0);
    }

    .modal-close {
      position: absolute;
      top: 20px;
      right: 24px;
      background: none;
      border: none;
      font-size: 1.3rem;
      cursor: pointer;
      color: var(--mid);
      transition: color .2s;
    }

    .modal-close:hover {
      color: var(--ink);
    }

    .modal-title {
      font-family: var(--f-serif);
      font-size: 1.6rem;
      font-weight: 400;
      margin-bottom: 10px;
      margin-top: 12px;
    }

    .modal-sub {
      font-size: .88rem;
      color: var(--mid);
      margin-bottom: 28px;
      line-height: 1.7;
    }

    /* DEVELOPER CONFIG FALLBACK PANEL */
    .dev-config-trigger {
      position: absolute;
      bottom: 8px;
      right: 16px;
      font-size: .6rem;
      color: rgba(237, 232, 225, .12);
      text-decoration: none;
      font-family: var(--f-mono);
      cursor: pointer;
      transition: color .2s;
    }

    .dev-config-trigger:hover {
      color: var(--gold);
    }

    .dev-input-group {
      margin-bottom: 16px;
      text-align: left;
    }

    .dev-label {
      font-size: .6rem;
      font-weight: 600;
      color: var(--mid);
      text-transform: uppercase;
      letter-spacing: .12em;
      display: block;
      margin-bottom: 4px;
    }

    .dev-input {
      width: 100%;
      padding: 10px;
      font-family: var(--f-mono);
      font-size: .72rem;
      border: 1px solid var(--border);
      background: var(--linen);
      color: var(--ink);
      outline: none;
    }

    .dev-input:focus {
      border-color: var(--gold);
    }

    /* LIGHTBOX GALLERY */
    .lightbox-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(26, 25, 23, .95);
      backdrop-filter: blur(10px);
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity .3s ease;
    }

    .lightbox-overlay.open {
      display: flex;
      opacity: 1;
    }

    .lightbox-content {
      position: relative;
      max-width: 90vw;
      max-height: 85vh;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .lightbox-content img {
      max-width: 100%;
      max-height: 75vh;
      object-fit: contain;
      box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
      border: 1px solid rgba(255, 255, 255, .05);
    }

    .lightbox-close {
      position: absolute;
      top: -42px;
      right: 0;
      font-size: 2.2rem;
      color: #fff;
      cursor: pointer;
      transition: color .2s;
    }

    .lightbox-close:hover {
      color: var(--gold);
    }

    .lightbox-prev,
    .lightbox-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(26, 25, 23, .6);
      border: 1px solid rgba(255, 255, 255, .1);
      color: #fff;
      font-size: 1.5rem;
      padding: 12px 18px;
      cursor: pointer;
      transition: background-color .2s, border-color .2s, color .2s;
    }

    .lightbox-prev:hover,
    .lightbox-next:hover {
      background: var(--gold);
      border-color: var(--gold);
    }

    .lightbox-prev {
      left: -80px;
    }

    .lightbox-next {
      right: -80px;
    }

    .lightbox-caption {
      color: rgba(255, 255, 255, .8);
      font-family: var(--f-serif);
      font-size: 1.05rem;
      margin-top: 16px;
      text-align: center;
    }

    /* Mobile Menu Button */
    .menu-toggle-btn {
      background: transparent;
      border: 1px solid rgba(26, 25, 23, .2);
      color: var(--ink);
      padding: 6px;
      cursor: pointer;
      display: none;
      align-items: center;
      justify-content: center;
      transition: border-color .2s, background-color .2s;
      outline: none;
      margin-left: 8px;
    }

    .menu-toggle-btn:hover {
      border-color: var(--ink);
      background: rgba(26, 25, 23, .03);
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
      position: fixed;
      inset: 0;
      background: var(--light);
      z-index: 150;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mobile-menu-overlay.open {
      transform: translateX(0);
    }

    .mobile-menu-close {
      position: absolute;
      top: 24px;
      right: 6vw;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--ink);
      transition: color .2s;
    }

    .mobile-menu-close:hover {
      color: var(--gold);
    }

    .mobile-menu-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 32px;
    }

    .mobile-menu-links a {
      font-family: var(--f-serif);
      font-size: 1.8rem;
      text-decoration: none;
      color: var(--ink);
      letter-spacing: .05em;
      transition: color 0.3s;
    }

    .mobile-menu-links a:hover {
      color: var(--gold);
    }

    .mobile-menu-links .mobile-menu-cta {
      font-family: var(--f-sans);
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: .15em;
      text-transform: uppercase;
      background: var(--ink);
      color: var(--light);
      padding: 14px 44px;
      margin-top: 12px;
      transition: background-color .3s, transform .3s;
    }

    .mobile-menu-links .mobile-menu-cta:hover {
      background: var(--gold);
      color: var(--light);
      transform: translateY(-2px);
    }

    /* RESPONSIVE */
    @media(max-width:980px) {
      .menu-toggle-btn {
        display: inline-flex;
      }

      .booking-layout {
        grid-template-columns: 1fr;
      }

      .booking-card {
        position: static;
        max-width: 100%;
      }

      .reviews-layout {
        grid-template-columns: 1fr;
      }

      .location-layout {
        grid-template-columns: 1fr;
      }

      .nav-links {
        display: none;
      }

      .hero-stats {
        gap: 32px;
      }

      .lightbox-prev {
        left: 10px;
      }

      .lightbox-next {
        right: 10px;
      }

      .carousel-control.prev {
        left: 10px;
      }

      .carousel-control.next {
        right: 10px;
      }

      .gallery-card {
        flex: 0 0 calc((100% - 20px) / 2);
      }
    }

    @media(max-width:640px) {
      #map {
        height: 320px;
      }

      .hero-logo-img {
        width: clamp(220px, 60vw, 420px);
      }

      .f-row {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .rules-grid {
        grid-template-columns: 1fr;
      }

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

      .gallery-card {
        flex: 0 0 100%;
      }

      .reviews-grid {
        grid-template-columns: 1fr;
      }

      .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        position: static;
        margin-top: 40px;
      }

      .hero {
        min-height: auto;
        padding-bottom: 60px;
      }

      .map-header {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    .modal .btn-primary {
      width: 100%;
      padding: 14px 28px;
      background: var(--ink);
      color: var(--light);
      border: 1px solid var(--ink);
      cursor: pointer;
      font-family: var(--f-sans);
      font-size: .75rem;
      font-weight: 500;
      letter-spacing: .16em;
      text-transform: uppercase;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      display: inline-block;
      text-align: center;
      text-decoration: none;
    }

    .modal .btn-primary:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--light);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(184, 150, 90, .15);
    }

    .f-input.invalid {
      border-color: #A94442 !important;
      background: rgba(169, 68, 66, 0.02) !important;
      animation: inputShake 0.4s ease;
    }

    @keyframes inputShake {

      0%,
      100% {
        transform: translateX(0);
      }

      20%,
      60% {
        transform: translateX(-4px);
      }

      40%,
      80% {
        transform: translateX(4px);
      }
    }

    .modal {
      text-align: center;
    }

    /* Custom Branded Checkbox & GDPR */
    .gdpr-wrapper {
      margin-top: 22px;
      margin-bottom: 22px;
      user-select: none;
    }

    .gdpr-label {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      cursor: pointer;
    }

    /* Hide native checkbox */
    .gdpr-label input[type="checkbox"] {
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
    }

    /* Custom checkbox box */
    .gdpr-checkbox {
      width: 22px;
      height: 22px;
      border: 1px solid var(--border);
      background-color: transparent;
      border-radius: 4px;
      flex-shrink: 0;
      position: relative;
      transition: background-color 0.2s, border-color 0.2s, transform 0.1s;
    }

    /* Checked state style */
    .gdpr-label input[type="checkbox"]:checked ~ .gdpr-checkbox {
      background-color: var(--ink);
      border-color: var(--ink);
    }

    /* Custom checkmark check */
    .gdpr-checkbox::after {
      content: '';
      position: absolute;
      display: none;
      left: 7px;
      top: 3px;
      width: 6px;
      height: 11px;
      border: solid var(--light);
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
    }

    .gdpr-label input[type="checkbox"]:checked ~ .gdpr-checkbox::after {
      display: block;
    }

    .gdpr-text {
      font-size: 0.76rem;
      line-height: 1.45;
      color: var(--mid);
      transition: color 0.2s;
    }

    .gdpr-label input[type="checkbox"]:checked ~ .gdpr-text {
      color: var(--ink);
    }

    /* Springy active state feedback for mobile touch */
    .gdpr-label:active .gdpr-checkbox {
      transform: scale(0.88);
    }

    /* Touch active state feedback on mobile devices where hover doesn't exist */
    @media (hover: none) {
      .btn-primary:active,
      .btn-ghost:active,
      .submit-btn:active,
      .carousel-control:active,
      .cal-nav:active,
      .faq-trigger:active,
      .lightbox-control:active {
        opacity: 0.8;
        transform: scale(0.96) !important;
      }
      .cal-day:active:not(.empty):not(.past):not(.booked) {
        background-color: var(--linen) !important;
        transform: scale(0.9);
      }
      .nav-links a:active,
      .footer-nav a:active {
        color: var(--ink) !important;
      }
    }

    /* Theme Toggle Button */
    .theme-toggle-btn {
      background: transparent;
      border: 1px solid rgba(26, 25, 23, .2);
      color: var(--ink);
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: border-color .2s, background-color .2s, transform 0.15s;
      outline: none;
    }

    .theme-toggle-btn:hover {
      border-color: var(--ink);
      background: rgba(26, 25, 23, .03);
    }

    /* MANUAL DARK THEME (ACTIVE WITH .dark-theme CLASS ON BODY) */
    body.dark-theme {
      --light: #161513; /* Deep warm charcoal page background */
      --ink: #F7F4F0;   /* Light warm cream text */
      --linen: #22211F; /* Medium dark slate sections */
      --border: rgba(247, 244, 240, 0.08); /* Soft light border */
      --mid: #A5A09C;   /* Muted secondary text */
      background-color: var(--light);
      color: var(--ink);
    }

    body.dark-theme nav {
      background: rgba(22, 21, 19, 0.85);
      border-bottom: 1px solid var(--border);
    }

    body.dark-theme nav.scrolled {
      background: rgba(22, 21, 19, 0.98);
    }

    body.dark-theme .nav-logo {
      color: var(--ink);
    }

    body.dark-theme .nav-links a {
      color: var(--mid);
    }

    body.dark-theme .nav-links a:hover {
      color: var(--ink);
    }

    body.dark-theme .lang-toggle-btn,
    body.dark-theme .theme-toggle-btn {
      border-color: rgba(247, 244, 240, 0.3);
      color: var(--ink);
    }

    body.dark-theme .lang-toggle-btn:hover,
    body.dark-theme .theme-toggle-btn:hover {
      border-color: var(--ink);
      background: rgba(247, 244, 240, 0.05);
    }

    body.dark-theme .menu-toggle-btn {
      border-color: rgba(247, 244, 240, 0.3);
      color: var(--ink);
    }

    body.dark-theme .menu-toggle-btn:hover {
      border-color: var(--ink);
      background: rgba(247, 244, 240, 0.05);
    }

    /* Cards and Blocks */
    body.dark-theme .booking-card,
    body.dark-theme .review-card,
    body.dark-theme .reviews-score-block,
    body.dark-theme .cal-wrap {
      background: #1C1B19 !important;
      border-color: var(--border) !important;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25) !important;
    }

    /* Inputs */
    body.dark-theme .f-input {
      background: rgba(26, 25, 23, 0.5) !important;
      border-color: var(--border) !important;
      color: var(--ink) !important;
    }

    body.dark-theme .f-input:focus {
      border-color: var(--gold) !important;
      background: rgba(26, 25, 23, 0.8) !important;
    }

    body.dark-theme .f-input::placeholder {
      color: rgba(247, 244, 240, 0.35);
    }

    /* Calendar custom styling */
    body.dark-theme .cal-head {
      background: #22211F !important;
      color: var(--ink) !important;
    }

    body.dark-theme .cal-nav {
      color: var(--ink) !important;
    }

    body.dark-theme .cal-day {
      color: var(--ink);
    }

    body.dark-theme .cal-day:hover:not(.booked):not(.past):not(.empty) {
      background: rgba(184, 150, 90, 0.15);
    }

    body.dark-theme .cal-day.booked {
      color: #555552;
    }

    body.dark-theme .cal-day.past {
      color: #444441;
    }

    body.dark-theme .cal-day.empty {
      opacity: 0.25;
    }

    body.dark-theme .cal-day.today {
      border-color: var(--gold);
    }

    body.dark-theme .cal-day.selected {
      background: var(--ink) !important;
      color: var(--light) !important;
    }

    body.dark-theme .cal-day.in-range {
      background: rgba(184, 150, 90, 0.18) !important;
      color: var(--gold);
    }

    body.dark-theme .cal-leg-dot {
      border-color: var(--border) !important;
    }

    /* Map tiles dark invert filter */
    body.dark-theme #map {
      filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
      border-color: var(--border) !important;
    }

    /* Scrollbar */
    body.dark-theme ::-webkit-scrollbar-track {
      background: var(--light);
    }

    body.dark-theme ::-webkit-scrollbar-thumb {
      background: #2D2C2A;
    }

    /* Modals */
    body.dark-theme .modal {
      background: #1C1B19 !important;
      border-color: var(--border) !important;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4) !important;
      color: var(--ink);
    }

    body.dark-theme .modal-close {
      color: var(--mid);
    }

    body.dark-theme .modal-close:hover {
      color: var(--ink);
    }

    /* Mobile Drawer */
    body.dark-theme .mobile-menu-drawer {
      background: #161513;
      box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

    body.dark-theme .mobile-menu-close-btn {
      color: var(--ink);
    }

    body.dark-theme .mobile-menu-links a {
      color: var(--ink);
    }

    body.dark-theme .mobile-menu-links a:hover {
      color: var(--gold);
    }

    /* List item dividers */
    body.dark-theme .rule-row {
      border-bottom-color: var(--border);
    }

    body.dark-theme .faq-item {
      background: #1C1B19 !important;
      border-color: var(--border) !important;
    }

    body.dark-theme .faq-item:hover {
      border-color: var(--gold) !important;
    }

    body.dark-theme .faq-trigger {
      color: var(--ink);
    }

    /* Fix the amenity hover contrast issue in dark mode */
    body.dark-theme .amenity:hover {
      background: #1C1B19 !important;
    }

    /* Fix footer background turning white in dark mode */
    body.dark-theme footer {
      background: #11100E !important;
    }
