/* =========================================================
   Weekend Bodrum Boutique Hotel
   ========================================================= */

:root {
  --cream: #EFE6DD;
  --cream-soft: #F7F2EC;
  --olive: #6B8E23;
  --olive-dark: #556F1C;
  --terracotta: #C97B63;
  --terracotta-dark: #B26952;
  --sage: #A3B18A;
  --charcoal: #3A3A3A;
  --charcoal-soft: #5A5A5A;
  --ink: #1F1F1F;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(31,31,31,.06);
  --shadow-md: 0 8px 30px rgba(31,31,31,.10);
  --shadow-lg: 0 20px 60px rgba(31,31,31,.18);
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --container: 1320px;
  --header-h: 92px;
  --ease: cubic-bezier(.6,.05,.1,.95);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream-soft);
  color: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.15;
  color: var(--ink);
}

.script {
  font-family: 'Dancing Script', cursive;
  color: var(--terracotta);
  font-weight: 600;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-block;
  font-size: .76rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--cream); }

.section { padding: 120px 0; position: relative; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--ink { background: var(--ink); color: rgba(255,255,255,.85); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--white); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 16px;
}
.section-head p {
  color: var(--charcoal-soft);
  font-size: 1.05rem;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .03em;
  transition: all .35s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--primary { background: var(--olive); color: var(--white); }
.btn--primary:hover { background: var(--olive-dark); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(107,142,35,.32); }
.btn--terracotta { background: var(--terracotta); color: var(--white); }
.btn--terracotta:hover { background: var(--terracotta-dark); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(201,123,99,.32); }
.btn--outline { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn--outline:hover { background: var(--charcoal); color: var(--white); }
.btn--whatsapp { background: #25D366; color: var(--white); }
.btn--whatsapp:hover { background: #1DA851; transform: translateY(-2px); box-shadow: 0 14px 28px rgba(37,211,102,.3); }
.btn--ghost-light { background: rgba(255,255,255,.12); color: var(--white); border-color: rgba(255,255,255,.35); backdrop-filter: blur(14px); }
.btn--ghost-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--block { width: 100%; }

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all .4s var(--ease);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header.is-solid {
  background: rgba(247,242,236,.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.logo { display: flex; align-items: center; gap: 12px; z-index: 110; }
.logo img {
  height: 64px; width: auto;
  transition: height .4s var(--ease);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.18));
}
.header.is-solid .logo img { height: 52px; filter: none; }

.nav { display: flex; align-items: center; gap: 38px; }
.nav__link {
  font-size: .92rem; font-weight: 500;
  color: var(--white);
  position: relative;
  transition: color .3s;
  text-shadow: 0 1px 12px rgba(0,0,0,.4);
}
.header.is-solid .nav__link { color: var(--charcoal); text-shadow: none; }
.nav__link::after {
  content: ''; position: absolute; bottom: -7px; left: 0;
  width: 0; height: 1px; background: var(--olive);
  transition: width .3s var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }

.header__cta { display: flex; gap: 12px; align-items: center; }

.menu-toggle { display: none; width: 44px; height: 44px; position: relative; z-index: 110; }
.menu-toggle span {
  position: absolute; left: 10px; right: 10px; height: 2px;
  background: var(--white); transition: all .35s var(--ease);
}
.header.is-solid .menu-toggle span,
.menu-toggle.is-open span { background: var(--charcoal); }
.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 22px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.menu-toggle.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ========== HERO (modern) ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
}
.hero__media {
  position: absolute; inset: 0; z-index: 1;
}
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.8s var(--ease);
  transform: scale(1.06);
  animation: kenBurns 16s ease-out infinite alternate;
}
.hero__slide.is-active { opacity: 1; }
@keyframes kenBurns {
  from { transform: scale(1.0); }
  to { transform: scale(1.14); }
}
.hero__overlay {
  position: absolute; inset: 0;
  z-index: 2;
  background:
    linear-gradient(110deg, rgba(31,31,31,.78) 0%, rgba(31,31,31,.45) 45%, rgba(31,31,31,.15) 70%, transparent 100%),
    linear-gradient(180deg, rgba(31,31,31,.2) 0%, transparent 35%, rgba(31,31,31,.4) 100%);
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 220px;
}

.hero__panel {
  max-width: 640px;
}
.hero__sub {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: #F8E5D6;
  margin-bottom: 14px;
  font-weight: 600;
}
.hero__sub::before {
  content: '';
  width: 40px; height: 1px;
  background: rgba(248,229,214,.7);
}
.hero__title {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 28px;
  text-shadow: 0 4px 30px rgba(0,0,0,.45);
}
.hero__title em {
  font-style: italic;
  color: #F2E2D3;
  font-weight: 400;
}
.hero__desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,.92);
  margin-bottom: 38px;
  line-height: 1.7;
  max-width: 520px;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__indicators {
  position: absolute;
  bottom: 240px;
  right: 32px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero__dot {
  width: 32px; height: 2px;
  background: rgba(255,255,255,.32);
  cursor: pointer;
  transition: all .4s var(--ease);
}
.hero__dot.is-active { background: var(--white); width: 50px; }

.hero__scroll {
  position: absolute;
  bottom: 200px;
  left: 32px;
  z-index: 4;
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero__scroll::after {
  content: '';
  width: 1px; height: 50px;
  background: rgba(255,255,255,.5);
  animation: scrollLine 2.2s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========== BOOKING WIDGET ========== */
.booking {
  position: absolute;
  left: 50%; bottom: 32px;
  transform: translateX(-50%);
  width: calc(100% - 64px);
  max-width: 1180px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 5;
  padding: 18px;
}
.booking__row {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}
.booking__field {
  display: flex; flex-direction: column;
  position: relative;
  padding: 8px 18px;
  border-right: 1px solid rgba(31,31,31,.08);
}
.booking__row > .booking__field:nth-last-child(2) { border-right: none; }
.booking__label {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
  margin-bottom: 6px;
}
.booking__input, .booking__select {
  border: none; background: transparent;
  font-family: inherit; font-size: 1rem;
  color: var(--charcoal); font-weight: 500;
  width: 100%; outline: none; cursor: pointer; padding: 0;
}
.booking__btn {
  height: 58px; padding: 0 32px;
  border-radius: var(--radius-pill);
  background: var(--olive); color: var(--white);
  font-weight: 600; font-size: .95rem;
  letter-spacing: .03em;
  transition: all .35s var(--ease);
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
}
.booking__btn:hover { background: var(--olive-dark); box-shadow: 0 12px 24px rgba(107,142,35,.32); }

/* ========== INTRO ========== */
.intro { padding: 130px 0; background: var(--cream-soft); position: relative; overflow: hidden; }
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.intro__visual {
  position: relative;
  aspect-ratio: 4/5;
}
.intro__visual img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.intro__visual::before {
  content: '';
  position: absolute;
  inset: -22px -22px 44px 44px;
  border: 1px solid var(--olive);
  border-radius: var(--radius-md);
  opacity: .35;
  z-index: -1;
}
.intro__title {
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin-bottom: 24px;
}
.intro__title em { font-style: italic; color: var(--olive); }
.intro__lead {
  font-size: 1.1rem;
  color: var(--charcoal-soft);
  margin-bottom: 22px;
  line-height: 1.78;
}
.intro__values {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.value {
  text-align: center;
  padding: 22px 8px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(107,142,35,.1);
  transition: all .35s var(--ease);
}
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--olive); }
.value__icon { color: var(--olive); margin-bottom: 8px; display: flex; justify-content: center; }
.value__label {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--charcoal);
}

/* ========== ROOMS ========== */
.rooms__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.room {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all .5s var(--ease);
  cursor: pointer;
  display: block;
  color: inherit;
}
.room--lg { grid-column: span 7; }
.room--md { grid-column: span 5; }
.room--sm { grid-column: span 4; }
.room:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room__image {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
}
.room__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.room:hover .room__image img { transform: scale(1.07); }
.room__image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.35) 100%);
}
.room__badge {
  position: absolute; top: 18px; left: 18px;
  background: rgba(255,255,255,.95);
  color: var(--olive);
  padding: 7px 14px;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  border-radius: var(--radius-pill);
  z-index: 2;
}
.room__body { padding: 28px 30px; }
.room__title { font-size: 1.55rem; margin-bottom: 8px; }
.room__meta {
  display: flex; gap: 18px;
  color: var(--charcoal-soft);
  font-size: .88rem;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.room__meta span { display: inline-flex; align-items: center; gap: 6px; }
.room__desc { color: var(--charcoal-soft); font-size: .95rem; margin-bottom: 22px; line-height: 1.65; }
.room__cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.room__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .9rem; font-weight: 600;
  color: var(--olive);
  letter-spacing: .03em;
  transition: gap .3s;
}
.room__link:hover { gap: 14px; }

