/* ═══════════════════════════════════════════════════════
   Noble Crown Cappadocia — Cinematic Stone Luxury
   Kapadokya'nın taş dokusundan ilham alan,
   sinematik fotoğraf odaklı, editoryal lüks tasarım.
   ═══════════════════════════════════════════════════════ */

/* ═══ 1. Design Tokens — Suhan Cappadocia paleti (altın #AB8146 · krem · taş · antrasit) ═══ */
:root {
  /* Koyu tonlar (hero / footer / cta — Suhan antrasiti) */
  --dark: #221F19;
  --dark-surface: #2E2A22;
  --dark-mid: #3C3527;

  /* Metin */
  --ink: #2E2A22;
  --ink-soft: #4A4437;
  --ink-muted: #8B8271;
  --ink-light: #A89E8C;
  --ink-faint: #C9BEA9;

  /* Accent — Suhan altın/bronz */
  --accent: #AB8146;
  --accent-hover: #8A6636;
  --accent-soft: #C6A16A;
  --accent-dark: #6F5230;
  --accent-bg: rgba(171,129,70,.08);
  --accent-border: rgba(171,129,70,.22);

  /* Legacy + Suhan alias'ları */
  --gold: #AB8146;
  --gold-deep: #8A6636;
  --gold-light: #C6A16A;
  --gold-soft: #E7D6B8;
  --stone-500: #8B8271;

  /* Yüzeyler */
  --white: #FFFFFF;
  --bg: #FAF6EF;
  --bg-alt: #F2E9D9;
  --bg-deep: #E7DCC9;
  --surface: #FFFFFF;

  /* Suhan alias'ları (chrome CSS için) */
  --cream: #FAF6EF;
  --sand: #F2E9D9;
  --stone: #E7DCC9;
  --line: #E4D9C6;
  --charcoal: #221F19;
  --body: #4A4437;
  --muted: #8B8271;

  /* Çizgiler */
  --border: rgba(120,92,40,.16);
  --border-light: rgba(120,92,40,.08);
  --border-hover: rgba(120,92,40,.3);

  /* Gölgeler (Suhan sıcak tonları) */
  --sh-xs: 0 1px 2px rgba(60,45,20,.05);
  --sh-sm: 0 4px 16px rgba(60,45,20,.08);
  --sh-md: 0 10px 30px rgba(60,45,20,.1);
  --sh-lg: 0 30px 70px rgba(40,30,15,.2);
  --sh-glow: 0 0 30px rgba(171,129,70,.2);

  /* Yarıçaplar */
  --r: 6px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 100px;

  /* Boşluk / ölçüler */
  --max-w: 1280px;
  --wrap: 1280px;
  --px: clamp(20px, 4vw, 48px);
  --section-py: clamp(80px, 10vw, 140px);
  --header-h: 76px;
  --header-h-m: 62px;

  /* Tipografi — Suhan: Cormorant Garamond + Jost */
  --serif-primary: 'Cormorant Garamond', Georgia, serif;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, -apple-system, sans-serif;

  /* Hareket */
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --dur: .4s;
  --dur-slow: .7s;
}

/* ═══ 2. Reset & Base ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

body {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-soft);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(171,129,70,.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(171,129,70,.04) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(231,220,201,.5) 0%, transparent 40%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

a:hover { color: var(--accent); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

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

button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ═══ 3. Typography ═══ */
h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 500;
}

h1 {
  font-family: var(--serif-primary);
  font-size: clamp(3.2rem, 2rem + 5vw, 5.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--serif-primary);
  font-size: clamp(2.4rem, 1.5rem + 3.5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.12;
}

h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 1.2rem + .8vw, 1.85rem);
  font-weight: 500;
}

h4 {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
}

.gold-line { display: none; }

/* ═══ 4. Layout ═══ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.section {
  padding: var(--section-py) 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}

.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p {
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ═══ 5. Buttons ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 14px 32px;
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn svg { width: 15px; height: 15px; flex: none; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(171,129,70,.34);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(138,102,54,.42);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-hover);
  color: var(--ink);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
}
.btn-light:hover {
  background: rgba(255,255,255,.1);
  color: var(--white);
}

.btn-wa {
  background: #25D366;
  color: var(--white);
}
.btn-wa:hover {
  background: #1fb855;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border: 1px solid var(--accent-border);
}
.btn-dark:hover {
  background: var(--dark-surface);
  border-color: var(--accent);
  color: var(--white);
}

/* Suhan alias'ı + drawer tam genişlik */
.btn-gold {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(171,129,70,.34);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(138,102,54,.42); color: var(--white); }
.btn-block { display: flex; width: 100%; }

