:root {
  --ink: #17211d;
  --muted: #63706a;
  --line: #d9dfd5;
  --paper: #f7f5ef;
  --white: #ffffff;
  --forest: #173f35;
  --forest-2: #245748;
  --gold: #b88745;
  --sage: #dfe8db;
  --sky: #d9ecf2;
  --coral: #d9694a;
  --shadow: 0 18px 50px rgba(21, 35, 29, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
}

.site-header {
  align-items: center;
  background: rgba(247, 245, 239, 0.92);
  border-bottom: 1px solid rgba(23, 63, 53, 0.12);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  align-items: center;
  background: var(--forest);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  font-family: Georgia, serif;
  font-size: 22px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

nav a {
  color: #28342f;
  font-size: 14px;
  font-weight: 700;
}

.header-action,
.button,
.booking-bar button,
.capture-form button,
.concierge form button {
  align-items: center;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
}

.header-action,
.button.primary,
.booking-bar button,
.capture-form button,
.concierge form button {
  background: var(--forest);
  color: var(--white);
}

.button.light {
  background: var(--white);
  color: var(--forest);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.button.whatsapp {
  background: #25d366;
  color: #062416;
}

.hero {
  min-height: 94vh;
  overflow: hidden;
  position: relative;
}

.hero-media,
.hero-shade {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-media {
  background:
    linear-gradient(120deg, rgba(15, 57, 46, 0.22), rgba(184, 135, 69, 0.18)),
    radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.36) 0 8%, transparent 9%),
    radial-gradient(circle at 68% 32%, rgba(217, 236, 242, 0.42) 0 12%, transparent 13%),
    linear-gradient(155deg, #24483d 0 26%, #6f8d73 27% 45%, #d7d3bd 46% 52%, #57754f 53% 72%, #173f35 73% 100%);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 24, 18, 0.78), rgba(7, 24, 18, 0.24)),
    linear-gradient(180deg, rgba(7, 24, 18, 0.2), rgba(7, 24, 18, 0.44));
}

.hero-content {
  color: var(--white);
  max-width: 820px;
  padding: 190px clamp(20px, 6vw, 78px) 160px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.8px;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 8vw, 92px);
  font-weight: 500;
  line-height: 0.98;
  margin-bottom: 24px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.hero-copy {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  max-width: 650px;
}

.hero-actions,
.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  bottom: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  left: clamp(20px, 6vw, 78px);
  padding: 18px;
  position: absolute;
  right: clamp(20px, 6vw, 78px);
  z-index: 3;
}

.hero-panel span {
  border-left: 3px solid var(--gold);
  font-weight: 800;
  line-height: 1.25;
  padding-left: 12px;
}

.booking-bar {
  align-items: end;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  grid-template-columns: 1.2fr 1.2fr 0.75fr 0.75fr 1fr auto;
  margin: -34px auto 0;
  max-width: 1180px;
  padding: 16px;
  position: sticky;
  top: 76px;
  width: calc(100% - 36px);
  z-index: 15;
}

label span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 5px;
  text-transform: uppercase;
}

input,
select {
  background: #fbfbf8;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 44px;
  padding: 10px 12px;
  width: 100%;
}

.section,
.availability,
.gallery {
  margin: 0 auto;
  max-width: 1220px;
  padding: 86px clamp(18px, 4vw, 34px);
}

.intro {
  align-items: start;
  display: grid;
  gap: 44px;
  grid-template-columns: 1.1fr 0.9fr;
}

.intro p:last-child,
.split p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.feature-band {
  background: var(--forest);
  color: var(--white);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.feature-band article {
  background: rgba(255, 255, 255, 0.07);
  padding: clamp(24px, 4vw, 48px);
}

.feature-band strong,
.feature-band span {
  display: block;
}

.feature-band strong {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 8px;
}

.section-heading {
  margin-bottom: 34px;
  max-width: 780px;
}

.room-grid,
.rate-grid,
.offer-grid,
.attraction-grid,
.trust-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.room-card,
.rate-card,
.offer-grid article,
.attraction-grid article,
.trust-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(21, 35, 29, 0.07);
  overflow: hidden;
}

.room-card img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.room-card div,
.rate-card,
.offer-grid article,
.attraction-grid article {
  padding: 22px;
}

.room-card p,
.room-card li,
.rate-card p,
.offer-grid p,
.attraction-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.room-card ul {
  margin: 16px 0;
  padding-left: 20px;
}

.room-card a,
.rate-card a {
  color: var(--forest);
  font-weight: 900;
}

.tag,
.offer-grid span {
  background: var(--sage);
  border-radius: 999px;
  color: var(--forest);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
  padding: 6px 10px;
}

.split {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: 0.9fr 1.1fr;
}

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

.experience-grid a {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  font-weight: 900;
  padding: 22px;
}

.gallery {
  max-width: none;
}

.gallery .section-heading {
  margin-left: auto;
  margin-right: auto;
  max-width: 1220px;
}

.gallery-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 22px;
}

.gallery-filters button,
.admin-tabs button {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  padding: 10px 14px;
}

.gallery-filters .active,
.admin-tabs .active {
  background: var(--forest);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  gap: 12px;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
  background: transparent;
  border: 0;
  cursor: zoom-in;
  min-height: 220px;
  overflow: hidden;
  padding: 0;
}

.gallery-item img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  width: 100%;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.trust {
  background: var(--sky);
  max-width: none;
}

.trust > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 1220px;
}

