@import url('https://fonts.googleapis.com/css2?family=Cinzel&family=Lato:wght@300;400;500;600;700&display=swap');

:root {
  --ink: #172536;
  --forest: #223448;
  --forest-2: #304b68;
  --sage: #8696a7;
  --sand: #f3eee4;
  --cream: #fbf8f2;
  --gold: #b58b4b;
  --gold-2: #d5b878;
  --white: #ffffff;
  --muted: #6e746f;
  --line: rgba(34, 52, 72, 0.13);
  --shadow: 0 22px 70px rgba(34, 52, 72, 0.12);
  --shadow-soft: 0 10px 34px rgba(34, 52, 72, 0.08);
  --radius: 26px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  background: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.skip-link:focus { top: 16px; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-soft { background: var(--sand); }
.section-dark { background: var(--forest); color: var(--white); }
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}
.display {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6.9rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.95;
}
.section-title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.45rem, 4.4vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.card-title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1.1;
}
.lead { font-size: clamp(1.05rem, 1.4vw, 1.22rem); color: var(--muted); max-width: 720px; }
.section-dark .lead { color: rgba(255,255,255,0.72); }
.section-head { display: flex; justify-content: space-between; gap: 32px; align-items: end; margin-bottom: 46px; }
.section-head > div:first-child { max-width: 760px; }

.btn {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--forest); color: var(--white); }
.btn-primary:hover { background: var(--forest-2); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #9e783e; }
.btn-light { background: var(--white); color: var(--forest); }
.btn-outline { background: transparent; color: var(--forest); border: 1px solid var(--forest); }
.btn-outline-light { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.5); }
.btn-link { padding: 0; min-height: 0; border-radius: 0; color: var(--forest); background: transparent; }
.btn-link::after { content: '→'; transition: transform .2s ease; }
.btn-link:hover::after { transform: translateX(5px); }

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(181, 139, 75, .12);
  color: var(--gold);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}
.site-header.scrolled {
  background: rgba(251,248,242,.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(34,52,72,.08);
}
.site-header.hidden { transform: translateY(-110%); }
.header-inner {
  width: var(--container);
  height: 84px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
}
.brand {
  justify-self: center;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: .9;
  color: var(--white);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.brand strong { font-family: 'Cormorant Garamond', serif; font-size: 2rem; letter-spacing: .19em; }
.brand small { font-size: .56rem; letter-spacing: .34em; margin-top: 7px; }
.scrolled .brand, .inner-page .brand { color: var(--forest); }
.nav-left, .nav-right { display: flex; align-items: center; gap: 24px; }
.nav-right { justify-content: flex-end; }
.nav-link {
  color: rgba(255,255,255,.9);
  font-size: .84rem;
  font-weight: 600;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transition: right .25s ease;
}
.nav-link:hover::after, .nav-link.active::after { right: 0; }
.scrolled .nav-link, .inner-page .nav-link { color: var(--ink); }
.header-cta { min-height: 42px; padding-inline: 18px; }
.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
  background: transparent;
  border-radius: 50%;
  place-items: center;
}
.scrolled .menu-btn, .inner-page .menu-btn { color: var(--ink); border-color: var(--line); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: var(--forest);
  color: var(--white);
  padding: 24px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu nav { align-self: center; display: grid; gap: 8px; }
.mobile-menu nav a { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 10vw, 4rem); }
.mobile-menu .brand { color: var(--white); align-items: flex-start; }
.menu-close { background: transparent; border: 1px solid rgba(255,255,255,.4); color: white; width: 46px; height: 46px; border-radius: 50%; }
.mobile-menu-bottom { display: flex; justify-content: space-between; gap: 18px; align-items: center; border-top: 1px solid rgba(255,255,255,.15); padding-top: 18px; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  color: var(--white);
  overflow: hidden;
  background: var(--forest);
}
.hero-media, .hero-slide { position: absolute; inset: 0; }
.hero-slide {
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1s ease, transform 7s linear;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12,24,38,.78) 0%, rgba(12,24,38,.38) 48%, rgba(12,24,38,.27) 100%), linear-gradient(0deg, rgba(12,24,38,.62), transparent 48%);
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 170px 0 80px;
}
.hero-copy { max-width: 850px; }
.hero-copy p { max-width: 620px; color: rgba(255,255,255,.82); font-size: 1.1rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero-footer { margin-top: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.hero-pager { display: flex; align-items: center; gap: 12px; }
.hero-dot { width: 36px; height: 3px; border: 0; padding: 0; background: rgba(255,255,255,.35); transition: background .25s ease, width .25s ease; }
.hero-dot.active { width: 62px; background: var(--white); }
.scroll-cue { display: inline-flex; align-items: center; gap: 10px; font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; }
.scroll-cue span { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4); display: grid; place-items: center; animation: bob 1.8s infinite; }
@keyframes bob { 50% { transform: translateY(5px); } }

.page-hero {
  position: relative;
  min-height: 70svh;
  color: var(--white);
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--forest);
}
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(16,28,42,.78), rgba(16,28,42,.08)); }
.page-hero-content { position: relative; z-index: 2; width: var(--container); margin-inline: auto; padding: 190px 0 74px; }
.page-hero .display { max-width: 900px; font-size: clamp(3.2rem, 8vw, 6.4rem); }
.page-hero p { max-width: 620px; color: rgba(255,255,255,.8); font-size: 1.08rem; }