/* Erişilebilirlik: içeriğe atla */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--gold); color: #fff; padding: 10px 16px; z-index: 2000; border-radius: 0 0 var(--r-sm) 0; }
.skip-link:focus { left: 0; }

/* ═══ 6. Chrome — Üst çubuk + Header + Nav + Drawer (Suhan tasarım dili) ═══ */
/* ---------- Üst çubuk ---------- */
.topbar { background: var(--charcoal); color: #cabfa9; font-size: 13.5px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 42px; gap: 16px; }
.topbar-contact { display: flex; gap: 22px; min-width: 0; }
.topbar-contact a { display: inline-flex; align-items: center; gap: 7px; color: #cabfa9; transition: color .3s; }
.topbar-contact a:hover { color: var(--gold-light); }
.topbar-contact .ico { width: 15px; height: 15px; color: var(--gold-light); }
.topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a { color: #b6ab95; transition: .3s; display: inline-flex; }
.topbar-social a:hover { color: var(--gold-light); transform: translateY(-2px); }
.topbar-social .ico { width: 17px; height: 17px; }
.lang-links { display: inline-flex; align-items: center; gap: 2px; background: rgba(255,255,255,.06); border-radius: var(--r-pill); padding: 3px; }
.lang-links a { padding: 4px 11px; border-radius: var(--r-pill); font-size: 12px; font-weight: 600; letter-spacing: .08em; color: #cabfa9; transition: .3s; }
.lang-links a:hover { color: #fff; }
.lang-links a.active { background: var(--gold); color: #fff; }

/* ---------- Header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 900; background: rgba(250,246,239,.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: .4s var(--ease); }
.site-header.scrolled { box-shadow: var(--sh-sm); border-bottom-color: var(--line); background: rgba(255,255,255,.97); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; transition: height .4s; }
.site-header.scrolled .header-inner { height: 66px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { max-height: 46px; width: auto; transition: max-height .4s var(--ease); }
.site-header.scrolled .brand-logo { max-height: 40px; }
.brand-mark { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: #fff; flex: none; box-shadow: 0 6px 16px rgba(171,129,70,.4); }
.brand-mark .ico { width: 24px; height: 24px; }
.brand-text-wrap { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-weight: 700; font-size: 22px; letter-spacing: 2px; color: var(--ink); }
.brand-sub { font-family: var(--sans); font-size: 9.5px; letter-spacing: .32em; color: var(--gold-deep); margin-top: 3px; font-weight: 500; text-transform: uppercase; }
.main-nav { display: flex; gap: 30px; align-items: center; }
.main-nav .nav-item { position: relative; }
.main-nav .nav-item--has-dropdown::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 16px; }
.main-nav .nav-item > a { font-family: var(--sans); font-size: 14.5px; font-weight: 400; color: var(--ink); position: relative; padding: 6px 0; letter-spacing: .03em;
  display: inline-flex; align-items: center; gap: 5px; text-transform: none; }
.main-nav .nav-item > a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--gold); transition: width .35s var(--ease); }
.main-nav .nav-item > a:hover, .main-nav .nav-item > a.active { color: var(--gold-deep); }
.main-nav .nav-item > a:hover::after, .main-nav .nav-item > a.active::after { width: 100%; }
.main-nav .nav-item > a .ico.chevron { width: 15px; height: 15px; transition: transform .3s; color: var(--muted); }
.main-nav .nav-item:hover > a .ico.chevron { transform: rotate(180deg); color: var(--gold); }
/* Dropdown paneli */
.dropdown { position: absolute; top: calc(100% + 4px); left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 440px; background: #fff; border-radius: var(--r-md); box-shadow: var(--sh-lg);
  border: 1px solid var(--line); padding: 16px; opacity: 0; visibility: hidden; pointer-events: none; transition: .3s var(--ease); z-index: 100; }
.dropdown::before { content: ""; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: #fff; border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.dropdown-grid { display: grid; grid-template-columns: repeat(2, minmax(150px, 1fr)); gap: 2px; }
.dropdown-link { padding: 9px 14px; border-radius: var(--r-sm); color: var(--ink); font-family: var(--serif); font-size: 16px; font-weight: 500; transition: .2s; white-space: nowrap; }
.dropdown-link:hover { background: var(--sand); color: var(--gold-deep); }
.dropdown-all { display: flex; align-items: center; gap: 8px; justify-content: flex-end; border-top: 1px solid var(--line); margin: 8px 6px 0; padding: 12px 8px 2px;
  color: var(--gold-deep); font-size: 13px; font-weight: 600; letter-spacing: .04em; font-family: var(--sans); text-transform: uppercase; }
.dropdown-all .ico { width: 17px; height: 17px; transition: transform .3s; }
.dropdown-all:hover .ico { transform: translateX(4px); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.btn-reserve .ico { width: 17px; height: 17px; }
.nav-toggle { display: none; background: none; border: none; color: var(--ink); cursor: pointer; padding: 6px; }
.nav-toggle .ico { width: 28px; height: 28px; }

/* ---------- Mobil çekmece ---------- */
.mobile-drawer { position: fixed; top: 0; right: -100%; width: min(360px,86vw); height: 100%;
  background: var(--cream); z-index: 1200; box-shadow: var(--sh-lg); transition: right .4s var(--ease);
  display: flex; flex-direction: column; padding: 22px; }
.mobile-drawer.open { right: 0; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.drawer-head .brand-name { font-size: 16px; letter-spacing: 1px; }
.drawer-close { background: none; border: none; cursor: pointer; color: var(--ink); }
.drawer-close .ico { width: 26px; height: 26px; }
.drawer-nav { display: flex; flex-direction: column; padding: 18px 0; flex: 1; overflow-y: auto; }
.drawer-nav > a, .drawer-group-head > a { display: flex; align-items: center; justify-content: space-between; padding: 15px 4px;
  font-family: var(--serif); font-size: 21px; color: var(--ink); border-bottom: 1px solid var(--line); }
.drawer-nav > a .ico, .drawer-group-head > a .ico { width: 18px; height: 18px; color: var(--gold); }
.drawer-nav > a.active, .drawer-group-head > a.active { color: var(--gold-deep); }
.drawer-group { border-bottom: 1px solid var(--line); }
.drawer-group-head { display: flex; align-items: center; }
.drawer-group-head > a { flex: 1; border-bottom: none; padding: 15px 4px; }
.drawer-toggle { background: none; border: none; cursor: pointer; padding: 10px 4px 10px 8px; color: var(--muted); transition: color .3s; flex: none; }
.drawer-toggle:hover { color: var(--gold-deep); }
.drawer-toggle .ico { width: 20px; height: 20px; transition: transform .35s var(--ease); }
.drawer-toggle.open .ico { transform: rotate(180deg); }
.drawer-toggle.open { color: var(--gold); }
.drawer-sub { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.drawer-sub.open { max-height: 600px; }
.drawer-sub a { display: flex; align-items: center; justify-content: space-between; padding: 12px 4px 12px 24px;
  font-family: var(--sans); font-size: 16px; color: var(--body); border-bottom: 1px solid rgba(228,217,198,.5); transition: color .3s, padding-left .3s; }
.drawer-sub a:hover { color: var(--gold-deep); padding-left: 30px; }
.drawer-sub a .ico { width: 16px; height: 16px; color: var(--gold-light); }
.drawer-foot { display: flex; flex-direction: column; gap: 12px; padding-top: 16px; }
.drawer-lang { justify-content: center; padding: 6px; align-self: center; background: var(--sand); }
.drawer-lang a { color: var(--gold-deep); }
.drawer-backdrop { position: fixed; inset: 0; background: rgba(20,16,10,.5); z-index: 1100; opacity: 0; visibility: hidden; transition: .4s; }
.drawer-backdrop.open { opacity: 1; visibility: visible; }

/* ═══ 7. Hero ═══ */
.hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: flex-end;
  overflow: visible;
  background: var(--dark);
  z-index: 4;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
@media (min-width: 1100px) {
  .hero-slide { background-size: var(--hero-wide-size, cover); }
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(15,14,12,.9) 0%,
    rgba(15,14,12,.42) 48%,
    rgba(15,14,12,.22) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 12px;
  padding-top: 48px;
  width: 100%;
}

.hero .eyebrow { color: var(--accent-soft); }

.hero h1 {
  color: var(--white);
  text-shadow: 0 2px 40px rgba(0,0,0,.3);
  margin-top: 16px;
}

.hero-captions { margin-top: 20px; position: relative; min-height: 60px; }

.hero-caption {
  opacity: 0;
  position: absolute;
  top: 0; left: 0;
  transition: opacity .6s var(--ease);
}
.hero-caption.active { opacity: 1; position: relative; }

.hero-caption p {
  color: rgba(255,255,255,.88);
  font-size: 1.1rem;
  max-width: 520px;
  line-height: 1.6;
  text-shadow: 0 1px 14px rgba(0,0,0,.45);
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

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

.hero-dot {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,.25);
  border: none;
  cursor: pointer;
  transition: all .4s var(--ease);
  padding: 0;
}
.hero-dot.active {
  background: var(--accent);
  width: 48px;
}

/* ═══ 8. Booking Search Form ═══ */
.booking-search {
  display: grid;
  gap: 12px;
  padding: 18px 20px;
  border-radius: var(--r-lg);
  overflow: visible;
  color-scheme: light;
}

.hero .booking-search-hero {
  margin-top: clamp(14px, 2.4vh, 24px);
  position: relative;
  z-index: 6;
}

.booking-search-hero {
  background: #F7F0E4;
  border: 1px solid rgba(198,161,106,.38);
  box-shadow: 0 18px 48px rgba(20,14,8,.28);
  grid-template-columns: repeat(5, minmax(0, 1fr)) auto;
  max-width: 1080px;
}

.booking-search-compact {
  background: var(--surface);
  border: 1px solid var(--border);
  grid-template-columns: 1fr;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.booking-field label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: var(--ink-muted);
}

.booking-field label svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.date-wrap,
.booking-cal,
.booking-dd {
  position: relative;
  width: 100%;
}

.booking-date-native,
.booking-dd-native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.booking-cal-btn,
.booking-dd-btn {
  width: 100%;
  border-radius: 10px;
  padding: 11px 12px;
  font-size: .9rem;
  font-family: var(--sans);
  font-weight: 400;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  text-align: left;
  min-height: 44px;
}
.booking-cal-btn:hover,
.booking-dd-btn:hover,
.booking-cal.open .booking-cal-btn,
.booking-dd.open .booking-dd-btn {
  border-color: var(--accent-soft);
  background: #fffdf8;
}
.booking-cal-btn:focus-visible,
.booking-dd-btn:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(171,129,70,.22);
}

.booking-cal-label,
.booking-dd-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-cal-btn::after,
.booking-dd-btn::after {
  content: '';
  flex: none;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  opacity: .55;
}
.booking-cal.open .booking-cal-btn::after,
.booking-dd.open .booking-dd-btn::after {
  transform: rotate(225deg);
  margin-top: 3px;
}

.booking-dd-menu,
.booking-cal-pop {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  z-index: 2200;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(40,30,15,.16);
}

.booking-dd-menu {
  max-height: 240px;
  overflow-y: auto;
  padding: 6px;
}

.booking-dd-item {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  border-radius: 8px;
  padding: 10px 12px;
  font-family: var(--serif);
  font-size: .95rem;
  color: var(--ink);
  cursor: pointer;
}
.booking-dd-item:hover,
.booking-dd-item.is-active {
  background: var(--sand);
  color: var(--gold-deep);
}

.booking-cal-pop {
  width: 292px;
  max-width: min(292px, calc(100vw - 32px));
  padding: 12px;
}
.booking-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.booking-cal-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 600;
}
.booking-cal-nav {
  width: 32px;
  height: 32px;
  border: 0;
  background: var(--sand);
  border-radius: 8px;
  cursor: pointer;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.booking-cal-nav:hover:not(:disabled) { background: var(--gold-soft); }
.booking-cal-nav:disabled { opacity: .35; cursor: default; }
.booking-cal-week,
.booking-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.booking-cal-week { margin-bottom: 4px; }
.booking-cal-week span {
  text-align: center;
  font-size: .65rem;
  letter-spacing: .06em;
  color: var(--gold-deep);
  font-weight: 500;
  padding: 6px 0 4px;
  text-transform: uppercase;
}
.booking-cal-day {
  aspect-ratio: 1;
  border: 0;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 500;
  color: #2E2A22;
}
.booking-cal-day:hover:not(:disabled):not(.is-empty) {
  background: var(--sand);
  color: var(--gold-deep);
}
.booking-cal-day.is-selected { background: var(--gold); color: #fff; }
.booking-cal-day.is-today:not(.is-selected) {
  box-shadow: inset 0 0 0 1px var(--gold);
  color: var(--gold-deep);
}
.booking-cal-day:disabled { color: #C4B69A; cursor: default; font-weight: 400; }
.booking-cal-day.is-empty { visibility: hidden; pointer-events: none; }

.booking-search .btn-primary { align-self: end; padding: 14px 22px; }
.book-box { overflow: visible; }

@media (max-width: 820px) {
  .booking-search-hero { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .booking-search-hero { grid-template-columns: 1fr; }
}

/* ═══ 9. Welcome Section ═══ */
.welcome-section { background: var(--bg); }

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.welcome-copy { max-width: 480px; }
.welcome-copy h2 { margin: 16px 0 24px; }
.welcome-copy p { margin-bottom: 16px; color: var(--ink-muted); }
.welcome-cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

.welcome-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.welcome-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.welcome-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.welcome-photo:hover img { transform: scale(1.04); }

.welcome-photo--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

@media (max-width: 900px) {
  .welcome-grid { grid-template-columns: 1fr; }
  .welcome-copy { max-width: 100%; }
}

/* ═══ 10. Breakfast & Balloon Gallery ═══ */
.latest-gallery { background: var(--bg-alt); }

.latest-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.latest-gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-width: 0;
  width: 100%;
}
.latest-gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio: 8 / 3;
}
.latest-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .4s;
  filter: brightness(.95);
}
.latest-gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

.latest-gallery-action {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .latest-gallery-grid { grid-template-columns: 1fr 1fr; }
  .latest-gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16 / 9;
  }
}
@media (max-width: 480px) {
  .latest-gallery-grid { grid-template-columns: 1fr; }
  .latest-gallery-item:first-child { grid-column: span 1; }
}

/* ═══ 11. Room Grid & Room Cards ═══ */
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.room-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--sh-xs);
  transition: all .4s var(--ease);
}
.room-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-border);
  box-shadow: var(--sh-lg), 0 0 20px rgba(200,168,130,.12);
}

.room-card .thumb {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.room-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.room-card:hover .thumb img { transform: scale(1.06); }

.room-card .thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,14,12,.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.room-card:hover .thumb::after { opacity: 1; }

.room-card .body { padding: 24px; }

.room-card h3 {
  font-family: var(--serif-primary);
  margin-bottom: 8px;
}

.room-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}
.room-price-label {
  font-size: .75rem;
  color: var(--ink-light);
  text-transform: uppercase;
}
.room-price strong {
  font-size: 1.15rem;
  color: var(--accent);
  font-weight: 500;
}
.room-price-unit {
  font-size: .78rem;
  color: var(--ink-light);
}

.room-card-desc {
  font-size: .88rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .82rem;
  color: var(--ink-light);
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.room-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.room-meta svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex: none;
}

.room-card-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.room-card-actions .btn {
  padding: 10px 20px;
  font-size: .75rem;
}

@media (max-width: 900px) {
  .room-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .room-grid { grid-template-columns: 1fr; }
}


/* ═══ 12. Noble Features Grid ═══ */
.noblefeat-section { background: var(--bg); }

.noblefeat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.noblefeat-card {
  padding: 36px 28px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all .4s var(--ease);
}
.noblefeat-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.noblefeat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.noblefeat-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.noblefeat-card h3 { margin-bottom: 10px; }
.noblefeat-card p {
  font-size: .9rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .noblefeat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .noblefeat-grid { grid-template-columns: 1fr; }
}

/* ═══ 13. Story Section ═══ */
.home-story { background: var(--bg-alt); }

.home-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.home-story-copy { max-width: 480px; }
.home-story-copy h2 { margin: 16px 0 24px; }
.home-story-copy > p { color: var(--ink-muted); margin-bottom: 16px; }

.home-story-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.home-story-card {
  padding: 20px 24px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.home-story-card > span {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: var(--r-sm);
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-story-card > span svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}
.home-story-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}
.home-story-card p {
  font-size: .88rem;
  color: var(--ink-muted);
}

.home-story-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 32px;
}
.home-story-media img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
}
.home-story-media figcaption {
  font-size: .82rem;
  color: var(--ink-light);
  margin-top: 10px;
  text-align: center;
  font-style: italic;
}

@media (max-width: 900px) {
  .home-story-grid { grid-template-columns: 1fr; }
  .home-story-copy { max-width: 100%; }
}

/* ═══ 14. Decorative Parallax Band ═══ */
.deco-band {
  height: clamp(280px, 30vh, 400px);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}
.deco-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(15,14,12,.3), rgba(15,14,12,.5));
}

