/* Beyzade Konak Otel — 2026 */
:root {
  --ink: #14110e;
  --ink-soft: #2a241c;
  --stone: #9a8b76;
  --stone-light: #d9cfbf;
  --sand: #e8dfd0;
  --sand-deep: #cfc3ae;
  --gold: #c4a35a;
  --gold-bright: #e0c57a;
  --gold-dim: #8a7040;
  --wine: #6b2d2d;
  --cream: #f3eee4;
  --white: #faf8f4;
  --line: rgba(196, 163, 90, 0.28);
  --shadow: 0 24px 60px rgba(20, 17, 14, 0.28);
  --radius: 2px;
  --font-display: "Cormorant Garamond", "Palatino Linotype", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --nav-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.container-wide {
  width: min(1280px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Typography */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.85rem;
}

h1,
h2,
h3,
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.6rem, 5.8vw, 4.6rem);
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
}

.lead {
  font-size: 1.125rem;
  color: var(--ink-soft);
  max-width: 38rem;
}

.muted {
  color: rgba(42, 36, 28, 0.72);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.85rem 1.55rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
    color 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(196, 163, 90, 0.35);
}

.btn-gold:hover {
  box-shadow: 0 14px 36px rgba(196, 163, 90, 0.45);
}

.btn-outline {
  background: transparent;
  border-color: rgba(250, 248, 244, 0.55);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(250, 248, 244, 0.1);
  border-color: var(--gold);
  color: var(--gold-bright);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-outline-dark:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-wine {
  background: var(--wine);
  color: var(--white);
}

.btn-wine:hover {
  background: #572424;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1003;
  height: var(--nav-h);
  background: rgba(20, 17, 14, 0.98);
  border-bottom: 1px solid rgba(196, 163, 90, 0.22);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
  /* backdrop-filter yok: fixed menüyü header yüksekliğine kilitliyordu */
  overflow: visible;
}

.site-header.is-scrolled {
  background: rgba(20, 17, 14, 0.98);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.4);
}

.site-header.is-menu-open {
  box-shadow: none;
}

.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  position: relative;
  z-index: 1003;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  margin-left: auto;
  z-index: 1004;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  flex-shrink: 1;
}

.logo img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--gold);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--gold-bright);
  white-space: nowrap;
}

.logo-text span {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  color: #faf8f4;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  width: 100%;
}

.nav-links a.is-active {
  color: var(--gold-bright);
}

.nav-phone-link {
  color: var(--gold-bright) !important;
}

.nav-mobile-cta {
  display: none;
}

.nav-cta {
  display: none;
  min-height: 44px;
  padding: 0.55rem 1.1rem;
  font-size: 0.88rem;
  flex-shrink: 0;
}

.nav-backdrop {
  display: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(224, 197, 122, 0.75);
  background: rgba(196, 163, 90, 0.12);
  color: #faf8f4;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  border-radius: var(--radius);
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s var(--ease), transform 8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(20, 17, 14, 0.55) 0%, rgba(20, 17, 14, 0.25) 38%, rgba(20, 17, 14, 0.78) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(196, 163, 90, 0.18), transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: calc(var(--nav-h) + 3rem) 0 5.5rem;
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 5.6rem);
  letter-spacing: 0.04em;
  font-weight: 600;
  color: var(--gold-bright);
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
  animation: rise 1s var(--ease) both;
}

.hero h1 {
  margin-top: 0.65rem;
  max-width: 16ch;
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  font-weight: 400;
  color: var(--white);
  animation: rise 1s var(--ease) 0.12s both;
}

.hero .lead {
  margin-top: 1.1rem;
  color: rgba(250, 248, 244, 0.86);
  animation: rise 1s var(--ease) 0.22s both;
}

.hero .btn-group {
  animation: rise 1s var(--ease) 0.32s both;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 248, 244, 0.18);
  font-size: 0.9rem;
  color: rgba(250, 248, 244, 0.75);
  animation: rise 1s var(--ease) 0.42s both;
}

.hero-meta strong {
  display: block;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.hero-dots {
  position: absolute;
  z-index: 4;
  right: 1.5rem;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(250, 248, 244, 0.55);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.hero-dots button.is-active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.15);
}

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

/* Sections */
.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section-head {
  margin-bottom: 2.75rem;
  max-width: 40rem;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-dark {
  background:
    linear-gradient(160deg, #1a1612 0%, #2a2218 55%, #1c1712 100%);
  color: var(--white);
}

.section-dark .eyebrow {
  color: var(--gold);
}

.section-dark .muted,
.section-dark .lead {
  color: rgba(250, 248, 244, 0.72);
}

.section-stone {
  background:
    linear-gradient(180deg, rgba(232, 223, 208, 0.92), rgba(207, 195, 174, 0.55)),
    url("../images/photo-12.jpg") center / cover fixed;
  position: relative;
}

.section-stone::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(243, 238, 228, 0.88);
}

.section-stone > * {
  position: relative;
  z-index: 1;
}

/* About split */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  animation: kenburns 18s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

.split-media .frame {
  position: absolute;
  inset: 1.1rem;
  border: 1px solid rgba(196, 163, 90, 0.55);
  pointer-events: none;
  z-index: 2;
}

.split-copy .stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(20, 17, 14, 0.12);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--gold-dim);
  letter-spacing: 0.04em;
}