/* ========== AMENITIES ========== */
.amenities { background: var(--cream); position: relative; }
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.amenity {
  text-align: center;
  padding: 44px 26px;
  background: var(--white);
  border-radius: var(--radius-md);
  transition: all .35s var(--ease);
  border: 1px solid transparent;
}
.amenity:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--olive); }
.amenity__icon {
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--cream-soft);
  color: var(--olive);
}
.amenity__title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--charcoal);
}
.amenity__desc {
  font-size: .9rem;
  color: var(--charcoal-soft);
  line-height: 1.6;
}

/* ========== GALLERY (asymmetric, full-width) ========== */
.gallery { background: var(--white); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  grid-column: span 2;
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item::after {
  content: '+';
  position: absolute; inset: 0;
  background: rgba(31,31,31,.4);
  color: var(--white);
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.gallery__item:hover::after { opacity: 1; }

.gallery__item--tall { grid-row: span 2; grid-column: span 2; }
.gallery__item--wide { grid-column: span 4; }
.gallery__item--big { grid-row: span 2; grid-column: span 3; }

/* ========== QUOTE ========== */
.quote {
  background: var(--olive);
  color: var(--white);
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote::before {
  content: '"';
  position: absolute;
  top: 30px; left: 50%; transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 14rem;
  line-height: .8;
  color: rgba(255,255,255,.08);
  pointer-events: none;
}
.quote__text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  max-width: 920px;
  margin: 0 auto 28px;
  position: relative;
}
.quote__author { font-size: .82rem; letter-spacing: .28em; text-transform: uppercase; opacity: .85; }

/* ========== CONTACT ========== */
.contact { background: var(--cream-soft); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: stretch;
}
.contact__info {
  background: var(--white);
  padding: 50px 45px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.contact__info h3 { font-size: 1.8rem; margin-bottom: 14px; }
.contact__info p { color: var(--charcoal-soft); margin-bottom: 30px; }
.contact__list { list-style: none; margin-bottom: 30px; }
.contact__list li {
  display: flex; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(31,31,31,.07);
}
.contact__list li:last-child { border-bottom: none; }
.contact__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  color: var(--olive);
  border-radius: 50%;
}
.contact__detail strong {
  display: block;
  font-size: .68rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 4px;
}
.contact__detail a, .contact__detail span {
  font-size: 1rem; color: var(--charcoal); font-weight: 500;
}
.contact__detail a:hover { color: var(--olive); }

.contact__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 480px;
  box-shadow: var(--shadow-sm);
}
.contact__map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ========== FOOTER (refined) ========== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.footer__top {
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
  padding: 70px 0;
  text-align: center;
  color: var(--white);
}
.footer__top h3 {
  color: var(--white);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 12px;
}
.footer__top p {
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
  max-width: 540px;
  margin-left: auto; margin-right: auto;
  font-size: 1.02rem;
}
.footer__top-cta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.footer__main { padding: 80px 0 30px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer__brand-logo {
  height: 96px;
  width: auto;
  margin-bottom: 22px;
  background: var(--cream-soft);
  padding: 12px;
  border-radius: 50%;
  display: inline-block;
}
.footer__about {
  font-size: .94rem;
  line-height: 1.75;
  max-width: 360px;
  color: rgba(255,255,255,.65);
  margin-bottom: 22px;
}
.footer__col h4 {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}
.footer__col h4::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 28px; height: 1px;
  background: var(--olive);
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 12px; }
.footer__col a {
  color: rgba(255,255,255,.65);
  font-size: .94rem;
  transition: color .3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer__col a:hover { color: var(--olive); transform: translateX(2px); }
.footer__col li.with-icon {
  display: flex; gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,.65);
  font-size: .94rem;
  line-height: 1.55;
}
.footer__col li.with-icon svg { color: var(--olive); flex-shrink: 0; margin-top: 3px; }
.footer__socials { display: flex; gap: 12px; }
.footer__socials a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  transition: all .35s var(--ease);
}
.footer__socials a:hover {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--white);
  transform: translateY(-2px);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255,255,255,.45);
}