@media (max-width: 768px) {
  .deco-band { background-attachment: scroll; }
}

/* ═══ 15. Hotel Features Grid ═══ */
.hotel-features { background: var(--bg); }

.hotel-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.hotel-feature-card {
  padding: 32px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all .4s var(--ease);
}
.hotel-feature-card:hover { box-shadow: var(--sh-md); }

.hotel-feature-top {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.hotel-feature-icon {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: var(--r-sm);
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hotel-feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.hotel-feature-card h3 { margin-bottom: 4px; }
.hotel-feature-card > p {
  font-size: .88rem;
  color: var(--ink-muted);
}

.hotel-feature-card ul {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 16px;
}
.hotel-feature-card li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: .88rem;
}
.hotel-feature-card li:last-child { border-bottom: none; }
.hotel-feature-card li span { color: var(--ink-muted); }
.hotel-feature-card li strong { color: var(--ink); font-weight: 500; }

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

/* ═══ 16. Online Channels ═══ */
.channels {
  background: var(--bg-alt);
  padding: 48px 0;
}
.channels .eyebrow {
  text-align: center;
  display: block;
  margin-bottom: 24px;
}

.channel-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
}
.channel-logos span {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink-light);
  font-weight: 400;
  letter-spacing: .05em;
  padding: 8px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  transition: all .3s var(--ease);
}
.channel-logos span:hover {
  border-color: var(--accent-border);
  color: var(--accent);
}