.stat span {
  font-size: 0.85rem;
  color: rgba(42, 36, 28, 0.7);
}

/* Rooms */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.room {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  min-height: 420px;
  isolation: isolate;
}

.room img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  z-index: -2;
}

.room:hover img {
  transform: scale(1.06);
}

.room::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 17, 14, 0.15), rgba(20, 17, 14, 0.88));
  z-index: -1;
}

.room-body {
  position: absolute;
  inset: auto 0 0;
  padding: 1.75rem;
}

.room-price {
  font-family: var(--font-display);
  color: var(--gold-bright);
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.room-price small {
  font-family: var(--font-body);
  font-size: 0.8rem;
  opacity: 0.8;
  letter-spacing: 0;
}

.room h3 {
  margin-bottom: 0.65rem;
}

.room p {
  font-size: 0.95rem;
  color: rgba(250, 248, 244, 0.78);
  margin-bottom: 1.1rem;
  max-width: 34ch;
}

.room-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.room-actions .btn {
  min-height: 44px;
  padding: 0.65rem 1.1rem;
  font-size: 0.9rem;
}

/* Amenities */
.amenities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.amenity {
  padding: 1.6rem 1.35rem;
  border-top: 1px solid var(--line);
  background: rgba(250, 248, 244, 0.04);
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}

.section-dark .amenity:hover {
  background: rgba(196, 163, 90, 0.08);
  transform: translateY(-4px);
}

.amenity-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  color: var(--gold);
}

.amenity h3 {
  margin-bottom: 0.55rem;
  color: var(--gold-bright);
}

.amenity p {
  color: rgba(250, 248, 244, 0.7);
  font-size: 0.95rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 160px;
  gap: 0.75rem;
}

.gallery-grid a {
  overflow: hidden;
  position: relative;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery-grid a:hover img {
  transform: scale(1.07);
}

.gallery-grid a:nth-child(1) {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-grid a:nth-child(2) {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-grid a:nth-child(3) {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-grid a:nth-child(4),
.gallery-grid a:nth-child(5),
.gallery-grid a:nth-child(6) {
  grid-column: span 4;
  grid-row: span 2;
}

/* CTA band */
.cta-band {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  color: var(--white);
  overflow: hidden;
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  background: url("../images/photo-12.jpg") center / cover no-repeat;
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.05);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(14, 11, 8, 0.92) 0%, rgba(14, 11, 8, 0.72) 48%, rgba(14, 11, 8, 0.45) 100%),
    linear-gradient(180deg, rgba(14, 11, 8, 0.35), rgba(14, 11, 8, 0.55));
}

.cta-band .container {
  position: relative;
  z-index: 2;
}

.cta-band .lead {
  color: rgba(250, 248, 244, 0.9);
  max-width: 36rem;
  margin-bottom: 0.35rem;
}

.cta-band h2 {
  max-width: 16ch;
  margin-bottom: 0.85rem;
}

.phone-xl {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 0.08em;
  color: var(--gold-bright);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid rgba(20, 17, 14, 0.08);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-list li {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(20, 17, 14, 0.08);
}

.contact-list li:last-child {
  border-bottom: 0;
}

.contact-list span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-family: var(--font-display);
}

.contact-list a:hover,
.contact-list strong {
  color: var(--ink);
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(20, 17, 14, 0.15);
  background: var(--cream);
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.2);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.map-wrap {
  margin-top: 2rem;
  overflow: hidden;
  border: 1px solid rgba(20, 17, 14, 0.08);
  min-height: 360px;
  background: var(--sand);
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}

/* Page hero (inner) */
.page-hero {
  position: relative;
  min-height: 42vh;
  display: grid;
  align-items: end;
  color: var(--white);
  padding: calc(var(--nav-h) + 3rem) 0 3rem;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.04);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 11, 8, 0.55) 0%, rgba(14, 11, 8, 0.72) 100%),
    linear-gradient(90deg, rgba(14, 11, 8, 0.35), transparent 55%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

/* Room detail blocks */
.room-detail {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: stretch;
}

.room-detail:nth-child(even) .room-detail-media {
  order: 2;
}

.room-detail-media {
  min-height: 380px;
  overflow: hidden;
  position: relative;
}

.room-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.room-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0;
}

.feature-list {
  margin: 1.25rem 0 1.75rem;
  display: grid;
  gap: 0.55rem;
}

.feature-list li {
  padding-left: 1.2rem;
  position: relative;
  color: rgba(42, 36, 28, 0.82);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(250, 248, 244, 0.78);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.site-footer .logo-text strong {
  color: var(--gold-bright);
}

.site-footer h3 {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  letter-spacing: 0.12em;
}

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

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 248, 244, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.88rem;
}

/* Sticky mobile convert */
.sticky-cta {
  position: fixed;
  z-index: 1100;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: none;
}

