@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #18201d;
  --muted: #68706b;
  --linen: #f4f0e8;
  --paper: #fffdf7;
  --walnut: #4b2d20;
  --dark-walnut: #241713;
  --jade: #176448;
  --jade-soft: #d7e5db;
  --vermilion: #b74331;
  --brass: #b78a42;
  --brass-light: #e7cc91;
  --night: #162b43;
  --line: rgba(58, 42, 31, .17);
  --shadow: 0 24px 70px rgba(39, 26, 18, .14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(91, 69, 51, .04) 50%, transparent 50.2%),
    var(--linen);
  font-family: "DM Sans", sans-serif;
  line-height: 1.72;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .3;
  background-image: radial-gradient(rgba(74, 47, 31, .12) .7px, transparent .7px);
  background-size: 7px 7px;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
h1, h2, h3 { font-family: "Manrope", sans-serif; line-height: 1.08; }
h1 { margin: 0 0 24px; font-size: clamp(2.7rem, 6vw, 6.5rem); letter-spacing: -.065em; }
h2 { margin: 0 0 22px; font-size: clamp(2rem, 4vw, 4.2rem); letter-spacing: -.045em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); }
p, li { font-size: 1rem; }
figure { margin: 0; }
figcaption {
  padding: 12px 4px 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.5;
}
.eyebrow, .floor-code {
  margin: 0 0 15px;
  color: var(--vermilion);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
}
.floor-progress {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 3px;
  background: rgba(255,255,255,.18);
}
.floor-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--vermilion), var(--brass-light), var(--jade));
}
.house-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 12px max(22px, calc((100vw - 1440px) / 2));
  color: white;
  background: rgba(32, 21, 17, .92);
  border-bottom: 1px solid rgba(231, 204, 145, .25);
  backdrop-filter: blur(18px);
}
.house-brand { display: flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 700; }
.house-brand img { width: 42px; height: 42px; }
.floor-nav { display: flex; justify-content: center; gap: clamp(12px, 2vw, 34px); }
.floor-nav a { color: #e9dfd1; font-size: .76rem; text-decoration: none; transition: color .2s; }
.floor-nav a:hover, .floor-nav a.active { color: var(--brass-light); }
.age-plaque {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--dark-walnut);
  background: var(--brass-light);
  border-radius: 50%;
  font-weight: 800;
}
.menu-bell { display: none; border: 0; background: none; color: white; }

.lobby-hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(420px, .82fr);
  background: var(--dark-walnut);
}
.lobby-image { min-height: 620px; overflow: hidden; }
.lobby-image figure, .lobby-image img { width: 100%; height: 100%; }
.lobby-image img { object-fit: cover; }
.lobby-image figcaption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 440px;
  padding: 12px 16px;
  color: #fff5df;
  background: rgba(27, 17, 14, .82);
  border-left: 3px solid var(--brass-light);
}
.lobby-image figure { position: relative; }
.lobby-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(45px, 6vw, 100px);
  color: #fff8ee;
  background:
    linear-gradient(145deg, rgba(183, 138, 66, .13), transparent 40%),
    var(--dark-walnut);
}
.lobby-copy p { color: #d8cbbf; max-width: 700px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.hero-actions a, .verdict-slip a {
  display: inline-flex;
  padding: 13px 19px;
  border: 1px solid var(--brass);
  border-radius: 99px;
  text-decoration: none;
  font-weight: 700;
}
.hero-actions a:first-child { color: var(--dark-walnut); background: var(--brass-light); }