/* ═══ 17. CTA Band ═══ */
.cta-band {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,168,130,.08) 0%, transparent 70%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); text-align: center; }
.cta-band p {
  color: rgba(255,255,255,.6);
  text-align: center;
  max-width: 520px;
  margin: 16px auto 0;
  font-size: .95rem;
}
.cta-band-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* ═══ 18. Page Hero (Subpages) ═══ */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--dark);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg, none);
  background-size: cover;
  background-position: center;
  opacity: .55;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,14,12,.28), rgba(15,14,12,.58));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p {
  color: rgba(255,255,255,.6);
  max-width: 480px;
  margin: 0 auto;
}
.page-hero .eyebrow { color: var(--accent-soft); margin-bottom: 12px; }

/* ═══ 19. Room Type Chips (Odalar filtresi — kartlarla aynı kapak tekrarını önler) ═══ */
.room-type-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.room-type-chips a {
  padding: 10px 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color .3s var(--ease), color .3s var(--ease), background .3s var(--ease);
}
.room-type-chips a:hover {
  border-color: var(--accent);
  color: var(--accent-hover);
}
.room-type-chips a.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.rooms-all-link { margin-bottom: 32px; }
.rooms-all-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.rooms-all-link svg { width: 16px; height: 16px; }

/* ═══ 20. Room Detail Page ═══ */
.room-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  background: var(--dark);
  overflow: hidden;
}
.room-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.room-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(15,14,12,.9) 0%,
    rgba(15,14,12,.2) 50%,
    rgba(15,14,12,.1) 100%);
}
.room-hero-inner {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(60px, 8vh, 100px);
  padding-top: 40px;
}