/* ========== FLOATING WHATSAPP (replaces FAB bar) ========== */
.fwa {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 36px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.55);
  z-index: 90;
  color: var(--white);
  transition: transform .3s var(--ease);
  animation: fwa-pulse 2.4s ease-in-out infinite;
}
.fwa:hover { transform: scale(1.08); }
@keyframes fwa-pulse {
  0%, 100% { box-shadow: 0 14px 36px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  50% { box-shadow: 0 14px 36px rgba(37,211,102,.45), 0 0 0 18px rgba(37,211,102,0); }
}

/* Mobile reservation bar at bottom (subtle, glassmorphic) */
.mres {
  display: none;
  position: fixed;
  left: 14px; right: 14px; bottom: 14px;
  z-index: 89;
  background: rgba(31,31,31,.92);
  color: var(--white);
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  backdrop-filter: blur(18px);
  align-items: center;
  justify-content: space-between;
  font-size: .92rem;
  font-weight: 500;
}
.mres a {
  background: var(--olive);
  color: var(--white);
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .9rem;
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(15,15,15,.95);
  z-index: 1000;
  display: none;
  align-items: center; justify-content: center;
  padding: 30px;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.lightbox.is-open { display: flex; opacity: 1; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: var(--radius-sm); box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox__close {
  position: absolute; top: 24px; right: 24px;
  width: 48px; height: 48px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
  transition: background .3s;
}
.lightbox__close:hover { background: rgba(255,255,255,.25); }
.lightbox__nav {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  backdrop-filter: blur(10px);
  transition: background .3s;
}
.lightbox__nav:hover { background: rgba(255,255,255,.25); }
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }

/* ========== REVEAL ========== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .24s; }
.reveal--delay-3 { transition-delay: .36s; }

/* ========== INNER PAGE HERO ========== */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 130px 0 70px;
  overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 1; }
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.65));
  z-index: 2;
}
.page-hero__content { position: relative; z-index: 3; width: 100%; text-align: center; }
.page-hero__title { color: var(--white); font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 14px; }
.page-hero__crumb { font-size: .82rem; letter-spacing: .15em; text-transform: uppercase; opacity: .85; }
.page-hero__crumb a { opacity: .85; }
.page-hero__crumb a:hover { color: var(--cream); }

