:root {
  --ink: #18221f;
  --ink-soft: #41504b;
  --paper: #fffdf8;
  --cream: #f5efe5;
  --cream-2: #ece3d4;
  --terracotta: #b84c39;
  --terracotta-dark: #913928;
  --forest: #234b43;
  --forest-dark: #17352f;
  --gold: #e4ac4d;
  --white: #ffffff;
  --border: rgba(24, 34, 31, .13);
  --shadow-sm: 0 10px 30px rgba(24, 34, 31, .08);
  --shadow-lg: 0 30px 80px rgba(24, 34, 31, .16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: min(1180px, calc(100% - 36px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(184, 76, 57, .22); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  color: #fff;
  background: var(--forest);
  border-radius: 10px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 108px 0; }
.section-sm { padding: 70px 0; }
.section-cream { background: var(--cream); }
.section-forest { background: var(--forest-dark); color: var(--white); }
.section-title {
  max-width: 760px;
  margin: 0 0 42px;
}
.section-title.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--terracotta);
  font-size: .79rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: currentColor;
}
h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(3.25rem, 7vw, 7.35rem); }
h2 { font-size: clamp(2.25rem, 4.6vw, 4.4rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.85rem); }
p { margin: 0; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.lead {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.75;
}
.section-forest .lead { color: rgba(255, 255, 255, .78); }

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid rgba(228, 172, 77, .45); outline-offset: 3px; }
.btn-primary {
  color: #fff;
  background: var(--terracotta);
  box-shadow: 0 12px 28px rgba(184, 76, 57, .24);
}
.btn-primary:hover { background: var(--terracotta-dark); }
.btn-secondary {
  color: var(--ink);
  background: rgba(255,255,255,.82);
  border-color: rgba(24, 34, 31, .14);
}
.btn-secondary:hover { background: #fff; border-color: rgba(24, 34, 31, .28); }
.btn-ghost { color: #fff; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.06); }
.btn-ghost:hover { background: rgba(255,255,255,.13); }
.btn svg { width: 19px; height: 19px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 15px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header.scrolled {
  padding: 8px 0;
  background: rgba(255, 253, 248, .92);
  box-shadow: 0 6px 30px rgba(24,34,31,.09);
  backdrop-filter: blur(18px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  color: #fff;
  background: var(--terracotta);
  border-radius: 15px;
  box-shadow: 0 9px 24px rgba(184, 76, 57, .25);
}
.brand-mark svg { width: 31px; height: 31px; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: 1rem; letter-spacing: .015em; }
.brand-copy span { margin-top: 6px; color: var(--forest); font-size: .67rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 27px; }
.nav a:not(.btn) {
  position: relative;
  font-size: .93rem;
  font-weight: 750;
  text-decoration: none;
}
.nav a:not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.nav a:not(.btn):hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle {
  display: none;
  width: 47px;
  height: 47px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,.84);
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: auto;
  content: "";
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle span::before { transform: translateY(-6px); }
.menu-toggle span::after { transform: translateY(4px); }
.menu-open .menu-toggle span { background: transparent; }
.menu-open .menu-toggle span::before { transform: translateY(0) rotate(45deg); }
.menu-open .menu-toggle span::after { transform: translateY(-2px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 880px;
  padding: 155px 0 84px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(228,172,77,.22), transparent 32%),
    linear-gradient(135deg, #fffaf0 0%, #f5ede0 100%);
}
.hero::before {
  position: absolute;
  top: -14vw;
  right: -10vw;
  width: 40vw;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(35,75,67,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(35,75,67,.035), 0 0 0 110px rgba(35,75,67,.02);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 58px; }
.hero-copy { padding-top: 30px; }
.hero-tagline {
  display: block;
  color: var(--terracotta);
  font-size: clamp(3.25rem, 7vw, 7.35rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.035em;
}
.hero-copy .lead { max-width: 630px; margin-top: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 31px; }
.hero-note { display: flex; align-items: center; gap: 9px; color: var(--ink-soft); font-size: .9rem; font-weight: 700; }
.hero-note svg { width: 18px; height: 18px; color: var(--forest); }
.hero-visual { position: relative; min-height: 630px; }
.hero-image-wrap {
  position: absolute;
  inset: 0 0 60px 42px;
  overflow: hidden;
  border-radius: 42px 42px 42px 140px;
  box-shadow: var(--shadow-lg);
}
.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(15,33,29,.62), transparent 50%);
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 20px;
  max-width: 275px;
  padding: 22px;
  color: #fff;
  background: rgba(23,53,47,.92);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 25px;
  backdrop-filter: blur(12px);
}
.hero-badge strong { display: block; font-size: 1.22rem; }
.hero-badge span { display: block; margin-top: 7px; color: rgba(255,255,255,.76); font-size: .88rem; }
.booking-panel {
  position: absolute;
  z-index: 4;
  left: 0;
  bottom: 0;
  width: min(440px, 88%);
  padding: 26px;
  background: rgba(255,253,248,.96);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}
.booking-panel h2 { font-size: 1.45rem; }
.booking-panel > p { margin-top: 6px; color: var(--ink-soft); font-size: .88rem; }
.booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 19px; }
.booking-form .field-full { grid-column: 1 / -1; }
.form-field { display: grid; gap: 7px; }
.form-field label { display: flex; align-items: center; gap: 7px; font-size: .77rem; font-weight: 850; letter-spacing: .035em; }
.form-field label svg { width: 16px; height: 16px; color: var(--terracotta); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 13px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--terracotta); box-shadow: 0 0 0 4px rgba(184,76,57,.1); }
.booking-form .btn { width: 100%; }
.form-note { margin-top: 9px; color: var(--ink-soft); font-size: .73rem; text-align: center; }

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  background: var(--forest-dark);
  color: #fff;
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 14px;
  padding: 25px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.trust-item:last-child { border-right: 0; }
.trust-item svg { width: 28px; height: 28px; flex: 0 0 auto; color: var(--gold); }
.trust-item strong { display: block; font-size: .97rem; }
.trust-item span { display: block; margin-top: 3px; color: rgba(255,255,255,.64); font-size: .79rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.room-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.room-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.room-card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.room-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.room-card:hover img { transform: scale(1.045); }
.room-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 11px;
  color: #fff;
  background: rgba(23,53,47,.89);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .04em;
}
.room-card-body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.room-card-body p { margin-top: 11px; color: var(--ink-soft); }
.room-meta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 16px; margin-top: 18px; color: var(--ink-soft); font-size: .82rem; font-weight: 700; }
.room-meta span { display: inline-flex; align-items: center; gap: 6px; }
.room-meta svg { width: 16px; height: 16px; color: var(--terracotta); }
.room-link { display: inline-flex; align-items: center; align-self: flex-start; gap: 8px; margin-top: auto; padding-top: 26px; color: var(--terracotta); font-weight: 850; text-decoration: none; }
.room-link svg { width: 17px; transition: transform .2s ease; }
.room-link:hover svg { transform: translateX(4px); }

.essentials-block { margin-top: 42px; padding: 34px; background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-md); }
.essentials-heading { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 40px; }
.essentials-heading h3 { margin-top: 8px; }
.essentials-heading > p { color: var(--ink-soft); line-height: 1.7; }
.essentials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 27px; }
.essential-item { display: flex; gap: 13px; padding: 18px; background: #fff; border: 1px solid var(--border); border-radius: 16px; }
.essential-icon { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; color: var(--terracotta); background: rgba(184,76,57,.1); border-radius: 11px; }
.essential-icon svg { width: 20px; height: 20px; }
.essential-item strong { display: block; font-size: .93rem; }
.essential-item div > span { display: block; margin-top: 4px; color: var(--ink-soft); font-size: .8rem; line-height: 1.5; }
.essentials-note { display: flex; align-items: center; gap: 9px; margin-top: 18px; color: var(--ink-soft); font-size: .8rem; }
.essentials-note svg { width: 17px; height: 17px; flex: 0 0 auto; color: var(--terracotta); }

.feature-layout { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 76px; }
.feature-image {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.feature-image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top, rgba(24,34,31,.35), transparent 45%); }
.feature-image-card {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 20px;
  color: #fff;
  background: rgba(23,53,47,.87);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  backdrop-filter: blur(12px);
}
.feature-list { display: grid; gap: 19px; margin-top: 34px; }
.feature-item { display: grid; grid-template-columns: 48px 1fr; gap: 15px; }
.feature-icon { display: grid; width: 48px; height: 48px; place-items: center; color: var(--terracotta); background: rgba(184,76,57,.1); border-radius: 14px; }
.feature-icon svg { width: 23px; height: 23px; }
.feature-item p { margin-top: 5px; color: var(--ink-soft); }