.back-link {
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  margin-bottom: 16px;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  transition: color .3s;
}
.back-link svg { width: 16px; height: 16px; }
.back-link:hover { color: var(--white); }

.room-hero h1 { color: var(--white); }

.room-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
  color: rgba(255,255,255,.82);
  font-size: .88rem;
  text-shadow: 0 1px 10px rgba(0,0,0,.4);
}
.room-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.room-hero-meta svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
}

.room-hero-price { margin-top: 14px; }
.room-hero-price strong {
  font-size: 1.4rem;
  color: var(--accent);
  font-family: var(--sans);
  font-weight: 500;
}
.room-hero-price .unit {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  margin-left: 4px;
}

/* Detail gallery */
.detail-gallery { margin-bottom: 48px; }
.detail-gallery .main {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.detail-gallery .main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.detail-gallery .thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.detail-gallery .thumbs > * {
  aspect-ratio: 4/3;
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
}
.detail-gallery .thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .3s;
}
.detail-gallery .thumbs img:hover { opacity: .8; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: rgba(15,14,12,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.lightbox .close svg { width: 28px; height: 28px; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

/* Detail layout */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.book-box {
  padding: 32px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.book-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

/* Room meta in detail */
.detail-layout .room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .9rem;
  color: var(--ink-muted);
  padding-top: 0;
  border-top: none;
}
.detail-layout .room-meta svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
}

/* Feature list */
.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  padding: 8px 0;
}

.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.feature-icon svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

/* Room note */
.room-note {
  padding: 20px;
  border-radius: var(--r-md);
  background: var(--bg-alt);
  border-left: 3px solid var(--accent);
  margin-top: 32px;
  font-size: .9rem;
  color: var(--ink-muted);
}

/* Room photo wall */
.room-photo-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 48px;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.room-photo-wall img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  cursor: zoom-in;
}

