:root {
  --ink: #f8fafc;
  --muted: #cbd5e1;
  --line: rgba(245, 197, 66, 0.22);
  --paper: #050505;
  --soft: #0d0d0d;
  --brand: #f5c542;
  --brand-dark: #b47b08;
  --gold-soft: #fff1a8;
  --gold-deep: #7a5207;
  --night: #050505;
  --night-soft: #121212;
  --radius: 8px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
  text-size-adjust: 100%;
}

body {
  background:
    radial-gradient(circle at top left, rgba(245, 197, 66, 0.1), transparent 30%),
    var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

p,
h1,
h2,
h3,
a,
span,
li,
summary,
strong {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
.hero-title,
.section-heading h2,
.service-overview-card h2,
.service-detail-card h3,
.service-flow-card h3,
.faq-list summary {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--brand);
  color: #050505;
  font-weight: 850;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  background: var(--night);
  color: #fff;
}

.site-header::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 197, 66, 0.7), transparent);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.94);
  border-bottom: 1px solid rgba(245, 197, 66, 0.22);
  backdrop-filter: blur(16px);
}

.navbar.is-scrolled {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.46);
}

.navbar-container {
  width: min(1120px, calc(100% - 40px));
  height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
}

.logo-link:hover .logo-copy {
  color: #fff7c8;
}

.logo-mark {
  position: relative;
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background:
    linear-gradient(#050505, #050505) padding-box,
    linear-gradient(135deg, #fff7c8, #f5c542 42%, #7a5207) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 0 0 1px rgba(245, 197, 66, 0.12),
    0 10px 26px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(245, 197, 66, 0.16);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.logo-mark::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  background: conic-gradient(
    from 140deg,
    transparent,
    rgba(245, 197, 66, 0.58),
    transparent 34%
  );
  opacity: 0.42;
  filter: blur(8px);
  animation: logoAura 5.8s linear infinite;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    transparent 36%
  );
  pointer-events: none;
}

.logo-link:hover .logo-mark {
  transform: translateY(-1px) scale(1.03);
  box-shadow:
    0 0 0 1px rgba(245, 197, 66, 0.22),
    0 14px 30px rgba(0, 0, 0, 0.38),
    0 0 36px rgba(245, 197, 66, 0.28);
}

.logo-img {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(245, 197, 66, 0.32);
}

.logo-copy {
  color: var(--gold-soft);
  font-size: 18px;
  letter-spacing: 0;
}

.clock-widget,
.weather-widget {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 6px 12px 6px 7px;
  border: 1px solid rgba(245, 197, 66, 0.2);
  border-radius: 999px;
  background: rgba(245, 197, 66, 0.06);
  color: var(--gold-soft);
  box-shadow: inset 0 1px 0 rgba(255, 241, 168, 0.08);
}

.clock-face {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 1px solid rgba(245, 197, 66, 0.58);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(245, 197, 66, 0.18), transparent 58%),
    #050505;
  box-shadow:
    0 0 0 2px rgba(245, 197, 66, 0.08),
    0 0 18px rgba(245, 197, 66, 0.16);
}

.clock-widget {
  margin-left: auto;
}

.clock-face::before,
.clock-face::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 3px;
  bottom: 3px;
  width: 1px;
  background: linear-gradient(var(--brand), transparent 16%, transparent 84%, var(--brand));
  opacity: 0.58;
  transform: translateX(-50%);
}

.clock-face::after {
  transform: translateX(-50%) rotate(90deg);
}

.clock-hand {
  position: absolute;
  left: 50%;
  bottom: 50%;
  border-radius: 999px;
  transform-origin: 50% 100%;
  transform: translateX(-50%) rotate(0deg);
}

.clock-hour {
  width: 3px;
  height: 8px;
  background: var(--gold-soft);
}

.clock-minute {
  width: 2px;
  height: 11px;
  background: var(--brand);
}

.clock-second {
  width: 1px;
  height: 12px;
  background: #fff7c8;
  box-shadow: 0 0 10px rgba(245, 197, 66, 0.65);
}

.clock-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 10px rgba(245, 197, 66, 0.7);
  transform: translate(-50%, -50%);
}

.clock-copy,
.weather-copy {
  display: grid;
  gap: 1px;
  line-height: 1.1;
}