/* Cards */
.feature-strip {
  position: relative;
  z-index: 3;
  margin-top: -42px;
}
.feature-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.feature-item { padding: 26px 28px; border-right: 1px solid var(--line); }
.feature-item:last-child { border-right: 0; }
.feature-item strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; margin-bottom: 3px; }
.feature-item span { color: var(--muted); font-size: .86rem; }

.image-card {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-soft);
}
.image-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.image-card:hover > img { transform: scale(1.045); }
.image-card::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(16,28,42,.86), rgba(16,28,42,.02) 62%); }
.image-card-content { position: absolute; inset: auto 0 0; z-index: 2; color: var(--white); padding: 30px; }
.image-card-content p { color: rgba(255,255,255,.76); margin: 10px 0 0; }
.image-card-top { position: absolute; z-index: 2; top: 20px; left: 20px; right: 20px; display: flex; justify-content: space-between; }
.badge { display: inline-flex; align-items: center; min-height: 32px; padding: 0 12px; border-radius: 999px; background: rgba(255,255,255,.88); color: var(--ink); font-size: .72rem; font-weight: 700; backdrop-filter: blur(10px); }

.text-card {
  background: var(--white);
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.text-card p { color: var(--muted); }

.split-media {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: stretch;
  min-height: 620px;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.split-media-image { min-height: 520px; position: relative; }
.split-media-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.split-media-copy { padding: clamp(42px, 7vw, 86px); display: flex; flex-direction: column; justify-content: center; }
.split-media-copy p { color: var(--muted); }

.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.stat { border-top: 1px solid var(--line); padding-top: 14px; }
.stat strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.25rem; color: var(--forest); }
.stat span { font-size: .82rem; color: var(--muted); }

.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.room-card-media { aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.room-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.room-card:hover img { transform: scale(1.04); }
.room-card-body { padding: 26px; }
.room-meta { display: flex; flex-wrap: wrap; gap: 9px; margin: 17px 0 20px; }
.room-meta span { padding: 6px 10px; background: var(--sand); border-radius: 999px; color: var(--muted); font-size: .75rem; }
.room-card-actions { display: flex; justify-content: space-between; gap: 14px; align-items: center; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter-btn { border: 1px solid var(--line); background: transparent; color: var(--muted); min-height: 42px; padding: 0 16px; border-radius: 999px; }
.filter-btn.active { background: var(--forest); border-color: var(--forest); color: var(--white); }

/* Tabs */
.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.tab-btn { border: 1px solid var(--line); background: var(--white); border-radius: 999px; padding: 11px 18px; color: var(--muted); }
.tab-btn.active { background: var(--forest); color: var(--white); border-color: var(--forest); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp .4s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } }

/* Gallery */
.gallery-grid { columns: 3 300px; column-gap: 18px; }
.gallery-item { break-inside: avoid; margin-bottom: 18px; border-radius: 18px; overflow: hidden; position: relative; cursor: zoom-in; background: var(--sand); }
.gallery-item img { width: 100%; transition: transform .45s ease, filter .45s ease; }
.gallery-item:hover img { transform: scale(1.03); filter: brightness(.86); }
.gallery-item::after { content: 'View'; position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -40%); background: rgba(255,255,255,.9); color: var(--ink); padding: 8px 14px; border-radius: 999px; font-size: .78rem; font-weight: 700; opacity: 0; transition: opacity .25s ease, transform .25s ease; }
.gallery-item:hover::after { opacity: 1; transform: translate(-50%, -50%); }
.gallery-item.hidden { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1600;
  background: rgba(7,16,13,.94);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(92vw, 1240px); max-height: 84vh; border-radius: 18px; box-shadow: var(--shadow); }
.lightbox-close { position: absolute; top: 22px; right: 22px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.3); color: var(--white); background: transparent; border-radius: 50%; }
.lightbox-caption { color: rgba(255,255,255,.72); position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); text-align: center; width: calc(100% - 40px); }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; gap: 20px; align-items: center; text-align: left; background: transparent; border: 0; padding: 24px 0; font-weight: 700; color: var(--ink); }
.faq-q span:last-child { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; flex: 0 0 auto; transition: transform .25s ease; }
.faq-item.open .faq-q span:last-child { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { margin: 0; padding: 0 54px 24px 0; color: var(--muted); }

/* Forms */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .78rem; font-weight: 700; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  padding: 14px 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(181,139,75,.12); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { color: var(--muted); font-size: .78rem; margin-top: 12px; }

.contact-list { display: grid; gap: 18px; margin-top: 28px; }
.contact-row { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.contact-row strong { display: block; }
.contact-row span { color: var(--muted); }
.map-card { min-height: 520px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); background: var(--sand); }
.map-card iframe { width: 100%; height: 100%; min-height: 520px; border: 0; }

/* Booking modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.modal.open { opacity: 1; visibility: visible; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(18,31,46,.78); backdrop-filter: blur(10px); }
.modal-card {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100svh - 40px);
  overflow: auto;
  background: var(--cream);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 50px);
  box-shadow: var(--shadow);
}
.modal-close { position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; border: 1px solid var(--line); background: var(--white); color: var(--ink); border-radius: 50%; }
.modal-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.modal .section-title { font-size: clamp(2.2rem, 5vw, 3.7rem); }

/* Itinerary */
.timeline { display: grid; gap: 14px; }
.timeline-item { display: grid; grid-template-columns: 94px 1fr; gap: 20px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 22px; }
.timeline-time { color: var(--gold); font-weight: 700; }
.timeline-item h3 { margin: 0 0 5px; font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; }
.timeline-item p { margin: 0; color: var(--muted); }

/* Footer */
.site-footer { background: #172535; color: var(--white); padding: 74px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr .8fr 1fr; gap: 48px; }
.footer-brand .brand { align-items: flex-start; color: var(--white); justify-self: start; }
.footer-brand p { color: rgba(255,255,255,.65); max-width: 430px; margin-top: 24px; }
.footer-title { font-size: .76rem; text-transform: uppercase; letter-spacing: .15em; color: var(--gold-2); margin-bottom: 18px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.72); }
.footer-links a:hover { color: var(--white); }
.footer-contact { display: grid; gap: 10px; color: rgba(255,255,255,.72); }
.footer-contact a { color: var(--white); font-size: 1.25rem; font-family: 'Cormorant Garamond', serif; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 54px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.52); font-size: .78rem; }