@media (max-width: 900px) {
  .detail-layout { grid-template-columns: 1fr; }
  .book-box { position: static; }
}
@media (max-width: 768px) {
  .room-photo-wall { grid-template-columns: 1fr 1fr; }
  .detail-gallery .thumbs { grid-template-columns: repeat(4, 1fr); }
}

/* ═══ 21. Gallery Page ═══ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.gallery-filters button {
  padding: 10px 22px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--ink-muted);
  font-size: .82rem;
  font-family: var(--sans);
  letter-spacing: .05em;
  cursor: pointer;
  transition: all .3s var(--ease);
}
.gallery-filters button:hover { border-color: var(--accent); }
.gallery-filters button.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.masonry {
  columns: 3;
  column-gap: 14px;
}

.g-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: none;
  font: inherit;
  text-align: left;
  color: inherit;
}
.g-item img {
  width: 100%;
  display: block;
  transition: transform .5s var(--ease), filter .4s;
  filter: brightness(.95);
}
.g-item:hover img {
  transform: scale(1.03);
  filter: brightness(1);
}

@media (max-width: 768px) {
  .masonry { columns: 2; }
}
@media (max-width: 480px) {
  .masonry { columns: 1; }
}

/* ═══ 22. Contact Page ═══ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info .row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info .row:last-child { border-bottom: none; }

.contact-info .ic {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: var(--r-sm);
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info .ic svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}
.contact-info strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
}
.contact-info .row p {
  font-size: .88rem;
  color: var(--ink-muted);
}

.contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* Form */
.field { margin-bottom: 20px; }

