/* ==========================================================================
   Hotel Dhruv Inn & AIO Kitchen — shared design system
   Palette: warm terracotta + deep teal + warm neutrals
   ========================================================================== */

:root {
  --terracotta: #b5573a;
  --terracotta-deep: #8f3f27;
  --terracotta-soft: #e8c3b3;
  --teal: #1c4a45;
  --teal-mid: #2d6a62;
  --teal-soft: #d5e3e0;
  --brass: #c08a3e;
  --cream: #fdf9f4;
  --sand: #f4ebdf;
  --sand-deep: #e7d9c7;
  --ink: #241d19;
  --ink-soft: #4a3f38;
  --muted: #7a6b60;
  --line: rgba(36, 29, 25, 0.12);
  --white: #ffffff;

  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow-sm: 0 2px 10px rgba(36, 29, 25, 0.06);
  --shadow-md: 0 10px 30px rgba(36, 29, 25, 0.09);
  --shadow-lg: 0 22px 55px rgba(36, 29, 25, 0.15);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --container: 1200px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 0.5em;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { margin: 0 0 1em; }

::selection { background: var(--terracotta); color: #fff; }

/* ---------- layout helpers ---------- */
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section--tight { padding: clamp(3rem, 5vw, 4.5rem) 0; }
.section--sand { background: var(--sand); }
.section--cream { background: var(--cream); }
.section--teal { background: var(--teal); color: rgba(255, 255, 255, 0.82); }
.section--teal h2, .section--teal h3 { color: #fff; }

.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin-bottom: 0; }
.section--teal .section-head p { color: rgba(255, 255, 255, 0.72); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--terracotta);
  opacity: 0.6;
}
.section-head--center .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--terracotta);
  opacity: 0.6;
}
.section--teal .eyebrow { color: var(--brass); }
.section--teal .eyebrow::before,
.section--teal .eyebrow::after { background: var(--brass); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--terracotta); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--terracotta-deep); box-shadow: var(--shadow-md); }