.house-section {
  position: relative;
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(75px, 10vw, 150px) clamp(10px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
}
.section-label {
  position: absolute;
  top: 44px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.section-label span { padding: 5px 9px; color: var(--paper); background: var(--walnut); border-radius: 3px; }
.section-heading { max-width: 800px; margin-bottom: 44px; }
.table-shell { overflow-x: auto; border-radius: 18px; box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 17px 20px; text-align: left; border-bottom: 1px solid rgba(255,255,255,.12); }
th { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.directory-board { color: #f9f1df; background: var(--walnut); border: 9px solid #7e583e; }
.directory-board th { color: var(--brass-light); background: #2c1d17; }
.directory-board td:first-child { width: 28%; color: var(--brass-light); font-weight: 700; }
.directory-board tr:last-child td { border-bottom: 0; }

.checkin-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 7vw, 100px); align-items: center; }
.itinerary { list-style: none; counter-reset: checkin; margin: 30px 0; padding: 0; }
.itinerary li { counter-increment: checkin; position: relative; padding: 13px 14px 13px 58px; border-bottom: 1px solid var(--line); }
.itinerary li::before {
  content: "0" counter(checkin);
  position: absolute; left: 0; top: 10px;
  width: 39px; height: 39px; display: grid; place-items: center;
  color: white; background: var(--jade); border-radius: 50%; font-size: .73rem; font-weight: 800;
}
.entry-portrait { padding: 18px; background: var(--paper); border-radius: 8px; box-shadow: var(--shadow); transform: rotate(1.2deg); }
.entry-portrait img { width: 100%; border-radius: 4px; }

.cashier-floor { width: 100%; max-width: none; padding-inline: max(30px, calc((100vw - 1320px)/2)); color: #edf6f2; background: var(--jade); }
.cashier-floor .section-label { left: max(20px, calc((100vw - 1420px)/2)); }
.cashier-floor .section-label span { background: var(--brass); color: #231913; }
.cashier-floor .eyebrow { color: var(--brass-light); }
.cashier-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.service-tabs { display: flex; gap: 8px; margin: 38px 0 0; }
.service-tabs button {
  padding: 13px 22px; color: white; background: transparent; border: 1px solid rgba(255,255,255,.35); border-radius: 10px 10px 0 0; cursor: pointer;
}
.service-tabs button.active { color: var(--ink); background: var(--brass-light); border-color: var(--brass-light); }
.service-window { display: none; min-height: 270px; padding: 30px; color: var(--ink); background: #fffdf8; border-radius: 0 18px 18px 18px; }
.service-window.active { display: block; animation: roomOpen .35s ease; }
.service-window ol { columns: 2; column-gap: 50px; }
.cashier-note { padding: 20px 24px; border-left: 3px solid var(--brass-light); background: rgba(0,0,0,.12); }
.cashier-panorama { max-width: 1080px; margin: 55px auto 0; }
.cashier-panorama img { width: 100%; border: 8px solid rgba(255,255,255,.18); border-radius: 18px; }
.cashier-panorama figcaption { color: #cce0d6; }

.bonus-receipt { max-width: 1000px; margin: auto; padding: clamp(28px, 6vw, 70px); background: var(--paper); border: 1px dashed var(--brass); box-shadow: var(--shadow); }
.receipt-toggle {
  width: 100%; margin-top: 25px; padding: 16px; color: white; background: var(--vermilion); border: 0; cursor: pointer; font-weight: 800;
}
.receipt-details { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; max-height: 0; overflow: hidden; opacity: 0; transition: .5s ease; }
.receipt-details.open { max-height: 1200px; padding-top: 30px; opacity: 1; }
.receipt-details > p { grid-column: 1 / -1; padding-top: 20px; border-top: 1px dashed var(--brass); }

.room-filter { display: flex; flex-wrap: wrap; gap: 8px; margin: 30px 0; }
.room-filter button { padding: 10px 15px; border: 1px solid var(--jade); color: var(--jade); background: transparent; border-radius: 99px; cursor: pointer; }
.room-filter button.active { color: white; background: var(--jade); }
.room-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; list-style: none; padding: 0; }
.room-list li { min-height: 150px; padding: 20px; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; transition: opacity .2s, transform .2s; }
.room-list li.hidden { opacity: .15; transform: scale(.96); }
.room-list span { display: block; margin-bottom: 30px; color: var(--vermilion); font-weight: 800; }

.salon-floor { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: center; }
.salon-panorama img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.salon-copy { padding: 30px 0; }
.wing-grid, .two-wings, .recommendation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.room-key, .restricted-room, .east-wing, .west-wing, .recommendation-grid > div {
  padding: clamp(28px, 5vw, 60px); border-radius: var(--radius); box-shadow: var(--shadow);
}
.room-key { color: #f4f7f6; background: var(--jade); }
.restricted-room { color: #f8f2e9; background: var(--night); }
.key-number { display: inline-block; margin-bottom: 40px; font-size: .7rem; letter-spacing: .16em; }

.rating-board { overflow-x: auto; color: #f4ebdd; background: var(--night); border-radius: 18px; box-shadow: var(--shadow); }
.rating-board th { color: var(--brass-light); }
.rating-board tr { position: relative; background: linear-gradient(90deg, rgba(183,138,66,.16) var(--rating, 0%), transparent var(--rating, 0%)); transition: background 1s ease; }
.rating-board td:nth-child(2) { color: var(--brass-light); font-weight: 800; }
.east-wing { color: white; background: var(--jade); }
.west-wing { color: white; background: var(--vermilion); }
.east-wing li, .west-wing li { margin-bottom: 12px; }
.recommendation-grid > div { background: var(--paper); border-top: 5px solid var(--brass); }

.policy-floor { width: 100%; max-width: none; background: var(--dark-walnut); }
.policy-card { width: min(930px, calc(100% - 40px)); margin: auto; padding: clamp(32px, 7vw, 80px); color: #f9eee1; border: 1px solid var(--brass); }
.policy-stamp { display: inline-block; margin-bottom: 28px; padding: 7px 12px; color: var(--dark-walnut); background: var(--brass-light); font-weight: 800; }
.verdict-slip { max-width: 980px; margin: auto; padding: clamp(35px, 7vw, 90px); background: var(--paper); border-left: 10px solid var(--jade); box-shadow: var(--shadow); }
.verdict-slip a { margin-top: 20px; color: white; background: var(--jade); }

.faq-drawers { max-width: 1050px; margin: auto; }
.faq-drawers article { margin-bottom: 10px; border: 1px solid var(--line); background: var(--paper); }
.faq-drawers button {
  display: flex; align-items: center; gap: 18px; width: 100%; padding: 20px 24px;
  text-align: left; color: var(--ink); background: transparent; border: 0; cursor: pointer; font-weight: 800;
}
.faq-drawers button span { color: var(--vermilion); font-size: .72rem; }
.faq-drawers article > div { max-height: 0; overflow: hidden; padding: 0 65px; transition: .35s ease; }
.faq-drawers article.open > div { max-height: 240px; padding-bottom: 20px; }
.faq-drawers article.open button { color: var(--jade); }

.house-footer {
  display: grid; grid-template-columns: auto 1fr auto auto; gap: 24px; align-items: center;
  padding: 45px max(24px, calc((100vw - 1400px)/2)); color: #dccfc4; background: #1e1511;
}
.house-footer img { width: 55px; }
.house-footer p { margin: 0; font-size: .85rem; }
.house-footer strong { color: var(--brass-light); font-size: .75rem; }
.house-footer a { font-size: .8rem; }
.cookie-slip {
  position: fixed; z-index: 200; right: 20px; bottom: 20px; display: flex; align-items: center; gap: 15px;
  max-width: 430px; padding: 14px 18px; color: white; background: var(--night); border: 1px solid var(--brass); box-shadow: var(--shadow);
}
.cookie-slip p { margin: 0; font-size: .78rem; }
.cookie-slip button { padding: 8px 12px; color: var(--ink); background: var(--brass-light); border: 0; cursor: pointer; font-weight: 800; }
.cookie-slip.hidden { display: none; }
.reveal { opacity: 0; transform: translateY(22px); transition: .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes roomOpen { from { opacity: 0; transform: translateY(8px); } }

@media (max-width: 1050px) {
  .house-header { grid-template-columns: auto auto 1fr; }
  .menu-bell { display: flex; flex-direction: column; gap: 4px; align-items: center; cursor: pointer; }
  .menu-bell span { width: 25px; height: 2px; background: white; }
  .menu-bell em { font-size: .58rem; font-style: normal; }
  .floor-nav {
    position: absolute; top: 78px; left: 0; right: 0; display: none; flex-direction: column; padding: 24px;
    background: var(--dark-walnut); border-bottom: 1px solid var(--brass);
  }
  .floor-nav.open { display: flex; }
  .age-plaque { justify-self: end; }
  .lobby-hero { grid-template-columns: 1fr; }
  .lobby-image { min-height: 55vh; }
  .lobby-copy { padding: 60px 30px; }
  .checkin-grid, .salon-floor { grid-template-columns: 1fr; }
  .salon-panorama { order: 2; }
  .room-list { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .house-brand span { display: none; }
  .house-section { width: min(100% - 22px, 1440px); padding: 100px 10px 70px; }
  .section-label { top: 35px; left: 10px; }
  .cashier-floor, .policy-floor { width: 100%; padding-inline: 20px; }
  .cashier-intro, .receipt-details, .wing-grid, .two-wings, .recommendation-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-window ol { columns: 1; }
  .room-list { grid-template-columns: 1fr 1fr; }
  .salon-floor { gap: 20px; }
  .house-footer { grid-template-columns: auto 1fr; }
  .house-footer strong, .house-footer a { grid-column: 1 / -1; }
  .cookie-slip { left: 12px; right: 12px; bottom: 12px; }
}
@media (max-width: 460px) {
  .lobby-image { min-height: 390px; }
  .lobby-image figcaption { left: 12px; right: 12px; bottom: 12px; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { justify-content: center; }
  .room-list { grid-template-columns: 1fr; }
  th, td { padding: 13px 14px; min-width: 155px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