.trust-grid {
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid article {
  padding: 24px;
}

.trust-grid strong {
  color: var(--forest);
  display: block;
  font-family: Georgia, serif;
  font-size: 42px;
}

.trust-grid span {
  color: var(--muted);
  font-weight: 800;
}

.testimonial-row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

blockquote {
  background: rgba(255, 255, 255, 0.78);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1.35;
  margin: 0;
  padding: 24px;
}

.attraction-grid {
  grid-template-columns: repeat(3, 1fr);
}

.find-us {
  align-items: stretch;
}

.map-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-height: 420px;
  overflow: hidden;
}

.map-card iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.map-placeholder {
  align-items: start;
  background:
    linear-gradient(135deg, rgba(23, 63, 53, 0.92), rgba(23, 63, 53, 0.72)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px 42px),
    linear-gradient(90deg, var(--sage), var(--sky));
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  justify-content: center;
  min-height: 420px;
  padding: clamp(28px, 5vw, 54px);
}

.map-placeholder strong {
  font-family: Georgia, serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.02;
}

.map-placeholder span,
.map-placeholder small {
  max-width: 520px;
}

.map-placeholder span {
  color: var(--sage);
  font-size: 20px;
  font-weight: 800;
}

.map-placeholder small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.5;
}

.offers {
  background: var(--forest);
  color: var(--white);
  max-width: none;
}

.offers > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 1220px;
}

.offer-grid {
  grid-template-columns: repeat(4, 1fr);
}

.offer-grid article {
  color: var(--ink);
}

.capture {
  background: var(--white);
  max-width: none;
  padding-left: clamp(24px, 8vw, 120px);
  padding-right: clamp(24px, 8vw, 120px);
}

.capture-form {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}

.capture-form button {
  grid-column: span 2;
}

.admin-shell {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.admin-panel {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  padding-top: 18px;
}

.admin-row {
  align-items: center;
  background: #fbfbf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr auto auto;
  padding: 14px;
}

.admin-row span {
  color: var(--muted);
  font-weight: 700;
}

.rate-card strong {
  display: block;
  font-size: 32px;
  margin: 12px 0;
}

.rate-card button {
  background: var(--coral);
  border: 0;
  border-radius: 6px;
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  min-height: 42px;
  padding: 10px 14px;
  width: 100%;
}

.concierge {
  bottom: 82px;
  position: fixed;
  right: 18px;
  z-index: 30;
}

.concierge > button,
.floating-whatsapp {
  background: var(--forest);
  border: 0;
  border-radius: 999px;
  box-shadow: var(--shadow);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  padding: 14px 18px;
}

.concierge-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  bottom: 56px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: absolute;
  right: 0;
  width: min(360px, calc(100vw - 36px));
}

.concierge-log {
  max-height: 300px;
  overflow: auto;
  padding: 16px;
}

.concierge-log p {
  border-bottom: 1px solid var(--line);
  line-height: 1.45;
  margin-bottom: 12px;
  padding-bottom: 12px;
}

.concierge form {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr auto;
  padding: 10px;
}

.floating-whatsapp {
  background: #25d366;
  bottom: 18px;
  color: #062416;
  position: fixed;
  right: 18px;
  z-index: 30;
}

dialog {
  background: transparent;
  border: 0;
  max-width: min(1000px, 94vw);
  padding: 0;
}

dialog::backdrop {
  background: rgba(4, 12, 9, 0.78);
}

dialog img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-height: 82vh;
  object-fit: contain;
}

#close-dialog {
  background: var(--white);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  margin-bottom: 10px;
  padding: 10px 14px;
}

.site-footer {
  background: #101915;
  color: var(--white);
  padding: 52px clamp(20px, 5vw, 70px);
}

.footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  margin: 0 auto;
  max-width: 1220px;
}

.footer-grid > div {
  align-content: start;
  display: grid;
  gap: 11px;
}

.footer-logo {
  color: var(--white);
  margin-bottom: 8px;
  min-width: 0;
}

.footer-logo .brand-mark {
  background: var(--gold);
  color: #101915;
}

.footer-logo small,
.footer-brand p,
.footer-grid span {
  color: #b9c8c1;
}

.footer-brand p,
.footer-grid span,
.footer-grid a {
  font-size: 14px;
  line-height: 1.55;
}

.footer-brand p {
  margin: 0;
  max-width: 330px;
}

.footer-grid h3 {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 1px;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.footer-grid a {
  color: #eef4f1;
  font-weight: 700;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-credit {
  background: #0a100d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #aab8b1;
  font-size: 13px;
  font-weight: 700;
  padding: 13px 20px;
  text-align: center;
}

.footer-credit a {
  color: #d8e3de;
}

.footer-credit a:hover {
  color: var(--gold);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    position: absolute;
  }

  .header-action {
    display: none;
  }

  .hero-content {
    padding-top: 230px;
  }

  .hero-panel,
  .booking-bar,
  .intro,
  .feature-band,
  .room-grid,
  .split,
  .trust-grid,
  .testimonial-row,
  .attraction-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .booking-bar {
    position: relative;
    top: auto;
  }

  .experience-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.wide {
    grid-column: span 1;
  }
}

@media (max-width: 620px) {
  nav {
    gap: 10px;
  }

  nav a {
    font-size: 13px;
  }

  .hero {
    min-height: 106vh;
  }

  .hero-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-panel,
  .experience-grid,
  .gallery-grid,
  .capture-form,
  .admin-row,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .capture-form button {
    grid-column: span 1;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

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