.field label {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--ink);
  transition: border-color .3s var(--ease), box-shadow .3s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px var(--accent-bg);
}
.field textarea { resize: vertical; min-height: 120px; }

/* Alerts */
.alert {
  padding: 14px 20px;
  border-radius: var(--r-sm);
  margin-bottom: 20px;
  font-size: .88rem;
}
.alert-ok {
  background: rgba(37,211,102,.1);
  color: #1a8a4a;
  border: 1px solid rgba(37,211,102,.2);
}
.alert-err {
  background: rgba(220,38,38,.08);
  color: #dc2626;
  border: 1px solid rgba(220,38,38,.15);
}

/* Map */
.map-wrap {
  margin-top: 48px;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

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

/* ═══ 23. Footer ═══ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  padding-top: 64px;
  padding-bottom: 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr .8fr;
  gap: 40px;
}

.footer-brand img {
  max-height: 36px;
  margin-bottom: 12px;
}
.footer-brand strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.1rem;
  display: block;
}
.footer-brand .footer-brand-sub {
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  display: block;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: .85rem;
  max-width: 300px;
  line-height: 1.6;
}

.footer-grid h4 {
  color: var(--white);
  font-family: var(--sans);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 18px;
}

.footer-list { list-style: none; }
.footer-list li { margin-bottom: 10px; }
.footer-list a {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  transition: color .3s var(--ease);
}
.footer-list a:hover { color: var(--accent); }

/* Social */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
}
.footer-social a:hover {
  border-color: var(--accent);
  background: rgba(200,168,130,.1);
}
.footer-social svg {
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,.5);
  transition: color .3s;
}
.footer-social a:hover svg { color: var(--accent); }

/* Footer legal */
.footer-legal {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding-top: 32px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,.06);
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  transition: color .3s;
}
.footer-legal a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ═══ 24. Float Contact Buttons ═══ */
.float-contact {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fc-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-md);
  transition: all .3s var(--ease);
  text-decoration: none;
}
.fc-btn svg { width: 22px; height: 22px; }