.corporate-card {
  position: relative;
  padding: 72px;
  overflow: hidden;
  color: #fff;
  background: var(--forest-dark);
  border-radius: var(--radius-lg);
}
.corporate-card::before {
  position: absolute;
  top: -90px;
  right: -70px;
  width: 370px;
  height: 370px;
  content: "";
  border: 62px solid rgba(255,255,255,.045);
  border-radius: 50%;
}
.corporate-card .lead { color: rgba(255,255,255,.78); }
.corporate-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 65px; align-items: end; }
.corporate-list { display: grid; gap: 14px; }
.corporate-list li { display: flex; gap: 12px; color: rgba(255,255,255,.78); }
.corporate-list svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--gold); }

.location-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 38px; align-items: stretch; }
.location-copy { padding: 48px; background: var(--cream); border-radius: var(--radius-lg); }
.location-copy address { margin-top: 25px; font-style: normal; font-size: 1.15rem; font-weight: 800; }
.location-points { display: grid; gap: 13px; margin-top: 28px; }
.location-point { display: flex; gap: 11px; align-items: center; color: var(--ink-soft); }
.location-point svg { width: 20px; height: 20px; color: var(--terracotta); }
.map-wrap { min-height: 500px; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 500px; border: 0; }

.faq-list { max-width: 900px; margin-inline: auto; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  text-align: left;
  font-size: 1.08rem;
  font-weight: 850;
}
.faq-question svg { width: 22px; height: 22px; flex: 0 0 auto; transition: transform .2s ease; }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-answer p { padding: 0 48px 25px 0; color: var(--ink-soft); }

