:root {
  --bg: #f7efe0;
  --ink: #16251f;
  --muted: #6f7b73;
  --paper: #fffaf1;
  --cream: #f3eadb;
  --green: #173d2c;
  --green-2: #265b41;
  --gold: #d6a849;
  --gold-2: #f0d48d;
  --line: rgba(22, 37, 31, .12);
  --shadow: 0 28px 80px rgba(12, 24, 18, .22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-anchor {
  scroll-margin-top: 110px;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 50;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: 70px;
  margin: 0 auto;
  padding: 12px 14px 12px 24px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 22px;
  background: rgba(255, 250, 241, .9);
  box-shadow: 0 18px 46px rgba(67, 45, 18, .16);
  backdrop-filter: blur(16px);
}

.brand {
  color: var(--green);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 11px 15px;
  border-radius: 999px;
  color: var(--green);
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(214, 168, 73, .22);
  color: var(--green);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: rgba(23, 61, 44, .12);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--green);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  background: var(--bg);
}

.hero-bg,
.hero-bg-next {
  position: absolute;
  inset: 0;
  background-image: url("../images/slide-img1.jpg");
  background-size: cover;
  background-position: center;
}

.hero-bg {
  z-index: 0;
}

.hero-bg-next {
  z-index: 1;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: end;
  width: min(1180px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 150px 0 70px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .18);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.eyebrow.dark {
  border-color: rgba(38, 91, 65, .22);
  color: var(--green-2);
  background: rgba(38, 91, 65, .06);
}

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(64px, 12vw, 152px);
  line-height: .86;
  letter-spacing: -.04em;
  color: #fff;
  text-shadow: none;
}

.hero-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: #fff;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 800;
}

.btn-primary {
  background: var(--gold);
  color: #22190b;
  box-shadow: 0 18px 36px rgba(214, 168, 73, .26);
}

.btn-ghost {
  background: rgba(255, 255, 255, .9);
  color: var(--green);
}

.hero-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 26px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-card span,
.hero-card small {
  color: rgba(255, 255, 255, .82);
}

.hero-card strong {
  display: block;
  margin: 6px 0 22px;
  font-size: 44px;
  line-height: 1;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.hero-card-grid div {
  padding: 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .12);
}

.hero-card-grid b,
.hero-card-grid small {
  display: block;
}

.hero-card-grid b {
  font-size: 22px;
}

.intro {
  padding: 110px 0 80px;
  background: linear-gradient(180deg, #fffaf1, #f2eadc);
}

.split {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 74px);
  line-height: .98;
  letter-spacing: -.04em;
}

.intro-text p,
.prices p,
.contact-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.feature-strip article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 18px 46px rgba(42, 35, 23, .08);
}

.feature-strip span {
  color: var(--gold);
  font-weight: 900;
}

.feature-strip strong {
  display: block;
  margin: 18px 0 10px;
  font-size: 22px;
}

.feature-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.rooms {
  padding: 100px 0;
  background: #102419;
  color: #fff;
}

.section-head {
  margin-bottom: 42px;
}

.rooms h2 {
  max-width: 880px;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 18px;
}

.room-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 26px;
  background: #000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

.room-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.room-card.wide {
  grid-column: span 2;
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .35s ease;
}

.room-card:hover img {
  transform: scale(1.045);
}

.room-card::after {
  content: none;
}

.room-card span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  width: fit-content;
  max-width: calc(100% - 44px);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 241, .9);
  color: var(--green);
  font-size: 22px;
  font-weight: 900;
  text-shadow: none;
}

.prices {
  padding: 100px 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(214, 168, 73, .2), transparent 32%),
    var(--green);
  color: #fff;
}

.prices-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.price-copy p {
  color: rgba(255, 255, 255, .78);
}

.price-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .26);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 24px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-align: left;
  font-size: 20px;
}

th {
  background: #efe1c6;
  color: var(--green);
  font-weight: 900;
}

td:last-child {
  font-size: 28px;
  font-weight: 900;
  color: var(--green);
}

.location {
  padding: 100px 0;
  background: #fffaf1;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.contact-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(31, 43, 34, .1);
}

.contact-card h3 {
  margin: 0 0 20px;
  font-size: 30px;
}

.contact-card a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: var(--green);
  font-size: 20px;
  font-weight: 800;
}

.contact-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--gold);
  color: #1f1709;
}

.map-shell {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.map-shell iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
}

.footer {
  padding: 36px 0;
  background: #08110d;
  color: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, .8);
}

.footer strong {
  color: #fff;
}

@media (max-width: 980px) {
  .hero-inner,
  .split,
  .prices-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 480px;
  }

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

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

@media (max-width: 720px) {
  .container,
  .hero-inner,
  .nav-shell {
    width: calc(100% - 24px);
  }

  .site-header {
    top: 12px;
  }

  .nav-shell {
    min-height: 64px;
    flex-wrap: wrap;
    border-radius: 18px;
    padding: 10px 12px 10px 18px;
  }

  .brand {
    font-size: 21px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex: 0 0 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    margin-top: 10px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255, 250, 241, .94);
    box-shadow: 0 16px 38px rgba(67, 45, 18, .14);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 15px;
  }

  .hero-inner {
    min-height: 100vh;
    padding: 120px 0 34px;
  }

  .hero h1 {
    font-size: 70px;
    opacity: .58;
  }

  .hero-lead {
    display: none;
  }

  .hero .eyebrow {
    opacity: .56;
  }

  .hero-actions,
  .hero-card {
    opacity: .64;
  }

  .hero-actions,
  .footer-inner {
    flex-direction: column;
  }

  .hero-actions {
    display: none;
  }

  .btn {
    width: 100%;
  }

  .hero-card {
    padding: 20px;
  }

  .intro,
  .rooms,
  .prices,
  .location {
    padding: 70px 0;
  }

  .feature-strip,
  .room-grid {
    grid-template-columns: 1fr;
  }

  .room-grid {
    grid-auto-rows: auto;
  }

  .room-card,
  .room-card.large,
  .room-card.wide {
    grid-column: auto;
    grid-row: auto;
    height: 330px;
  }

  th,
  td {
    padding: 16px 12px;
    font-size: 15px;
  }

  td:last-child {
    font-size: 19px;
  }

  .contact-card {
    padding: 24px;
  }

  .map-shell iframe {
    height: 420px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 58px;
  }

  .room-card,
  .room-card.large,
  .room-card.wide {
    height: 285px;
  }
}
  color: var(--green);
