:root,
.theme-pinhan,
.theme-gateway,
.theme-forest,
.theme-thermal {
  --font-serif: "Fraunces", "Times New Roman", serif;
  --font-sans: "Montserrat", "Segoe UI", sans-serif;
  --font-label: "Barlow Condensed", "Montserrat", sans-serif;
  --gold: #c4a35a;
  --gold-soft: #d4bc82;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 4.25rem;
  --page-pad: 1rem;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top: env(safe-area-inset-top, 0px);
  --bg: #ffffff;
  --bg-elev: #f4efe6;
  --cream: #ebe2d3;
  --ink: #3a322b;
  --muted: #6e655c;
  --line: rgba(58, 50, 43, 0.12);
  --accent: #c4a35a;
  --overlay: rgba(40, 32, 26, 0.42);
  color-scheme: light;
}

*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; min-height: 100%; }

html { scroll-behavior: auto; }

html {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--bg-elev);
}

html::-webkit-scrollbar {
  width: 11px;
}

html::-webkit-scrollbar-track {
  background: var(--bg-elev);
}

html::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--gold) 78%, var(--ink));
  border: 2px solid var(--bg-elev);
}

html::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  letter-spacing: 0.01em;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
  accent-color: var(--gold);
}

.eyebrow {
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.display {
  font-family: var(--font-serif);
  font-weight: 500;
  font-optical-sizing: auto;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h1.display { font-size: clamp(2.15rem, 10vw, 3.4rem); margin: 0.2em 0 0.35em; }
h2.display { font-size: clamp(1.85rem, 7vw, 2.8rem); margin: 0.15em 0 0.4em; }
h3.display { font-size: clamp(1.45rem, 5vw, 2.1rem); margin: 0; }

.lede {
  font-size: 1rem;
  max-width: 38rem;
  color: var(--muted);
}

.about-body {
  padding: 5rem 0 2.5rem;
}

.about-body .lede {
  max-width: none;
  margin-bottom: 1.4rem;
}

.about-wrap {
  padding: 2rem 0 2.5rem;
}

.about-wrap::after {
  content: "";
  display: block;
  clear: both;
}

.about-wrap .visual {
  margin: 0 0 1.35rem;
}

.about-wrap .visual img {
  width: 100%;
  height: min(52vh, 26rem);
  object-fit: cover;
}

.about-wrap h1.display {
  font-size: clamp(2.05rem, 8vw, 2.85rem);
}

.about-wrap .lede {
  max-width: none;
  margin: 0 0 1.15rem;
}

.container {
  width: min(1180px, calc(100% - (var(--page-pad) * 2)));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  padding-top: var(--safe-top);
  background: #000;
  color: #fff;
  border-bottom: 0;
  overflow: visible;
}

.header-content {
  width: min(1180px, calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.4rem;
  position: relative;
  overflow: visible;
}

.brand {
  display: flex;
  align-items: center;
  z-index: 43;
}

.site-header .brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.brand-logo {
  display: block;
  height: 2.4rem;
  width: auto;
  max-width: min(168px, 48vw);
  object-fit: contain;
  transition: height 0.45s var(--ease), max-width 0.45s var(--ease);
}

.site-header .brand-logo {
  filter: brightness(0) invert(1);
}

.hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  margin: 0 0 0 auto;
  padding: 0;
  border: 0;
  background: #3a3a3a;
  color: inherit;
  cursor: pointer;
  z-index: 44;
}

.hamburger-box {
  position: relative;
  display: inline-block;
  width: 1.7rem;
  height: 1rem;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  position: absolute;
  width: 1.7rem;
  height: 1px;
  background: #fff;
  transition: transform 0.15s ease;
}

.hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -0.5px;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before { top: -7px; }
.hamburger-inner::after { bottom: -7px; }

.hamburger.is-active .hamburger-inner::before {
  transform: translate3d(-5px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger.is-active .hamburger-inner::after {
  transform: translate3d(-5px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.menu-section {
  display: flex;
  position: absolute;
  top: calc(4.4rem + var(--safe-top));
  left: auto;
  right: 0;
  width: min(22.5rem, calc(100vw - (var(--page-pad) * 2)));
  min-height: 0;
  max-height: none;
  background: rgba(17, 17, 17, 0.96);
  color: #fff;
  flex-direction: column;
  padding: 1rem 1.15rem 1.2rem;
  z-index: 41;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.65rem);
  overflow: visible;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}

.menu-section.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.settings-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  margin-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-meta { opacity: 0.78; }

.header-phone { opacity: 0.92; }

.nav-section {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.nav-menu a,
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: none;
  cursor: pointer;
}

.nav-menu a:hover,
.nav-dropdown-toggle:hover,
.nav-menu .is-current > a {
  opacity: 1;
}

.has-children { position: relative; }

.has-children::after {
  content: "";
  position: absolute;
  top: 1.05rem;
  right: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.45s var(--ease);
}

.has-children.is-open::after { transform: rotate(225deg); }

.sub-menu {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0 0 0 0.9rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease), margin 0.4s var(--ease);
}

.has-children.is-open .sub-menu {
  max-height: 12rem;
  opacity: 1;
  margin: 0.2rem 0 0.6rem;
}

.sub-menu a {
  min-height: 2.2rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-width: 11rem;
  min-height: 2.6rem;
  padding: 0.7rem 1.4rem 0.6rem;
  background: #f8dec3;
  color: #1c1c1c;
  font-family: var(--font-label);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
  transition: background 0.3s var(--ease);
}

.nav-cta:hover { background: color-mix(in srgb, #f8dec3 82%, white); }

.footer-brand .brand-logo {
  filter: brightness(0);
}

.header-content { z-index: 2; }

body.nav-lock { overflow: hidden; }

.site-header.mobile-nav-open .brand-logo {
  filter: brightness(0) invert(1);
}

.site-header.mobile-nav-open .hamburger {
  background: #3a3a3a;
}

.site-header.mobile-nav-open .hamburger-inner,
.site-header.mobile-nav-open .hamburger-inner::before,
.site-header.mobile-nav-open .hamburger-inner::after {
  background: #fff;
}

.ghost-link {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1.15rem;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--ink);
  font-family: var(--font-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

.btn:hover { background: var(--gold); color: #1a140e; }

.btn-solid {
  background: var(--gold);
  color: #1a140e;
}

.btn-solid:hover { background: var(--gold-soft); }

.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h) - var(--safe-top));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 22s var(--ease) infinite alternate;
}

.hero-media.facade-crop img {
  object-position: center 55%;
  animation: none;
}

.hero-video iframe,
.hero-video video {
  display: none;
}

.hero-video img {
  animation: none;
  z-index: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, var(--overlay) 42%, rgba(0,0,0,0.72) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto 3.1rem;
  padding: 0;
  color: #f6f1e8;
}

.hero-copy h1.display {
  font-size: clamp(2rem, 9vw, 3.2rem);
  line-height: 1.18;
  max-width: 16em;
  text-wrap: balance;
  text-transform: capitalize;
}

.hero-copy .lede {
  max-width: 36rem;
  color: rgba(246, 241, 232, 0.86);
}

@keyframes kenburns {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.18) translate3d(-2%, -1%, 0); }
}

.reserve-bar {
  position: relative;
  z-index: 5;
  margin-top: -2.4rem;
  padding-bottom: 0.4rem;
}

.reserve-bar form,
.reserve-card {
  width: min(1080px, calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
  background: var(--bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem 1rem;
  padding: 1rem 1.05rem 1.1rem;
  box-shadow: 0 18px 40px rgba(58, 50, 43, 0.08);
}

.reserve-bar .btn {
  width: 100%;
}

.reserve-bar label,
.field label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.reserve-bar input,
.reserve-bar select,
.field input,
.field select,
.field textarea,
.pinhan-select__trigger {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 0.45rem 0 0.55rem;
  outline: none;
  font-size: 16px;
}

.reserve-bar select,
.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 1.5rem;
  background-image:
    linear-gradient(45deg, transparent 46%, var(--gold) 46%, var(--gold) 54%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, var(--gold) 46%, var(--gold) 54%, transparent 54%);
  background-size: 0.42rem 0.42rem, 0.42rem 0.42rem;
  background-position: calc(100% - 0.42rem) 58%, 100% 58%;
  background-repeat: no-repeat;
  cursor: pointer;
}

.reserve-bar select option,
.field select option {
  background: var(--bg-elev);
  color: var(--ink);
}

.reserve-bar input:focus,
.reserve-bar select:focus,
.field input:focus,
.field select:focus,
.field textarea:focus,
.pinhan-select.is-open .pinhan-select__trigger,
.pinhan-select__trigger:focus-visible {
  border-bottom-color: var(--gold);
}

.pinhan-select {
  position: relative;
  width: 100%;
}

.pinhan-select.is-ready .pinhan-select__native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.pinhan-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 2.45rem;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
  background-image: none;
}

.pinhan-select__value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pinhan-select__chevron {
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  margin-bottom: 0.15rem;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.28s var(--ease);
}

.pinhan-select.is-open .pinhan-select__chevron {
  transform: rotate(225deg);
  margin-bottom: 0;
}

.pinhan-select__menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.5rem);
  z-index: 28;
  display: none;
  margin: 0;
  padding: 0.4rem 0;
  list-style: none;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(58, 50, 43, 0.12);
}

.pinhan-select.is-open .pinhan-select__menu { display: block; }

.pinhan-select.is-up .pinhan-select__menu {
  top: auto;
  bottom: calc(100% + 0.5rem);
}

.pinhan-select__option {
  padding: 0.68rem 1rem;
  font-family: var(--font-serif);
  font-size: 1.12rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border-left: 2px solid transparent;
}

.pinhan-select__option[aria-selected="true"] {
  color: var(--gold);
  border-left-color: var(--gold);
}

.pinhan-select__option.is-active,
.pinhan-select__option:hover {
  background: color-mix(in srgb, var(--gold) 16%, transparent);
}

.home-facts {
  padding: 3rem 0 0.4rem;
  text-align: center;
}

.home-facts > .eyebrow {
  margin-bottom: 1.35rem;
}

.home-stat-row {
  list-style: none;
  margin: 0;
  padding: 0.4rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-elev);
  border: 1px solid var(--line);
}