/* ========== ROOM DETAIL ========== */
.room-detail { padding: 90px 0; }
.room-detail__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
}
.room-detail__slider {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.room-detail__slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s var(--ease); }
.room-detail__slide.is-active { opacity: 1; }
.room-detail__slide img { width: 100%; height: 100%; object-fit: cover; }
.room-detail__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  font-size: 1.1rem;
  color: var(--charcoal);
  transition: all .3s;
}
.room-detail__nav:hover { background: var(--white); transform: translateY(-50%) scale(1.05); }
.room-detail__nav--prev { left: 18px; }
.room-detail__nav--next { right: 18px; }
.room-detail__counter {
  position: absolute; bottom: 20px; left: 20px;
  z-index: 5;
  background: rgba(255,255,255,.92);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: .82rem; font-weight: 600;
}

.room-detail__info { padding: 12px 0; }
.room-detail__info h1 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 12px; }
.room-detail__meta {
  display: flex; gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(31,31,31,.08);
}
.room-detail__meta span { display: inline-flex; align-items: center; gap: 8px; color: var(--charcoal-soft); font-size: .92rem; }
.room-detail__desc { font-size: 1.02rem; color: var(--charcoal-soft); line-height: 1.78; margin-bottom: 28px; }
.room-detail__features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-bottom: 38px;
}
.room-detail__features li { display: flex; align-items: center; gap: 10px; font-size: .95rem; }
.room-detail__features li::before { content: '✓'; color: var(--olive); font-weight: 700; }
.room-detail__price-card {
  background: var(--cream);
  padding: 28px 28px 26px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(107,142,35,.15);
}
.room-detail__price-card p { font-size: .9rem; color: var(--charcoal-soft); margin-bottom: 16px; }
.room-detail__price-card .btn { width: 100%; }

/* ========== BLOG ========== */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.post-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .35s var(--ease);
  display: block;
  color: inherit;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post-card__image { aspect-ratio: 16/10; overflow: hidden; }
.post-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.post-card:hover .post-card__image img { transform: scale(1.06); }
.post-card__body { padding: 26px 28px; }
.post-card__meta {
  display: flex; gap: 16px;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
  margin-bottom: 12px;
}
.post-card__title {
  font-size: 1.35rem;
  line-height: 1.3;
  margin-bottom: 10px;
}
.post-card__excerpt { color: var(--charcoal-soft); font-size: .95rem; line-height: 1.65; margin-bottom: 18px; }
.post-card__more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .88rem; font-weight: 600;
  color: var(--olive);
  transition: gap .3s;
}
.post-card__more:hover { gap: 14px; }

