/*
Theme Name: ToNe Otel
Theme URI: https://toneotel.com/
Author: ToNe Otel
Description: ToNe Otel Gömeç için özel hazırlanmış, mobil uyumlu rezervasyon ve tanıtım teması.
Version: 1.3.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: tone-otel
*/

:root {
  --ink: #0b1110;
  --ink-soft: #17201f;
  --paper: #f5f4ee;
  --white: #ffffff;
  --blue: #1c4cff;
  --blue-dark: #1436bc;
  --acid: #d9ff43;
  --line: rgba(11, 17, 16, 0.16);
  --radius: 2.25rem;
  --header-height: 5.5rem;
  --page-x: clamp(1.25rem, 4vw, 4.75rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

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

.page-loader {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 1rem;
  color: var(--white);
  background: var(--ink);
  animation: loader-out 0.55s var(--ease) 0.65s forwards;
}

.loader-mark {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.09em;
}

.loader-line {
  width: 100%;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.loader-line::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--acid);
  transform: translateX(-100%);
  animation: loader-line 0.62s var(--ease) forwards;
}

@keyframes loader-line {
  to { transform: translateX(0); }
}

@keyframes loader-out {
  99% { visibility: visible; }
  100% { visibility: hidden; opacity: 0; transform: translateY(-100%); }
}

.scroll-progress {
  position: fixed;
  z-index: 995;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 var(--page-x);
  transition: min-height 0.35s var(--ease), background-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  right: var(--page-x);
  bottom: 0;
  left: var(--page-x);
  height: 1px;
  background: rgba(11, 17, 16, 0.12);
  transition: opacity 0.25s ease;
}

.site-header.is-scrolled {
  min-height: 4.6rem;
  background: rgba(245, 244, 238, 0.9);
  box-shadow: 0 0.75rem 2.5rem rgba(11, 17, 16, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled::after {
  opacity: 0;
}

.wordmark {
  z-index: 1;
  display: inline-flex;
  justify-self: start;
  align-items: center;
  gap: 0.75rem;
  width: max-content;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.wordmark > span {
  font-size: 1.82rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.09em;
}

.wordmark small {
  max-width: 3.5rem;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
}

.desktop-nav {
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2vw, 2.5rem);
  padding: 0.7rem 1.1rem;
  border: 1px solid rgba(11, 17, 16, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(12px);
}

.desktop-nav a {
  position: relative;
  font-size: 0.88rem;
  font-weight: 700;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.2rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-book {
  z-index: 1;
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 0.75rem;
  min-height: 3rem;
  padding: 0.65rem 1.1rem 0.65rem 1.25rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s var(--ease);
}

.header-book svg,
.button svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.header-book:hover {
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.menu-backdrop {
  position: fixed;
  z-index: 108;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(4, 7, 7, 0.56);
  backdrop-filter: blur(8px);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu {
  position: fixed;
  z-index: 109;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  max-height: min(92svh, 48rem);
  padding: 1.25rem 1.25rem max(1.4rem, env(safe-area-inset-bottom));
  border-radius: 2rem 2rem 0 0;
  color: var(--white);
  background: var(--ink);
  transform: translateY(105%);
  transition: transform 0.52s var(--ease), visibility 0.52s ease;
  overflow-y: auto;
  overscroll-behavior: contain;
}

body.menu-open .menu-backdrop,
body.menu-open .mobile-menu {
  visibility: visible;
}

body.menu-open .menu-backdrop {
  opacity: 1;
}

body.menu-open .mobile-menu {
  transform: translateY(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.mobile-menu-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.menu-close {
  display: grid;
  place-items: center;
  width: 2.75rem;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: transparent;
}

.menu-close svg {
  width: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.mobile-nav {
  display: grid;
  padding: 0.7rem 0 1.2rem;
}

.mobile-nav a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.82rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.65rem, 8vw, 2.45rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.mobile-nav small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  text-align: right;
}

.mobile-book {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.75rem;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  color: var(--ink);
  background: var(--acid);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 43%) minmax(0, 57%);
  min-height: max(48rem, 100svh);
  padding-bottom: 5.5rem;
  background: var(--paper);
  overflow: hidden;
}

.hero-ghost {
  position: absolute;
  z-index: 0;
  top: 20%;
  left: -0.09em;
  color: transparent;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(8rem, 21vw, 24rem);
  font-weight: 800;
  line-height: 0.75;
  letter-spacing: -0.12em;
  -webkit-text-stroke: 1px rgba(11, 17, 16, 0.085);
  transform: rotate(-90deg) translateX(-36%);
  transform-origin: left top;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-height) + 5rem) clamp(2rem, 5vw, 6rem) 5rem var(--page-x);
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: max-content;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.eyebrow span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0.35rem rgba(28, 76, 255, 0.13);
}

.hero h1,
.section-title,
.rooms-heading h2,
.experience h2,
.location h2,
.booking h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.hero h1 {
  max-width: 8.2em;
  margin-top: 2.2rem;
  font-size: clamp(4rem, 7.2vw, 8.1rem);
}

.hero h1 em,
.experience h2 em,
.booking h2 em,
.manifesto em {
  color: var(--blue);
  font-style: normal;
}

.hero-lead {
  max-width: 31rem;
  margin: 2.2rem 0 0;
  color: rgba(11, 17, 16, 0.7);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 3.7rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 0.3s var(--ease), color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.button-primary {
  color: var(--white);
  background: var(--ink);
}

.button-primary:hover {
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-3px);
}

.button-link {
  min-height: auto;
  padding: 0.45rem 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
}

.button-link:hover {
  color: var(--blue);
}

.hero-stage {
  position: relative;
  z-index: 1;
  min-width: 0;
  margin: 1rem 1rem 1rem 0;
  border-radius: 0 0 0 var(--radius);
  background: #cbd6db;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  clip-path: inset(0 0 0 100%);
  transition: opacity 0.8s ease, clip-path 1.1s var(--ease);
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  transition: transform 7s ease;
}

.hero-slide.is-active img {
  transform: scale(1);
}

.hero-slide figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(1.2rem, 3vw, 3rem);
  bottom: clamp(6.5rem, 9vw, 8.5rem);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-slide figcaption span {
  color: var(--acid);
}

.hero-shade {
  position: absolute;
  z-index: 2;
  inset: 45% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(3, 8, 9, 0.62));
  pointer-events: none;
}

.hero-controls {
  position: absolute;
  z-index: 4;
  right: clamp(1.2rem, 3vw, 3rem);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--white);
}

.hero-controls button {
  display: grid;
  place-items: center;
  width: 2.9rem;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(11, 17, 16, 0.17);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}

.hero-controls button:hover {
  color: var(--ink);
  background: var(--acid);
}

.hero-controls svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.hero-counter {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  min-width: 4.5rem;
  padding: 0 0.75rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.hero-counter strong {
  font-size: 1.25rem;
}

.hero-counter span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
}

.hero-pause .play-icon {
  display: none;
}

.hero-pause[aria-pressed="true"] .pause-icon {
  display: none;
}

.hero-pause[aria-pressed="true"] .play-icon {
  display: block;
}

.hero-progress {
  position: absolute;
  z-index: 4;
  right: clamp(1.2rem, 3vw, 3rem);
  bottom: 1rem;
  width: min(20rem, 58%);
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.26);
}

.hero-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
}

.hero-progress span.is-running {
  animation: hero-progress 6.5s linear forwards;
}

.hero-progress span.is-paused {
  animation-play-state: paused;
}

@keyframes hero-progress {
  to { transform: scaleX(1); }
}

.hero-rail {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 5.5rem;
  color: var(--white);
  background: var(--ink);
}

.hero-rail div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-rail div:last-child {
  border-right: 0;
}

.hero-rail svg {
  width: 1.35rem;
  fill: none;
  stroke: var(--acid);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.hero-rail span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.section {
  position: relative;
  padding: clamp(6rem, 11vw, 11rem) var(--page-x);
}

.section-index {
  position: absolute;
  top: clamp(6rem, 11vw, 11rem);
  right: var(--page-x);
  display: grid;
  place-items: center;
  width: 3.25rem;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

.story {
  min-height: 54rem;
  background: var(--paper);
}

.story-kicker {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(4rem, 12vw, 12rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.11em;
}

.story-kicker span {
  color: transparent;
  -webkit-text-stroke: 1px var(--ink);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.7fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
  margin-top: clamp(5rem, 9vw, 8rem);
}

.section-title {
  max-width: 10em;
  font-size: clamp(3rem, 6vw, 6.5rem);
}

.story-copy {
  padding-top: 0.5rem;
}

.story-copy p {
  margin: 0 0 1.35rem;
  color: rgba(11, 17, 16, 0.67);
}

.story-copy .story-lead {
  color: var(--ink);
  font-size: clamp(1.22rem, 1.8vw, 1.55rem);
  line-height: 1.5;
}

.story-inventory {
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--blue);
  color: var(--ink) !important;
  background: rgba(8, 25, 27, 0.045);
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-width: min(100%, 19rem);
  margin-top: 1.4rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.text-link:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.story-note {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  max-width: 28rem;
  margin: clamp(4rem, 8vw, 8rem) 0 0 auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.story-note > span {
  color: var(--blue);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.story-note p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
}

.rooms {
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}

.rooms::before {
  content: "ROOMS";
  position: absolute;
  top: 2rem;
  right: -0.04em;
  color: transparent;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(7rem, 19vw, 20rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.1em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.rooms-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(17rem, 28rem);
  align-items: end;
  gap: 3rem;
}

.section-tag {
  color: var(--blue);
}

.rooms .section-tag {
  color: var(--acid);
}

.rooms-heading h2,
.experience h2,
.location h2,
.booking h2 {
  margin-top: 1.4rem;
  font-size: clamp(3.4rem, 7vw, 7.6rem);
}

.rooms-heading p {
  margin: 0 0 0.65rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  line-height: 1.75;
}

.room-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(17rem, 0.82fr) minmax(0, 1.5fr) minmax(17rem, 0.75fr);
  min-height: 36rem;
  margin-top: clamp(4rem, 7vw, 7rem);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.5rem;
  overflow: hidden;
}

.room-choices {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.035);
}

.room-choice {
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  align-items: center;
  gap: 0.8rem;
  flex: 1;
  min-height: 5rem;
  padding: 1rem 1.35rem;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(0.95rem, 1.3vw, 1.18rem);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease, background 0.3s ease;
}

.room-choice:last-child {
  border-bottom: 0;
}

.room-choice span {
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
}

.room-choice > svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.room-choice > strong {
  font: inherit;
}

.room-choice i {
  font-style: normal;
  opacity: 0;
  transform: translate(-0.4rem, 0.4rem);
  transition: opacity 0.3s ease, transform 0.3s var(--ease);
}

.room-choice:hover,
.room-choice.is-active {
  color: var(--ink);
  background: var(--acid);
}

.room-choice.is-active i,
.room-choice:hover i {
  opacity: 1;
  transform: translate(0, 0);
}

.room-visual {
  position: relative;
  min-width: 0;
  background: #d7d5cc;
  overflow: hidden;
}

.room-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 6, 0.42), transparent 50%);
  pointer-events: none;
}

.room-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease, transform 0.7s var(--ease);
}

.room-visual img.is-changing {
  opacity: 0;
  transform: scale(1.04);
}

.room-badge {
  position: absolute;
  z-index: 2;
  right: 1.4rem;
  bottom: 1.4rem;
  display: grid;
  place-content: center;
  width: 7.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--ink);
  background: var(--acid);
  text-align: center;
}