.cta-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 45px;
  padding: 55px 62px;
  background: var(--terracotta);
  color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 65px rgba(184,76,57,.23);
}
.cta-card p { margin-top: 12px; color: rgba(255,255,255,.79); }
.cta-actions { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 12px; }
.cta-card .btn-secondary { color: var(--ink); }

.page-hero {
  position: relative;
  padding: 170px 0 95px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(228,172,77,.22), transparent 25%),
    linear-gradient(135deg, #fffaf0, #f0e6d6);
}
.page-hero::after {
  position: absolute;
  right: -9vw;
  bottom: -18vw;
  width: 42vw;
  aspect-ratio: 1;
  content: "";
  border: 65px solid rgba(35,75,67,.045);
  border-radius: 50%;
}
.page-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .7fr; gap: 60px; align-items: end; }
.page-hero h1 { font-size: clamp(3rem, 6vw, 6rem); }
.page-hero .lead { margin-top: 24px; max-width: 720px; }
.breadcrumb { display: flex; gap: 8px; margin-bottom: 23px; color: var(--ink-soft); font-size: .85rem; font-weight: 750; }
.breadcrumb a { text-decoration: none; }
.page-stat {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}
.page-stat div { padding: 24px; border-right: 1px solid var(--border); }
.page-stat div:last-child { border-right: 0; }
.page-stat strong { display: block; font-size: 1.55rem; }
.page-stat span { color: var(--ink-soft); font-size: .78rem; }

.room-detail-grid { display: grid; gap: 28px; }
.room-detail {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 420px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.room-detail:nth-child(even) { grid-template-columns: 1.1fr .9fr; }
.room-detail:nth-child(even) .room-detail-media { order: 2; }
.room-detail-media { position: relative; min-height: 420px; }
.room-detail-media img { width: 100%; height: 100%; object-fit: cover; }
.room-detail-content { display: flex; flex-direction: column; justify-content: center; padding: 48px; }
.room-detail-content > p { margin-top: 14px; color: var(--ink-soft); }
.room-detail-content .room-fit { padding: 12px 14px; background: var(--cream); border-left: 3px solid var(--gold); border-radius: 0 10px 10px 0; font-size: .9rem; line-height: 1.55; }
.amenity-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 11px 20px; margin: 27px 0 0; padding: 0; list-style: none; }
.amenity-list li { display: flex; align-items: center; gap: 8px; font-size: .89rem; font-weight: 700; }
.amenity-list svg { width: 17px; height: 17px; color: var(--terracotta); }

.icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.icon-card { padding: 29px; background: #fff; border: 1px solid var(--border); border-radius: 22px; }
.icon-card svg { width: 31px; height: 31px; color: var(--terracotta); }
.icon-card h3 { margin-top: 22px; font-size: 1.13rem; }
.icon-card p { margin-top: 9px; color: var(--ink-soft); font-size: .91rem; }
.booking-tips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.booking-tips article { display: flex; gap: 15px; padding: 24px; background: #fff; border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow-sm); }
.booking-tips article > svg { width: 24px; height: 24px; flex: 0 0 auto; color: var(--terracotta); }
.booking-tips h3 { font-size: 1rem; }
.booking-tips p { margin-top: 6px; color: var(--ink-soft); font-size: .86rem; line-height: 1.6; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step-card { position: relative; padding: 35px; background: #fff; border: 1px solid var(--border); border-radius: 24px; counter-increment: step; }
.step-card::before {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  content: counter(step, decimal-leading-zero);
  color: #fff;
  background: var(--forest);
  border-radius: 13px;
  font-weight: 900;
}
.step-card h3 { margin-top: 24px; }
.step-card p { margin-top: 10px; color: var(--ink-soft); }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 35px; }
.contact-cards { display: grid; gap: 15px; }
.contact-card { display: flex; align-items: center; gap: 16px; padding: 25px; background: var(--cream); border-radius: 21px; text-decoration: none; transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease; }
.contact-card:hover { transform: translateY(-2px); background: #fff; box-shadow: var(--shadow-sm); }
.contact-card-icon { display: grid; width: 46px; height: 46px; flex: 0 0 auto; place-items: center; color: #fff; background: var(--forest); border-radius: 14px; }
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card strong { display: block; }
.contact-card > div > span { display: block; margin-top: 3px; color: var(--ink-soft); font-size: .9rem; }
.contact-form { padding: 40px; background: #fff; border: 1px solid var(--border); border-radius: 28px; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.gallery-stack { display: contents; }
.gallery-item { position: relative; min-height: 0; aspect-ratio: 4 / 3; overflow: hidden; border: 0; border-radius: 24px; background: var(--cream); padding: 0; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top, rgba(24,34,31,.38), transparent 45%); }
.gallery-caption { position: absolute; z-index: 2; left: 19px; bottom: 17px; color: #fff; font-weight: 850; }
.lightbox {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: none;
  place-items: center;
  padding: 25px;
  background: rgba(11,20,17,.9);
}
.lightbox.open { display: grid; }
.lightbox img { max-width: min(1100px, 94vw); max-height: 86vh; border-radius: 20px; box-shadow: var(--shadow-lg); }
.lightbox-close { position: absolute; top: 20px; right: 20px; display: grid; width: 45px; height: 45px; place-items: center; color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); border-radius: 50%; font-size: 1.45rem; }

.legal { max-width: 820px; }
.legal h2 { margin-top: 42px; font-size: 1.65rem; }
.legal p, .legal li { color: var(--ink-soft); }
.legal p { margin-top: 14px; }
.legal ul { margin: 14px 0 0; padding-left: 22px; }

.site-footer { padding: 70px 0 25px; color: #fff; background: #111b18; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .65fr .75fr .9fr; gap: 45px; }
.footer-brand p { max-width: 355px; margin-top: 17px; color: rgba(255,255,255,.62); }
.footer-brand .brand-copy span { color: var(--gold); }
.footer-column h2 { font-size: .82rem; letter-spacing: .11em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; margin-top: 19px; }
.footer-links a, .footer-links span { display: flex; align-items: flex-start; gap: 8px; color: rgba(255,255,255,.67); text-decoration: none; font-size: .9rem; }
.footer-links svg { width: 17px; height: 17px; margin-top: 2px; flex: 0 0 auto; color: var(--gold); }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 22px; color: rgba(255,255,255,.5); border-top: 1px solid rgba(255,255,255,.09); font-size: .8rem; }

.whatsapp-float {
  position: fixed;
  z-index: 1100;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 19px;
  color: #fff;
  background: #1f9d58;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(31,157,88,.32);
  font-weight: 850;
  text-decoration: none;
}
.whatsapp-float svg { width: 26px; height: 26px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .nav {
    position: fixed;
    inset: 74px 18px auto;
    display: none;
    max-height: calc(100vh - 95px);
    align-items: stretch;
    padding: 22px;
    overflow-y: auto;
    background: rgba(255,253,248,.98);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
  }
  .menu-open .nav { display: grid; gap: 8px; }
  .nav a:not(.btn) { padding: 12px 8px; font-size: 1rem; }
  .nav .btn { margin-top: 8px; }
  .menu-toggle { display: block; }
  .hero { min-height: auto; }
  .hero-grid, .feature-layout, .corporate-grid, .location-grid, .page-hero-inner, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 10px; }
  .hero-visual { min-height: 660px; margin-top: 15px; }
  .hero-image-wrap { inset: 0 0 70px 70px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .essentials-grid { grid-template-columns: repeat(2, 1fr); }
  .room-card:last-child { grid-column: 1 / -1; max-width: calc(50% - 12px); }
  .feature-image { min-height: 500px; }
  .corporate-card { padding: 55px; }
  .page-stat { max-width: 480px; }
  .room-detail, .room-detail:nth-child(even) { grid-template-columns: 1fr; }
  .room-detail:nth-child(even) .room-detail-media { order: 0; }
  .icon-grid, .booking-tips { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.2fr .8fr .8fr; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-card { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
}

@media (max-width: 700px) {
  :root { --container: min(100% - 24px, 1180px); }
  .section { padding: 78px 0; }
  .section-sm { padding: 52px 0; }
  h1 { font-size: clamp(3.1rem, 16vw, 5.2rem); }
  h2 { font-size: clamp(2.15rem, 11vw, 3.4rem); }
  .site-header { padding: 10px 0; }
  .brand-copy { display: none; }
  .hero { padding-top: 115px; }
  .hero-grid { gap: 28px; }
  .hero-copy .lead { font-size: 1rem; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-notes { gap: 12px; }
  .hero-visual { min-height: 660px; }
  .hero-image-wrap { inset: 0 0 190px 28px; border-radius: 28px 28px 28px 90px; }
  .hero-badge { right: 12px; bottom: 166px; max-width: 245px; padding: 17px; }
  .booking-panel { width: 100%; padding: 20px; }
  .booking-form { grid-template-columns: 1fr; }
  .booking-form .field-full { grid-column: auto; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 92px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .trust-item:last-child { border-bottom: 0; }
  .card-grid { grid-template-columns: 1fr; }
  .essentials-block { padding: 26px 20px; }
  .essentials-heading, .essentials-grid { grid-template-columns: 1fr; }
  .essentials-heading { gap: 14px; }
  .room-card:last-child { grid-column: auto; max-width: none; }
  .feature-layout { gap: 44px; }
  .feature-image { min-height: 400px; border-radius: 27px; }
  .corporate-card { padding: 38px 26px; border-radius: 28px; }
  .location-copy { padding: 31px 24px; border-radius: 27px; }
  .map-wrap, .map-wrap iframe { min-height: 390px; }
  .cta-card { padding: 37px 25px; border-radius: 27px; }
  .cta-actions { display: grid; }
  .cta-actions .btn { width: 100%; }
  .page-hero { padding: 130px 0 70px; }
  .page-stat { grid-template-columns: 1fr 1fr; }
  .page-stat div { padding: 18px; }
  .room-detail, .room-detail-media { min-height: auto; }
  .room-detail-media { aspect-ratio: 4 / 3; }
  .room-detail-content { padding: 31px 24px; }
  .amenity-list { grid-template-columns: 1fr; }
  .icon-grid, .steps, .booking-tips { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { aspect-ratio: 4 / 3; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .contact-form { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { width: 58px; min-width: 58px; padding: 0; }
  .whatsapp-float span { display: none; }
}

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