.home-stat-row li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 6.4rem;
  padding: 1.15rem 0.8rem;
  text-align: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-stat-row li:nth-child(even) { border-right: 0; }

.home-stat-row li:nth-last-child(-n + 2) { border-bottom: 0; }

.home-stat-row strong {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 5vw, 2.55rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.home-stat-row span {
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.home-facts-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.05rem;
  padding: 1.5rem 0 0.2rem;
}

.home-distances,
.home-perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
}

.home-distances {
  gap: 0.7rem 1.6rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.home-distances em {
  font-style: normal;
  font-family: var(--font-serif);
  color: var(--ink);
  margin-left: 0.3rem;
}

.home-perks {
  gap: 0;
}

.home-perks li {
  padding: 0 0.95rem;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.home-perks li + li {
  border-left: 1px solid var(--line);
}

.scenes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 3.2rem 0 2.5rem;
}

.scene {
  position: relative;
  display: block;
  padding: 0;
  background: var(--cream);
}

.scene-visual {
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.scene-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
}

.scene-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  margin: -3.2rem 1.1rem 1.15rem;
  padding: 1.25rem 1.3rem 1.2rem;
  width: auto;
  height: auto;
  box-sizing: border-box;
  overflow: visible;
  background: color-mix(in srgb, var(--bg) 75%, transparent);
  border: 1px solid var(--line);
}