.fc-wa {
  background: #25D366;
  color: var(--white);
  position: relative;
}
.fc-wa:hover {
  transform: scale(1.1);
  box-shadow: var(--sh-lg);
  color: var(--white);
}

.fc-tel {
  background: var(--accent);
  color: var(--white);
}
.fc-tel:hover {
  transform: scale(1.1);
  box-shadow: var(--sh-lg);
  color: var(--white);
}

/* Pulse ring on WhatsApp */
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.fc-wa::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: pulseRing 2s ease infinite;
}

/* ═══ 25. Scroll Reveal Animations ═══ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity var(--dur-slow) var(--ease),
    transform var(--dur-slow) var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: none; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: none; }
}

.fade-up   { animation: fadeUp var(--dur-slow) var(--ease) both; }
.slide-in  { animation: slideIn var(--dur-slow) var(--ease) both; }
.scale-in  { animation: scaleIn var(--dur-slow) var(--ease) both; }

/* ═══ 26. Utility Classes ═══ */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ═══ Dark sections override — no texture ═══ */
.hero,
.room-hero,
.page-hero,
.site-footer,
.cta-band,
.deco-band {
  background-image: none;
}

/* ═══ Missing / Helper Classes ═══ */

/* Dropdown positioning */
.has-sub { position: relative; }

/* Brand logo image */

/* Room menu head in dropdown */
.room-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.room-menu-head span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-light);
}
.room-menu-head a {
  font-size: .82rem;
  color: var(--accent);
}
.room-menu-head a:hover { color: var(--accent-hover); }

/* Room card placeholder */
.ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  color: var(--ink-light);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Rooms show all */
.rooms-show-all {
  text-align: center;
  margin-top: 40px;
}

/* Date input wrapper */
.date-wrap {
  width: 100%;
}

/* Footer logo link */
.footer-logo {
  display: inline-block;
  margin-bottom: 8px;
}
.footer-logo img {
  max-height: 36px;
  width: auto;
}

/* Footer legal column & list */
.footer-legal-col h4 {
  color: var(--white);
  font-family: var(--sans);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 18px;
}
.footer-legal-list li { margin-bottom: 8px; }
.footer-legal-list a {
  color: rgba(255,255,255,.4);
  font-size: .82rem;
}
.footer-legal-list a:hover { color: var(--accent); }

/* ═══ Page Body & Subpage Styles ═══ */
.page-body {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
}
.page-body p {
  margin-bottom: 1.2em;
}
.page-body p:last-child { margin-bottom: 0; }

.room-detail-section { padding-top: 0; }

/* Hotel Facts grid (about page) */
.hotel-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.hotel-fact-card {
  padding: 28px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
}
.hotel-fact-card h3 {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.hotel-fact-card dl { margin: 0; }
.hotel-fact-card dl > div {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: .88rem;
}
.hotel-fact-card dl > div:last-child { border-bottom: none; }
.hotel-fact-card dt { color: var(--ink-muted); }
.hotel-fact-card dd { color: var(--ink); font-weight: 500; margin: 0; }

@media (max-width: 768px) {
  .hotel-facts { grid-template-columns: 1fr; }
}

/* Rooms hero tweak */
.rooms-hero { min-height: 280px; }

[x-cloak] { display: none !important; }

/* ═══ 27. Responsive — Mobile Nav Overlay ═══ */
@media (max-width: 820px) {
  .main-nav,
  .btn-reserve span,
  .topbar-contact .tb-mail { display: none; }
  .nav-toggle { display: block; }
  .btn-reserve { padding: 10px 12px; }
  .header-actions { gap: 8px; }
}

@media (max-width: 768px) {
  .hero { min-height: auto; }
  .hero-inner { padding-bottom: 32px; padding-top: 28px; }
  .hero h1 { font-size: clamp(2.4rem, 1.5rem + 5vw, 3.5rem); }
  .hero-slide {
    background-size: cover !important;
    background-position: center center !important;
  }
  .float-contact { display: none; }
  .room-type-chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
    gap: 8px;
  }
  .room-type-chips a { font-size: .9rem; padding: 10px 12px; text-align: center; }

  .page-hero { min-height: 260px; }
  .page-hero h1 { font-size: clamp(2rem, 1.2rem + 4vw, 3rem); }
}

@media (max-width: 480px) {
  .hero { min-height: 80vh; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .cta-band-actions { flex-direction: column; align-items: center; }
  .cta-band-actions .btn { width: 100%; max-width: 320px; }
}