.clock-copy span,
.weather-copy span {
  color: rgba(255, 248, 215, 0.62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clock-copy time,
.weather-copy strong {
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.weather-widget {
  padding-left: 8px;
}

.weather-icon {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  flex: 0 0 32px;
  border: 1px solid rgba(245, 197, 66, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(245, 197, 66, 0.2), transparent 58%),
    #050505;
  color: var(--brand);
  font-size: 15px;
  line-height: 1;
  box-shadow:
    0 0 0 2px rgba(245, 197, 66, 0.08),
    0 0 18px rgba(245, 197, 66, 0.14);
}

.navbar-menu {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: clamp(12px, 1.35vw, 22px);
  list-style: none;
}

.navbar-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
  color: rgba(255, 248, 215, 0.86);
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.navbar-link:not(.navbar-link-btn) {
  position: relative;
}

.navbar-link:not(.navbar-link-btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.navbar-link:hover,
.navbar-link:focus-visible {
  color: #fff;
}

.navbar-link:not(.navbar-link-btn):hover::after,
.navbar-link:not(.navbar-link-btn):focus-visible::after {
  transform: scaleX(1);
}

.navbar-link.active {
  color: var(--gold-soft);
}

.navbar-link.active::after {
  transform: scaleX(1);
}

.navbar-link-btn {
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f8dd76 0%, #d69a16 100%);
  color: #080808;
  box-shadow: 0 10px 28px rgba(245, 197, 66, 0.2);
}

.navbar-link-btn:hover,
.navbar-link-btn:focus-visible {
  background: linear-gradient(135deg, #fff1a8 0%, #f0b429 100%);
  color: #080808;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(245, 197, 66, 0.32);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

.hamburger span {
  grid-column: 1;
  grid-row: 1;
  width: 22px;
  height: 2px;
  background: var(--gold-soft);
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.hamburger span:nth-child(1) {
  transform: translateY(-7px);
}

.hamburger span:nth-child(3) {
  transform: translateY(7px);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
}

.marquee-bar {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-bottom: 1px solid rgba(245, 197, 66, 0.22);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(36, 24, 5, 0.96), rgba(5, 5, 5, 0.98));
  color: var(--gold-soft);
}

.marquee-bar::before,
.marquee-bar::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  width: 90px;
  pointer-events: none;
}

.marquee-bar::before {
  left: 0;
  background: linear-gradient(90deg, #050505, transparent);
}

.marquee-bar::after {
  right: 0;
  background: linear-gradient(270deg, #050505, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  min-height: 42px;
  align-items: center;
  gap: 34px;
  padding-inline: 34px;
  animation: marqueeScroll 34s linear infinite;
}

.marquee-track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  color: rgba(255, 248, 215, 0.88);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marquee-track span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 14px rgba(245, 197, 66, 0.8);
}

.hero {
  position: relative;
  --hero-x: 72%;
  --hero-y: 34%;
  min-height: min(760px, calc(100vh - 74px));
  display: grid;
  align-items: end;
  padding: 120px 0 78px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.58)),
    url("assets/retro8.jpeg") center 44% / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 74px 0 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(245, 197, 66, 0.12), transparent 22%),
    radial-gradient(circle at 18% 72%, rgba(245, 197, 66, 0.16), transparent 28%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 74px 0 0;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--hero-x) var(--hero-y),
    rgba(255, 241, 168, 0.18),
    rgba(245, 197, 66, 0.08) 12%,
    transparent 34%
  );
  mix-blend-mode: screen;
  opacity: 0.82;
  transition: opacity 0.25s ease;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  max-width: 790px;
  padding-left: 26px;
  border-left: 2px solid rgba(245, 197, 66, 0.78);
}

.hero-badge,
.section-kicker,
.room-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 18px rgba(245, 197, 66, 0.82);
  animation: goldPulse 1.8s ease-in-out infinite;
}

.hero-title {
  max-width: 760px;
  margin-top: 12px;
  color: #fff8dc;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 12px 35px rgba(0, 0, 0, 0.72);
}

.hero-title::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-left: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff7c8, #f5c542 48%, #b47b08);
  box-shadow:
    0 0 0 0 rgba(245, 197, 66, 0.55),
    0 0 24px rgba(245, 197, 66, 0.88);
  vertical-align: middle;
  animation: titleDotPulse 2.2s ease-in-out infinite;
}

.hero-brandline {
  width: fit-content;
  margin-top: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(245, 197, 66, 0.28);
  border-radius: var(--radius);
  background: rgba(245, 197, 66, 0.08);
  color: var(--gold-soft);
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 850;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(255, 248, 215, 0.86);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.reservation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-btn,
.primary-action,
.secondary-action,
.hero-link {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.hero-btn::before,
.primary-action::before {
  content: "";
  position: absolute;
  inset: -60% auto -60% -48%;
  width: 42%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.48),
    transparent
  );
  transform: skewX(-18deg);
  animation: buttonShimmer 4.2s ease-in-out infinite;
}

.hero-btn,
.primary-action {
  padding: 0 24px;
  background: linear-gradient(135deg, #fff1a8 0%, #f5c542 42%, #b47b08 100%);
  color: #050505;
  box-shadow: 0 14px 30px rgba(245, 197, 66, 0.22);
}

.hero-link,
.secondary-action {
  padding: 0 22px;
  border: 1px solid rgba(245, 197, 66, 0.34);
  color: var(--gold-soft);
  background: rgba(245, 197, 66, 0.05);
}

.secondary-action {
  border-color: rgba(245, 197, 66, 0.38);
  color: var(--gold-soft);
}

.hero-btn:hover,
.primary-action:hover {
  background: linear-gradient(135deg, #fff7c8 0%, #f8dd76 42%, #d69a16 100%);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(245, 197, 66, 0.26);
}

.hero-link:hover {
  background: rgba(245, 197, 66, 0.12);
  transform: translateY(-2px);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-highlights span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(245, 197, 66, 0.26);
  border-radius: var(--radius);
  background: rgba(245, 197, 66, 0.08);
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 700;
}

.hero-highlights span,
.experience-item,
.room-card,
.room-detail-card,
.stay-option-card,
.service-card,
.gallery-item,
.location-card,
.faq-list details,
.contact-info a,
.contact-info span {
  will-change: transform;
}

section {
  padding: 86px 0;
}

main > section {
  content-visibility: auto;
  contain-intrinsic-size: 700px;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 34px;
  position: relative;
  padding-bottom: 18px;
}

.section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 96px;
  height: 1px;
  background: linear-gradient(90deg, var(--brand), transparent);
}

.section-heading h2,
.about-text h2,
.reservation-panel h2,
.contact-layout h2,
.seo-copy-layout h2 {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
}

.about {
  background:
    linear-gradient(180deg, #050505 0%, #0d0d0d 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 36px;
  align-items: center;
}

.about-content > .section-kicker {
  grid-column: 1;
  align-self: end;
  margin-bottom: -18px;
}

.about-text {
  grid-column: 1;
}

.about-visual {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.about-text p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
}

.about-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(245, 197, 66, 0.22);
}

.about-visual::after,
.room-card::after,
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 241, 168, 0.14);
}