.scene-copy .display {
  font-size: 1.7rem;
  line-height: 1.12;
  margin: 0.1em 0 0.12em;
}

.scene-copy .lede {
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: none;
}

.scene-copy-action {
  margin: 0.85rem 0 0;
  min-height: 0;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.scene-copy .btn {
  margin-top: 0;
  min-height: 2.4rem;
  padding: 0.55rem 0.95rem;
}

.scene--copy {
  aspect-ratio: auto;
  display: flex;
  background: var(--cream);
}

.scene--copy .scene-copy {
  position: relative;
  flex: 1;
  margin: 1.15rem;
  width: auto;
  height: auto;
  min-height: 0;
  overflow: visible;
  background: var(--bg);
}

.scene--copy .scene-copy .display {
  font-size: clamp(1.7rem, 4vw, 2.15rem);
}

.scene--copy .scene-copy .lede {
  font-size: 1rem;
}

.quote-block {
  padding: 3.5rem 0;
  text-align: center;
}

.quote-block p {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 5.5vw, 1.85rem);
  line-height: 1.35;
  max-width: 22em;
  margin: 1.2rem auto 1.4rem;
}

.room-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.home-rooms {
  padding-bottom: 5rem;
}

.home-rooms-more {
  display: flex;
  justify-content: center;
  margin: 2rem 0 0;
}

