*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --ink: #22231A;
    --olive: #616044;
    --sage: #879571;
    --sage-deep: #6B7857;
    --taupe: #B1ABA1;
    --stone: #D4D0CB;
    --stone-light: #EBE9E3;
    --white: #FFFFFF;
    --peach: #E89A6A;
    --peach-light: #F2B384;
    --warm-white: #FFFFFF;
    --ember: #E89A6A;
    --ember-light: #F2B384;
    --gold: #6B7857;
    --gold-pale: #879571;
    --cream: #D4D0CB;
    --muted: #7A7D6D;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
  }
  html { scroll-behavior: smooth; }
  body { background: var(--ink); color: var(--warm-white); font-family: var(--sans); font-size: 16px; line-height: 1.7; overflow-x: hidden; }

  /* HEADER (same as rooms.html) */
  .site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: linear-gradient(to bottom, rgba(34,35,26,0.95) 0%, rgba(34,35,26,0.85) 70%, rgba(34,35,26,0) 100%); backdrop-filter: blur(6px); transition: background 0.3s; }
  .site-header.scrolled { background: rgba(34,35,26,0.97); border-bottom: 1px solid rgba(255,255,255,0.06); }
  .header-inner { padding: 1rem 3rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; max-width: 1500px; margin: 0 auto; }
  .brand { display: flex; align-items: center; gap: 0.85rem; text-decoration: none; flex-shrink: 0; }
  .brand-logo { max-height: 64px; width: auto; transition: opacity 0.25s; }
  .brand:hover .brand-logo { opacity: 0.85; }
  .brand-name { font-family: var(--serif); font-size: 0.95rem; font-weight: 300; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-pale); white-space: nowrap; }
  .primary-nav ul { list-style: none; display: flex; gap: 2.2rem; align-items: center; }
  .primary-nav a { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cream); text-decoration: none; transition: color 0.25s; position: relative; padding: 0.4rem 0; }
  .primary-nav a:hover { color: var(--ember-light); }
  .primary-nav a.current { color: var(--ember-light); }
  .primary-nav a.current::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--ember); }
  .header-actions { display: flex; gap: 1rem; align-items: center; flex-shrink: 0; }
  .header-phone { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-pale); text-decoration: none; transition: color 0.25s; }
  .header-phone:hover { color: var(--ember-light); }
  .header-cta { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; background: var(--ember); text-decoration: none; padding: 0.7rem 1.5rem; border-radius: 2px; transition: background 0.3s, transform 0.2s; }
  .header-cta:hover { background: var(--ember-light); transform: translateY(-1px); }
  .nav-toggle { display: none; background: transparent; border: 1px solid rgba(255,255,255,0.18); width: 44px; height: 44px; border-radius: 2px; cursor: pointer; padding: 0; flex-direction: column; align-items: center; justify-content: center; gap: 5px; transition: border-color 0.25s; }
  .nav-toggle:hover { border-color: var(--ember); }
  .nav-toggle span { width: 18px; height: 1.5px; background: var(--gold-pale); transition: transform 0.3s, opacity 0.2s; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .mobile-menu { position: fixed; inset: 0; background: rgba(34,35,26,0.98); backdrop-filter: blur(10px); z-index: 99; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; opacity: 0; pointer-events: none; transition: opacity 0.35s; padding: 6rem 2rem 3rem; }
  .mobile-menu.open { opacity: 1; pointer-events: auto; }
  .mobile-menu ul { list-style: none; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
  .mobile-menu a { font-family: var(--serif); font-size: 1.7rem; font-weight: 300; color: var(--warm-white); text-decoration: none; transition: color 0.25s; }
  .mobile-menu a:hover { color: var(--gold-pale); }
  .mobile-menu .mm-cta { background: var(--ember); color: #fff; font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase; padding: 1rem 2.5rem; border-radius: 2px; }
  .mobile-menu .mm-phone { font-family: var(--sans); font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-pale); }
  .mobile-menu .mm-divider { width: 60px; height: 1px; background: rgba(255,255,255,0.15); }

  /* BREADCRUMBS */
  .breadcrumbs { padding: 8rem 6rem 1.5rem; max-width: 1500px; margin: 0 auto; }
  .breadcrumbs ol { list-style: none; display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; }
  .breadcrumbs li { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
  .breadcrumbs a { color: var(--cream); text-decoration: none; }
  .breadcrumbs a:hover { color: var(--ember-light); }
  .breadcrumbs li + li::before { content: '/'; color: var(--ember); margin-right: 0.6rem; }

  /* HERO GALLERY */
  .gallery { padding: 0 6rem 4rem; max-width: 1500px; margin: 0 auto; }
  .gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px; aspect-ratio: 16/9; }
  .gallery-grid > a { position: relative; overflow: hidden; border-radius: 2px; background: #2a2b22; }
  .gallery-grid > a:first-child { grid-row: span 2; }
  .gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease, opacity 0.3s ease; opacity: 0.95; }
  .gallery-grid > a:hover img { transform: scale(1.04); opacity: 1; }
  .gallery-grid > a::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(34,35,26,0.4)); pointer-events: none; }
  .gallery-grid .more-tag { position: absolute; right: 1rem; bottom: 1rem; z-index: 2; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-pale); background: rgba(34,35,26,0.7); border: 1px solid rgba(135,149,113,0.3); padding: 0.4rem 0.8rem; border-radius: 2px; backdrop-filter: blur(4px); }

  /* MAIN: title + booking */
  .room-main { padding: 2rem 6rem 5rem; max-width: 1500px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr; gap: 5rem; align-items: start; }
  .room-info .eyebrow { font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ember-light); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 1rem; }
  .room-info .eyebrow::before { content: ''; display: block; width: 2.5rem; height: 1px; background: var(--ember); }
  .room-info h1 { font-family: var(--serif); font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 300; line-height: 1.1; color: var(--warm-white); margin-bottom: 1.25rem; }
  .room-info h1 em { font-style: italic; color: var(--gold-pale); }
  .room-meta-row { display: flex; gap: 1.25rem; flex-wrap: wrap; padding-bottom: 1.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.85rem; color: var(--cream); }
  .room-meta-row span::before { content: ', '; color: var(--ember); }
  .lede { font-size: 1.05rem; color: var(--cream); font-weight: 300; line-height: 1.85; margin-bottom: 1.5rem; }
  .room-info p { font-size: 0.96rem; color: var(--cream); font-weight: 300; line-height: 1.85; margin-bottom: 1.5rem; }
  .pull-quote { font-family: var(--serif); font-style: italic; font-size: 1.4rem; line-height: 1.5; color: var(--gold-pale); padding: 2rem 0 2rem 1.75rem; border-left: 2px solid var(--ember); margin: 2.5rem 0; }
  .pull-quote span { display: block; font-style: normal; font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-top: 1rem; }

  /* Amenity columns */
  .amenities-block { margin: 3rem 0; padding: 2.5rem; background: #2a2b22; border: 1px solid rgba(255,255,255,0.06); border-radius: 2px; }
  .amenities-block h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--warm-white); margin-bottom: 1.5rem; }
  .amenities-block h3 em { font-style: italic; color: var(--gold-pale); }
  .amenity-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 2rem; }
  .amenity-cols span { font-size: 0.88rem; color: var(--cream); display: flex; gap: 0.6rem; align-items: flex-start; line-height: 1.6; }
  .amenity-cols span::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--ember); margin-top: 0.65rem; flex-shrink: 0; }

  /* Floor plan */
  .floorplan { margin: 3rem 0; }
  .floorplan h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--warm-white); margin-bottom: 1.25rem; }
  .floorplan h3 em { font-style: italic; color: var(--gold-pale); }
  .floorplan-svg { width: 100%; max-width: 560px; aspect-ratio: 5/3; background: #1a1b13; border: 1px solid rgba(135,149,113,0.18); border-radius: 2px; padding: 1.5rem; }
  .floorplan-svg svg { width: 100%; height: 100%; }
  .floorplan-key { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.25rem; font-size: 0.78rem; color: var(--muted); }
  .floorplan-key span { display: flex; align-items: center; gap: 0.4rem; }
  .floorplan-key span::before { content: ''; width: 10px; height: 10px; background: var(--ember); border-radius: 1px; }

  /* Booking card */
  .booking-card { background: #2a2b22; border: 1px solid rgba(135,149,113,0.18); border-radius: 2px; padding: 2.25rem; position: sticky; top: 100px; }
  .booking-price { display: flex; align-items: baseline; gap: 0.6rem; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 1.5rem; }
  .booking-price .from { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
  .booking-price .num { font-family: var(--serif); font-size: 2.5rem; font-weight: 300; color: var(--gold-pale); }
  .booking-price .per { font-size: 0.85rem; color: var(--muted); }
  .booking-form { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 1.5rem; }
  .booking-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .booking-field { display: flex; flex-direction: column; gap: 0.35rem; }
  .booking-field label { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
  .booking-field input, .booking-field select {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--warm-white);
    padding: 0.7rem 0.85rem;
    border-radius: 2px;
    font-family: inherit;
    font-size: 0.88rem;
    transition: border-color 0.25s;
  }
  .booking-field input:focus, .booking-field select:focus { outline: none; border-color: var(--ember); }
  .booking-field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%23b8892a' d='M0 0l5 6 5-6z'/></svg>"); background-repeat: no-repeat; background-position: right 0.85rem center; }
  .btn-primary { display: inline-block; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; background: var(--ember); color: #fff; text-decoration: none; padding: 1rem 1.9rem; border-radius: 2px; transition: background 0.25s; border: none; cursor: pointer; font-family: inherit; text-align: center; width: 100%; }
  .btn-primary:hover { background: var(--ember-light); }
  .btn-ghost { display: inline-block; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-pale); text-decoration: none; padding: 0.5rem 0; border-bottom: 1px solid rgba(135,149,113,0.4); transition: border-color 0.25s; }
  .btn-ghost:hover { border-color: var(--gold-pale); }
  .booking-perks { padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.07); display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.8rem; color: var(--cream); }
  .booking-perks span::before { content: '✓ '; color: var(--ember); margin-right: 0.3rem; }
  .booking-call { margin-top: 1.5rem; text-align: center; }
  .booking-call p { font-size: 0.78rem; color: var(--muted); margin-bottom: 0.4rem; }
  .booking-call a { font-family: var(--serif); font-size: 1.2rem; color: var(--gold-pale); text-decoration: none; }

  /* Spectrum */
  .spectrum-strip { height: 3px; background: linear-gradient(to right, #7b2fff 0%, #4466ff 14%, #00aaff 28%, #00cc88 42%, #aadd00 56%, #ffcc00 70%, #ff6600 84%, #cc1111 100%); }

  section { padding: 6rem; }
  .section-label { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.6rem; }
  .section-title { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; line-height: 1.2; color: var(--warm-white); margin-bottom: 1.25rem; }
  .section-title em { font-style: italic; color: var(--gold-pale); }
  .section-body { font-size: 0.975rem; color: var(--cream); font-weight: 300; max-width: 560px; line-height: 1.85; }

  /* Other rooms */
  .other-rooms { background: #1d1e16; }
  .other-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
  .other-card { background: #2a2b22; border: 1px solid rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; transition: transform 0.3s, border-color 0.3s; }
  .other-card:hover { transform: translateY(-4px); border-color: rgba(232,154,106,0.3); }
  .other-card a { color: inherit; text-decoration: none; display: block; }
  .other-img { aspect-ratio: 4/3; overflow: hidden; background: #2a2b22; }
  .other-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; transition: transform 0.5s, opacity 0.4s; }
  .other-card:hover .other-img img { transform: scale(1.04); opacity: 1; }
  .other-body { padding: 1.75rem; }
  .other-tag { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
  .other-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; color: var(--warm-white); margin-bottom: 0.5rem; }
  .other-price { font-size: 0.85rem; color: var(--cream); }
  .other-price .num { font-family: var(--serif); color: var(--gold-pale); font-size: 1.05rem; }

  /* CTA band */
  .cta-band { background: linear-gradient(135deg, #2e3023 0%, #22231A 60%); text-align: center; padding: 6rem; border-top: 1px solid rgba(232,154,106,0.15); border-bottom: 1px solid rgba(232,154,106,0.15); position: relative; overflow: hidden; }
  .cta-band::before { content: ''; position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 70%; height: 100%; background: radial-gradient(ellipse, rgba(232,154,106,0.14), transparent 70%); pointer-events: none; }
  .cta-actions { display: flex; justify-content: center; gap: 1.25rem; flex-wrap: wrap; position: relative; z-index: 1; margin-top: 2rem; }

  /* FAQ */
  .faq { background: #1a1b13; }
  .faq-list { margin-top: 3rem; max-width: 880px; }
  .faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .faq-item summary { list-style: none; cursor: pointer; padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary:hover .faq-q { color: var(--ember-light); }
  .faq-q { font-family: var(--serif); font-size: 1.18rem; font-weight: 400; color: var(--warm-white); transition: color 0.25s; }
  .faq-toggle { font-family: var(--serif); font-size: 1.4rem; font-weight: 300; color: var(--ember); transition: transform 0.3s; flex-shrink: 0; }
  .faq-item[open] .faq-toggle { transform: rotate(45deg); }
  .faq-a { font-size: 0.92rem; color: var(--cream); font-weight: 300; line-height: 1.85; padding: 0 0 1.5rem; max-width: 720px; }
  .faq-a a { color: var(--ember-light); }
  .faq-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem; align-items: start; margin-top: 3rem; }
  .faq-grid .faq-list { margin-top: 0; max-width: none; }
  .faq-art { aspect-ratio: 3/4; overflow: hidden; border-radius: 2px; background: #2a2b22; position: sticky; top: 100px; border: 1px solid rgba(135,149,113,0.18); }
  .faq-art img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; transition: transform 0.6s ease; display: block; }
  .faq-art:hover img { transform: scale(1.04); }
  .faq-art::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(34,35,26,0.5)); pointer-events: none; }
  @media (max-width: 1100px) { .faq-grid { grid-template-columns: 1fr; gap: 2rem; } .faq-art { display: none; } }

  /* FOOTER (same) */
  .site-footer { background: #16170f; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 5rem; }
  .footer-inner { max-width: 1500px; margin: 0 auto; padding: 0 6rem; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 4rem; padding-bottom: 4rem; }
  .footer-brand .footer-logo { max-height: 110px; width: auto; margin-bottom: 1.5rem; }
  .footer-tagline { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--gold-pale); margin-bottom: 1.5rem; line-height: 1.4; }
  .footer-address { font-size: 0.88rem; color: var(--cream); line-height: 1.75; margin-bottom: 1rem; }
  .footer-contact { font-size: 0.88rem; color: var(--cream); line-height: 1.9; }
  .footer-contact a { color: var(--cream); text-decoration: none; transition: color 0.25s; }
  .footer-contact a:hover { color: var(--ember-light); }
  .footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
  .footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); border-radius: 2px; display: flex; align-items: center; justify-content: center; color: var(--cream); transition: border-color 0.25s, color 0.25s, background 0.25s; }
  .footer-social a:hover { border-color: var(--ember); color: var(--ember-light); background: rgba(232,154,106,0.08); }
  .footer-social svg { width: 16px; height: 16px; fill: currentColor; }
  .footer-col h4 { font-family: var(--serif); font-size: 0.85rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-pale); margin-bottom: 1.25rem; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 0.65rem; }
  .footer-col a { font-size: 0.88rem; color: var(--cream); text-decoration: none; transition: color 0.25s; }
  .footer-col a:hover { color: var(--ember-light); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 1.75rem 6rem; max-width: 1500px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
  .footer-bottom p, .footer-bottom a { font-size: 0.78rem; color: var(--muted); text-decoration: none; }
  .footer-bottom a:hover { color: var(--cream); }
  .footer-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }

  @media (max-width: 1100px) {
    .primary-nav, .header-phone { display: none; }
    .nav-toggle { display: flex; }
    .breadcrumbs { padding: 8rem 3rem 1rem; }
    .gallery { padding: 0 3rem 3rem; }
    .room-main { padding: 1.5rem 3rem 4rem; grid-template-columns: 1fr; gap: 3rem; }
    .booking-card { position: static; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 3rem; padding: 0 3rem 4rem; }
    .footer-bottom { padding: 1.75rem 3rem; }
  }
  @media (max-width: 900px) {
    section { padding: 4rem 2rem; }
    .header-inner { padding: 0.85rem 1.5rem; }
    .breadcrumbs { padding: 7rem 2rem 1rem; }
    .gallery { padding: 0 2rem 2rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; aspect-ratio: 4/3; }
    .gallery-grid > a:first-child { grid-row: span 1; grid-column: span 2; }
    .room-main { padding: 1rem 2rem 3rem; }
    .amenities-block { padding: 1.75rem; }
    .amenity-cols { grid-template-columns: 1fr; }
    .other-grid { grid-template-columns: 1fr; }
    .cta-band { padding: 4rem 2rem; }
    .footer-inner { grid-template-columns: 1fr; padding: 0 2rem 3rem; gap: 2.5rem; }
    .footer-bottom { padding: 1.5rem 2rem; flex-direction: column; align-items: flex-start; }
    .brand-name { display: none; }
  }