.about-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-visual figcaption {
  position: absolute;
  inset-inline: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.82);
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.experience {
  padding: 34px 0 76px;
  background: #090909;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.experience-item {
  position: relative;
  min-height: 186px;
  padding: 26px;
  background: linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
}

.experience-item::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245, 197, 66, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.experience-item:hover::before {
  opacity: 1;
}

.experience-icon {
  display: inline-flex;
  width: 50px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff1a8 0%, #c58910 100%);
  color: #050505;
  font-size: 12px;
  font-weight: 900;
}

.experience-item h3 {
  margin-top: 18px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.25;
}

.experience-item p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
}

.rooms {
  background: #050505;
}

.rooms-grid,
.services-grid {
  display: grid;
  gap: 24px;
}

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

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.room-card,
.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #151515 0%, #090909 100%);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.room-card::before,
.service-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft), var(--brand-dark));
  z-index: 1;
}

.room-card:hover,
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.room-image,
.service-image {
  width: 100%;
  height: 290px;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.06);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.service-image {
  height: 148px;
  border-bottom: 1px solid rgba(245, 197, 66, 0.14);
}

.room-card:hover .room-image,
.service-card:hover .service-image {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.08);
}

.room-body,
.service-card h3,
.service-card p {
  padding-inline: 20px;
}

.service-card h3 {
  padding-top: 18px;
}

.room-body {
  padding-block: 20px 24px;
}

.room-label {
  min-height: auto;
  margin-bottom: 8px;
}

.room-card h3,
.service-card h3 {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
}

.room-card p,
.service-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
}

.service-card p {
  min-height: 92px;
}

.room-card-link {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  margin-top: 18px;
  padding: 0 12px;
  border: 1px solid rgba(245, 197, 66, 0.28);
  border-radius: var(--radius);
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.room-card-link:hover,
.room-card-link:focus-visible {
  border-color: rgba(245, 197, 66, 0.48);
  background: rgba(245, 197, 66, 0.1);
  transform: translateY(-1px);
}

.service-card .room-card-link {
  margin-inline: 20px;
  margin-bottom: 22px;
}

.page-header {
  min-height: auto;
}

.room-page section {
  padding: 58px 0;
}

.room-page .section-heading {
  margin-bottom: 24px;
}

.room-page .section-heading h2 {
  position: relative;
}

.room-page .section-heading h2::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 18px rgba(245, 197, 66, 0.72);
  vertical-align: 0.18em;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 62px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.7)),
    radial-gradient(circle at 80% 24%, rgba(245, 197, 66, 0.18), transparent 28%),
    #050505;
}

.page-hero-layout {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 34px;
  align-items: center;
}

.page-hero-copy {
  position: relative;
  padding-left: 26px;
  border-left: 2px solid rgba(245, 197, 66, 0.78);
}

.rooms-page-hero .hero-title {
  position: relative;
  max-width: 680px;
}

.rooms-page-hero .hero-title::before {
  content: "Rooms";
  position: absolute;
  z-index: -1;
  left: -12px;
  top: -34px;
  color: rgba(245, 197, 66, 0.07);
  font-size: clamp(72px, 11vw, 132px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  pointer-events: none;
}

.services-page-hero .hero-title {
  position: relative;
  max-width: 720px;
  font-size: clamp(38px, 5.6vw, 68px);
  line-height: 1.06;
}

.services-page-hero .hero-title::before {
  content: "Services";
  position: absolute;
  z-index: -1;
  left: -12px;
  top: -34px;
  color: rgba(245, 197, 66, 0.07);
  font-size: clamp(68px, 10vw, 124px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  pointer-events: none;
}

.location-page-hero .hero-title {
  position: relative;
  max-width: 720px;
  font-size: clamp(38px, 5.8vw, 68px);
  line-height: 1.06;
}

.location-page-hero .hero-title::before {
  content: "Location";
  position: absolute;
  z-index: -1;
  left: -12px;
  top: -34px;
  color: rgba(245, 197, 66, 0.07);
  font-size: clamp(68px, 10vw, 124px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  pointer-events: none;
}

.room-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.room-hero-stats span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(245, 197, 66, 0.25);
  border-radius: var(--radius);
  background: rgba(245, 197, 66, 0.07);
  color: rgba(255, 248, 215, 0.88);
  font-size: 13px;
  font-weight: 800;
}

.page-hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(245, 197, 66, 0.24);
  border-radius: var(--radius);
  background: #0a0a0a;
  box-shadow: var(--shadow);
}

.page-hero-visual::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  z-index: 1;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft), var(--brand-dark));
}

.page-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.08);
}

.room-hero-collage {
  display: grid;
  grid-template-columns: 1fr 0.46fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  padding: 10px;
}