.post {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 0;
}
.post h1 { font-size: clamp(2rem, 3.6vw, 3.2rem); margin-bottom: 14px; }
.post__meta { display: flex; gap: 16px; color: var(--charcoal-soft); font-size: .88rem; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(31,31,31,.08); }
.post__cover { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius-md); margin-bottom: 38px; }
.post__body { font-size: 1.05rem; line-height: 1.85; color: var(--charcoal); }
.post__body p { margin-bottom: 22px; }
.post__body h2 { font-size: 1.7rem; margin: 36px 0 14px; }
.post__body h3 { font-size: 1.3rem; margin: 28px 0 10px; }
.post__body ul { padding-left: 20px; margin-bottom: 22px; }
.post__body li { margin-bottom: 8px; }
.post__body strong { color: var(--ink); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .booking__row { grid-template-columns: 1fr 1fr; }
  .booking__field { border-right: none !important; }
  .booking__btn { grid-column: span 2; width: 100%; }
  .intro__grid { grid-template-columns: 1fr; gap: 50px; }
  .intro__visual { max-width: 500px; margin: 0 auto; }
  .intro__values { grid-template-columns: repeat(5, 1fr); }
  .room--lg, .room--md, .room--sm { grid-column: span 12; }
  .gallery__grid { grid-template-columns: repeat(4, 1fr); }
  .gallery__item, .gallery__item--big, .gallery__item--wide { grid-column: span 2; grid-row: span 1; }
  .gallery__item--tall { grid-column: span 2; grid-row: span 2; }
  .amenities__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__map { min-height: 380px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .room-detail__grid { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 50px; }
  .nav { display: none; }
  .header__cta { display: none; }
  .menu-toggle { display: block; }

  .nav.is-open {
    display: flex;
    position: fixed; inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center; align-items: center;
    gap: 28px;
    z-index: 100;
    padding: 100px 24px 40px;
  }
  .nav.is-open .nav__link {
    color: var(--charcoal) !important;
    text-shadow: none !important;
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
  }

  .hero__content { padding-top: 90px; padding-bottom: 280px; }
  .hero__panel { max-width: 100%; }
  .hero__indicators, .hero__scroll { display: none; }

  .booking { bottom: 90px; width: calc(100% - 24px); padding: 14px; left: 12px; transform: none; }
  .booking__row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .booking__field { padding: 8px 12px; }
  .booking__btn { grid-column: span 2; }

  .intro { padding: 80px 0; }
  .intro__values { grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .value { padding: 14px 6px; }
  .value__label { font-size: .65rem; letter-spacing: .08em; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery__item, .gallery__item--big, .gallery__item--wide, .gallery__item--tall { grid-column: span 1; grid-row: span 1; }

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

  .footer__grid { grid-template-columns: 1fr; gap: 40px; text-align: left; }
  .footer__brand { display: flex; flex-direction: column; align-items: flex-start; }
  .footer__about { margin: 0; }
  .footer__bottom { flex-direction: column; text-align: center; }

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

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

  .mres { display: flex; }
  .fwa { bottom: 86px; right: 14px; width: 54px; height: 54px; }
  body { padding-bottom: 80px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero__title { font-size: 2.3rem; }
  .hero__sub { font-size: 1.2rem; }
  .hero__desc { font-size: .96rem; }
  .btn { padding: 14px 26px; font-size: .9rem; }
  .booking__btn { height: 52px; font-size: .9rem; }
  .booking__input, .booking__select { font-size: .94rem; }
  .room__body { padding: 24px 22px; }
  .contact__info { padding: 36px 28px; }
}

/* Flatpickr restyle */
.flatpickr-calendar { font-family: 'Inter', sans-serif !important; border-radius: var(--radius-md) !important; box-shadow: var(--shadow-lg) !important; }
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange,
.flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange { background: var(--olive) !important; border-color: var(--olive) !important; }
.flatpickr-day.inRange { background: rgba(107,142,35,.12) !important; border-color: rgba(107,142,35,.12) !important; box-shadow: -5px 0 0 rgba(107,142,35,.12), 5px 0 0 rgba(107,142,35,.12) !important; }
.flatpickr-day:hover { background: rgba(107,142,35,.15) !important; }
