   /* ─── Reset & Base ─────────────────────────────────────────── */
   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

   :root {
     --gold:       #C4A35A;
     --gold-light: #D9BA7A;
     --gold-dim:   rgba(196, 163, 90, 0.18);
     --dark:       #0D0C0A;
     --dark-2:     #1A1712;
     --dark-3:     #252118;
     --warm-white: #FAF7F2;
     --text-muted: #9C8F7A;
     --nav-h:      80px;
   }

   html { scroll-behavior: smooth; }

   body {
     font-family: 'Lato', sans-serif;
     background: var(--dark);
     color: var(--warm-white);
     overflow-x: hidden;
   }

   /* ─── Nav ──────────────────────────────────────────────────── */
   nav {
     position: fixed;
     top: 0; left: 0; right: 0;
     height: var(--nav-h);
     z-index: 100;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 0 48px;
     background: transparent;
     transition: background 0.4s ease, backdrop-filter 0.4s ease;
   }

   nav.scrolled {
     background: rgba(13, 12, 10, 0.92);
     backdrop-filter: blur(12px);
     -webkit-backdrop-filter: blur(12px);
     border-bottom: 1px solid rgba(196, 163, 90, 0.15);
   }

   .nav-logo {
     display: flex;
     flex-direction: column;
     line-height: 1;
     text-decoration: none;
   }

   .nav-logo-main {
     font-family: 'Playfair Display', serif;
     font-size: 22px;
     font-weight: 600;
     color: var(--warm-white);
     letter-spacing: 3px;
     text-transform: uppercase;
   }

   .nav-logo-sub {
     font-size: 9px;
     font-weight: 300;
     color: var(--gold);
     letter-spacing: 5px;
     text-transform: uppercase;
     margin-top: 3px;
   }

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

   .nav-links a {
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 2.5px;
     text-transform: uppercase;
     color: rgba(250, 247, 242, 0.8);
     text-decoration: none;
     transition: color 0.2s;
   }

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

   .btn-book-nav {
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 2.5px;
     text-transform: uppercase;
     color: var(--dark) !important;
     background: var(--gold);
     padding: 10px 24px;
     border-radius: 50px;
     text-decoration: none;
     transition: background 0.2s, transform 0.15s;
   }

   .btn-book-nav:hover {
     background: var(--gold-light) !important;
     transform: translateY(-1px);
   }

   /* ─── Hero ─────────────────────────────────────────────────── */
   .hero {
     position: relative;
     width: 100%;
     height: 100vh;
     overflow: hidden;
   }

   .hero-iframe-wrap {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
   }

   .hero-iframe-wrap iframe {
     width: 100%;
     height: 100%;
     border: none;
     display: block;
   }

   /* Gradient overlay — centered radial for text legibility */
   .hero-overlay {
     position: absolute;
     inset: 0;
     background:
       radial-gradient(ellipse at center, rgba(13,12,10,0.60) 0%, rgba(13,12,10,0.25) 60%, transparent 100%),
       linear-gradient(to top, rgba(13,12,10,0.65) 0%, transparent 55%);
     pointer-events: none;
   }

   .hero-content {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 100%;
     max-width: 700px;
     padding: 0 32px;
     text-align: center;
   }

   .hero-eyebrow {
     font-size: 10px;
     font-weight: 700;
     letter-spacing: 5px;
     text-transform: uppercase;
     color: var(--gold);
     margin-bottom: 20px;
   }

   .hero-title {
     font-family: 'Lato', sans-serif;
     font-size: clamp(52px, 7vw, 88px);
     font-weight: 500;
     line-height: 1.05;
     color: var(--warm-white);
     margin-bottom: 24px;
   }

   .hero-title em {
     font-style: italic;
     color: var(--gold-light);
   }

   .hero-subtitle {
     font-size: 16px;
     font-weight: 300;
     line-height: 1.7;
     color: rgba(250, 247, 242, 0.82);
     margin: 0 auto 24px;
     max-width: 480px;
   }

   .hero-actions {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 20px;
     flex-wrap: wrap;
   }

   .btn-primary {
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 3px;
     text-transform: uppercase;
     background: var(--gold);
     color: var(--dark);
     padding: 16px 40px;
     border-radius: 50px;
     text-decoration: none;
     transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
   }

   .btn-primary:hover {
     background: var(--gold-light);
     transform: translateY(-2px);
     box-shadow: 0 8px 24px rgba(196, 163, 90, 0.35);
   }

   .btn-ghost {
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 3px;
     text-transform: uppercase;
     color: var(--warm-white);
     padding: 16px 0;
     text-decoration: none;
     border-bottom: 1px solid rgba(250,247,242,0.35);
     transition: color 0.2s, border-color 0.2s;
   }
     .fira-sans-semibold {
       font-family: "Fira Sans", sans-serif;
       font-weight: 600;
       font-style: normal;
     }

     .fira-sans-bold {
       font-family: "Fira Sans", sans-serif;
       font-weight: 700;
       font-style: normal;
     }

   .btn-ghost:hover {
     color: var(--gold);
     border-color: var(--gold);
   }

   /* Scroll hint */
   .hero-scroll-hint {
     position: absolute;
     bottom: 36px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 8px;
     color: rgba(250,247,242,0.5);
     font-size: 9px;
     letter-spacing: 3px;
     text-transform: uppercase;
     pointer-events: none;
     animation: fadeInUp 1.5s ease 1s both;
   }

   .scroll-line {
     width: 1px;
     height: 40px;
     background: linear-gradient(to bottom, rgba(196,163,90,0.8), transparent);
     animation: scrollPulse 2s ease-in-out infinite;
   }

   @keyframes scrollPulse {
     0%, 100% { opacity: 0.4; transform: scaleY(1); }
     50%       { opacity: 1;   transform: scaleY(1.1); }
   }

   @keyframes fadeInUp {
     from { opacity: 0; transform: translate(-50%, 12px); }
     to   { opacity: 1; transform: translate(-50%, 0); }
   }

   /* ─── Hero Room Circles ─────────────────────────────────────── */
   .hero-rooms {
     position: absolute;
     bottom: 36px;
     left: 0;
     right: 0;
     display: flex;
     justify-content: center;
     gap: 36px;
     padding: 0 48px;
     animation: fadeInRooms 1s ease 0.5s both;
   }

   @keyframes fadeInRooms {
     from { opacity: 0; transform: translateY(16px); }
     to   { opacity: 1; transform: translateY(0); }
   }

   .hero-room {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 10px;
     text-decoration: none;
     cursor: pointer;
   }

   .hero-room-circle {
     width: 108px;
     height: 108px;
     border-radius: 50%;
     border: 4px solid rgba(220, 220, 220, 0.65);
     overflow: hidden;
     position: relative;
     flex-shrink: 0;
     transition: border-color 0.3s ease, transform 0.3s ease,
                 box-shadow 0.3s ease;
   }

   .hero-room:hover .hero-room-circle {
     border-color: var(--gold);
     transform: scale(1.07);
     box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.25),
                 0 8px 28px rgba(0, 0, 0, 0.55);
   }

   .hero-room-circle img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     transition: transform 0.45s ease;
   }

   .hero-room:hover .hero-room-circle img {
     transform: scale(1.12);
   }

   .hero-room-badge {
     position: absolute;
     bottom: 7px;
     right: 7px;
     background: rgba(13, 12, 10, 0.78);
     backdrop-filter: blur(4px);
     color: var(--gold);
     font-size: 8px;
     font-weight: 700;
     letter-spacing: 0.5px;
     padding: 3px 6px;
     border-radius: 4px;
     line-height: 1;
   }

   .hero-room-name {
     font-size: 10px;
     font-weight: 700;
     letter-spacing: 2.5px;
     text-transform: uppercase;
     color: var(--warm-white);
     text-align: center;
     line-height: 1.3;
   }

   .hero-room-hint {
     font-size: 10px;
     font-weight: 300;
     color: rgba(250, 247, 242, 0.50);
     text-align: center;
     display: flex;
     align-items: center;
     gap: 5px;
     line-height: 1;
   }

   .hero-room-hint svg {
     width: 11px;
     height: 11px;
     stroke: var(--gold);
     fill: none;
     stroke-width: 2;
     stroke-linecap: round;
     stroke-linejoin: round;
     flex-shrink: 0;
   }

   /* ─── Section base ─────────────────────────────────────────── */
   section { position: relative; }

   .section-inner {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 48px;
   }

   .section-label {
     font-size: 10px;
     font-weight: 700;
     letter-spacing: 5px;
     text-transform: uppercase;
     color: var(--gold);
     margin-bottom: 16px;
   }

   .section-title {
     font-family: 'Playfair Display', serif;
     font-size: clamp(32px, 4vw, 52px);
     font-weight: 500;
     line-height: 1.15;
     color: var(--warm-white);
   }

   .section-title.dark { color: var(--dark-2); }

   .divider-gold {
     width: 48px;
     height: 2px;
     background: var(--gold);
     margin: 24px 0 32px;
   }

   /* ─── Intro Strip ──────────────────────────────────────────── */
   .intro-strip {
     background: var(--dark-2);
     padding: 96px 0;
   }

   .intro-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
   }

   .intro-text p {
     font-size: 17px;
     font-weight: 300;
     line-height: 1.85;
     color: rgba(250,247,242,0.75);
   }

   .intro-text p + p { margin-top: 20px; }

   .intro-stats {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
   }

   .stat-item {
     border-left: 2px solid var(--gold-dim);
     padding-left: 24px;
   }

   .stat-num {
     font-family: 'Playfair Display', serif;
     font-size: 44px;
     font-weight: 400;
     color: var(--gold);
     line-height: 1;
     margin-bottom: 8px;
   }

   .stat-label {
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 2px;
     text-transform: uppercase;
     color: var(--text-muted);
   }

   /* ─── Mobile Room Tabs ─────────────────────────────────────── */
   .rooms-tabs { display: none; }

   .rooms-tab {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 10px;
     background: none;
     border: none;
     cursor: pointer;
     flex-shrink: 0;
     padding: 0;
   }

   .rooms-tab-circle {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     border: 3px solid rgba(220, 220, 220, 0.45);
     overflow: hidden;
     position: relative;
     transition: border-color 0.3s ease;
   }

   .rooms-tab-circle img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
   }

   .rooms-tab.active .rooms-tab-circle {
     border-color: var(--gold);
     box-shadow: 0 0 0 2px rgba(196, 163, 90, 0.25);
   }

   /* ─── Rooms ────────────────────────────────────────────────── */
   .rooms-section {
     background: var(--dark);
     padding: 104px 0;
   }

   .rooms-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-end;
     margin-bottom: 56px;
   }

   .rooms-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2px;
   }

   .room-card {
     position: relative;
     overflow: hidden;
     cursor: pointer;
     aspect-ratio: 3/4;
     background: var(--dark-3);
   }

   .room-card-wide {
     grid-column: span 2;
     aspect-ratio: unset;
   }

   .room-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     transition: transform 0.7s ease;
     filter: brightness(0.88);
   }

   .room-card:hover .room-img {
     transform: scale(1.06);
     filter: brightness(0.7);
   }

   .room-card-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to top, rgba(13,12,10,0.9) 0%, transparent 55%);
   }

   .room-card-info {
     position: absolute;
     bottom: 0; left: 0; right: 0;
     padding: 32px;
     transform: translateY(8px);
     transition: transform 0.35s ease;
   }

   .room-card:hover .room-card-info { transform: translateY(0); }

   .room-tag {
     font-size: 9px;
     font-weight: 700;
     letter-spacing: 4px;
     text-transform: uppercase;
     color: var(--gold);
     margin-bottom: 8px;
   }

   .room-name {
     font-family: 'Playfair Display', serif;
     font-size: 26px;
     font-weight: 500;
     color: var(--warm-white);
     margin-bottom: 8px;
   }

   .room-detail {
     font-size: 13px;
     font-weight: 300;
     color: rgba(250,247,242,0.65);
     opacity: 0;
     transition: opacity 0.35s ease 0.05s;
   }

   .room-card:hover .room-detail { opacity: 1; }

   /* ─── Features ─────────────────────────────────────────────── */
   .features-section {
     background: var(--warm-white);
     padding: 104px 0;
   }

   .features-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 40px;
     margin-top: 64px;
   }

   .feature-item {
     text-align: center;
     padding: 40px 24px;
     border: 1px solid rgba(13,12,10,0.08);
     transition: border-color 0.25s, transform 0.25s;
   }

   .feature-item:hover {
     border-color: var(--gold);
     transform: translateY(-4px);
   }

   .feature-icon {
     width: 52px;
     height: 52px;
     margin: 0 auto 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     border: 1px solid rgba(196,163,90,0.35);
     border-radius: 50%;
   }

   .feature-icon svg {
     width: 24px;
     height: 24px;
     stroke: var(--gold);
     fill: none;
     stroke-width: 1.5;
     stroke-linecap: round;
     stroke-linejoin: round;
   }

   .feature-name {
     font-family: 'Playfair Display', serif;
     font-size: 18px;
     font-weight: 500;
     color: var(--dark-2);
     margin-bottom: 10px;
   }

   .feature-desc {
     font-size: 13px;
     font-weight: 300;
     line-height: 1.7;
     color: #6B6055;
   }

   /* ─── Experience Banner ────────────────────────────────────── */
   .experience-section {
     background: var(--dark-2);
     padding: 104px 0;
   }

   .experience-inner {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
   }

   .experience-visual {
     position: relative;
   }

   .experience-img-main {
     width: 100%;
     aspect-ratio: 4/5;
     object-fit: cover;
     display: block;
   }

   .experience-img-accent {
     position: absolute;
     bottom: -32px;
     right: -32px;
     width: 55%;
     aspect-ratio: 1;
     object-fit: cover;
     border: 4px solid var(--dark-2);
   }

   .experience-text { padding-left: 16px; }

   .experience-text p {
     font-size: 16px;
     font-weight: 300;
     line-height: 1.85;
     color: rgba(250,247,242,0.72);
     margin-bottom: 20px;
   }

   .experience-list {
     list-style: none;
     margin-top: 32px;
     display: flex;
     flex-direction: column;
     gap: 14px;
   }

   .experience-list li {
     display: flex;
     align-items: center;
     gap: 14px;
     font-size: 13px;
     font-weight: 400;
     letter-spacing: 1px;
     color: rgba(250,247,242,0.75);
   }

   .experience-list li::before {
     content: '';
     display: block;
     width: 24px;
     height: 1px;
     background: var(--gold);
     flex-shrink: 0;
   }

   /* ─── Testimonial ──────────────────────────────────────────── */
   .testimonial-section {
     background: var(--dark);
     padding: 104px 0;
     text-align: center;
   }

   blockquote {
     font-family: 'Playfair Display', serif;
     font-size: clamp(22px, 3vw, 34px);
     font-weight: 400;
     font-style: italic;
     line-height: 1.6;
     color: var(--warm-white);
     max-width: 860px;
     margin: 0 auto 32px;
   }

   blockquote::before { content: '\201C'; color: var(--gold); }
   blockquote::after  { content: '\201D'; color: var(--gold); }

   .testimonial-attr {
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 3px;
     text-transform: uppercase;
     color: var(--gold);
   }

   .testimonial-stars {
     display: flex;
     justify-content: center;
     gap: 6px;
     margin-bottom: 32px;
   }

   .testimonial-stars span {
     color: var(--gold);
     font-size: 18px;
   }

   /* ─── Location ─────────────────────────────────────────────── */
   .location-section {
     background: var(--warm-white);
     padding: 104px 0;
   }

   .location-inner {
     display: grid;
     grid-template-columns: 1fr 1.4fr;
     gap: 80px;
     align-items: center;
   }

   .location-text .section-title { color: var(--dark-2); }

   .location-text p {
     font-size: 15px;
     font-weight: 300;
     line-height: 1.85;
     color: #6B6055;
     margin-bottom: 16px;
   }

   .location-address {
     margin-top: 36px;
     padding: 24px 28px;
     border-left: 3px solid var(--gold);
     background: rgba(196,163,90,0.06);
   }

   .location-address p {
     margin-bottom: 4px;
     font-size: 14px;
     color: var(--dark-3);
   }

   .location-address strong {
     font-weight: 700;
     font-size: 11px;
     letter-spacing: 2px;
     text-transform: uppercase;
     color: var(--gold);
   }

   .location-map {
     width: 100%;
     aspect-ratio: 4/3;
     border: none;
     display: block;
     filter: grayscale(0.2) contrast(1.05);
   }

   /* ─── CTA Strip ────────────────────────────────────────────── */
   .cta-strip {
     background: var(--gold);
     padding: 72px 0;
     text-align: center;
   }

   .cta-strip h2 {
     font-family: 'Playfair Display', serif;
     font-size: clamp(28px, 4vw, 46px);
     font-weight: 500;
     color: var(--dark);
     margin-bottom: 10px;
   }

   .cta-strip p {
     font-size: 15px;
     font-weight: 300;
     color: rgba(13,12,10,0.65);
     margin-bottom: 36px;
   }

   .btn-dark {
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 3px;
     text-transform: uppercase;
     background: var(--dark);
     color: var(--warm-white);
     padding: 18px 52px;
     border-radius: 50px;
     text-decoration: none;
     display: inline-block;
     transition: background 0.2s, transform 0.15s;
   }

   .btn-dark:hover {
     background: var(--dark-2);
     transform: translateY(-2px);
   }

   /* ─── Footer ───────────────────────────────────────────────── */
   footer {
     background: var(--dark);
     border-top: 1px solid rgba(196,163,90,0.12);
     padding: 64px 0 32px;
   }

   .footer-grid {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     gap: 48px;
     margin-bottom: 56px;
   }

   .footer-brand p {
     font-size: 13px;
     font-weight: 300;
     line-height: 1.8;
     color: var(--text-muted);
     margin-top: 16px;
     max-width: 280px;
   }

   .footer-col h4 {
     font-size: 10px;
     font-weight: 700;
     letter-spacing: 4px;
     text-transform: uppercase;
     color: var(--gold);
     margin-bottom: 20px;
   }

   .footer-col ul {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 10px;
   }

   .footer-col ul a {
     font-size: 13px;
     font-weight: 300;
     color: var(--text-muted);
     text-decoration: none;
     transition: color 0.2s;
   }

   .footer-col ul a:hover { color: var(--warm-white); }

   .footer-bottom {
     border-top: 1px solid rgba(196,163,90,0.1);
     padding-top: 28px;
     display: flex;
     justify-content: space-between;
     align-items: center;
   }

   .footer-bottom p {
     font-size: 11px;
     font-weight: 300;
     color: var(--text-muted);
     letter-spacing: 0.5px;
   }

   .footer-social {
     display: flex;
     gap: 20px;
   }

   .footer-social a {
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 2px;
     text-transform: uppercase;
     color: var(--text-muted);
     text-decoration: none;
     transition: color 0.2s;
   }

   .footer-social a:hover { color: var(--gold); }

   /* ─── Responsive ───────────────────────────────────────────── */
   @media (max-width: 1024px) {
     .rooms-grid { grid-template-columns: 1fr 1fr; }
     .room-card-wide { grid-column: span 2; }
     .features-grid { grid-template-columns: 1fr 1fr; }
     .footer-grid { grid-template-columns: 1fr 1fr; }
   }

   @media (max-width: 768px) {
     nav { padding: 0 24px; }
     .nav-links { display: none; }
     .hero-content { padding: 0 28px; max-width: 100%; }
     .hero-title { font-size: 42px; }
     .hero-rooms { display: none; }
     .hero-room-hint { display: none; }
     .section-inner { padding: 0 24px; }
     .intro-grid,
     .experience-inner,
     .location-inner { grid-template-columns: 1fr; gap: 40px; }
     .rooms-grid { display: block; }
     .room-card { display: none; }
     .room-card.active {
       display: flex;
       flex-direction: column;
       aspect-ratio: unset;
     }
     .room-card.active .room-img {
       width: 100%;
       height: 56vw;
       flex-shrink: 0;
     }
     .room-card.active .room-card-info {
       position: static;
       transform: none;
       padding: 20px 16px;
     }
     .room-card.active .room-detail { opacity: 1; }
     .rooms-header { flex-direction: column; align-items: flex-start; gap: 24px; }
     .features-grid { grid-template-columns: 1fr; }
     .footer-grid { grid-template-columns: 1fr; }
     .experience-img-accent { display: none; }
     .intro-stats { grid-template-columns: 1fr 1fr; }
     .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
     .location-text { max-width: 100%; }
     .location-inner iframe { max-width: 100%; }
     .rooms-tabs {
       display: flex;
       flex-wrap: wrap;
       justify-content: center;
       gap: 20px;
       padding: 32px 20px 24px;
     }
   }