#hakkimizda,
#otellerimiz,
#iletisim {
  scroll-margin-top: 5.5rem;
}

#otellerimiz.gateway {
  scroll-margin-top: 0;
}

.hotel-picks {
  padding: 2.4rem 0 4.2rem;
}

.hotel-picks > .lede {
  margin: 0 0 1.6rem;
  max-width: 38rem;
}

.hotel-pick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.hotel-pick {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.hotel-pick figure {
  overflow: hidden;
  height: 50svh;
  margin: 0 0 1.05rem;
}

.hotel-pick img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.hotel-pick:hover img { transform: scale(1.06); }

.hotel-pick .eyebrow { margin-bottom: 0.2rem; }

.hotel-pick .display {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin: 0.08em 0 0.4em;
}

.hotel-pick p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.hotel-pick .btn {
  margin-top: auto;
  align-self: flex-start;
}

.room-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.room-card figure {
  overflow: hidden;
  aspect-ratio: auto;
  height: 50svh;
  margin: 0;
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.room-card:hover img { transform: scale(1.06); }

.room-card .meta {
  padding: 1.15rem 0 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.room-card h3 { margin-top: 0.35rem; font-size: clamp(1.2rem, 2.4vw, 1.5rem); }

.rooms-hero h1.display,
.room-split h1.display {
  font-size: clamp(1.7rem, 5vw, 2.45rem);
}

.room-tour-block h2.display {
  font-size: clamp(1.45rem, 3.4vw, 2.1rem);
}

.page-hero {
  padding: 1.6rem 0 2rem;
}

.split-page {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
}

.split-page .visual {
  min-height: 50vh;
  overflow: hidden;
}

.split-page .visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-page .copy { padding: 1.15rem 1.35rem 1.8rem; }

.room-split .visual {
  min-height: 50svh;
}

.contact-split {
  min-height: auto;
  gap: 1.6rem;
  padding-bottom: 3.5rem;
}

.contact-split .copy,
.contact-split > div { padding: 0; }

.contact-layout {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.contact-card {
  padding: 1.05rem 0 1.15rem;
  border-bottom: 1px solid var(--line);
}

.contact-card .eyebrow { margin-bottom: 0.4rem; }

.contact-card p { margin: 0.25rem 0; }

.contact-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin: 1.6rem 0 0.4rem;
}

.contact-fact {
  padding: 1rem 1.05rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
}

.contact-fact .eyebrow { margin-bottom: 0.35rem; }

.contact-fact p { margin: 0; font-size: 0.92rem; }

.sister-hotel {
  padding: 2.5rem 0 5rem;
  border-top: 1px solid var(--line);
}

.sister-hotel .btn { margin: 0.35rem 0.55rem 0 0; }

.amenity-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.45rem;
}

.amenity-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: 0.04em;
}

.tour-slot {
  margin-top: 2.5rem;
  border: 1px solid var(--line);
  min-height: 42vh;
  display: grid;
  place-items: center;
  background: var(--bg-elev);
  position: relative;
  overflow: hidden;
}

.tour-slot iframe {
  width: 100%;
  height: 52vh;
  border: 0;
}

.tour-soon {
  text-align: center;
  padding: 3rem 1.2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.form-grid .wide { grid-column: 1 / -1; }

.form-grid .btn { width: 100%; }

.notice {
  padding: 1.2rem 1.3rem;
  border: 1px solid var(--gold);
  margin-bottom: 1.5rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 calc(2rem + var(--safe-bottom));
  margin-top: 3.5rem;
  background: var(--bg-elev);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  align-items: start;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-grid .eyebrow { margin: 0 0 0.75rem; }

.footer-grid p { margin: 0.35rem 0; }

.footer-grid a {
  display: block;
  margin: 0.35rem 0;
  opacity: 0.88;
  min-height: 2.4rem;
  display: flex;
  align-items: center;
}

.footer-grid a:hover {
  color: var(--gold);
  opacity: 1;
}

.footer-brand p { max-width: 22rem; }

.footer-brand .brand-logo {
  height: 2.4rem;
  max-width: 200px;
  margin-bottom: 0.75rem;
}

.footer-story { line-height: 1.55; }

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0.9rem 0 0;
}

.footer-legal .eyebrow {
  margin: 0.7rem 0 0.2rem;
}

.footer-legal a {
  min-height: 2rem;
}

.footer-grid .btn {
  display: inline-flex;
  width: auto;
  margin: 0.35rem 0.45rem 0.35rem 0;
}

.footer-base {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 2.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.wa-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, calc(1rem + var(--safe-bottom)));
  z-index: 50;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  box-shadow: 0 12px 40px rgba(58, 50, 43, 0.18);
}

.wa-float svg {
  width: 1.55rem;
  height: 1.55rem;
  display: block;
}

.gateway {
  position: relative;
  height: calc(100dvh - var(--nav-h) - var(--safe-top));
  min-height: calc(100dvh - var(--nav-h) - var(--safe-top));
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  overflow: hidden;
  background: var(--cream);
  color: #f6f1e8;
}

.gateway-panel {
  position: relative;
  flex: 1 1 0;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  color: inherit;
}

.gateway-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  filter: saturate(0.85) brightness(0.72);
}