.room-hero-collage img {
  min-height: 0;
  border-radius: 6px;
}

.room-collage-main {
  grid-row: 1 / span 2;
}

.room-collage-small {
  height: 100%;
}

.room-hero-collage figcaption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 10px 13px;
  border: 1px solid rgba(245, 197, 66, 0.28);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.76);
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.services-hero-visual {
  display: grid;
  grid-template-columns: 1fr 0.46fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  padding: 10px;
}

.services-hero-visual img {
  min-height: 0;
  border-radius: 6px;
}

.services-hero-main {
  grid-row: 1 / span 2;
}

.services-hero-small {
  height: 100%;
}

.services-hero-visual figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 10px 13px;
  border: 1px solid rgba(245, 197, 66, 0.28);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.76);
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.location-hero-visual figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 10px 13px;
  border: 1px solid rgba(245, 197, 66, 0.28);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.76);
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.room-detail-section {
  background:
    radial-gradient(circle at top left, rgba(245, 197, 66, 0.08), transparent 30%),
    #050505;
}

.room-page .room-detail-section {
  padding-top: 52px;
}

.room-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.room-detail-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 197, 66, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #151515 0%, #090909 100%);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
}

.room-detail-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  z-index: 1;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft), var(--brand-dark));
}

.room-detail-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.06);
}

.room-detail-body {
  padding: 20px;
}

.room-detail-body h3 {
  margin-top: 6px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.1;
}

.room-detail-body p {
  margin-top: 12px;
  color: var(--muted);
}

.room-mini-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.room-mini-specs span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(245, 197, 66, 0.2);
  border-radius: var(--radius);
  background: rgba(245, 197, 66, 0.06);
  color: rgba(255, 248, 215, 0.86);
  font-size: 12px;
  font-weight: 800;
}

.room-detail-body ul {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  list-style: none;
}

.room-detail-body li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 248, 215, 0.84);
}

.room-detail-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff1a8, #c58910);
  box-shadow: 0 0 14px rgba(245, 197, 66, 0.34);
}

.service-page section {
  padding: 58px 0;
}

.service-overview {
  background:
    linear-gradient(180deg, #080808 0%, #050505 100%);
  border-bottom: 1px solid rgba(245, 197, 66, 0.16);
}

.service-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.service-overview-card {
  position: relative;
  overflow: hidden;
  min-height: 184px;
  padding: 22px;
  border: 1px solid rgba(245, 197, 66, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(245, 197, 66, 0.08), transparent 45%),
    linear-gradient(180deg, #151515 0%, #090909 100%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.service-overview-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft), var(--brand-dark));
}

.service-overview-card span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-overview-card h2 {
  margin-top: 16px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.16;
}

.service-overview-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
}

.service-detail-section {
  background:
    radial-gradient(circle at top left, rgba(245, 197, 66, 0.08), transparent 30%),
    #050505;
}

.service-detail-grid {
  display: grid;
  gap: 14px;
}

.service-detail-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  border: 1px solid rgba(245, 197, 66, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #151515 0%, #090909 100%);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
}

.service-detail-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  z-index: 1;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft), var(--brand-dark));
}

.service-detail-card img {
  width: 100%;
  height: 240px;
  min-height: 0;
  object-fit: cover;
  object-position: center 58%;
  align-self: center;
  filter: saturate(0.94) contrast(1.06);
}

.service-detail-card:nth-child(2) img {
  object-position: center 42%;
}

.service-detail-card > div {
  padding: 24px 26px;
}

.service-detail-card h3 {
  margin-top: 6px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.service-detail-card p {
  margin-top: 12px;
  color: var(--muted);
}

.service-mini-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.service-mini-grid span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(245, 197, 66, 0.2);
  border-radius: var(--radius);
  background: rgba(245, 197, 66, 0.06);
  color: rgba(255, 248, 215, 0.86);
  font-size: 12px;
  font-weight: 800;
}

.service-detail-card ul {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  list-style: none;
}

.service-detail-card li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 248, 215, 0.84);
}

.service-detail-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff1a8, #c58910);
  box-shadow: 0 0 14px rgba(245, 197, 66, 0.34);
}

.service-atmosphere {
  background:
    radial-gradient(circle at top right, rgba(245, 197, 66, 0.08), transparent 30%),
    #080808;
  border-top: 1px solid rgba(245, 197, 66, 0.14);
}

.service-atmosphere-layout {
  display: grid;
  grid-template-columns: 0.76fr 1fr;
  gap: 28px;
  align-items: start;
}

.service-atmosphere-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 12px;
}

.service-atmosphere-shot {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 197, 66, 0.22);
  border-radius: var(--radius);
  background: #0a0a0a;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}

.service-atmosphere-large {
  grid-row: span 1;
}

.service-atmosphere-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.38));
}

.service-atmosphere-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.06);
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.service-atmosphere-shot:hover img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.08);
}

