  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --gold: #B5986A;
    --gold-light: #D4B896;
    --gold-dark: #8C7350;
    --cream: #FAF8F4;
    --warm-white: #F5F1EB;
    --charcoal: #1C1C1A;
    --charcoal-mid: #3A3935;
    --gray-text: #6B6862;
    --gray-light: #E8E4DC;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
    --nav-h: 80px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--charcoal);
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--nav-h);
    background: rgba(250,248,244,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--gray-light);
    display: flex; align-items: center;
    padding: 0 48px;
    transition: background 0.3s;
  }
  .nav-logo {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--charcoal);
    position: absolute;
    left: 48px;
    white-space: nowrap;
  }
  .nav-logo a { text-decoration: none; color: inherit; }
  .nav-logo span { color: var(--gold); }

  /* Navbar brand logo image (default theme) */
  .nav-brand .brand-logo,
  .nav-logo .brand-logo {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
  }
  .nav-links { 
    display: flex; 
    gap: 24px; 
    align-items: center;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-links a {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--charcoal-mid);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 400;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--gold); }
  .btn-book {
    padding: 10px 20px;
    background: var(--charcoal);
    color: var(--cream) !important;
    font-size: 12px !important;
    letter-spacing: 0.1em !important;
    position: absolute;
    right: 48px;
    white-space: nowrap;
  }
  .btn-book:hover { background: var(--gold) !important; color: var(--cream) !important; }
  
  /* Hide Book Now button in nav on mobile (it's in the menu) */
  @media (max-width: 900px) {
    .btn-book {
      display: none;
    }
  }
  
  /* Hamburger Menu */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
    z-index: 1001;
    position: relative;
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
  }
  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s;
    margin: 0;
  }
  .nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    height: 100vh;
    display: flex; align-items: center; justify-content: center;
    z-index: auto;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background-color: transparent;
    z-index: 0;
    /* background-image is set inline on .hero section via Liquid template */
  }
  .hero-pattern {
    position: absolute; inset: 0; opacity: 0.04;
    background-image:
      repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(181,152,106,1) 40px, rgba(181,152,106,1) 41px),
      repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(181,152,106,1) 40px, rgba(181,152,106,1) 41px);
  }
  .hero-content {
    position: relative; z-index: 2;
    text-align: center;
    color: var(--cream);
    max-width: 700px;
    padding: 0 24px;
  }

  /* Hero background video (uploaded via builder 'video' field). */
  .hero.has-hero-video > .hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
  }
  .hero.has-hero-video > .hero-bg {
    background-image: linear-gradient(180deg, rgba(9,11,18,0.35) 0%, rgba(9,11,18,0.65) 100%);
    z-index: 1;
  }
  @media (prefers-reduced-motion: reduce) {
    .hero.has-hero-video > .hero-video { display: none; }
  }

  /* Fallback renderer path (BuildHeroSection when no Liquid template). */
  [data-section="hero"] { position: relative; overflow: hidden; }
  [data-section="hero"] > [data-part="hero-media"] {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    z-index: 0;
  }
  [data-section="hero"][data-has-video="true"] > [data-part="hero-video"] {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
  }
  [data-section="hero"][data-has-video="true"] > [data-part="hero-overlay"] {
    position: absolute; inset: 0;
    z-index: 2;
    pointer-events: none;
  }
  [data-section="hero"] > [data-part="shell"] { position: relative; z-index: 3; }
  @media (prefers-reduced-motion: reduce) {
    [data-section="hero"][data-has-video="true"] > [data-part="hero-video"] { display: none; }
  }
  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
    display: block;
  }
  .hero-title {
    font-family: var(--serif);
    font-size: clamp(40px, 7vw, 96px);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    word-wrap: break-word;
  }
  .hero-title em { font-style: italic; color: var(--gold-light); }
  .hero-sub {
    font-size: 15px;
    color: rgba(250,248,244,0.65);
    max-width: 380px;
    margin: 0 auto 48px;
    font-weight: 300;
    line-height: 1.8;
  }

  /* ─── AVAILABILITY BAR ─── */
  .avail-bar {
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: min(900px, calc(100% - 96px));
    max-width: calc(100% - 96px);
    background: white;
    box-shadow: 0 12px 48px rgba(0,0,0,0.12);
    display: flex; align-items: stretch;
    border-radius: 2px;
    flex-wrap: wrap;
  }
  .avail-field {
    flex: 1;
    padding: 20px 24px;
    border-right: 1px solid var(--gray-light);
    display: flex; flex-direction: column; gap: 6px;
  }
  .avail-field:last-of-type { border-right: none; }
  .avail-label {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-text);
    font-weight: 500;
  }
  .avail-field input, .avail-field select {
    border: none;
    outline: none;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--charcoal);
    background: transparent;
    cursor: pointer;
    width: 100%;
    appearance: none;
  }
  .avail-field select { cursor: pointer; }
  .avail-btn {
    padding: 0 36px;
    background: var(--gold);
    color: white;
    border: none;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    font-weight: 500;
    border-radius: 0 2px 2px 0;
    white-space: nowrap;
  }
  .avail-btn:hover { background: var(--gold-dark); }

  /* ─── SECTION COMMONS ─── */
  .section { padding: 100px 48px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
  }
  .section-title {
    font-family: var(--serif);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 24px;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-body {
    font-size: 15px;
    color: var(--gray-text);
    max-width: 520px;
    line-height: 1.9;
  }
  .divider {
    width: 48px; height: 1px;
    background: var(--gold);
    margin: 32px 0;
  }

  /* ─── HOME SECTIONS ─── */
  .home-intro { background: var(--cream); padding-top: 140px; }
  .home-intro .section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  .home-intro-img {
    aspect-ratio: 3/4;
    background: var(--charcoal-mid);
    position: relative; overflow: hidden;
    display: flex; align-items: flex-end;
  }
  .home-intro-img-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 32px;
    background: linear-gradient(transparent, rgba(28,28,26,0.8));
    color: white;
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
  }
  .img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(160deg, #2A2520, #3D3830, #1C1C1A);
    color: rgba(181,152,106,0.4);
    font-family: var(--serif);
    font-size: 72px;
    font-style: italic;
    position: absolute; inset: 0;
  }

  /* ─── ROOMS GRID ─── */
  .rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--gray-light);
    margin-top: 64px;
  }
  /* ─── ROOMS CAROUSEL ─── */
  .rooms-carousel {
    display: flex;
    gap: 24px;
    margin-top: 64px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 24px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .rooms-carousel::-webkit-scrollbar {
    display: none;
  }
  .rooms-carousel > * {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
    border: 1px solid var(--gray-light);
  }
  @media (max-width: 900px) {
    .rooms-carousel > * { flex: 0 0 calc(50% - 12px); }
  }
  @media (max-width: 600px) {
    .rooms-carousel > * { flex: 0 0 calc(85%); }
  }
  .room-card {
    background: var(--cream);
    cursor: pointer;
    transition: opacity 0.2s;
    overflow: hidden;
  }
  .room-card:hover { opacity: 0.9; }
  .room-thumb {
    aspect-ratio: 4/3;
    background: var(--charcoal-mid);
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .room-thumb-bg {
    position: absolute; inset: 0;
    transition: transform 0.4s ease;
  }
  .room-card:hover .room-thumb-bg { transform: scale(1.04); }
  .room-info { padding: 28px 28px 32px; }
  .room-type {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }
  .room-name {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--charcoal);
  }
  .room-desc {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 20px;
  }
  .room-price {
    display: flex; align-items: baseline; gap: 4px;
  }
  .room-price-num {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--charcoal);
  }
  .room-price-suffix { font-size: 12px; color: var(--gray-text); }

  /* ─── GALLERY ─── */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 80px;
    gap: 4px;
    margin-top: 64px;
  }
  .gallery-item {
    background: var(--charcoal-mid);
    overflow: hidden;
    cursor: pointer;
    position: relative;
  }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(181,152,106,0.25);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex; align-items: center; justify-content: center;
  }
  .gallery-overlay span {
    font-family: var(--serif);
    font-size: 13px;
    color: white;
    letter-spacing: 0.1em;
    font-style: italic;
  }

  /* ─── PAGE HEADER BANNER ─── */
  .page-header {
    height: 45vh;
    background: var(--charcoal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: var(--nav-h);
    text-align: center;
    padding: 48px;
    position: relative;
    overflow: hidden;
  }
  .page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(181,152,106,0.04) 60px,
      rgba(181,152,106,0.04) 61px
    );
  }
  .page-header-title {
    font-family: var(--serif);
    font-size: clamp(44px, 6vw, 72px);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.1;
    position: relative;
  }
  .page-header-title em { font-style: italic; color: var(--gold-light); }
  .page-header-sub {
    font-size: 14px;
    color: rgba(250,248,244,0.5);
    margin-top: 16px;
    letter-spacing: 0.05em;
    position: relative;
  }
  .breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250,248,244,0.4);
    margin-bottom: 20px;
    position: relative;
  }
  .breadcrumb a { color: var(--gold); text-decoration: none; }
  .breadcrumb a:hover { text-decoration: underline; }
  .breadcrumb-sep { color: rgba(250,248,244,0.2); }

  /* ─── FACILITIES — PAGE GRID (facilities page) ─── */
  .facilities-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--gray-light);
    margin-top: 64px;
  }
  .facility-card {
    background: var(--cream);
    padding: 48px 36px;
    transition: background 0.25s;
    cursor: default;
  }
  .facility-card:hover { background: var(--charcoal); }
  .facility-card:hover .facility-icon,
  .facility-card:hover .facility-name,
  .facility-card:hover .facility-desc { color: var(--cream); }
  .facility-icon {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
    transition: color 0.25s;
  }
  .facility-name {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--charcoal);
    transition: color 0.25s;
  }
  .facility-desc {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.7;
    transition: color 0.25s;
  }
  .facility-card:hover .facility-desc { color: rgba(250,248,244,0.6); }

  /* ─── FACILITIES — HOME SLIDER ─── */
  .facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--gray-light);
    margin-top: 64px;
  }
  .facilities-slider-wrap {
    position: relative;
    margin-top: 48px;
    overflow: hidden;
  }
  .facilities-slider {
    display: flex;
    gap: 1px;
    background: var(--gray-light);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .facilities-slider::-webkit-scrollbar { display: none; }
  .facility-slide {
    flex: 0 0 calc(25% - 1px);
    background: var(--cream);
    padding: 48px 36px;
    scroll-snap-align: start;
    transition: background 0.25s;
    cursor: default;
    box-sizing: border-box;
  }
  .facility-slide:hover { background: var(--charcoal); }
  .facility-slide:hover .facility-icon,
  .facility-slide:hover .facility-name,
  .facility-slide:hover .facility-desc { color: var(--cream); }
  .facility-slide .facility-icon {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
    transition: color 0.25s;
  }
  .facility-slide .facility-name {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--charcoal);
    transition: color 0.25s;
  }
  .facility-slide .facility-desc {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.7;
    transition: color 0.25s;
  }
  .facility-slide:hover .facility-desc { color: rgba(250,248,244,0.6); }
  .facilities-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--charcoal);
    color: var(--cream);
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    z-index: 2;
    transition: background 0.2s;
  }
  .facilities-slider-btn:hover { background: var(--gold); }
  .facilities-slider-prev { left: 0; }
  .facilities-slider-next { right: 0; }

  /* Canvas editor overrides for facilities slider */
  body.cms-theme-canvas .facilities-slider {
    flex-wrap: wrap;
    overflow: visible;
    background: var(--gray-light);
    gap: 1px;
  }
  body.cms-theme-canvas .facility-slide {
    flex: 0 0 calc(50% - 1px);
    scroll-snap-align: unset;
  }
  body.cms-theme-canvas .facilities-slider-btn { display: none; }

  /* ─── ABOUT PAGE ─── */
  .about-section { background: var(--cream); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--gray-light);
    margin-top: 64px;
  }
  .about-stat {
    background: var(--cream);
    padding: 36px;
  }
  .about-stat-num {
    font-family: var(--serif);
    font-size: 52px;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1;
    margin-bottom: 8px;
  }
  .about-stat-num em { font-style: normal; color: var(--gold); }
  .about-stat-label {
    font-size: 12px;
    color: var(--gray-text);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  @media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-stats { grid-template-columns: 1fr 1fr; }
  }

  /* ─── BLOG ─── */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 64px;
  }
  .blog-card { cursor: pointer; }
  .blog-thumb {
    aspect-ratio: 16/10;
    background: var(--charcoal-mid);
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
  }
  .blog-date {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
  }
  .blog-title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--charcoal);
    margin-bottom: 12px;
    transition: color 0.2s;
  }
  .blog-card:hover .blog-title { color: var(--gold); }
  .blog-excerpt { font-size: 13px; color: var(--gray-text); line-height: 1.7; }
  .blog-link {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 16px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
    font-weight: 500;
    transition: color 0.2s;
  }
  .blog-card:hover .blog-link { color: var(--gold); }
  .blog-link::after { content: '→'; }

  /* ─── TESTIMONIALS ─── */
  .testimonials-slider-container {
    position: relative;
    background: var(--charcoal);
    padding: 80px 48px;
    overflow: hidden;
  }
  .testimonials-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
  }
  .testimonials-slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }
  .testimonials-slide {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .testimonial-text {
    font-family: var(--serif);
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    max-width: 800px;
    margin: 0 auto 24px;
    line-height: 1.6;
  }
  .testimonial-author {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
  }
  .testimonials-arrow {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--cream);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
  }
  .testimonials-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
  }
  
  /* Canvas Editor Specific Layout Overrides */
  body.cms-theme-canvas .testimonials-slider {
    display: flex;
    flex-direction: column;
    overflow: visible;
    gap: 40px;
  }
  body.cms-theme-canvas .testimonials-slide {
    flex: none;
    width: 100%;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
  }
  body.cms-theme-canvas .testimonials-slide:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  body.cms-theme-canvas .testimonials-controls {
    display: none !important;
  }

  /* ─── CTA STRIP ─── */
  .cta-strip {
    background: var(--gold);
    padding: 72px 48px;
    text-align: center;
  }
  .cta-strip-title {
    font-family: var(--serif);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 300;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
  }
  .cta-strip-title em { font-style: italic; }
  .btn-white {
    display: inline-block;
    padding: 14px 40px;
    background: white;
    color: var(--charcoal);
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: background 0.2s, color 0.2s;
    font-weight: 500;
    text-decoration: none;
  }
  .btn-white:hover { background: var(--charcoal); color: white; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--charcoal);
    color: rgba(250,248,244,0.6);
    padding: 80px 48px 40px;
  }
  .footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(250,248,244,0.08);
    margin-bottom: 40px;
  }
  .footer-logo {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 20px;
  }
  .footer-logo span { color: var(--gold); }
  .footer-tagline { font-size: 14px; line-height: 1.8; max-width: 260px; }
  .footer-heading {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 20px;
    font-weight: 500;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links li a {
    font-size: 13px;
    color: rgba(250,248,244,0.5);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links li a:hover { color: var(--gold); }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
  }
  .footer-bottom-links { display: flex; gap: 24px; }
  .footer-bottom-links a { color: rgba(250,248,244,0.4); text-decoration: none; }
  .footer-bottom-links a:hover { color: var(--gold); }

  /* ─── ROOM GRADIENT THUMBS ─── */
  .thumb-1 { background: linear-gradient(160deg, #2A2520, #4A3D2F, #1C1C1A); }
  .thumb-2 { background: linear-gradient(160deg, #1C2A2A, #2A3D3A, #1A1C1C); }
  .thumb-3 { background: linear-gradient(160deg, #28201C, #3D2A22, #1C1810); }
  .thumb-4 { background: linear-gradient(160deg, #201C2A, #362D42, #1A1820); }
  .thumb-5 { background: linear-gradient(160deg, #1A2228, #2A3540, #181C20); }
  .thumb-6 { background: linear-gradient(160deg, #281C20, #42282D, #201018); }
  .thumb-blog1 { background: linear-gradient(160deg, #2A2520, #4A3D2F); }
  .thumb-blog2 { background: linear-gradient(160deg, #1C2A28, #2A3D38); }
  .thumb-blog3 { background: linear-gradient(160deg, #24201C, #382E28); }

  /* ─── CONTACT FORM ─── */
  .contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .contact-info-item { display: flex; gap: 20px; margin-bottom: 36px; align-items: flex-start; }
  .contact-icon { width: 44px; height: 44px; border: 1px solid var(--gray-light); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--gold); flex-shrink: 0; }
  .contact-info-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-text); margin-bottom: 6px; }
  .contact-info-value { font-family: var(--serif); font-size: 17px; color: var(--charcoal); line-height: 1.5; }
  .contact-form { display: flex; flex-direction: column; gap: 20px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 8px; }
  .form-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-text); }
  .form-input { border: none; border-bottom: 1px solid var(--gray-light); background: transparent; padding: 12px 0; font-family: var(--sans); font-size: 14px; color: var(--charcoal); outline: none; transition: border-color 0.2s; width: 100%; }
  .form-input:focus { border-color: var(--gold); }
  .form-input::placeholder { color: var(--gray-light); }
  textarea.form-input { resize: vertical; min-height: 100px; }
  .btn-submit { align-self: flex-start; padding: 14px 40px; background: var(--charcoal); color: var(--cream); border: none; font-family: var(--sans); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; font-weight: 500; margin-top: 8px; }
  .btn-submit:hover { background: var(--gold); }
  .map-placeholder { height: 320px; background: linear-gradient(145deg, #1C1C1A, #3A3935); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; margin-top: 48px; }
  .map-pin { width: 48px; height: 48px; border-radius: 50% 50% 50% 0; background: var(--gold); transform: rotate(-45deg); box-shadow: 0 4px 20px rgba(181,152,106,0.4); position: relative; }
  .map-pin::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 16px; height: 16px; border-radius: 50%; background: white; }

  @media (max-width: 900px) {
    nav { 
      padding: 0 16px;
      justify-content: flex-start;
    }
    .nav-logo { 
      left: 16px;
      font-size: 20px;
    }
    .nav-hamburger { 
      display: flex !important;
      z-index: 1002;
      position: relative;
      background: transparent;
    }
    .nav-hamburger span {
      background: var(--charcoal) !important;
      opacity: 1 !important;
    }
    .nav-links {
      position: fixed;
      top: var(--nav-h);
      left: 0;
      right: 0;
      background: rgba(250,248,244,0.98);
      backdrop-filter: blur(8px);
      flex-direction: column;
      gap: 0;
      padding: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      border-bottom: 1px solid transparent;
      z-index: 9999;
    }
    .nav-links.active {
      max-height: 600px;
      padding: 24px 0;
      border-bottom-color: var(--gray-light);
      display: flex !important;
    }
    .nav-links a:not(.btn-book) {
      display: none;
    }
    .nav-links.active a:not(.btn-book) {
      display: flex !important;
      padding: 16px 24px;
      width: 100%;
      text-align: center;
      border-bottom: 1px solid var(--gray-light);
    }
    .nav-links a:last-of-type { border-bottom: none; }
    .btn-book {
      position: static;
      display: none;
    }
    .nav-links.active .btn-book {
      display: block;
      margin: 16px 24px 0;
      width: calc(100% - 48px);
      text-align: center;
    }
    .home-intro .section-inner { grid-template-columns: 1fr; gap: 40px; }
    .rooms-grid, .facilities-grid, .facilities-page-grid, .blog-grid, .contact-layout { grid-template-columns: 1fr; gap: 60px; }
    .footer-grid { grid-template-columns: 1fr; }
    .page-header { height: auto; min-height: 35vh; padding: 80px 24px; }
    .page-header-title { font-size: clamp(32px, 8vw, 48px); }
    .facility-slide { flex: 0 0 calc(85%); }
    .avail-bar { 
      position: relative;
      flex-direction: column; 
      bottom: auto;
      left: auto;
      transform: none;
      width: calc(100% - 32px);
      max-width: 100%;
      margin: 32px auto 0;
    }
    .avail-field { border-right: none; border-bottom: 1px solid var(--gray-light); padding: 14px 16px; }
    .avail-btn { border-radius: 0 0 2px 2px; padding: 14px; }
    .hero { 
      height: auto; 
      min-height: 100vh;
      padding: 100px 16px 32px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .hero-content { 
      margin-bottom: 24px;
      padding: 0 16px;
    }
    .hero-title {
      font-size: clamp(32px, 8vw, 48px);
    }
  }