.sticky-cta .btn {
  width: 100%;
  min-height: 54px;
  font-size: 1.05rem;
  box-shadow: var(--shadow);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 8, 6, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-height: min(88vh, 900px);
  max-width: min(96vw, 1200px);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(250, 248, 244, 0.4);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 1.4rem;
}

/* Responsive */
@media (min-width: 901px) {
  .nav-cta {
    display: inline-flex;
  }

  .nav-phone-link {
    display: none;
  }

  .nav-links {
    display: flex;
    position: fixed;
    left: 50%;
    top: 0;
    bottom: auto;
    right: auto;
    transform: translateX(-50%);
    height: var(--nav-h);
    width: auto;
    min-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    z-index: 1003;
    overflow: visible;
    pointer-events: auto;
    box-shadow: none;
  }

  .nav-toggle {
    display: none !important;
  }

  .nav-mobile-cta {
    display: none !important;
  }

  .nav-backdrop {
    display: none !important;
  }
}

@media (max-width: 900px) {
  :root {
    --nav-h: 68px;
  }

  .nav-toggle {
    display: inline-flex !important;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(10, 8, 6, 0.72);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
  }

  .site-header.is-menu-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links {
    display: flex !important;
    position: fixed !important;
    top: var(--nav-h) !important;
    right: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    min-height: calc(100dvh - var(--nav-h)) !important;
    margin: 0 !important;
    padding: 1.5rem 1.5rem calc(2rem + env(safe-area-inset-bottom, 0px)) !important;
    background: #14110e !important;
    border-left: 0 !important;
    border-top: 1px solid rgba(196, 163, 90, 0.22);
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    transform: translateX(100%) !important;
    transition: transform 0.4s var(--ease) !important;
    z-index: 1002 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    box-shadow: none;
    pointer-events: none;
  }

  .nav-links.is-open {
    transform: translateX(0) !important;
    pointer-events: auto !important;
  }

  .nav-links a {
    font-size: 1.25rem !important;
    font-weight: 600;
    min-height: 56px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0.5rem 0.15rem !important;
    border-bottom: 1px solid rgba(250, 248, 244, 0.1) !important;
    text-shadow: none;
    color: #faf8f4 !important;
  }

  .nav-links a::after {
    display: none !important;
  }

  .nav-links a.is-active {
    color: var(--gold-bright) !important;
  }

  .nav-phone-link,
  .nav-links a.nav-phone-link {
    display: none !important;
  }

  .nav-mobile-cta {
    display: flex !important;
    width: 100% !important;
    margin-top: 1.75rem !important;
    min-height: 56px !important;
    font-size: 1.05rem !important;
    border-bottom: 0 !important;
    justify-content: center !important;
    color: var(--ink) !important;
  }

  .logo img {
    width: 42px;
    height: 42px;
  }

  .logo-text strong {
    font-size: 1rem;
  }

  .logo-text span {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .split,
  .contact-grid,
  .room-detail,
  .room-detail:nth-child(even) .room-detail-media {
    grid-template-columns: 1fr;
  }

  .room-detail:nth-child(even) .room-detail-media {
    order: 0;
  }

  .split-media {
    min-height: 320px;
  }

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

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

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

  .sticky-cta {
    display: block;
    left: max(0.75rem, env(safe-area-inset-left));
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(0.75rem, env(safe-area-inset-bottom));
  }

  body.has-sticky-cta {
    padding-bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px));
  }

  body.is-nav-open {
    overflow: hidden;
    touch-action: none;
  }

  body.is-nav-open .sticky-cta {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: calc(var(--nav-h) + 2rem) 0 5rem;
  }

  .hero-brand {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .hero h1 {
    font-size: clamp(1.35rem, 5.5vw, 1.85rem);
    max-width: 20ch;
  }

  .hero .lead {
    font-size: 1rem;
  }

  .hero-meta {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .hero-dots {
    flex-direction: row;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(4.8rem + env(safe-area-inset-bottom, 0px));
  }

  .section {
    padding: 3.5rem 0;
  }

  .container {
    width: min(1120px, calc(100% - 1.5rem));
  }

  .gallery-grid {
    grid-auto-rows: 120px;
    gap: 0.5rem;
  }

  .gallery-grid a:nth-child(n) {
    grid-column: span 6;
    grid-row: span 2;
  }

  .room {
    min-height: 360px;
  }

  .page-hero {
    min-height: 36vh;
    padding: calc(var(--nav-h) + 2rem) 0 2.25rem;
  }

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

@media (max-width: 640px) {
  .amenities,
  .form-row,
  .split-copy .stat-row {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-bottom: 4.5rem;
  }

  .gallery-grid a:nth-child(n) {
    grid-column: span 12;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-group .btn {
    width: 100%;
  }

  .contact-card {
    padding: 1.35rem;
  }

  .phone-xl {
    font-size: 1.45rem;
    word-break: break-word;
  }

  .cta-band {
    text-align: left;
  }
}

@media (max-width: 380px) {
  .logo-text span {
    display: none;
  }
}

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