.gateway-panel.facade-crop img { object-position: center 16%; }

.gateway-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,9,7,0.18), rgba(8,9,7,0.04) 38%, rgba(8,9,7,0.32) 100%);
}

.gateway-caption {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.15rem;
  z-index: 2;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.gateway-caption .eyebrow {
  color: var(--gold-soft);
}

.gateway-caption p:not(.eyebrow) {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.35;
  opacity: 0.92;
}

.gateway-caption h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 10vw, 3.4rem);
  margin: 0.12em 0 0.2em;
  line-height: 0.95;
}

.gateway-brand {
  position: fixed;
  top: max(0.85rem, var(--safe-top));
  left: 0;
  right: 0;
  z-index: 6;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.gateway-logo {
  width: min(17.5rem, calc(100% - 2.2rem));
  height: auto;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.62));
}

.gateway-foot {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  top: 50%;
  z-index: 3;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 3.6vw, 1.2rem);
  letter-spacing: 0.04em;
  pointer-events: none;
  color: rgba(244, 239, 230, 0.92);
  transform: translateY(-50%);
  text-shadow: 0 8px 24px rgba(0,0,0,0.55);
}

.reveal { opacity: 0; transform: translateY(28px); }

.map-frame {
  width: 100%;
  min-height: 42vh;
  border: 0;
  filter: grayscale(0.35) contrast(0.95);
}

.contact-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.contact-actions .btn { flex: 1 1 9rem; }