.room-badge span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
}

.room-badge small {
  margin-top: 0.15rem;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 3rem);
  background: var(--ink-soft);
}

.room-type {
  color: var(--acid);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.room-panel h3 {
  margin: 1.1rem 0 1.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 3.3vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.room-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.7;
}

.room-panel ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.8rem 0 2.1rem;
  padding: 0;
  list-style: none;
}

.room-panel li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
}

.room-panel li::before {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--acid);
}

.room-panel > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  font-weight: 800;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.room-panel > a:hover {
  color: var(--acid);
  border-color: var(--acid);
}

.experience {
  background: var(--white);
}

.experience-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.45fr);
  align-items: end;
  gap: 3rem;
}

.experience-intro .section-tag {
  grid-column: 1 / -1;
}

.experience h2 {
  margin-top: 0;
}

.experience-intro > p {
  max-width: 25rem;
  margin: 0 0 0.8rem;
  color: rgba(11, 17, 16, 0.62);
  font-size: 1.05rem;
}

.amenities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(4rem, 8vw, 8rem);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.amenity {
  min-height: 17rem;
  padding: clamp(1.5rem, 3vw, 3rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 0.35s ease, background-color 0.35s ease;
}

.amenity:hover {
  color: var(--white);
  background: var(--blue);
}

.amenity svg {
  width: 2.8rem;
  height: 2.8rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.amenity h3 {
  margin: 3.8rem 0 0.65rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}

.amenity p {
  margin: 0;
  color: rgba(11, 17, 16, 0.55);
  font-size: 0.85rem;
  transition: color 0.35s ease;
}

.amenity:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.manifesto {
  position: relative;
  display: grid;
  grid-template-columns: minmax(10rem, 0.35fr) 1fr;
  align-items: center;
  gap: clamp(2rem, 8vw, 9rem);
  min-height: 42rem;
  padding: clamp(5rem, 9vw, 9rem) var(--page-x);
  color: var(--white);
  background: var(--blue);
  overflow: hidden;
}

.manifesto::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -22vw;
  width: 48vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 8vw rgba(255, 255, 255, 0.035), 0 0 0 16vw rgba(255, 255, 255, 0.025);
}

.manifesto-orbit {
  position: relative;
  width: min(19rem, 100%);
  aspect-ratio: 1;
}

.manifesto-orbit svg {
  width: 100%;
  height: 100%;
  fill: var(--acid);
  animation: orbit 18s linear infinite;
}

.manifesto-orbit text {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.manifesto-orbit > span {
  position: absolute;
  inset: 50% auto auto 50%;
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(4.5rem, 10vw, 8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.09em;
  transform: translate(-50%, -54%);
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

.manifesto > p {
  position: relative;
  z-index: 1;
  max-width: 15em;
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.8rem, 6.3vw, 7rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.075em;
}

.manifesto em {
  color: var(--acid);
}

.location {
  display: grid;
  grid-template-columns: minmax(19rem, 0.6fr) minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
  background: var(--paper);
}

.location h2 {
  font-size: clamp(3rem, 5.8vw, 6.4rem);
}

.location-copy > p {
  max-width: 30rem;
  margin: 2.2rem 0 0;
  color: rgba(11, 17, 16, 0.6);
  font-size: 1rem;
}

.location-links {
  display: grid;
  margin-top: 2.8rem;
}

.location-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 800;
  transition: color 0.25s ease, padding 0.3s var(--ease);
}

.location-links a:hover {
  padding-left: 0.75rem;
  color: var(--blue);
}

.map-wrap {
  position: relative;
  min-height: 38rem;
  border-radius: var(--radius);
  background: #d8dbd3;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 38rem;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}

.map-stamp {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.booking {
  display: grid;
  min-height: 47rem;
  place-content: center;
  color: var(--white);
  background: var(--ink);
  text-align: center;
  overflow: hidden;
}

.booking::before,
.booking::after {
  content: "";
  position: absolute;
  width: 23rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.booking::before {
  top: -11rem;
  left: -7rem;
  box-shadow: 0 0 0 5rem rgba(255, 255, 255, 0.025);
}

.booking::after {
  right: -5rem;
  bottom: -14rem;
  box-shadow: 0 0 0 6rem rgba(28, 76, 255, 0.18);
}

.booking-mark {
  position: absolute;
  inset: 50% auto auto 50%;
  color: transparent;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(10rem, 30vw, 34rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.11em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.booking-content {
  position: relative;
  z-index: 2;
}

.booking .section-tag {
  color: var(--acid);
}

.booking h2 {
  font-size: clamp(3.5rem, 8vw, 8.5rem);
}

.booking h2 em {
  color: var(--acid);
}

.booking-content > p {
  max-width: 34rem;
  margin: 2rem auto 0;
  color: rgba(255, 255, 255, 0.61);
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2.4rem;
}

.button-light {
  color: var(--ink);
  background: var(--acid);
}

.button-light:hover {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-3px);
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.button-outline:hover {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

.site-footer {
  padding: clamp(4rem, 8vw, 7rem) var(--page-x) 2rem;
  color: var(--white);
  background: #070b0a;
}

.footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-wordmark > span {
  font-size: clamp(3.8rem, 9vw, 8rem);
}

.footer-wordmark small {
  max-width: 4.5rem;
  font-size: 0.72rem;
}

.footer-top p {
  max-width: 24rem;
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.53);
  text-align: right;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.6fr;
  gap: 3rem;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.footer-grid > div > span {
  margin-bottom: 0.5rem;
  color: var(--acid);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.footer-grid a,
.footer-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  line-height: 1.8;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
}

.footer-bottom a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.floating-book {
  position: fixed;
  z-index: 90;
  right: 1rem;
  bottom: 1rem;
  display: none;
  align-items: center;
  gap: 0.65rem;
  min-height: 3.4rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  color: var(--ink);
  background: var(--acid);
  box-shadow: 0 1rem 2.5rem rgba(5, 10, 10, 0.25);
  font-size: 0.78rem;
  font-weight: 800;
}

.floating-book svg {
  width: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

body.motion-ready .reveal {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 0.8s ease, transform 0.9s var(--ease);
}

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

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  }

  .desktop-nav {
    gap: 1rem;
  }

  .room-stage {
    grid-template-columns: 15rem minmax(0, 1.3fr) minmax(15rem, 0.7fr);
  }

  .room-panel {
    padding: 1.5rem;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 4.6rem;
    --radius: 1.6rem;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-book {
    display: none;
  }

  .menu-toggle {
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 2.75rem;
    padding: 0.55rem 0.8rem 0.55rem 1rem;
    border: 1px solid rgba(11, 17, 16, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.75rem;
    font-weight: 800;
  }

  .menu-toggle i {
    position: relative;
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 50%;
    background: var(--ink);
  }

  .menu-toggle i::before,
  .menu-toggle i::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 0.7rem;
    height: 1px;
    background: var(--white);
    transform: translateX(-50%);
  }

  .menu-toggle i::before { top: 0.64rem; }
  .menu-toggle i::after { bottom: 0.64rem; }

  .hero {
    display: block;
    min-height: 0;
    padding-bottom: 0;
  }

  .hero-copy {
    min-height: 43rem;
    padding: calc(var(--header-height) + 4rem) var(--page-x) 5rem;
  }

  .hero-ghost {
    top: 12rem;
    left: auto;
    right: -0.08em;
    font-size: 15rem;
    transform: none;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 12vw, 6.3rem);
  }

  .hero-stage {
    height: min(72svh, 44rem);
    margin: 0 0 0 1rem;
    border-radius: var(--radius) 0 0 0;
  }

  .hero-rail {
    position: relative;
    height: auto;
    min-height: 5rem;
  }

  .hero-rail div {
    padding: 1rem 0.75rem;
  }

  .hero-rail span {
    font-size: 0.68rem;
  }

  .story-grid,
  .rooms-heading,
  .experience-intro,
  .location {
    grid-template-columns: 1fr;
  }

  .story-grid {
    gap: 2.5rem;
  }

  .story-copy {
    max-width: 36rem;
    margin-left: auto;
  }

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

  .room-choices {
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .room-choices::-webkit-scrollbar {
    display: none;
  }

  .room-choice {
    grid-template-columns: 1.5rem auto;
    flex: 0 0 auto;
    min-width: 12rem;
    min-height: 4.7rem;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 0;
  }

  .room-choice i {
    display: none;
  }

  .room-visual {
    min-height: 34rem;
  }

  .room-panel {
    padding: 2.2rem;
  }

  .experience-intro .section-tag {
    grid-column: auto;
  }

  .experience-intro {
    gap: 1.6rem;
  }

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

  .manifesto {
    grid-template-columns: minmax(9rem, 0.32fr) 1fr;
  }

  .location-copy {
    max-width: 40rem;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 32rem;
  }
}

@media (max-width: 620px) {
  :root {
    --page-x: 1.15rem;
  }

  .site-header {
    min-height: 4.35rem;
  }

  .site-header::after {
    right: 1rem;
    left: 1rem;
  }

  .wordmark > span {
    font-size: 1.55rem;
  }

  .wordmark small {
    font-size: 0.54rem;
  }

  .menu-toggle > span {
    display: none;
  }

  .menu-toggle {
    padding: 0.4rem;
  }

  .hero-copy {
    min-height: 39rem;
    padding-top: 8.8rem;
    padding-bottom: 4rem;
  }

  .hero h1 {
    margin-top: 1.6rem;
    font-size: clamp(3.15rem, 15.2vw, 5rem);
    line-height: 0.98;
  }

  .hero-lead {
    margin-top: 1.6rem;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 0.9rem;
    margin-top: 1.8rem;
  }

  .button {
    min-height: 3.35rem;
    padding: 0.78rem 1.15rem;
    font-size: 0.8rem;
  }

  .hero-stage {
    height: 64svh;
    min-height: 31rem;
  }

  .hero-slide figcaption {
    right: 1.15rem;
    bottom: 6.4rem;
    font-size: 0.65rem;
  }

  .hero-controls {
    right: 1.15rem;
    bottom: 1.7rem;
  }

  .hero-controls button {
    width: 2.65rem;
  }

  .hero-progress {
    right: 1.15rem;
    bottom: 0.75rem;
    width: calc(100% - 2.3rem);
  }

  .hero-rail {
    grid-template-columns: 1fr;
  }

  .hero-rail div {
    justify-content: flex-start;
    padding: 0.9rem 1.2rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-rail div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-top: 5.6rem;
    padding-bottom: 5.6rem;
  }

  .section-index {
    top: 5.6rem;
    width: 2.75rem;
  }

  .story {
    min-height: 0;
  }

  .story-kicker {
    padding-top: 4.8rem;
    font-size: 23vw;
  }

  .story-grid {
    margin-top: 3.5rem;
  }

  .section-title,
  .rooms-heading h2,
  .experience h2,
  .location h2,
  .booking h2 {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
    line-height: 0.98;
  }

  .story-copy .story-lead {
    font-size: 1.15rem;
  }

  .story-note {
    align-items: flex-start;
    margin-top: 3.5rem;
  }

  .rooms {
    border-radius: 1.4rem 1.4rem 0 0;
  }

  .rooms-heading {
    gap: 1.5rem;
  }

  .room-stage {
    min-height: 0;
    margin-top: 3.3rem;
    border-radius: 1rem;
  }

  .room-visual {
    min-height: 28rem;
  }

  .room-badge {
    right: 1rem;
    bottom: 1rem;
    width: 6.5rem;
  }

  .room-panel {
    padding: 1.6rem;
  }

  .room-panel h3 {
    font-size: 2.5rem;
  }

  .amenities {
    grid-template-columns: 1fr;
    margin-top: 3.5rem;
  }

  .amenity {
    min-height: auto;
    padding: 1.6rem;
  }

  .amenity h3 {
    margin-top: 2rem;
  }

  .manifesto {
    grid-template-columns: 1fr;
    min-height: 42rem;
    text-align: center;
  }

  .manifesto-orbit {
    width: 10rem;
    margin: 0 auto;
  }

  .manifesto > p {
    margin: 0 auto;
    font-size: clamp(2.65rem, 12vw, 4.5rem);
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 27rem;
  }

  .booking {
    min-height: 42rem;
  }

  .booking h2 {
    font-size: clamp(3.3rem, 16vw, 5.2rem);
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top p {
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1.2rem;
  }

  .footer-grid > div:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-bottom {
    padding-bottom: 4.5rem;
  }

  .floating-book {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  body.motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

/* WordPress yönetici çubuğu uyumu */
.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

/* Hotel-focused visual revision */
:root {
  --ink: #08191b;
  --ink-soft: #10282a;
  --paper: #f6f3eb;
  --blue: #0c7780;
  --blue-dark: #075860;
  --acid: #e1c27a;
  --green: #4d9e2b;
  --line: rgba(8, 25, 27, 0.15);
}

.brand-lockup {
  padding: 0.58rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0.7rem;
  background: rgba(4, 12, 13, 0.88);
  box-shadow: 0 0.65rem 1.8rem rgba(0, 0, 0, 0.13);
}

.brand-logo {
  width: clamp(7.3rem, 10vw, 9.5rem);
  height: auto;
}

.site-header:not(.is-scrolled) {
  color: var(--white);
}

.site-header:not(.is-scrolled)::after {
  background: rgba(255, 255, 255, 0.2);
}

.site-header:not(.is-scrolled) .desktop-nav {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(6, 19, 20, 0.43);
}

.site-header.is-scrolled {
  background: rgba(246, 243, 235, 0.93);
}

.header-book {
  background: var(--blue-dark);
}

.hotel-hero {
  display: block;
  min-height: max(52rem, 100svh);
  padding: 0;
  color: var(--white);
  background: var(--ink);
}

.hotel-hero .hero-stage {
  position: absolute;
  z-index: 0;
  inset: 0;
  min-width: 0;
  margin: 0;
  border-radius: 0;
}

.hotel-hero .hero-shade {
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 14, 16, 0.87) 0%, rgba(3, 14, 16, 0.56) 45%, rgba(3, 14, 16, 0.12) 78%),
    linear-gradient(0deg, rgba(3, 14, 16, 0.68) 0%, transparent 48%);
}

.hotel-hero .hero-copy {
  position: relative;
  z-index: 3;
  width: min(66rem, 76%);
  min-height: max(52rem, 100svh);
  padding: calc(var(--header-height) + 3.5rem) var(--page-x) 15rem;
}

.hero-brand {
  width: clamp(10.5rem, 15vw, 14.5rem);
  height: auto;
  margin-bottom: 2.1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.8rem;
  background: rgba(3, 13, 14, 0.77);
}

.hotel-hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.hotel-hero .eyebrow span {
  background: var(--acid);
  box-shadow: 0 0 0 0.35rem rgba(225, 194, 122, 0.17);
}

.hotel-hero h1 {
  max-width: 10em;
  margin-top: 1.5rem;
  color: var(--white);
  font-size: clamp(3.8rem, 6.5vw, 7.2rem);
}

.hotel-hero h1 em {
  color: var(--acid);
}

.hotel-hero .hero-lead {
  max-width: 43rem;
  color: rgba(255, 255, 255, 0.78);
}

.hotel-hero .button-primary {
  color: var(--ink);
  background: var(--acid);
}

.hotel-hero .button-primary:hover {
  color: var(--white);
  background: var(--blue);
}

.hotel-hero .button-link {
  color: var(--white);
}

.hero-facts {
  position: absolute;
  z-index: 4;
  bottom: 9.5rem;
  left: var(--page-x);
  display: flex;
  gap: 0.55rem;
}

.hero-facts span {
  padding: 0.72rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(5, 20, 22, 0.43);
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  font-weight: 700;
}

.hotel-hero .hero-slide figcaption {
  bottom: 13.8rem;
}

.hotel-hero .hero-controls {
  bottom: 9.5rem;
}

.hotel-hero .hero-progress {
  bottom: 8.85rem;
}

.booking-bar {
  position: absolute;
  z-index: 5;
  right: var(--page-x);
  bottom: 1.25rem;
  left: var(--page-x);
  display: grid;
  grid-template-columns: repeat(3, minmax(9rem, 0.75fr)) minmax(15rem, 1.2fr);
  gap: 0;
  min-height: 6rem;
  padding: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 1.2rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 1.4rem 4rem rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
}

.booking-field {
  display: grid;
  align-content: center;
  gap: 0.25rem;
  padding: 0.7rem 1.2rem;
  border-right: 1px solid var(--line);
}

.booking-field label {
  color: rgba(8, 25, 27, 0.56);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-field input,
.booking-field select {
  width: 100%;
  min-height: 2rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 700;
}

.booking-field input:focus,
.booking-field select:focus {
  outline: 0;
}

.booking-bar > button {
  min-height: 100%;
  padding: 1rem 1.3rem;
  border: 0;
  border-radius: 0.85rem;
  color: var(--white);
  background: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background-color 0.25s ease;
}

.booking-bar > button:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.room-common {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  margin-top: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.6rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.035);
}

.room-common > span {
  color: var(--acid);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.room-common ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.room-common li {
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
}

.amenities {
  grid-template-columns: repeat(5, 1fr);
}

.amenity {
  display: flex;
  flex-direction: column;
  min-height: 13.5rem;
  padding: clamp(1.25rem, 2vw, 2rem);
}

.amenity h3 {
  margin-top: auto;
  padding-top: 2.2rem;
  font-size: 1.05rem;
}

.amenity-featured {
  color: var(--white);
  background: var(--blue-dark);
}

.amenity-featured p {
  color: rgba(255, 255, 255, 0.7);
}

.amenity-featured a {
  display: inline-block;
  margin-top: 0.85rem;
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 800;
}

.ev-experience {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(22rem, 0.75fr);
  gap: clamp(2rem, 6vw, 6.5rem);
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 12%, rgba(77, 158, 43, 0.24), transparent 30%),
    var(--ink);
  overflow: hidden;
}

.ev-media {
  position: relative;
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.3);
}

.ev-media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 0;
  background: #071011;
  object-fit: cover;
}

.video-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(4, 15, 16, 0.67);
  backdrop-filter: blur(10px);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.ev-copy .section-tag {
  color: #77c64e;
}

.hizzlan-logo {
  width: min(100%, 26rem);
  height: auto;
  margin: 2rem 0 2.5rem;
}

.ev-copy h2 {
  max-width: 10em;
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.8rem, 4.7vw, 5.6rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.ev-copy > p {
  max-width: 37rem;
  margin: 1.7rem 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.ev-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.ev-points > div {
  display: grid;
  gap: 0.2rem;
  padding: 1.25rem 1.25rem 1.25rem 0;
}

.ev-points > div + div {
  padding-left: 1.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.ev-points strong {
  color: var(--acid);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.35rem;
}

.ev-points span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
}

.certificate-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
}

.certificate-card img {
  width: 5.4rem;
  height: auto;
  aspect-ratio: 1.3 / 1;
  border-radius: 0.65rem;
  object-fit: contain;
}

.certificate-card p {
  display: grid;
  gap: 0.15rem;
  margin: 0;
}

.certificate-card strong {
  font-size: 0.86rem;
}

.certificate-card span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
}

.distance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.distance-grid > div {
  display: grid;
  gap: 0.15rem;
  padding: 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.distance-grid > div:last-child {
  grid-column: 1 / -1;
}

.distance-grid strong {
  color: var(--blue-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.15rem;
}

.distance-grid span {
  color: rgba(8, 25, 27, 0.58);
  font-size: 0.72rem;
}

.booking {
  min-height: 58rem;
}

.payment-details {
  width: min(100%, 52rem);
  margin: 2.5rem auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-align: left;
}

.payment-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.payment-details summary span {
  color: var(--acid);
  font-size: 1.25rem;
  transition: transform 0.25s ease;
}

.payment-details[open] summary span {
  transform: rotate(45deg);
}

.payment-body {
  display: grid;
  grid-template-columns: 0.75fr 1.4fr 1fr;
  gap: 1.5rem;
  padding: 0.4rem 0 1.5rem;
}

.payment-body p {
  display: grid;
  align-content: start;
  gap: 0.35rem;
  min-width: 0;
  margin: 0;
}

.payment-body small {
  color: var(--acid);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.payment-body strong {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.payment-warning {
  margin: 0;
  padding: 0 0 1.35rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
}

.footer-wordmark .brand-logo {
  width: clamp(11rem, 18vw, 17rem);
}

.footer-grid {
  grid-template-columns: 0.85fr 1.25fr 0.65fr 0.55fr;
}

@media (max-width: 1100px) {
  .hotel-hero .hero-copy {
    width: 82%;
  }

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

  .ev-experience {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.8fr);
  }

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

@media (max-width: 900px) {
  .site-header:not(.is-scrolled) .menu-toggle {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(4, 15, 16, 0.58);
  }

  .site-header:not(.is-scrolled) .menu-toggle i {
    background: var(--acid);
  }

  .site-header:not(.is-scrolled) .menu-toggle i::before,
  .site-header:not(.is-scrolled) .menu-toggle i::after {
    background: var(--ink);
  }

  .hotel-hero {
    min-height: 61rem;
  }

  .hotel-hero .hero-stage {
    inset: 0;
    height: auto;
    min-height: 0;
    margin: 0;
    border-radius: 0;
  }

  .hotel-hero .hero-copy {
    width: 100%;
    min-height: 61rem;
    padding: calc(var(--header-height) + 3.2rem) var(--page-x) 17rem;
  }

  .hotel-hero .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 14, 16, 0.82), rgba(3, 14, 16, 0.26)),
      linear-gradient(0deg, rgba(3, 14, 16, 0.74), transparent 55%);
  }

  .hero-facts {
    display: none;
  }

  .hotel-hero .hero-slide figcaption {
    bottom: 16.4rem;
  }

  .hotel-hero .hero-controls {
    bottom: 12.4rem;
  }

  .hotel-hero .hero-progress {
    bottom: 11.75rem;
  }

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

  .booking-field:nth-child(2) {
    border-right: 0;
  }

  .booking-field:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .booking-bar > button {
    min-height: 4.2rem;
  }

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

  .ev-experience {
    grid-template-columns: 1fr;
  }

  .ev-copy {
    max-width: 43rem;
  }

  .payment-body {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

}

@media (max-width: 620px) {
  .brand-lockup {
    padding: 0.48rem 0.63rem;
  }

  .brand-logo {
    width: 7rem;
  }

  .hotel-hero {
    min-height: 58rem;
  }

  .hotel-hero .hero-copy {
    min-height: 58rem;
    padding-top: 7.7rem;
    padding-bottom: 16rem;
  }

  .hero-brand {
    display: none;
  }

  .hotel-hero h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .hotel-hero .hero-slide figcaption {
    bottom: 16rem;
  }

  .hotel-hero .hero-controls {
    bottom: 12.1rem;
  }

  .hotel-hero .hero-progress {
    bottom: 11.45rem;
  }

  .booking-bar {
    right: 0.8rem;
    bottom: 0.8rem;
    left: 0.8rem;
    padding: 0.45rem;
    border-radius: 1rem;
  }

  .booking-field {
    padding: 0.55rem 0.65rem;
  }

  .booking-field label {
    font-size: 0.56rem;
  }

  .booking-field input,
  .booking-field select {
    font-size: 0.76rem;
  }

  .booking-bar > button {
    min-height: 3.65rem;
    padding: 0.7rem;
    font-size: 0.7rem;
  }

  .room-common {
    padding: 1.2rem;
    border-radius: 1rem;
  }

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

  .amenity {
    min-height: 12rem;
    padding: 1.25rem;
  }

  .amenity svg {
    width: 2.2rem;
    height: 2.2rem;
  }

  .amenity h3 {
    margin-bottom: 0.45rem;
    font-size: 0.95rem;
  }

  .amenity p {
    font-size: 0.72rem;
  }

  .ev-experience {
    gap: 3rem;
  }

  .ev-media {
    border-radius: 1rem;
  }

  .video-label {
    top: 0.65rem;
    left: 0.65rem;
    font-size: 0.5rem;
  }

  .hizzlan-logo {
    margin: 1.6rem 0 2rem;
  }

  .ev-copy h2 {
    font-size: clamp(2.6rem, 12vw, 4.2rem);
  }

  .certificate-card img {
    width: 4.6rem;
  }

  .booking {
    min-height: 59rem;
  }

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

  .footer-grid > div:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 390px) {
  .amenities {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .booking-bar > button,
  .payment-details summary span {
    transition: none;
  }
}

/* WordPress multi-page hotel experience */
body:not(.home) .site-header:not(.is-scrolled) {
  color: var(--ink);
  background: rgba(246, 243, 235, 0.94);
  box-shadow: 0 0.75rem 2.5rem rgba(8, 25, 27, 0.06);
  backdrop-filter: blur(18px);
}

body:not(.home) .site-header:not(.is-scrolled)::after {
  background: rgba(8, 25, 27, 0.12);
}

body:not(.home) .site-header:not(.is-scrolled) .desktop-nav {
  border-color: rgba(8, 25, 27, 0.1);
  background: rgba(255, 255, 255, 0.68);
}

.inner-main {
  padding-top: var(--header-height);
  background: var(--paper);
}

.inner-main h1,
.inner-main h2,
.inner-main h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.inner-main h1,
.inner-main h2 {
  margin: 0;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.inner-main h1 em,
.inner-main h2 em {
  color: var(--acid);
  font-style: normal;
}

.editor-intro p,
.room-story-copy > p,
.room-story-copy .wp-block-paragraph {
  margin: 0;
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: end;
  min-height: 40rem;
  padding: clamp(7rem, 12vw, 11rem) var(--page-x) clamp(5rem, 8vw, 8rem);
  color: var(--white);
  background:
    radial-gradient(circle at 85% 14%, rgba(225, 194, 122, 0.18), transparent 28%),
    linear-gradient(135deg, var(--ink) 0%, #0f3032 100%);
  overflow: hidden;
}

.subpage-hero-copy {
  position: relative;
  z-index: 1;
}

.subpage-hero-copy .section-tag,
.guide-hero .section-tag {
  color: var(--acid);
}

.subpage-hero h1,
.guide-hero h1 {
  max-width: 10em;
  margin-top: 1.6rem;
  font-size: clamp(4rem, 8vw, 8.5rem);
}

.subpage-hero-copy > p,
.guide-hero-copy > p {
  max-width: 43rem;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.subpage-hero-aside {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.subpage-hero-aside > span {
  padding: 1rem 0;
  color: var(--acid);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.subpage-hero-aside strong {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 600;
}

.inner-section-heading,
.all-room-heading,
.room-feature-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.55fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
}

.all-room-heading,
.room-feature-heading {
  display: block;
}

.inner-section-heading h2,
.all-room-heading h2,
.room-feature-heading h2 {
  max-width: 9em;
  margin-top: 1.3rem;
  font-size: clamp(3.2rem, 6vw, 6.8rem);
}

.editor-intro {
  color: rgba(8, 25, 27, 0.65);
  font-size: 1.05rem;
}

.room-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
  margin-top: clamp(3.5rem, 7vw, 7rem);
}

.room-index-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 1.7rem;
  background: rgba(255, 255, 255, 0.42);
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s ease;
}

.room-index-card:hover {
  box-shadow: 0 2rem 4.5rem rgba(8, 25, 27, 0.12);
  transform: translateY(-0.5rem);
}

.room-index-card > a {
  display: block;
}

.room-index-card figure {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 0;
  background: #d9d5c9;
  overflow: hidden;
}

.room-index-card figure::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(to top, rgba(3, 14, 16, 0.48), transparent);
}

.room-index-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.room-index-card:hover figure img {
  transform: scale(1.035);
}

.room-index-card figure > .room-card-icon {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 0.8rem;
  display: grid;
  place-items: center;
  width: 3.2rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--ink);
  background: var(--acid);
}

.room-card-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.room-index-copy {
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.room-index-copy > p:first-child {
  margin: 0 0 0.55rem;
  color: var(--blue-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.room-index-copy h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.room-index-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.25rem;
}

.room-index-meta span {
  padding: 0.38rem 0.62rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(8, 25, 27, 0.68);
  font-size: 0.67rem;
  font-weight: 700;
}

.room-index-summary {
  min-height: 4.8rem;
  margin: 1.2rem 0 0;
  color: rgba(8, 25, 27, 0.64);
  font-size: 0.88rem;
}

.room-card-link {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 800;
}

.room-card-link i {
  color: var(--blue);
  font-style: normal;
}

.double-room-note {
  max-width: 48rem;
  margin: 2rem 0 0;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--blue-dark);
  color: rgba(8, 25, 27, 0.68);
  background: rgba(8, 25, 27, 0.045);
  font-size: 0.86rem;
  line-height: 1.65;
}

.double-room-note strong {
  color: var(--ink);
}

.all-room-features,
.room-feature-section {
  color: var(--white);
  background: var(--ink);
}

.all-room-heading .section-tag,
.room-feature-heading .section-tag {
  color: var(--acid);
}

.feature-check-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: clamp(3rem, 6vw, 5rem) 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  list-style: none;
}

.feature-check-grid li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 5.2rem;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 600;
}

.feature-check-grid li span {
  display: grid;
  place-items: center;
  flex: 0 0 1.6rem;
  width: 1.6rem;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--ink);
  background: var(--acid);
  font-size: 0.7rem;
}

.inner-cta,
.next-room-strip {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
}

.inner-cta h2,
.next-room-strip h2 {
  max-width: 12em;
  margin-top: 1.2rem;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.inner-cta .button-primary,
.room-detail-copy .button-primary {
  color: var(--ink);
  background: var(--acid);
}

.inner-cta .button-primary:hover,
.room-detail-copy .button-primary:hover {
  color: var(--white);
  background: var(--blue-dark);
}

/* Room detail */
.room-detail-hero {
  display: grid;
  grid-template-columns: minmax(22rem, 0.8fr) minmax(0, 1.2fr);
  min-height: 43rem;
  color: var(--white);
  background: var(--ink);
}

.room-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5rem, 9vw, 9rem) clamp(2rem, 6vw, 6rem) clamp(4rem, 7vw, 7rem) var(--page-x);
}

.breadcrumb-link {
  width: max-content;
  margin-bottom: clamp(3rem, 6vw, 6rem);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  font-weight: 700;
}

.room-detail-copy .section-tag {
  color: var(--acid);
}

.room-detail-copy h1 {
  margin-top: 1.2rem;
  font-size: clamp(4rem, 7.5vw, 8rem);
}

.room-detail-copy > p {
  max-width: 37rem;
  margin: 1.8rem 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.room-hero-facts {
  display: grid;
  grid-template-columns: minmax(8rem, 0.45fr) 1fr;
  margin: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.room-hero-facts > span {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1rem 1rem 0;
}

.room-hero-facts > span + span {
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.room-hero-facts small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.room-hero-facts strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
}

.room-detail-copy .button {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.room-detail-image {
  position: relative;
  min-width: 0;
  min-height: 43rem;
  margin: 0;
  overflow: hidden;
}

.room-detail-image::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(to top, rgba(3, 12, 13, 0.65), transparent);
}

.room-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-detail-image figcaption {
  position: absolute;
  z-index: 1;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  color: var(--white);
}

.room-detail-image figcaption span {
  color: var(--acid);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.room-detail-image figcaption strong {
  font-size: 0.9rem;
}

.room-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.72fr);
  gap: clamp(3rem, 10vw, 10rem);
}

.room-story-title h2 {
  max-width: 9em;
  margin-top: 1.4rem;
  font-size: clamp(3.2rem, 6vw, 6.5rem);
}

.room-story-copy {
  align-self: end;
  color: rgba(8, 25, 27, 0.68);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.room-highlight-list {
  display: grid;
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.room-highlight-list li {
  display: flex;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
}

.room-highlight-list span {
  color: var(--blue);
}

.next-room-strip {
  border-top: 1px solid var(--line);
}

/* Homepage guide entry */
.home-guide {
  display: grid;
  grid-template-columns: minmax(18rem, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
  background: #e9e4d8;
}

.home-guide-heading h2 {
  margin-top: 1.3rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(3.2rem, 5.5vw, 6rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.home-guide-heading h2 em {
  color: var(--blue-dark);
  font-style: normal;
}

.home-guide-heading > p {
  max-width: 26rem;
  margin: 1.5rem 0 0;
  color: rgba(8, 25, 27, 0.62);
}

.home-guide-links {
  display: grid;
  border-top: 1px solid var(--line);
}

.home-guide-links a {
  display: grid;
  grid-template-columns: 2.5rem 1fr minmax(10rem, 0.8fr) auto;
  gap: 1.25rem;
  align-items: center;
  min-height: 7.5rem;
  border-bottom: 1px solid var(--line);
  transition: padding 0.35s var(--ease), color 0.25s ease;
}

.home-guide-links a:hover {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
  color: var(--blue-dark);
}

.home-guide-links > a > svg {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--blue-dark);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.home-guide-links strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  letter-spacing: -0.04em;
}

.home-guide-links small {
  color: rgba(8, 25, 27, 0.55);
  font-size: 0.72rem;
}

.home-guide-links i {
  color: var(--blue-dark);
  font-style: normal;
}

/* Local guide */
.guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  min-height: 43rem;
  padding: clamp(7rem, 12vw, 11rem) var(--page-x) clamp(5rem, 8vw, 8rem);
  color: var(--white);
  background:
    linear-gradient(125deg, rgba(8, 25, 27, 0.97), rgba(8, 25, 27, 0.78)),
    radial-gradient(circle at 70% 10%, var(--blue), transparent 45%);
}

.guide-hero-counts {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.guide-hero-counts a {
  display: grid;
  grid-template-columns: 4.6rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.guide-hero-icon {
  display: grid;
  place-items: center;
  width: 3.25rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--acid);
  font-style: normal;
}

.guide-hero-icon svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.guide-hero-counts span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 700;
}

.guide-jump-nav {
  position: sticky;
  z-index: 50;
  top: var(--header-height);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 var(--page-x);
  border-bottom: 1px solid var(--line);
  background: rgba(246, 243, 235, 0.94);
  backdrop-filter: blur(18px);
}

.guide-jump-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 4.5rem;
  border-right: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 800;
}

.guide-jump-nav a:first-child {
  border-left: 1px solid var(--line);
}

.guide-jump-nav svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--blue-dark);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.guide-intro {
  display: grid;
  grid-template-columns: 0.35fr minmax(20rem, 0.65fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: start;
  padding-top: clamp(4rem, 7vw, 7rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
}

.guide-intro > span {
  color: var(--blue-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.guide-intro > div {
  max-width: 48rem;
  color: rgba(8, 25, 27, 0.68);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
}

.guide-intro p {
  margin: 0 0 1rem;
}

.guide-section {
  border-top: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-height) + 4.5rem);
}

.guide-section-heading {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) minmax(16rem, 0.42fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: end;
}

.guide-section-icon {
  align-self: start;
  display: grid;
  place-items: center;
  width: 3rem;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue-dark);
}

.guide-section-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.guide-section-heading h2 {
  max-width: 10em;
  margin-top: 1.2rem;
  font-size: clamp(3.2rem, 6vw, 6.7rem);
}

.guide-section-heading > p {
  margin: 0;
  color: rgba(8, 25, 27, 0.62);
  font-size: 0.9rem;
}

.guide-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(3.5rem, 7vw, 7rem);
}

.guide-card {
  display: flex;
  flex-direction: column;
  min-height: 31rem;
  padding: clamp(1.35rem, 2.5vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.38);
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
}

.guide-card:hover {
  box-shadow: 0 1.5rem 3.5rem rgba(8, 25, 27, 0.1);
  transform: translateY(-0.35rem);
}

.guide-card-area {
  color: var(--blue-dark);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.guide-card h3 {
  max-width: 11em;
  margin: 2.2rem 0 0;
  font-size: clamp(1.7rem, 2.7vw, 2.65rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.guide-card > p {
  margin: 1.25rem 0 2rem;
  color: rgba(8, 25, 27, 0.64);
  font-size: 0.82rem;
}

.guide-card dl {
  display: grid;
  gap: 0;
  margin: auto 0 0;
  border-top: 1px solid var(--line);
}

.guide-card dl > div {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 0.7rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--line);
}

.guide-card dt {
  color: rgba(8, 25, 27, 0.42);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.guide-card dd {
  margin: 0;
  color: rgba(8, 25, 27, 0.76);
  font-size: 0.68rem;
  font-weight: 600;
}

.guide-card > a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.3rem;
  font-size: 0.72rem;
  font-weight: 800;
}

.guide-card > a span {
  color: var(--blue-dark);
}

.guide-section-dark {
  color: var(--white);
  background: var(--ink);
}

.guide-section-dark .guide-section-icon,
.guide-section-dark .section-tag {
  color: var(--acid);
}

.guide-section-dark .guide-section-icon {
  border-color: rgba(255, 255, 255, 0.18);
}

.guide-section-dark .guide-section-heading > p,
.guide-section-dark .guide-card > p {
  color: rgba(255, 255, 255, 0.6);
}

.guide-section-dark .guide-card {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.guide-section-dark .guide-card-area,
.guide-section-dark .guide-card > a span {
  color: var(--acid);
}

.guide-section-dark .guide-card dl,
.guide-section-dark .guide-card dl > div {
  border-color: rgba(255, 255, 255, 0.14);
}

.guide-section-dark .guide-card dt {
  color: rgba(255, 255, 255, 0.4);
}

.guide-section-dark .guide-card dd {
  color: rgba(255, 255, 255, 0.72);
}

.taste-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 3rem;
}

.taste-strip span {
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
}

.guide-disclaimer {
  display: grid;
  grid-template-columns: minmax(16rem, 0.55fr) minmax(20rem, 0.7fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
  background: #e9e4d8;
}

.guide-disclaimer h2 {
  max-width: 10em;
  margin-top: 1.1rem;
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.guide-disclaimer > p {
  margin: 0;
  color: rgba(8, 25, 27, 0.65);
}

.guide-source-links {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.guide-source-links a {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 0.72rem;
    padding-right: 0.85rem;
    padding-left: 0.85rem;
  }

  .desktop-nav a {
    font-size: 0.74rem;
  }

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

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

  .guide-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body:not(.home) .site-header:not(.is-scrolled) .menu-toggle {
    color: var(--ink);
    border-color: rgba(8, 25, 27, 0.14);
    background: rgba(255, 255, 255, 0.78);
  }

  body:not(.home) .site-header:not(.is-scrolled) .menu-toggle i {
    background: var(--ink);
  }

  body:not(.home) .site-header:not(.is-scrolled) .menu-toggle i::before,
  body:not(.home) .site-header:not(.is-scrolled) .menu-toggle i::after {
    background: var(--white);
  }

  .subpage-hero,
  .guide-hero,
  .inner-section-heading,
  .all-room-heading,
  .room-feature-heading,
  .room-story,
  .home-guide,
  .guide-intro,
  .guide-disclaimer {
    grid-template-columns: 1fr;
  }

  .subpage-hero,
  .guide-hero {
    min-height: 0;
    padding-top: 7rem;
  }

  .subpage-hero-aside,
  .guide-hero-counts {
    max-width: 38rem;
  }

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

  .room-detail-copy {
    min-height: 39rem;
    padding-top: 6rem;
  }

  .room-detail-image {
    min-height: 34rem;
  }

  .home-guide-links a {
    grid-template-columns: 2.5rem 1fr auto;
  }

  .home-guide-links small {
    grid-column: 2;
  }

  .guide-section-heading {
    grid-template-columns: 3rem 1fr;
  }

  .guide-section-heading > p {
    grid-column: 2;
    max-width: 38rem;
  }

  .guide-source-links {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .subpage-hero h1,
  .guide-hero h1,
  .room-detail-copy h1 {
    font-size: clamp(3.3rem, 15vw, 5rem);
  }

  .room-card-grid,
  .guide-card-grid {
    grid-template-columns: 1fr;
  }

  .room-index-summary {
    min-height: 0;
  }

  .feature-check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-check-grid li {
    min-height: 4.5rem;
    padding: 0.8rem;
    font-size: 0.72rem;
  }

  .inner-cta,
  .next-room-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .room-detail-copy {
    min-height: 35rem;
  }

  .room-detail-image {
    min-height: 27rem;
  }

  .room-hero-facts {
    grid-template-columns: 7rem 1fr;
  }

  .guide-jump-nav {
    top: var(--header-height);
    padding: 0;
    overflow-x: auto;
  }

  .guide-jump-nav a {
    flex: 0 0 12.5rem;
    min-height: 3.8rem;
    padding: 0 1rem;
    white-space: nowrap;
  }

  .guide-section-heading {
    grid-template-columns: 1fr;
  }

  .guide-section-icon,
  .guide-section-heading > p {
    grid-column: auto;
  }

  .guide-card {
    min-height: 0;
  }

  .guide-intro {
    gap: 1.2rem;
  }
}

@media (max-width: 420px) {
  .feature-check-grid {
    grid-template-columns: 1fr;
  }

  .room-detail-image figcaption {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }
}