.service-atmosphere-shot figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 9px 11px;
  border: 1px solid rgba(245, 197, 66, 0.22);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.72);
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.service-flow {
  background:
    linear-gradient(180deg, #0d0d0d 0%, #050505 100%);
  border-block: 1px solid rgba(245, 197, 66, 0.16);
}

.service-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-flow-card {
  position: relative;
  min-height: 184px;
  padding: 22px;
  border: 1px solid rgba(245, 197, 66, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #141414 0%, #090909 100%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.service-flow-card span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-flow-card h3 {
  margin-top: 14px;
  color: var(--ink);
  font-size: 22px;
}

.service-flow-card p {
  margin-top: 10px;
  color: var(--muted);
}

.service-seo {
  background:
    radial-gradient(circle at bottom right, rgba(245, 197, 66, 0.08), transparent 30%),
    #080808;
}

.location-page section {
  padding: 58px 0;
}

.location-detail-section {
  background:
    radial-gradient(circle at top left, rgba(245, 197, 66, 0.08), transparent 30%),
    #050505;
}

.location-detail-layout {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 28px;
  align-items: stretch;
}

.location-address-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  padding: 28px;
  border: 1px solid rgba(245, 197, 66, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(245, 197, 66, 0.12), rgba(5, 5, 5, 0.92)),
    #0a0a0a;
  box-shadow: var(--shadow);
}

.location-address-panel::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft), var(--brand-dark));
}

.location-address-panel span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-address-panel strong {
  margin-top: 12px;
  color: var(--gold-soft);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.14;
}

.location-address-panel p {
  margin-top: 10px;
  color: var(--muted);
}

.location-address-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.location-address-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(245, 197, 66, 0.3);
  border-radius: var(--radius);
  color: var(--gold-soft);
  font-weight: 800;
  text-decoration: none;
  background: rgba(245, 197, 66, 0.06);
}

.location-advantages {
  background:
    linear-gradient(180deg, #0d0d0d 0%, #050505 100%);
  border-block: 1px solid rgba(245, 197, 66, 0.16);
}

.location-advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.location-advantage-card {
  position: relative;
  min-height: 180px;
  padding: 22px;
  border: 1px solid rgba(245, 197, 66, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #141414 0%, #090909 100%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.location-advantage-card span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.location-advantage-card h3 {
  margin-top: 14px;
  color: var(--ink);
  font-size: 22px;
}

.location-advantage-card p {
  margin-top: 10px;
  color: var(--muted);
}

.location-map-section {
  background:
    radial-gradient(circle at top right, rgba(245, 197, 66, 0.08), transparent 30%),
    #080808;
}

.location-map-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.location-map-card,
.location-map-visual {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(245, 197, 66, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #151515 0%, #090909 100%);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.location-map-card h2 {
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.14;
}

.location-map-card p {
  margin: 14px 0 22px;
  color: var(--muted);
}

.location-map-visual {
  display: grid;
  min-height: 280px;
  align-content: center;
  background:
    linear-gradient(135deg, rgba(245, 197, 66, 0.14), rgba(5, 5, 5, 0.9)),
    repeating-linear-gradient(
      45deg,
      rgba(245, 197, 66, 0.08) 0 1px,
      transparent 1px 18px
    ),
    #0a0a0a;
}

.location-map-visual::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 26px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow:
    0 0 0 10px rgba(245, 197, 66, 0.12),
    0 0 32px rgba(245, 197, 66, 0.45);
}

.location-map-visual span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-map-visual strong {
  margin-top: 8px;
  color: var(--gold-soft);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.location-map-visual p {
  margin-top: 12px;
  color: rgba(255, 248, 215, 0.82);
  font-weight: 700;
}

.location-embed-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(245, 197, 66, 0.1), transparent 28%),
    linear-gradient(180deg, #050505 0%, #0c0c0c 100%);
  border-top: 1px solid rgba(245, 197, 66, 0.16);
}

.location-embed-heading {
  max-width: 760px;
}

.location-embed-frame {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  min-height: 430px;
  border: 1px solid rgba(245, 197, 66, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(245, 197, 66, 0.12), rgba(5, 5, 5, 0.72)),
    #080808;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 248, 215, 0.08);
}

.location-embed-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 248, 215, 0.08);
}

.location-embed-frame iframe {
  display: block;
  width: 100%;
  height: 430px;
  filter: saturate(0.86) contrast(1.08);
}

.stay-options {
  background:
    linear-gradient(180deg, #0d0d0d 0%, #050505 100%);
  border-block: 1px solid rgba(245, 197, 66, 0.16);
}

.stay-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stay-option-card {
  position: relative;
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(245, 197, 66, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #141414 0%, #090909 100%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.stay-option-card span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  color: var(--brand);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stay-option-card h3 {
  margin-top: 14px;
  color: var(--ink);
  font-size: 22px;
}

.stay-option-card p {
  margin-top: 10px;
  color: var(--muted);
}

.stay-option-card ul,
.room-guide-card ul {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  list-style: none;
}

.stay-option-card li,
.room-guide-card li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 248, 215, 0.82);
  font-size: 14px;
}

.stay-option-card li::before,
.room-guide-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 12px rgba(245, 197, 66, 0.4);
}

.room-compare {
  background:
    radial-gradient(circle at top right, rgba(245, 197, 66, 0.08), transparent 30%),
    #050505;
}

.room-compare-layout {
  display: grid;
  grid-template-columns: 0.64fr 1fr;
  gap: 24px;
  align-items: start;
}