.mobile-booking-bar { display: none; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

.notice {
  padding: 15px 18px;
  border-radius: 14px;
  background: rgba(181,139,75,.12);
  color: #70552d;
  font-size: .86rem;
}

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
table { width: 100%; border-collapse: collapse; min-width: 680px; }
th, td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); }
th { color: var(--muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; }
tr:last-child td { border-bottom: 0; }

@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .nav-left, .nav-right .nav-link { display: none; }
  .menu-btn { display: grid; }
  .header-inner { grid-template-columns: 1fr auto 1fr; }
  .menu-btn { justify-self: start; }
  .header-inner > .nav-right { justify-self: end; }
  .feature-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: 0; }
  .feature-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split-media { grid-template-columns: 1fr; }
  .split-media-image { min-height: 460px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 1180px); }
  .section { padding: 72px 0; }
  .section-sm { padding: 50px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .header-inner { height: 72px; }
  .header-cta { display: none; }
  .brand strong { font-size: 1.75rem; }
  .hero-content { padding: 150px 0 54px; }
  .hero-footer { margin-top: 44px; }
  .scroll-cue { display: none; }
  .section-head { align-items: start; flex-direction: column; margin-bottom: 34px; }
  .feature-strip { margin-top: 0; }
  .feature-strip .container { width: 100%; }
  .feature-strip-inner { border-radius: 0; box-shadow: none; }
  .feature-item { padding: 22px 18px; }
  .image-card { min-height: 430px; }
  .split-media-image { min-height: 390px; }
  .split-media-copy { padding: 38px 26px; }
  .stat-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .modal { padding: 0; align-items: end; }
  .modal-card { border-radius: 26px 26px 0 0; max-height: 92svh; }
  .mobile-booking-bar {
    position: fixed;
    z-index: 900;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 8px;
    padding: 8px;
    border-radius: 18px;
    background: rgba(251,248,242,.94);
    box-shadow: 0 10px 40px rgba(23,37,53,.25);
    backdrop-filter: blur(16px);
  }
  .mobile-booking-bar .btn { min-height: 46px; padding: 0 12px; font-size: .84rem; }
  .site-footer { padding-bottom: 110px; }
  .gallery-grid { columns: 2 150px; }
}

@media (max-width: 460px) {
  .display { font-size: 3.2rem; }
  .feature-strip-inner { grid-template-columns: 1fr; }
  .feature-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-item:last-child { border-bottom: 0; }
  .gallery-grid { columns: 1; }
}


/* Brand image support */
.brand {
  min-width: 150px;
  min-height: 52px;
  justify-content: center;
}
.brand-logo {
  display: none;
  width: auto;
  max-width: 178px;
  max-height: 48px;
  object-fit: contain;
}
.brand.logo-ready .brand-logo { display: block; }
.brand.logo-ready .brand-text { display: none; }
.brand-text { display: inline-flex; flex-direction: column; align-items: center; }
.mobile-menu .brand-logo { max-height: 58px; max-width: 200px; }
.footer-brand .brand-logo { max-height: 62px; max-width: 220px; }
.footer-brand .brand-text { align-items: flex-start; }