@media (min-width: 720px) {
  :root { --page-pad: 1.5rem; }

  .reserve-bar form,
  .reserve-card {
    grid-template-columns: 1fr 1fr;
  }

  .reserve-bar .btn {
    width: auto;
    grid-column: 1 / -1;
    justify-self: start;
  }

  .form-grid { grid-template-columns: 1fr 1fr; }

  .form-grid .btn { width: auto; }

  .room-grid { grid-template-columns: 1fr 1fr; }

  .room-card figure {
    aspect-ratio: 4 / 5;
    height: auto;
  }

  .hotel-pick-grid {
    grid-template-columns: repeat(auto-fill, minmax(17.5rem, 1fr));
  }

  .hotel-pick figure {
    aspect-ratio: 4 / 5;
    height: auto;
  }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .footer-base {
    flex-direction: row;
    justify-content: space-between;
  }

  .gateway-caption {
    left: 8%;
    right: 8%;
  }

  .gateway-logo { width: min(20rem, 52vw); }
}

@media (min-width: 960px) {
  :root { --nav-h: 7.15rem; }

  h1.display { font-size: clamp(3.2rem, 8vw, 7.2rem); }
  h2.display { font-size: clamp(2.4rem, 5vw, 4.4rem); }
  h3.display { font-size: clamp(1.8rem, 3vw, 2.6rem); }
  .lede { font-size: 1.08rem; }
  .eyebrow { font-size: 0.82rem; letter-spacing: 0.22em; }

  .hamburger { display: none; }

  .header-content {
    min-height: 7.15rem;
    align-items: stretch;
    transition: min-height 0.45s var(--ease);
  }

  .site-header.is-scrolled .header-content {
    min-height: 4.75rem;
    align-items: center;
  }

  .site-header .brand {
    position: static;
    left: auto;
    transform: none;
    align-items: center;
    padding-top: 0.7rem;
    transition: padding-top 0.45s var(--ease);
  }

  .site-header.is-scrolled .brand {
    padding-top: 0;
  }

  .brand-logo {
    height: 3.75rem;
    max-width: min(220px, 20vw);
  }

  .site-header.is-scrolled .brand-logo {
    height: 2.35rem;
  }

  .menu-section {
    display: flex;
    position: static;
    flex: 1;
    left: auto;
    right: auto;
    width: auto;
    min-height: 0;
    max-height: none;
    background: transparent;
    color: inherit;
    padding: 0 0 0 2rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    overflow: visible;
    box-shadow: none;
    transition: none;
  }

  .settings-section {
    width: calc(100% - 2.5rem);
    margin-left: auto;
    padding: 0.4rem 0 0.3rem;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    overflow: hidden;
    max-height: 2.35rem;
    transition: max-height 0.45s var(--ease), opacity 0.35s var(--ease), padding 0.45s var(--ease), margin 0.45s var(--ease), border-width 0.45s var(--ease), transform 0.45s var(--ease);
  }

  .site-header.is-scrolled .settings-section {
    max-height: 0;
    opacity: 0;
    padding: 0;
    margin: 0;
    border-bottom-width: 0;
    pointer-events: none;
    transform: translateY(-0.4rem);
  }

  .site-header .settings-section {
    border-bottom-color: rgba(255, 255, 255, 0.22);
  }

  .nav-section {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 0.15rem;
    gap: 1.5rem;
    transition: margin-top 0.45s var(--ease);
  }

  .site-header.is-scrolled .nav-section {
    margin-top: 0;
  }

  .nav-menu {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex: 1;
    gap: 0;
    padding: 0.4rem 1.5rem 0;
    transition: padding 0.45s var(--ease);
  }

  .site-header.is-scrolled .nav-menu {
    padding-top: 0;
    align-items: center;
  }

  .nav-menu > li {
    margin-right: 2.4rem;
    z-index: 1;
  }

  .nav-menu > li:hover,
  .nav-menu > li.is-open,
  .nav-menu > .has-children.is-open {
    z-index: 5;
  }

  .nav-menu > li:last-child { margin-right: 0; }

  .nav-menu a,
  .nav-dropdown-toggle {
    position: relative;
    min-height: 0;
    font-size: 0.88rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
  }

  .nav-menu > li > a::after,
  .nav-menu > .has-children > .nav-dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease);
  }

  .nav-menu > li:hover > a::after,
  .nav-menu > li.is-current > a::after,
  .nav-menu > .has-children:hover > .nav-dropdown-toggle::after,
  .nav-menu > .has-children.is-open > .nav-dropdown-toggle::after {
    transform: scaleX(1);
  }

  .has-children::after {
    top: 0.45rem;
    right: -0.95rem;
    border-width: 0 1px 1px 0;
    width: 0.38rem;
    height: 0.38rem;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.35);
    z-index: 1;
  }

  .has-children:hover::after,
  .has-children.is-open::after {
    transform: rotate(225deg);
  }

  .sub-menu {
    position: absolute;
    top: calc(100% - 2px);
    left: -1.1rem;
    z-index: 60;
    display: none;
    margin: 0;
    padding: 1.35rem 1.1rem 1.1rem;
    min-width: 13rem;
    max-height: none;
    opacity: 1;
    overflow: visible;
    background: #000;
    box-shadow: none;
    transition: none;
  }

  .has-children:hover .sub-menu,
  .has-children.is-open .sub-menu {
    display: block;
    max-height: none;
    opacity: 1;
    margin: 0;
  }

  .sub-menu a {
    min-height: 1.8rem;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    color: #fff;
  }

  .nav-cta {
    flex-shrink: 0;
    min-height: 2.5rem;
  }

  .hero-video video {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 1;
  }

  .hero-copy {
    margin-bottom: 16vh;
  }

  .hero {
    min-height: calc(100svh - var(--nav-h) - var(--safe-top));
  }

  .hero-copy h1.display {
    font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  }

  .reserve-bar { margin-top: -3.2rem; }

  .reserve-bar form,
  .reserve-card {
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 0.4rem 1rem;
    padding: 1.1rem 1.2rem;
    align-items: end;
  }

  .reserve-bar .btn {
    width: auto;
    grid-column: auto;
  }

  .home-facts { padding: 3.8rem 0 0.6rem; }

  .home-stat-row {
    grid-template-columns: repeat(4, 1fr);
    padding: 0.55rem 0;
  }

  .home-stat-row li,
  .home-stat-row li:nth-child(even),
  .home-stat-row li:nth-last-child(-n + 2) {
    border-right: 1px solid var(--line);
    border-bottom: 0;
    min-height: 7.2rem;
    padding: 1.5rem 1rem;
  }

  .home-stat-row li:last-child { border-right: 0; }

  .home-facts-foot {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1.35rem 0.2rem 0;
  }

  .scenes {
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
    padding: 5rem 0 3.5rem;
  }

  .scene:not(.scene--copy) .scene-copy {
    position: absolute;
    left: 0;
    bottom: 1.5rem;
    width: 82%;
    height: auto;
    max-width: none;
    margin: 0;
    padding: 1.35rem 1.45rem 1.25rem;
    justify-content: flex-start;
    background: color-mix(in srgb, var(--bg) 75%, transparent);
    overflow: hidden;
  }

  .scene:not(.scene--copy) .scene-copy .display {
    font-size: 1.8rem;
  }

  .scene:not(.scene--copy) .scene-copy .lede {
    font-size: 1rem;
  }

  .scene--copy {
    aspect-ratio: 3 / 2;
  }

  .scene--copy .scene-copy {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    height: auto;
    margin: 1.8rem;
    padding: 1.6rem 1.7rem;
    background: var(--bg);
  }

  .scene--copy .scene-copy .display {
    font-size: clamp(1.85rem, 2.4vw, 2.35rem);
  }

  .quote-block { padding: 7rem 0; }

  .quote-block p { font-size: clamp(1.5rem, 3.2vw, 2.4rem); }

  .room-grid { grid-template-columns: repeat(3, 1fr); }

  .hotel-picks { padding: 3.6rem 0 5.5rem; }

  .page-hero { padding: 2rem 0 3rem; }

  .rooms-hero h1.display,
  .room-split h1.display {
    font-size: clamp(1.85rem, 3vw, 2.55rem);
  }

  .room-tour-block h2.display {
    font-size: clamp(1.6rem, 2.4vw, 2.15rem);
  }

  .room-card h3.display {
    font-size: clamp(1.3rem, 1.6vw, 1.55rem);
  }

  .split-page {
    grid-template-columns: 1.15fr 0.85fr;
    min-height: calc(100svh - var(--nav-h) - var(--safe-top));
  }

  .split-page .visual { min-height: 70vh; }

  .split-page .copy { padding: 2.4rem clamp(2.2rem, 8vw, 5.5rem) 8vh; }

  .about-wrap {
    padding: 2.2rem 0 3.2rem;
  }

  .about-wrap .visual {
    float: left;
    width: min(44%, 28.5rem);
    margin: 0.35rem 2.6rem 1.35rem 0;
  }

  .about-wrap .visual img {
    height: min(68vh, 34rem);
  }

  .about-wrap h1.display {
    font-size: clamp(2.15rem, 3.4vw, 3.05rem);
  }

  .room-split {
    min-height: calc(100svh - var(--nav-h) - var(--safe-top));
  }

  .room-split .visual {
    min-height: 0;
    height: calc(100svh - var(--nav-h) - var(--safe-top));
  }

  .room-split .copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100svh - var(--nav-h) - var(--safe-top));
    padding: 2.4rem clamp(2.2rem, 6vw, 4.5rem) 4rem;
  }

  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: stretch;
    padding-bottom: 4.5rem;
  }

  .contact-facts {
    grid-template-columns: 1fr 1fr;
  }

  .contact-split {
    min-height: auto;
    gap: 2rem;
    padding-bottom: 4rem;
  }

  .tour-slot { min-height: 52vh; }
  .tour-slot iframe { height: 62vh; }
  .map-frame {
    min-height: 0;
    height: 100%;
  }

  .site-footer {
    padding: 4.5rem 0 2rem;
    margin-top: 5rem;
  }

  .footer-grid {
    grid-template-columns: 1.15fr 1fr 0.7fr 0.85fr 0.85fr;
    gap: 2rem 1.5rem;
  }

  .footer-brand .brand-logo {
    height: 3.15rem;
    max-width: 260px;
  }

  .footer-base { margin-top: 3rem; padding-top: 1.4rem; }

  .gateway {
    height: calc(100dvh - var(--nav-h) - var(--safe-top));
    min-height: calc(100dvh - var(--nav-h) - var(--safe-top));
    flex-direction: row;
  }

  .gateway-panel {
    flex: 1 1 0;
    min-height: 0;
    min-width: 0;
    transition: flex 0.95s var(--ease);
  }

  .gateway-panel img {
    object-position: -20rem center;
    transform: scale(1.12);
    transition: transform 1.4s var(--ease), filter 1s var(--ease);
  }

  .gateway-veil { transition: opacity 0.8s var(--ease); }

  .gateway-caption {
    bottom: 12%;
  }

  .gateway-caption h2 {
    font-size: clamp(2.6rem, 5vw, 5rem);
    transform: translateY(12px);
    transition: transform 0.8s var(--ease);
  }

  .gateway-brand {
    top: max(1.35rem, var(--safe-top));
  }

  .gateway-logo {
    width: min(24rem, 38vw);
  }

  .gateway-foot {
    left: 0;
    right: 0;
    top: auto;
    bottom: 1.6rem;
    transform: none;
    font-size: clamp(1.05rem, 2vw, 1.45rem);
  }
}

@media (min-width: 960px) and (hover: hover) {
  .gateway-panel:hover,
  .gateway-panel:focus-visible { flex: 1.7; }

  .gateway-panel:hover img,
  .gateway-panel:focus-visible img {
    transform: scale(1.12);
    filter: saturate(1) brightness(0.92);
  }

  .gateway-panel:hover .gateway-veil { opacity: 0.55; }

  .gateway-panel:hover .gateway-caption h2,
  .gateway-panel:focus-visible .gateway-caption h2 { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img, .gateway-panel, .gateway-panel img, .room-card img, .reveal {
    animation: none;
    transition: none;
    transform: none;
  }
  .hero-video iframe,
  .hero-video video { display: none; }
}