.compare-table {
  overflow: hidden;
  border: 1px solid rgba(245, 197, 66, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #141414 0%, #090909 100%);
  box-shadow: var(--shadow);
}

.compare-row {
  display: grid;
  grid-template-columns: 0.72fr 1fr 1fr;
  border-bottom: 1px solid rgba(245, 197, 66, 0.14);
}

.compare-row:last-child {
  border-bottom: 0;
}

.compare-row span {
  padding: 15px 16px;
  color: rgba(255, 248, 215, 0.84);
  font-size: 15px;
  border-right: 1px solid rgba(245, 197, 66, 0.14);
}

.compare-row span:last-child {
  border-right: 0;
}

.compare-head {
  background: rgba(245, 197, 66, 0.1);
}

.compare-head span {
  color: var(--brand);
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.room-showcase {
  background:
    linear-gradient(180deg, #0d0d0d 0%, #050505 100%);
  border-block: 1px solid rgba(245, 197, 66, 0.16);
}

.room-showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 210px;
  gap: 12px;
}

.room-shot {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 197, 66, 0.22);
  border-radius: var(--radius);
  background: #0a0a0a;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}

.room-shot-wide {
  grid-row: span 2;
}

.room-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.34));
  box-shadow: inset 0 1px 0 rgba(255, 241, 168, 0.12);
}

.room-shot figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 9px 11px;
  border: 1px solid rgba(245, 197, 66, 0.22);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.72);
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.room-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.06);
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.room-shot:hover img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.08);
}

.room-guide {
  background:
    radial-gradient(circle at bottom left, rgba(245, 197, 66, 0.08), transparent 30%),
    #080808;
}

.room-guide-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.room-guide-card {
  position: relative;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(245, 197, 66, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #151515 0%, #090909 100%);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.room-guide-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft), var(--brand-dark));
}

.room-guide-card h2 {
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.14;
}

.room-guide-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
}

.room-seo {
  background:
    radial-gradient(circle at bottom right, rgba(245, 197, 66, 0.08), transparent 30%),
    #080808;
}

.page-reservation {
  border-top: 1px solid rgba(245, 197, 66, 0.22);
}

.room-faq {
  background:
    linear-gradient(180deg, #050505 0%, #0d0d0d 100%);
}

.services {
  background:
    radial-gradient(circle at top right, rgba(245, 197, 66, 0.08), transparent 28%),
    #0d0d0d;
}

.service-image {
  height: 220px;
}

.service-card {
  padding-bottom: 22px;
}

.service-card h3 {
  margin-top: 18px;
  font-size: 19px;
}

.location {
  background:
    linear-gradient(180deg, #0d0d0d 0%, #050505 100%);
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 36px;
  align-items: stretch;
}

.location-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(245, 197, 66, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(245, 197, 66, 0.12), rgba(5, 5, 5, 0.92)),
    #0a0a0a;
  box-shadow: var(--shadow);
}

.location-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft), var(--brand-dark));
}

.location-label {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-card ul {
  display: grid;
  gap: 14px;
  list-style: none;
}

.location-card li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 248, 215, 0.86);
  font-weight: 650;
}

.location-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff1a8, #c58910);
  box-shadow: 0 0 18px rgba(245, 197, 66, 0.34);
}

.seo-copy {
  background:
    radial-gradient(circle at bottom left, rgba(245, 197, 66, 0.08), transparent 30%),
    #080808;
  border-block: 1px solid rgba(245, 197, 66, 0.16);
}

.seo-copy-layout {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 40px;
  align-items: start;
}

.seo-copy-text {
  columns: 2;
  column-gap: 34px;
}

.seo-copy-text p {
  break-inside: avoid;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 16px;
}

.gallery {
  background: #050505;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-auto-rows: 230px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 197, 66, 0.22);
  border-radius: var(--radius);
  background: #0a0a0a;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}

.gallery-item-large {
  grid-row: span 2;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 54%, rgba(0, 0, 0, 0.28));
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.06);
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.08);
}

.js-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.js-reveal:nth-child(3) {
  transition-delay: 0.14s;
}

.js-reveal:nth-child(4) {
  transition-delay: 0.2s;
}

.faq {
  background:
    linear-gradient(180deg, #050505 0%, #0d0d0d 100%);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 42px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(245, 197, 66, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #141414 0%, #090909 100%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--gold-soft);
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--brand);
  font-size: 22px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  padding: 0 20px 20px;
  color: var(--muted);
}

.reservation {
  background:
    linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.86)),
    url("assets/retro12.jpeg") center / cover no-repeat;
  color: #fff;
  border-block: 1px solid rgba(245, 197, 66, 0.22);
}

.reservation-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding-block: 12px;
}

.reservation-panel h2,
.contact-layout h2 {
  color: #fff;
}

.reservation-panel p,
.contact-layout p {
  max-width: 620px;
  margin-top: 16px;
  color: rgba(255, 248, 215, 0.78);
  font-size: 17px;
}

.reservation-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.contact {
  background:
    linear-gradient(180deg, #0d0d0d 0%, #050505 100%);
  color: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 44px;
  align-items: start;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  font-style: normal;
}

.contact-info a,
.contact-info span {
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(245, 197, 66, 0.22);
  border-radius: var(--radius);
  background: rgba(245, 197, 66, 0.06);
  color: rgba(255, 248, 215, 0.84);
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.contact-info a:hover {
  border-color: rgba(245, 197, 66, 0.48);
  background: rgba(245, 197, 66, 0.1);
  transform: translateY(-2px);
}

.contact-info strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brand);
}

.contact-map {
  position: relative;
  overflow: hidden;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.48fr 1fr;
  gap: 22px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(245, 197, 66, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 18%, rgba(245, 197, 66, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(245, 197, 66, 0.1), rgba(5, 5, 5, 0.86)),
    #080808;
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 248, 215, 0.08);
}