.btn--whatsapp { background: #1fa855; color: #fff; box-shadow: var(--shadow-sm); }
.btn--whatsapp:hover { background: #17904a; box-shadow: var(--shadow-md); }

.btn--ghost { border-color: rgba(36, 29, 25, 0.22); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; }

.btn--light { background: rgba(255, 255, 255, 0.14); color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.btn--light:hover { background: #fff; color: var(--ink); }

.btn--sm { padding: 0.62rem 1.2rem; font-size: 0.82rem; }
.btn--block { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--terracotta);
  letter-spacing: 0.01em;
}
.text-link svg { width: 15px; height: 15px; transition: transform 0.25s var(--ease); }
.text-link:hover svg { transform: translateX(4px); }

/* ---------- top bar ---------- */
.topbar {
  background: var(--teal);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 38px;
  padding-block: 0.35rem;
}
.topbar__item { display: inline-flex; align-items: center; gap: 0.45rem; }
.topbar__item svg { width: 13px; height: 13px; opacity: 0.8; }
.topbar a:hover { color: #fff; }
.topbar__right { display: flex; gap: 1.4rem; }
.topbar__new {
  color: var(--brass);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 249, 244, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.header.is-stuck {
  box-shadow: 0 6px 24px rgba(36, 29, 25, 0.07);
  border-bottom-color: var(--line);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand__mark {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--terracotta), var(--terracotta-deep));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand__sub {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav { display: flex; align-items: center; gap: 0.35rem; }
.nav a {
  position: relative;
  padding: 0.5rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: color 0.2s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.25rem;
  height: 1.5px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.nav a.is-active { color: var(--terracotta); font-weight: 600; }

.header__cta { display: flex; align-items: center; gap: 0.6rem; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 1.8px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  overflow: hidden;
  background: var(--teal);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(22, 46, 43, 0.92) 0%, rgba(22, 46, 43, 0.72) 42%, rgba(22, 46, 43, 0.35) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 660px; color: rgba(255, 255, 255, 0.88); }
.hero h1 { color: #fff; margin-bottom: 0.6rem; }
.hero__lead { font-size: clamp(1rem, 1.6vw, 1.12rem); color: rgba(255, 255, 255, 0.8); max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

.badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 1rem 0.42rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  backdrop-filter: blur(6px);
}
.badge-new .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.4rem;
  margin-top: 2.6rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.hero__fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.1;
}
.hero__fact span {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* page hero (inner pages) */
.pagehero {
  position: relative;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  background: var(--teal);
  overflow: hidden;
  text-align: center;
}
.pagehero__media { position: absolute; inset: 0; z-index: 0; }
.pagehero__media img { width: 100%; height: 100%; object-fit: cover; }
.pagehero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 46, 43, 0.86), rgba(22, 46, 43, 0.78));
}
.pagehero .container { position: relative; z-index: 2; }
.pagehero h1 { color: #fff; margin-bottom: 0.4rem; }
.pagehero p { color: rgba(255, 255, 255, 0.78); max-width: 58ch; margin-inline: auto; margin-bottom: 0; }
.pagehero .eyebrow { color: var(--brass); }
.pagehero .eyebrow::before, .pagehero .eyebrow::after { background: var(--brass); }

.crumbs {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1.4rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.crumbs a:hover { color: #fff; }

/* ---------- split paths (stay / dine) ---------- */
.paths { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, 1fr); }
.path {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  box-shadow: var(--shadow-md);
  isolation: isolate;
}
.path img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.path::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(28, 74, 69, 0.1) 0%, rgba(20, 40, 37, 0.55) 52%, rgba(16, 34, 31, 0.94) 100%);
}
.path:hover img { transform: scale(1.06); }
.path__body { padding: 2rem; text-shadow: 0 1px 14px rgba(16, 34, 31, 0.55); }
.path__body h3 { color: #fff; font-size: 1.55rem; margin-bottom: 0.35rem; }
.path__body p { color: rgba(255, 255, 255, 0.78); font-size: 0.92rem; margin-bottom: 1.2rem; max-width: 34ch; }
.path__tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

/* ---------- feature grid ---------- */
.features { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
/* Six-item grids read best as two rows of three; the four-item strips stay in one row. */
@media (min-width: 900px) {
  .features { grid-template-columns: repeat(3, 1fr); }
  .features--four { grid-template-columns: repeat(4, 1fr); }
}
.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--terracotta-soft);
}
.feature__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--sand);
  color: var(--terracotta);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}
.feature__icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.08rem; margin-bottom: 0.3rem; }
.feature p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* ---------- room cards ---------- */
.rooms-grid { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.room {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.room:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand); }
.room__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.room:hover .room__media img { transform: scale(1.07); }
.room__flag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: rgba(253, 249, 244, 0.94);
  color: var(--terracotta-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.room__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.room__body h3 { margin-bottom: 0.25rem; }
.room__meta {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.room__body > p { font-size: 0.92rem; color: var(--muted); }
.room__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.4rem 0 1.3rem;
}
.chip {
  font-size: 0.74rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--sand);
  color: var(--ink-soft);
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.room:hover .chip { background: var(--teal-soft); }
.room__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.room__price { font-size: 0.82rem; color: var(--muted); }
.room__price strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  line-height: 1.2;
}

/* ---------- menu ---------- */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.tab {
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 500;
  transition: all 0.25s var(--ease);
}
.tab:hover { border-color: var(--terracotta); color: var(--terracotta); }
.tab.is-active { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }

.menu-grid { display: grid; gap: 1.1rem 2.6rem; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); }
.menu-item {
  padding: 0.85rem 0;
  border-bottom: 1px dashed var(--line);
}
.menu-item__row { display: flex; align-items: baseline; gap: 0.6rem; }
.menu-item__name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--ink);
  font-weight: 600;
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
}
.menu-item__desc { font-size: 0.85rem; color: var(--muted); margin: 0.15rem 0 0; line-height: 1.5; max-width: 46ch; }
.menu-item__dots { flex: 1; border-bottom: 1px dotted var(--sand-deep); min-width: 18px; transform: translateY(-3px); }
.menu-item__price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--terracotta-deep);
  white-space: nowrap;
}
.veg-dot, .nonveg-dot {
  width: 12px;
  height: 12px;
  border: 1.5px solid #2f8b4e;
  border-radius: 2px;
  display: inline-grid;
  place-items: center;
  flex: none;
}
.veg-dot::after, .nonveg-dot::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2f8b4e;
}
.nonveg-dot { border-color: #a8322b; }
.nonveg-dot::after { background: #a8322b; }

.menu-note {
  margin-top: 2.5rem;
  padding: 1.2rem 1.4rem;
  background: var(--sand);
  border-left: 3px solid var(--brass);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.menu-note p:last-child { margin-bottom: 0; }

/* dish cards */
.dish-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.dish {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.dish:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.dish__media { aspect-ratio: 1 / 1; overflow: hidden; background: var(--sand); }
.dish__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.dish:hover .dish__media img { transform: scale(1.08); }
.dish__body { padding: 1.1rem 1.2rem 1.3rem; }
.dish__body h3 { font-size: 1rem; margin-bottom: 0.15rem; }
.dish__body p { font-size: 0.84rem; color: var(--muted); margin: 0; }

/* ---------- gallery ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: 220px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
  cursor: zoom-in;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20, 40, 37, 0.75));
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item__cap {
  position: absolute;
  left: 1rem;
  bottom: 0.9rem;
  z-index: 2;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s var(--ease);
}
.gallery-item:hover .gallery-item__cap { opacity: 1; transform: translateY(0); }
.gallery-item.is-tall { grid-row: span 2; }
.gallery-item.is-wide { grid-column: span 2; }
.is-hidden { display: none !important; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(18, 32, 30, 0.94);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(94vw, 1100px);
  max-height: 82vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.lightbox__cap { color: rgba(255, 255, 255, 0.75); font-size: 0.86rem; margin-top: 1rem; text-align: center; }
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  transition: background 0.25s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255, 255, 255, 0.28); }
.lightbox__close { top: 1.4rem; right: 1.4rem; }
.lightbox__nav--prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.4rem; top: 50%; transform: translateY(-50%); }

/* ---------- about / split media ---------- */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
}
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split__media--stack { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.split__media--stack img:first-child { aspect-ratio: 3/4; margin-top: 2rem; }
.split__media--stack img:last-child { aspect-ratio: 3/4; }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--terracotta);
  line-height: 1.1;
}
.stat span { font-size: 0.8rem; color: var(--muted); }

.check-list { display: grid; gap: 0.7rem; margin: 1.4rem 0; }
.check-list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.94rem; }
.check-list svg { width: 19px; height: 19px; flex: none; color: var(--terracotta); margin-top: 3px; }

/* ---------- reviews ---------- */
.reviews-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.review {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.section--teal .review { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.14); }
.stars { display: flex; gap: 2px; color: var(--brass); margin-bottom: 0.9rem; }
.stars svg { width: 16px; height: 16px; }
.review p {
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 400;
}
.section--teal .review p { color: rgba(255, 255, 255, 0.9); }
.review__by {
  margin-top: auto;
  padding-top: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid var(--line);
}
.section--teal .review__by { border-top-color: rgba(255, 255, 255, 0.14); }
.review__avatar {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 50%;
  background: var(--sand);
  color: var(--terracotta-deep);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
}
.section--teal .review__avatar { background: rgba(255, 255, 255, 0.14); color: #fff; }
.review__name { font-weight: 600; font-size: 0.9rem; color: var(--ink); line-height: 1.3; }
.section--teal .review__name { color: #fff; }
.review__src { font-size: 0.76rem; color: var(--muted); }
.section--teal .review__src { color: rgba(255, 255, 255, 0.55); }

.review-cta {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}
.section--teal .review-cta { color: rgba(255, 255, 255, 0.65); }

/* ---------- forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 0.94rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(181, 87, 58, 0.12);
}
.form-foot { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.8rem; }
.form-hint { font-size: 0.8rem; color: var(--muted); margin: 0; }
.form-status {
  font-size: 0.88rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(47, 139, 78, 0.1);
  color: #22633c;
  display: none;
}
.form-status.is-visible { display: block; }

/* ---------- contact ---------- */
.contact-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr 1.1fr; align-items: start; }
.info-list { display: grid; gap: 1.4rem; }
.info-item { display: flex; gap: 1rem; }
.info-item__icon {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 12px;
  background: var(--sand);
  color: var(--terracotta);
  display: grid;
  place-items: center;
}
.info-item__icon svg { width: 20px; height: 20px; }
.info-item h3 { font-size: 1rem; margin-bottom: 0.15rem; }
.info-item p { font-size: 0.92rem; color: var(--muted); margin: 0; }
.info-item a:hover { color: var(--terracotta); }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  line-height: 0;
  background: var(--sand);
}
.map-frame iframe { width: 100%; height: 420px; border: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--terracotta-deep);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.14), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(0, 0, 0, 0.2), transparent 55%);
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; max-width: 20ch; margin-inline: auto; }
.cta-band p { max-width: 52ch; margin-inline: auto; color: rgba(255, 255, 255, 0.8); }
.cta-band .hero__actions { justify-content: center; }