/* Image manager */
.manager-hero { padding: 150px 0 72px; background: var(--forest); color: var(--white); }
.manager-toolbar { display:flex; flex-wrap:wrap; gap:12px; align-items:center; justify-content:space-between; margin:28px 0 36px; }
.manager-note { border:1px solid rgba(34,52,72,.14); background:var(--white); padding:20px 22px; border-radius:var(--radius-sm); box-shadow:var(--shadow-soft); }
.manager-note strong { color:var(--forest); }
.manager-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
.manager-card { background:var(--white); border:1px solid var(--line); border-radius:20px; overflow:hidden; box-shadow:var(--shadow-soft); }
.manager-preview { aspect-ratio:16/10; background:#e9edf1; position:relative; overflow:hidden; }
.manager-preview img { width:100%; height:100%; object-fit:cover; }
.manager-preview .manager-badge { position:absolute; top:12px; left:12px; background:rgba(34,52,72,.9); color:#fff; padding:6px 10px; border-radius:999px; font-size:.7rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; }
.manager-body { padding:20px; }
.manager-body h3 { margin:0 0 6px; font-family:'Cormorant Garamond',serif; font-size:1.7rem; line-height:1.05; }
.manager-meta { color:var(--muted); font-size:.82rem; margin-bottom:14px; }
.manager-file { font-family:ui-monospace,SFMono-Regular,Menlo,monospace; font-size:.76rem; padding:9px 10px; background:var(--sand); border-radius:9px; overflow-wrap:anywhere; }
.manager-actions { display:flex; flex-wrap:wrap; gap:8px; margin-top:16px; }
.manager-actions .btn { min-height:40px; padding:0 14px; font-size:.8rem; }
.manager-upload { display:none; }
.manager-empty { padding:70px 20px; text-align:center; color:var(--muted); }
.manager-filter { display:flex; gap:8px; flex-wrap:wrap; }
.manager-filter button { border:1px solid var(--line); background:var(--white); padding:9px 14px; border-radius:999px; font-weight:700; color:var(--ink); }
.manager-filter button.active { background:var(--forest); color:var(--white); border-color:var(--forest); }
.manager-status { position:fixed; right:24px; bottom:24px; z-index:2000; background:var(--forest); color:#fff; padding:13px 18px; border-radius:12px; box-shadow:var(--shadow); opacity:0; transform:translateY(12px); pointer-events:none; transition:.25s ease; }
.manager-status.show { opacity:1; transform:none; }
.manager-logo-card .manager-preview { background:linear-gradient(135deg,#f8f4ec,#e4e9ef); }
.manager-logo-card .manager-preview img { object-fit:contain; padding:38px; }

@media (max-width: 980px) { .manager-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width: 640px) { .manager-grid { grid-template-columns:1fr; } .manager-toolbar { align-items:flex-start; } }

/* =========================================================
   KAMAH GOA — EDITORIAL HOSPITALITY REFERENCE THEME
   Inspired by the supplied layout direction, customised for KAMAH Goa.
   Primary brand colour: #223448
   ========================================================= */
:root {
  --ink: #182433;
  --forest: #223448;
  --forest-2: #2c435d;
  --sage: #8793a0;
  --sand: #f0ece5;
  --cream: #f8f5ef;
  --gold: #b38a55;
  --gold-2: #d4ba8c;
  --white: #fff;
  --muted: #6d7278;
  --line: rgba(34,52,72,.16);
  --shadow: 0 24px 65px rgba(20,34,49,.14);
  --shadow-soft: 0 14px 35px rgba(20,34,49,.08);
  --radius: 0px;
  --radius-sm: 0px;
  --container: min(1240px, calc(100% - 64px));
}
body { background:#fff; }
.section { padding: 118px 0; }
.section-soft { background: var(--cream); }
.section-dark { background: var(--forest); }
.display, .section-title, .card-title { letter-spacing:-.025em; }
.section-title { font-size:clamp(2.8rem,4.3vw,5.1rem); }
.lead { line-height:1.8; }
.eyebrow { color:var(--gold); letter-spacing:.2em; font-size:.7rem; }
.eyebrow::before { width:42px; }

.btn {
  min-height:52px;
  border-radius:0;
  padding:0 25px;
  letter-spacing:.09em;
  text-transform:uppercase;
  font-size:.7rem;
}
.btn-gold { background:var(--gold); }
.btn-outline-light { border-color:rgba(255,255,255,.6); }
.btn-outline { border-color:var(--forest); }
.btn-link { letter-spacing:.08em; text-transform:uppercase; font-size:.72rem; }

/* Header follows the transparent luxury-hotel reference layout */
.site-header { border-bottom:1px solid rgba(255,255,255,.18); }
.site-header.scrolled,
.site-header.inner-page { background:rgba(255,255,255,.97); border-bottom-color:var(--line); }
.header-inner { height:96px; grid-template-columns:1fr auto 1fr; width:min(1380px,calc(100% - 64px)); }
.nav-left,.nav-right { gap:28px; }
.nav-link { text-transform:uppercase; letter-spacing:.11em; font-size:.66rem; }
.header-brand-link { justify-self:center; }
.brand { min-width:184px; min-height:58px; }
.brand strong { font-size:2.2rem; }
.brand small { letter-spacing:.4em; }
.header-cta { min-height:44px; padding-inline:18px; }
.site-header.scrolled .header-cta,
.site-header.inner-page .header-cta { color:white; }

/* Reference-inspired home hero */
.reference-hero { min-height:100svh; }
.reference-hero::after {
  background:linear-gradient(180deg,rgba(10,18,29,.48),rgba(10,18,29,.13) 43%,rgba(10,18,29,.56));
}
.reference-hero-content {
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:150px 0 132px;
}
.reference-hero .hero-copy { max-width:980px; }
.reference-hero .display { font-size:clamp(4.1rem,8vw,8rem); line-height:.88; color:#fff; }
.reference-hero .hero-copy p { margin:28px auto 0; max-width:650px; font-family:'Cormorant Garamond',serif; font-size:1.45rem; line-height:1.55; }
.hero-kicker { display:block; margin-bottom:20px; text-transform:uppercase; letter-spacing:.35em; font-weight:700; font-size:.72rem; }
.text-link-light { display:inline-flex; align-items:center; gap:14px; margin-top:34px; padding-bottom:7px; border-bottom:1px solid rgba(255,255,255,.65); text-transform:uppercase; letter-spacing:.15em; font-size:.68rem; }
.reference-hero .hero-pager { position:absolute; right:0; bottom:58px; }
.reference-hero .hero-dot { width:44px; height:1px; }
.reference-hero .hero-dot.active { width:72px; }

/* Overlapping direct enquiry bar */
.availability-shell { position:relative; z-index:8; margin-top:-54px; }
.availability-bar {
  display:grid;
  grid-template-columns:1.15fr repeat(4,1fr) auto;
  align-items:stretch;
  background:#fff;
  box-shadow:var(--shadow);
  min-height:108px;
}
.availability-heading { padding:22px 27px; background:var(--forest); color:#fff; display:flex; flex-direction:column; justify-content:center; }
.availability-heading span,.availability-field span { text-transform:uppercase; letter-spacing:.16em; font-size:.62rem; font-weight:700; }
.availability-heading strong { font-family:'Cormorant Garamond',serif; font-size:1.7rem; font-weight:600; margin-top:4px; }
.availability-field { padding:20px 22px; border-right:1px solid var(--line); display:flex; flex-direction:column; justify-content:center; gap:7px; }
.availability-field span { color:var(--muted); }
.availability-field input,.availability-field select { border:0; padding:0; background:transparent; color:var(--ink); font-family:'Cormorant Garamond',serif; font-size:1.18rem; outline:0; width:100%; }
.availability-submit { border:0; min-width:185px; padding:0 24px; background:var(--gold); color:#fff; text-transform:uppercase; letter-spacing:.13em; font-size:.68rem; font-weight:700; }
.availability-submit:hover { background:#9f7745; }

/* Editorial welcome composition */
.editorial-intro { padding-top:150px; }
.editorial-grid { display:grid; grid-template-columns:minmax(0,1.08fr) minmax(360px,.92fr); gap:clamp(70px,9vw,145px); align-items:center; }
.editorial-images { position:relative; min-height:650px; }
.editorial-images figure { margin:0; overflow:hidden; }
.editorial-images img { width:100%; height:100%; object-fit:cover; }
.editorial-image-primary { position:absolute; left:0; top:0; width:78%; height:88%; }
.editorial-image-secondary { position:absolute; right:0; bottom:0; width:43%; height:47%; border:12px solid #fff; }
.editorial-copy { padding-right:clamp(0px,3vw,45px); }
.editorial-copy p { color:var(--muted); }
.editorial-link { display:inline-flex; align-items:center; gap:30px; margin-top:25px; padding-bottom:8px; border-bottom:1px solid var(--ink); text-transform:uppercase; letter-spacing:.14em; font-size:.68rem; font-weight:700; }
.editorial-link span { transition:transform .25s ease; }
.editorial-link:hover span { transform:translateX(6px); }

/* Centre heading */
.center-heading { text-align:center; max-width:820px; margin:0 auto 40px; }
.center-heading .eyebrow { justify-content:center; }
.center-heading .eyebrow::before { display:none; }
.center-heading > p { color:var(--muted); max-width:700px; margin:18px auto 0; }
.center-heading-light { color:#fff; }
.center-heading-light p { color:rgba(255,255,255,.72); }
.center-action { text-align:center; margin-top:44px; }

/* Rooms as an editorial horizontal showcase */
.room-showcase-section { background:var(--cream); overflow:hidden; }
.carousel-controls { display:flex; justify-content:flex-end; gap:8px; margin-bottom:18px; }
.carousel-controls button { width:48px; height:48px; border:1px solid var(--line); background:transparent; color:var(--forest); font-size:1.2rem; }
.carousel-controls button:hover { background:var(--forest); color:#fff; }
.room-carousel,.experience-carousel {
  display:flex;
  gap:30px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
  padding-bottom:8px;
}
.room-carousel::-webkit-scrollbar,.experience-carousel::-webkit-scrollbar { display:none; }
.reference-room-card { flex:0 0 min(390px,78vw); scroll-snap-align:start; background:#fff; }
.reference-room-image { position:relative; aspect-ratio:4/3; overflow:hidden; }
.reference-room-image img { width:100%; height:100%; object-fit:cover; transition:transform .8s ease; }
.reference-room-card:hover .reference-room-image img { transform:scale(1.04); }
.reference-room-image span { position:absolute; left:18px; top:18px; padding:8px 12px; background:rgba(34,52,72,.9); color:#fff; text-transform:uppercase; letter-spacing:.12em; font-size:.6rem; }
.reference-room-copy { padding:28px 30px 31px; border:1px solid var(--line); border-top:0; }
.reference-room-copy h3 { margin:0; font-family:'Cormorant Garamond',serif; font-size:2.15rem; font-weight:600; }
.reference-room-copy ul { list-style:none; display:flex; flex-wrap:wrap; gap:8px 18px; padding:0; margin:16px 0; color:var(--muted); font-size:.76rem; }
.reference-room-copy p { color:var(--muted); }
.reference-room-copy button { border:0; border-bottom:1px solid var(--ink); background:none; padding:0 0 5px; text-transform:uppercase; letter-spacing:.12em; font-weight:700; font-size:.64rem; }

/* Amenities band */
.amenities-band { padding:108px 0; }
.amenity-grid { display:grid; grid-template-columns:repeat(6,1fr); margin-top:60px; border-top:1px solid rgba(255,255,255,.16); border-bottom:1px solid rgba(255,255,255,.16); }
.amenity-item { padding:35px 18px; text-align:center; border-right:1px solid rgba(255,255,255,.16); }
.amenity-item:last-child { border-right:0; }
.amenity-item > span { display:block; color:var(--gold-2); font-size:1.8rem; margin-bottom:13px; }
.amenity-item strong { display:block; font-family:'Cormorant Garamond',serif; font-size:1.35rem; font-weight:600; }
.amenity-item small { display:block; margin-top:6px; color:rgba(255,255,255,.58); line-height:1.55; }

/* Experiences */
.reference-section-head { align-items:center; }
.reference-section-head > p { max-width:470px; color:var(--muted); }
.experience-card-reference { flex:0 0 min(470px,84vw); scroll-snap-align:start; background:var(--cream); }
.experience-card-reference img { width:100%; aspect-ratio:5/4; object-fit:cover; }
.experience-card-reference > div { padding:32px 34px 36px; }
.experience-card-reference span { color:var(--gold); text-transform:uppercase; letter-spacing:.18em; font-size:.62rem; font-weight:700; }
.experience-card-reference h3 { margin:8px 0 12px; font-family:'Cormorant Garamond',serif; font-size:2.2rem; font-weight:600; }
.experience-card-reference p { color:var(--muted); }
.experience-card-reference a { display:inline-block; margin-top:10px; padding-bottom:5px; border-bottom:1px solid var(--ink); text-transform:uppercase; letter-spacing:.12em; font-size:.64rem; font-weight:700; }

/* Large image CTA */
.cinematic-cta { position:relative; min-height:720px; display:flex; align-items:center; color:#fff; overflow:hidden; }
.cinematic-cta > img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.cinematic-overlay { position:absolute; inset:0; background:linear-gradient(90deg,rgba(13,25,39,.8),rgba(13,25,39,.25)); }
.cinematic-content { position:relative; z-index:1; }
.cinematic-content h2 { margin:0; font-family:'Cormorant Garamond',serif; font-weight:600; font-size:clamp(3.5rem,6.2vw,7rem); line-height:.94; }
.cinematic-content p { max-width:560px; color:rgba(255,255,255,.78); font-size:1.12rem; }

/* Editorial feature notes */
.hotel-note-grid { display:grid; grid-template-columns:.95fr 1.05fr; gap:clamp(70px,10vw,150px); }
.hotel-note-list { border-top:1px solid var(--line); }
.hotel-note-list article { display:grid; grid-template-columns:55px 1fr; gap:25px; padding:30px 0; border-bottom:1px solid var(--line); }
.hotel-note-list article > span { color:var(--gold); font-family:'Cormorant Garamond',serif; font-size:1.35rem; }
.hotel-note-list h3 { margin:0 0 5px; font-family:'Cormorant Garamond',serif; font-size:1.8rem; }
.hotel-note-list p { margin:0; color:var(--muted); }

/* Gallery preview strip */
.instagram-strip { display:grid; grid-template-columns:repeat(5,1fr); min-height:300px; }
.instagram-strip > a { min-height:280px; position:relative; overflow:hidden; }
.instagram-strip img { width:100%; height:100%; object-fit:cover; transition:transform .7s ease; }
.instagram-strip > a:hover img { transform:scale(1.05); }
.instagram-label { background:var(--forest); color:#fff; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:24px; }
.instagram-label span { font-family:'Cormorant Garamond',serif; font-size:2rem; line-height:1.05; }
.instagram-label strong { margin-top:22px; padding-bottom:5px; border-bottom:1px solid rgba(255,255,255,.55); text-transform:uppercase; letter-spacing:.14em; font-size:.64rem; }

/* Inner pages carry the same visual system */
.page-hero { min-height:78svh; }
.page-hero::after { background:linear-gradient(0deg,rgba(16,28,42,.78),rgba(16,28,42,.12) 65%); }
.page-hero-content { padding-bottom:90px; }
.page-hero .eyebrow { color:#fff; }
.page-hero .display { max-width:1000px; }
.page-hero p { font-family:'Cormorant Garamond',serif; font-size:1.35rem; }
.image-card,.text-card,.room-card,.map-card,.table-wrap,.modal-card,.filter-btn,.faq-item { border-radius:0; }
.image-card { min-height:560px; }
.room-card { background:#fff; border:1px solid var(--line); }
.room-card-media { border-radius:0; }
.room-card-body { padding:32px; }
.text-card { box-shadow:none; border:1px solid var(--line); }
.filter-btn { text-transform:uppercase; letter-spacing:.1em; font-size:.65rem; }
.split-media { border-radius:0; }
.split-media-copy { padding:clamp(42px,6vw,78px); }
.faq-q { border-radius:0; }
.modal-backdrop { background:rgba(18,31,46,.78); }

/* Footer */
.site-footer { background:#172535; padding-top:88px; }
.footer-grid { grid-template-columns:1.45fr .75fr .75fr 1fr; }
.footer-title { color:var(--gold-2); }
.footer-brand p { line-height:1.8; }
.footer-bottom { border-top-color:rgba(255,255,255,.14); }

/* Image manager keeps the same brand theme */
.manager-hero { background:var(--forest); }
.manager-card { border-radius:0; }
.manager-preview .manager-badge { border-radius:0; }
.manager-file { border-radius:0; }

@media (max-width:1180px) {
  .nav-left,.nav-right { gap:18px; }
  .nav-link { font-size:.61rem; }
  .header-cta { padding-inline:14px; }
  .availability-bar { grid-template-columns:1.1fr repeat(2,1fr) auto; }
  .availability-heading { grid-row:span 2; }
  .availability-field:nth-of-type(3),.availability-field:nth-of-type(4) { border-top:1px solid var(--line); }
  .availability-submit { grid-column:4; grid-row:1 / span 2; }
  .amenity-grid { grid-template-columns:repeat(3,1fr); }
  .amenity-item:nth-child(3) { border-right:0; }
  .amenity-item:nth-child(-n+3) { border-bottom:1px solid rgba(255,255,255,.16); }
}

@media (max-width:980px) {
  :root { --container:min(100% - 40px,1240px); }
  .section { padding:90px 0; }
  .header-inner { width:var(--container); height:82px; }
  .editorial-grid,.hotel-note-grid { grid-template-columns:1fr; gap:65px; }
  .editorial-images { min-height:620px; max-width:700px; }
  .availability-shell { margin-top:0; }
  .availability-shell .container { width:100%; }
  .availability-bar { box-shadow:none; grid-template-columns:repeat(2,1fr); }
  .availability-heading { grid-column:1 / -1; grid-row:auto; }
  .availability-field { border-bottom:1px solid var(--line); }
  .availability-submit { grid-column:1 / -1; grid-row:auto; min-height:70px; }
  .instagram-strip { grid-template-columns:repeat(3,1fr); }
  .instagram-strip > a:nth-child(4),.instagram-strip > a:nth-child(5) { display:none; }
}

@media (max-width:720px) {
  :root { --container:min(100% - 28px,1240px); }
  .section { padding:76px 0; }
  .reference-hero-content { padding:125px 0 92px; }
  .reference-hero .display { font-size:clamp(3.6rem,17vw,5.6rem); }
  .reference-hero .hero-copy p { font-size:1.2rem; }
  .reference-hero .hero-pager { right:auto; bottom:34px; }
  .availability-bar { grid-template-columns:1fr; }
  .availability-heading,.availability-submit { grid-column:auto; }
  .availability-field { border-right:0; }
  .editorial-intro { padding-top:90px; }
  .editorial-images { min-height:470px; }
  .editorial-image-primary { width:84%; height:88%; }
  .editorial-image-secondary { width:47%; height:43%; border-width:8px; }
  .section-title { font-size:clamp(2.45rem,12vw,3.65rem); }
  .reference-section-head { align-items:flex-start; }
  .amenity-grid { grid-template-columns:repeat(2,1fr); }
  .amenity-item:nth-child(3) { border-right:1px solid rgba(255,255,255,.16); }
  .amenity-item:nth-child(2n) { border-right:0; }
  .amenity-item:nth-child(-n+4) { border-bottom:1px solid rgba(255,255,255,.16); }
  .cinematic-cta { min-height:620px; }
  .instagram-strip { grid-template-columns:1fr 1fr; }
  .instagram-strip > a:nth-child(2) { display:none; }
  .instagram-label { grid-column:span 1; }
  .footer-grid { grid-template-columns:1fr; }
}

@media (max-width:460px) {
  .reference-hero .display { font-size:3.65rem; }
  .availability-heading { min-height:92px; }
  .editorial-images { min-height:390px; }
  .amenity-grid { grid-template-columns:1fr; }
  .amenity-item { border-right:0 !important; border-bottom:1px solid rgba(255,255,255,.16); }
  .amenity-item:last-child { border-bottom:0; }
  .instagram-strip { grid-template-columns:1fr; }
  .instagram-strip > a { min-height:250px; }
  .instagram-strip > a:first-child { display:none; }
}

/* KAMAH Goa logo sizing*/
.header-inner {
  height: 110px;
}

.brand {
  min-width: 260px;
  min-height: 76px;
}

.header-brand-link .brand-logo {
  width: auto;
  max-width: 260px;
  max-height: 74px;
  object-fit: contain;
}

.mobile-menu .brand-logo {
  width: auto;
  max-width: 240px;
  max-height: 78px;
  object-fit: contain;
}

.footer-brand .brand-logo {
  width: auto;
  max-width: 280px;
  max-height: 90px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .header-inner {
    height: 88px;
  }

  .brand {
    min-width: 210px;
    min-height: 64px;
  }

  .header-brand-link .brand-logo {
    max-width: 210px;
    max-height: 64px;
  }
}

@media (max-width: 720px) {
  .header-inner {
    height: 76px;
  }

  .brand {
    min-width: 165px;
    min-height: 54px;
  }

  .header-brand-link .brand-logo {
    max-width: 165px;
    max-height: 54px;
  }
}

/* ==================================================
   KAMAH GOA — CORRECT TWO-LOGO HEADER SYSTEM
   ================================================== */

/* Fixed logo container prevents the logos from stacking vertically */
.header-brand-link .brand {
  position: relative;
  width: 250px;
  height: 76px;
  min-width: 250px;
  min-height: 76px;
  display: block;
}

/* Both logos occupy exactly the same position */
.header-brand-link .brand-logo {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: auto;
  object-fit: contain;
  display: block !important;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

/* Default transparent homepage header */
.header-brand-link .brand-logo-light {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header-brand-link .brand-logo-dark {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* White header after scrolling */
.site-header.scrolled .header-brand-link .brand-logo-light {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-header.scrolled .header-brand-link .brand-logo-dark {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Inner pages already have a white header */
.site-header.inner-page .header-brand-link .brand-logo-light {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-header.inner-page .header-brand-link .brand-logo-dark {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Mobile menu uses the light logo */
.mobile-menu .brand {
  position: relative;
  width: 220px;
  height: 72px;
  display: block;
}

.mobile-menu .brand-logo {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  display: block !important;
}

.mobile-menu .brand-logo-light {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .brand-logo-dark {
  opacity: 0;
  visibility: hidden;
}

/* Footer uses the light logo */
.footer-brand .brand {
  position: relative;
  width: 250px;
  height: 80px;
  display: block;
}

.footer-brand .brand-logo {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  display: block !important;
}

.footer-brand .brand-logo-light {
  opacity: 1;
  visibility: visible;
}

.footer-brand .brand-logo-dark {
  opacity: 0;
  visibility: hidden;
}

/* Tablet */
@media (max-width: 980px) {
  .header-brand-link .brand {
    width: 210px;
    height: 66px;
    min-width: 210px;
    min-height: 66px;
  }
}

/* Mobile */
@media (max-width: 720px) {
  .header-brand-link .brand {
    width: 165px;
    height: 54px;
    min-width: 165px;
    min-height: 54px;
  }

  .mobile-menu .brand {
    width: 190px;
    height: 62px;
  }

  .footer-brand .brand {
    width: 210px;
    height: 70px;
  }
}

/* =========================================================
   KAMAH Goa — Mobile / Tablet Menu Fix
   ========================================================= */

.menu-btn {
  position: relative;
  z-index: 3100;
  pointer-events: auto !important;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu {
  z-index: 5000 !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-100%);
  transition:
    transform .32s ease,
    opacity .25s ease,
    visibility .25s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.mobile-menu-top,
.mobile-menu nav,
.mobile-menu-bottom {
  position: relative;
  z-index: 1;
}

.menu-close {
  position: relative;
  z-index: 2;
  pointer-events: auto !important;
  touch-action: manipulation;
}

@media (max-width: 980px) {
  .menu-btn {
    display: grid !important;
  }

  .site-header {
    pointer-events: auto;
  }

  .header-inner {
    position: relative;
  }
}

/* =========================================================
   KAMAH GOA — FONT UPDATE
   Premium hotel typography
   ========================================================= */

body,
button,
input,
select,
textarea {
  font-family: 'Lato', sans-serif;
}

.display,
.section-title,
.card-title,
.brand strong,
.feature-item strong,
.split-media-copy h1,
.split-media-copy h2,
.split-media-copy h3,
.reference-room-copy h3,
.experience-card-reference h3,
.cinematic-content h2,
.hotel-note-list h3,
.instagram-label span,
.timeline-item h3,
.footer-contact a,
.availability-heading strong,
.availability-field input,
.availability-field select,
.mobile-menu nav a {
  font-family: 'Marcellus', serif;
}

/* Slightly refined heading spacing for Marcellus */
.display,
.section-title,
.card-title {
  letter-spacing: -0.015em;
  font-weight: 400;
}

/* Better readability for website body text */
body {
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Navigation and buttons should stay clean and premium */
.nav-link,
.btn,
.header-cta,
.availability-submit,
.filter-btn,
.tab-btn,
.footer-title,
.eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
}