.contact-map::before {
  content: "";
  position: absolute;
  inset-inline: 18px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft), var(--brand-dark));
}

.contact-map-copy {
  display: grid;
  align-content: center;
  padding: 16px;
}

.contact-map-copy h3 {
  margin-top: 10px;
  color: var(--gold-soft);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.14;
}

.contact-map-copy p {
  margin-top: 12px;
  color: rgba(255, 248, 215, 0.78);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border-radius: calc(var(--radius) - 2px);
  filter: saturate(0.88) contrast(1.08);
}

.footer {
  padding: 26px 0;
  border-top: 1px solid rgba(245, 197, 66, 0.22);
  background: #000;
  color: rgba(255, 248, 215, 0.72);
  text-align: center;
}

:focus-visible {
  outline: 3px solid rgba(245, 197, 66, 0.58);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .navbar-container {
    height: 74px;
  }

  .clock-copy,
  .weather-copy {
    display: none;
  }

  .clock-widget,
  .weather-widget {
    padding: 5px;
  }

  .hamburger {
    display: grid;
  }

  .navbar-menu {
    position: fixed;
    inset: 74px 0 auto 0;
    z-index: 1200;
    display: grid;
    gap: 4px;
    max-height: calc(100dvh - 74px);
    overflow-y: auto;
    padding: 16px;
    border-bottom: 1px solid rgba(245, 197, 66, 0.22);
    background: rgba(5, 5, 5, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.2s ease,
      opacity 0.2s ease,
      visibility 0.2s ease;
  }

  .navbar-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.menu-open {
    overflow: hidden;
  }

  .navbar-link {
    width: 100%;
    min-height: 46px;
    justify-content: center;
  }
}

@media (max-width: 980px) {
  .about-content,
  .page-hero-layout,
  .service-detail-card,
  .service-atmosphere-layout,
  .location-detail-layout,
  .location-map-layout,
  .room-compare-layout,
  .room-guide-layout,
  .location-layout,
  .seo-copy-layout,
  .faq-layout,
  .reservation-panel,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-content > .section-kicker {
    margin-bottom: -18px;
  }

  .about-text,
  .about-visual {
    grid-column: 1;
  }

  .about-visual {
    grid-row: auto;
  }

  .experience-grid,
  .services-grid,
  .service-overview-grid,
  .service-flow-grid,
  .location-advantage-grid,
  .stay-options-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .room-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-card img {
    width: 100%;
    height: 220px;
    min-height: 0;
    align-self: stretch;
  }

  .seo-copy-text {
    columns: 1;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .room-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-atmosphere-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .room-card {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
  }

  .room-image {
    height: 100%;
    min-height: 260px;
  }

  .service-image {
    height: 140px;
    min-height: 0;
  }

  .reservation-actions {
    justify-content: flex-start;
  }

  .contact-map {
    grid-template-columns: 1fr;
  }

  .page-hero-visual,
  .page-hero-visual img {
    min-height: 360px;
  }

  .room-hero-collage img {
    min-height: 0;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 68px;
  }

  .container,
  .navbar-container,
  .hero-content {
    width: min(100% - 32px, 1120px);
  }

  .navbar-container {
    height: 66px;
  }

  .logo-img {
    width: 40px;
    height: 40px;
  }

  .logo-mark {
    width: 50px;
    height: 50px;
  }

  .clock-widget,
  .weather-widget {
    margin-left: auto;
    padding: 5px;
  }

  .weather-widget {
    margin-left: 0;
  }

  .clock-copy,
  .weather-copy {
    display: none;
  }

  .hamburger {
    display: grid;
  }

  .navbar-menu {
    inset: 66px 0 auto 0;
    max-height: calc(100dvh - 66px);
  }

  .hero {
    min-height: 650px;
    align-items: end;
    padding: 96px 0 50px;
    background-position: center top;
  }

  section {
    padding: 62px 0;
  }

  .about-visual img {
    height: 430px;
  }

  .room-card {
    display: block;
  }

  .room-image {
    height: 300px;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .contact-map {
    gap: 14px;
    padding: 14px;
  }

  .contact-map iframe {
    height: 320px;
  }

  .gallery-grid {
    grid-auto-rows: 210px;
  }

  .service-page .page-hero {
    padding: 44px 0 38px;
  }

  .location-page .page-hero {
    padding: 44px 0 38px;
  }

  .services-page-hero .hero-title {
    max-width: 100%;
    font-size: 38px;
    line-height: 1.08;
  }

  .location-page-hero .hero-title {
    max-width: 100%;
    font-size: 38px;
    line-height: 1.08;
  }

  .service-overview-card,
  .service-detail-card > div,
  .service-flow-card,
  .location-advantage-card,
  .location-address-panel,
  .location-map-card,
  .location-map-visual {
    padding: 20px;
  }

  .location-embed-frame {
    min-height: 360px;
  }

  .location-embed-frame iframe {
    height: 360px;
  }

  .service-detail-card h3,
  .service-flow-card h3 {
    font-size: 24px;
  }

  .services-hero-visual {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 130px;
    min-height: 0;
    height: auto;
  }

  .services-hero-visual img {
    height: 100%;
    min-height: 0;
  }

  .services-hero-main {
    grid-column: 1 / span 2;
    grid-row: 1;
  }

  .services-hero-small {
    grid-row: 2;
  }

  .service-atmosphere-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .logo-copy {
    font-size: 16px;
  }

  .hero {
    min-height: 620px;
    padding-bottom: 38px;
  }

  .marquee-track {
    min-height: 38px;
    gap: 26px;
    animation-duration: 26s;
  }

  .marquee-track span {
    font-size: 12px;
  }

  .hero-title {
    font-size: 40px;
  }

  .services-page-hero .hero-title {
    font-size: 32px;
    line-height: 1.1;
  }

  .location-page-hero .hero-title {
    font-size: 32px;
    line-height: 1.1;
  }

  .section-heading h2,
  .about-text h2,
  .reservation-panel h2,
  .contact-layout h2,
  .seo-copy-layout h2,
  .room-guide-card h2 {
    font-size: 28px;
  }

  .hero-title::after {
    width: 10px;
    height: 10px;
    margin-left: 10px;
  }

  .hero-actions,
  .reservation-actions {
    display: grid;
  }

  .hero-btn,
  .hero-link,
  .primary-action,
  .secondary-action {
    width: 100%;
    min-width: 0;
    text-align: center;
  }

  .hero-highlights {
    display: grid;
  }

  .experience-grid,
  .services-grid,
  .service-overview-grid,
  .service-flow-grid,
  .stay-options-grid,
  .service-atmosphere-grid,
  .room-showcase-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .compare-table {
    display: grid;
    gap: 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .compare-row {
    grid-template-columns: 1fr;
    overflow: hidden;
    border: 1px solid rgba(245, 197, 66, 0.22);
    border-radius: var(--radius);
    background: linear-gradient(180deg, #141414 0%, #090909 100%);
  }

  .compare-row span {
    border-right: 0;
    border-bottom: 1px solid rgba(245, 197, 66, 0.12);
  }

  .compare-row span:last-child {
    border-bottom: 0;
  }

  .page-hero {
    padding: 50px 0 42px;
  }

  .room-page section,
  .service-page section,
  .location-page section {
    padding: 44px 0;
  }

  .location-embed-frame {
    margin-top: 20px;
    min-height: 300px;
  }

  .location-embed-frame iframe {
    height: 300px;
  }

  .contact-map-copy {
    padding: 10px;
  }

  .contact-map iframe {
    height: 280px;
  }

  .page-hero-copy {
    padding-left: 20px;
  }

  .page-hero-visual,
  .page-hero-visual img,
  .room-detail-card img,
  .room-shot {
    min-height: 0;
    height: 280px;
  }

  .service-detail-card img,
  .service-atmosphere-shot {
    min-height: 0;
    height: 220px;
  }

  .services-hero-visual {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 120px;
    height: auto;
  }

  .services-hero-visual img {
    height: 100%;
    min-height: 0;
  }

  .services-hero-main {
    grid-column: 1 / span 2;
    grid-row: 1;
  }

  .services-hero-small {
    grid-row: 2;
  }

  .room-hero-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 120px;
    height: auto;
  }

  .room-hero-collage img {
    height: 100%;
    min-height: 0;
  }

  .room-collage-main {
    grid-column: 1 / span 2;
    grid-row: 1;
  }

  .room-collage-small {
    grid-row: 2;
  }

  .gallery-item-large {
    grid-row: span 1;
  }

  .room-shot-wide {
    grid-row: span 1;
  }

  .service-atmosphere-large {
    grid-row: span 1;
  }

  .experience-item {
    min-height: 154px;
  }

  .about-visual img,
  .room-image,
  .service-image {
    height: 260px;
  }

  .service-image {
    height: 150px;
  }

  .service-card p {
    min-height: 0;
  }

  .service-overview-card,
  .service-flow-card {
    min-height: 0;
  }
}

@media (max-width: 390px) {
  .navbar-container {
    gap: 10px;
  }

  .logo-copy {
    display: none;
  }

  .logo-mark {
    width: 46px;
    height: 46px;
  }

  .logo-img {
    width: 36px;
    height: 36px;
  }

  .clock-face,
  .weather-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .hamburger {
    width: 40px;
    height: 40px;
  }

  .services-page-hero .hero-title {
    font-size: 30px;
  }

  .location-page-hero .hero-title {
    font-size: 30px;
  }

  .service-overview-card h2,
  .service-detail-card h3,
  .service-flow-card h3,
  .location-advantage-card h3 {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js-reveal {
    opacity: 1;
    transform: none;
  }

  .marquee-track {
    animation: none;
  }
}

@keyframes goldPulse {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(0.82);
    box-shadow: 0 0 0 0 rgba(245, 197, 66, 0.48);
  }
  50% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(245, 197, 66, 0);
  }
}

@keyframes titleDotPulse {
  0%,
  100% {
    transform: scale(0.86);
    box-shadow:
      0 0 0 0 rgba(245, 197, 66, 0.42),
      0 0 20px rgba(245, 197, 66, 0.7);
  }
  50% {
    transform: scale(1.06);
    box-shadow:
      0 0 0 12px rgba(245, 197, 66, 0),
      0 0 30px rgba(245, 197, 66, 0.95);
  }
}

@keyframes buttonShimmer {
  0%,
  58% {
    left: -48%;
  }
  76%,
  100% {
    left: 120%;
  }
}

@keyframes logoAura {
  to {
    transform: rotate(1turn);
  }
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