/* ---------- footer ---------- */
.footer {
  background: #16302c;
  color: rgba(255, 255, 255, 0.62);
  padding: clamp(3rem, 6vw, 4.5rem) 0 0;
  font-size: 0.9rem;
}
.footer__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  padding-bottom: 3rem;
}
.footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer a:hover { color: #fff; }
.footer__links { display: grid; gap: 0.6rem; }
.footer .brand__name { color: #fff; }
.footer .brand__sub { color: rgba(255, 255, 255, 0.45); }
.footer__about { margin-top: 1.2rem; max-width: 34ch; line-height: 1.7; }
.footer__social { display: flex; gap: 0.6rem; margin-top: 1.3rem; }
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  transition: all 0.25s var(--ease);
}
.footer__social a:hover { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }
.footer__social svg { width: 16px; height: 16px; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.4rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}
.credit {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.02em;
}
.credit span { color: rgba(255, 255, 255, 0.72); font-weight: 500; }
.credit::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brass);
  opacity: 0.8;
}

.demo-note {
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.74rem;
  text-align: center;
  padding: 0.7rem 1rem;
  line-height: 1.6;
}

/* ---------- floating actions ---------- */
.fab-stack {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.fab:hover { transform: scale(1.08); box-shadow: var(--shadow-lg); }
.fab svg { width: 25px; height: 25px; }
.fab--wa { background: #1fa855; }
.fab--call { background: var(--terracotta); }

/* ---------- scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 860px) {
  .topbar__right .topbar__item--hours { display: none; }
  .header__cta .btn--ghost { display: none; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 0.6rem 1.25rem 1.4rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease), padding 0.3s var(--ease);
  }
  .nav.is-open { max-height: 78vh; opacity: 1; overflow-y: auto; }
  .nav a { padding: 0.85rem 0.25rem; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 0.98rem; }
  .nav a::after { display: none; }
  .nav-toggle { display: block; }

  .paths { grid-template-columns: 1fr; }
  .path { min-height: 330px; }
  .gallery-item.is-wide { grid-column: span 1; }
  .gallery-grid { grid-auto-rows: 190px; }
  .split__media--stack img:first-child { margin-top: 0; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 2rem, var(--container)); }
  .hero { min-height: auto; }
  .hero__actions .btn { flex: 1 1 auto; }
  .hero__facts { gap: 1.2rem 1.8rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); grid-auto-rows: 150px; }
  .room__foot { flex-direction: column; align-items: stretch; }
  .room__foot .btn { width: 100%; }
  .lightbox__nav { width: 40px; height: 40px; }
  .lightbox__nav--prev { left: 0.5rem; }
  .lightbox__nav--next { right: 0.5rem; }
}
