:root {
  --green-950: #0a2118;
  --green-900: #0f2e22;
  --green-800: #14432f;
  --green-700: #1b5e3f;
  --green-600: #2d7a52;
  --green-500: #3d9168;
  --amber-600: #b06a2e;
  --amber-500: #c8843d;
  --amber-400: #dd9d54;
  --gold: #c9a24a;
  --sand-50: #faf6ee;
  --sand-100: #f3ece0;
  --sand-200: #e8ddca;
  --cream: #fffdf8;
  --ink: #1c1b16;
  --ink-soft: #3a382f;
  --muted: #726c5e;
  --line: rgba(20, 67, 47, 0.12);
  --line-strong: rgba(20, 67, 47, 0.22);
  --white: #ffffff;
  --shadow-sm: 0 2px 10px rgba(15, 46, 34, 0.06);
  --shadow-md: 0 18px 40px -18px rgba(15, 46, 34, 0.28);
  --shadow-lg: 0 40px 80px -30px rgba(10, 33, 24, 0.45);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 0.7, 0.2, 1);
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand-50);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--green-900);
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(64px, 9vw, 130px) 0;
  position: relative;
}

.section--tight {
  padding: clamp(48px, 6vw, 86px) 0;
}

.section--green {
  background: var(--green-900);
  color: var(--sand-100);
}

.section--sand {
  background: linear-gradient(180deg, var(--sand-100), var(--sand-50));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-600);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1.5px;
  background: var(--amber-500);
  display: inline-block;
}

.section--green .eyebrow {
  color: var(--amber-400);
}

.section--green h1,
.section--green h2,
.section--green h3 {
  color: var(--cream);
}

.title {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  margin-bottom: 18px;
}

.title--sm {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--muted);
  max-width: 60ch;
}

.section--green .lead {
  color: rgba(243, 236, 224, 0.78);
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head--center .eyebrow {
  justify-content: center;
}

.section-head--center .lead {
  margin-left: auto;
  margin-right: auto;
}

.btn {
  --btn-bg: var(--green-800);
  --btn-fg: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s ease;
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.28), transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
  z-index: -1;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn--amber {
  --btn-bg: linear-gradient(120deg, var(--amber-500), var(--amber-600));
  --btn-fg: #fff;
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--cream);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.55);
}

.btn--ghost-dark {
  --btn-bg: transparent;
  --btn-fg: var(--green-800);
  box-shadow: inset 0 0 0 1.5px var(--line-strong);
}

.btn--lg {
  padding: 17px 38px;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.btn svg {
  width: 18px;
  height: 18px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}

[data-reveal="left"] {
  transform: translateX(-40px);
}

[data-reveal="right"] {
  transform: translateX(40px);
}

[data-reveal="zoom"] {
  transform: scale(0.92);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--amber-500), var(--gold));
  z-index: 200;
  transition: width 0.1s linear;
}

.preloader {
  position: fixed;
  inset: 0;
  background: var(--green-950);
  display: grid;
  place-items: center;
  z-index: 999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
}

.preloader__mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--cream);
}

.preloader__mark svg {
  width: 58px;
  height: 58px;
  animation: floaty 2.4s ease-in-out infinite;
}

.preloader__bar {
  width: 140px;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
  border-radius: 2px;
}

.preloader__bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--amber-400);
  animation: loadbar 1.1s ease-in-out infinite;
}

@keyframes loadbar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 22px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.header.scrolled {
  padding: 12px 0;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -20px rgba(10, 33, 24, 0.5);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  transition: color 0.4s ease;
}

.header.scrolled .brand {
  color: var(--green-900);
}

.brand__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.brand__mark svg {
  width: 26px;
  height: 26px;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1;
}

.brand__tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  opacity: 0.78;
  margin-top: 4px;
}

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

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__links a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
  transition: color 0.3s ease;
  padding: 4px 0;
}

.header.scrolled .nav__links a {
  color: var(--ink-soft);
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--amber-500);
  transition: width 0.35s var(--ease);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--amber-400);
}

.header.scrolled .nav__links a:hover,
.header.scrolled .nav__links a.active {
  color: var(--amber-600);
}

.nav__links a.active::after,
.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  position: relative;
  z-index: 120;
  background: rgba(255, 255, 255, 0.14);
}

.header.scrolled .nav-toggle {
  background: rgba(20, 67, 47, 0.08);
}

.nav-toggle span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.4s var(--ease), opacity 0.3s ease, background 0.4s ease;
}

.header.scrolled .nav-toggle span {
  background: var(--green-900);
}

.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 23px; }
.nav-toggle span:nth-child(3) { top: 29px; }

body.nav-open .nav-toggle span { background: var(--cream); }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  opacity: 0;
  transition: opacity 1.6s var(--ease);
}

.hero__slide.is-active {
  opacity: 1;
  animation: kenburns 9s ease-out forwards;
}

@keyframes kenburns {
  from { transform: scale(1.04); }
  to { transform: scale(1.16); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 33, 24, 0.55) 0%, rgba(10, 33, 24, 0.2) 35%, rgba(10, 33, 24, 0.78) 100%),
    radial-gradient(120% 80% at 80% 10%, transparent, rgba(10, 33, 24, 0.35));
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  padding-bottom: 90px;
  max-width: 880px;
}

.hero .eyebrow {
  color: var(--amber-400);
}

.hero .eyebrow::before {
  background: var(--amber-400);
}

.hero__title {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  color: #fff;
  line-height: 1.02;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 22px;
}

.hero__title em {
  font-style: italic;
  color: var(--amber-400);
}

.hero__text {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  animation: heroUp 1s var(--ease) forwards;
}

.reveal-up.d1 { animation-delay: 0.15s; }
.reveal-up.d2 { animation-delay: 0.32s; }
.reveal-up.d3 { animation-delay: 0.5s; }
.reveal-up.d4 { animation-delay: 0.68s; }

@keyframes heroUp {
  to { opacity: 1; transform: none; }
}

.hero__meta {
  position: absolute;
  z-index: 2;
  bottom: 34px;
  left: 0;
  width: 100%;
}

.hero__meta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__dots {
  display: flex;
  gap: 10px;
}

.hero__dots button {
  width: 30px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.4s ease, width 0.4s ease;
}

.hero__dots button.active {
  background: var(--amber-400);
  width: 46px;
}

.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.hero__scroll span {
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  position: relative;
}

.hero__scroll span::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--amber-400);
  border-radius: 4px;
  transform: translateX(-50%);
  animation: wheel 1.8s ease-in-out infinite;
}

@keyframes wheel {
  0% { opacity: 0; transform: translate(-50%, -4px); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translate(-50%, 14px); }
  100% { opacity: 0; }
}

.marquee {
  background: var(--green-800);
  color: var(--sand-100);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  animation: marquee 28s linear infinite;
}

.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  opacity: 0.92;
}

.marquee__track span::after {
  content: "✦";
  color: var(--amber-400);
  font-size: 0.8rem;
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.about__body p + p {
  margin-top: 18px;
}

.about__body .lead {
  margin-bottom: 26px;
}

.about__collage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, auto);
  gap: 16px;
}

.about__collage figure {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.about__collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.about__collage figure:hover img {
  transform: scale(1.06);
}

.about__collage .c1 {
  grid-row: span 2;
  aspect-ratio: 3 / 4.4;
}

.about__collage .c2 {
  aspect-ratio: 4 / 3;
}

.about__collage .c3 {
  aspect-ratio: 4 / 3;
}

.about__badge {
  position: absolute;
  left: -18px;
  bottom: -22px;
  background: var(--amber-500);
  color: #fff;
  padding: 16px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 230px;
}

.about__badge svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.about__badge b {
  font-family: var(--font-display);
  font-size: 1.05rem;
  display: block;
}

.about__badge small {
  font-size: 0.74rem;
  opacity: 0.92;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: clamp(48px, 6vw, 72px);
}

.stat {
  text-align: center;
  padding: 28px 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.stat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  font-weight: 700;
  color: var(--green-700);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat__num span {
  font-size: 0.5em;
  color: var(--amber-500);
}

.stat__label {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.45s var(--ease), background 0.4s ease, border-color 0.4s ease;
}

.feature:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(221, 157, 84, 0.4);
}

.feature__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: var(--cream);
  margin-bottom: 20px;
}

.feature__icon svg {
  width: 28px;
  height: 28px;
}

.feature h3 {
  color: var(--cream);
  font-size: 1.22rem;
  margin-bottom: 8px;
}

.feature p {
  color: rgba(243, 236, 224, 0.72);
  font-size: 0.92rem;
}

.rooms__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.room {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}

.room img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 1s var(--ease);
}

.room::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 33, 24, 0) 30%, rgba(10, 33, 24, 0.82) 100%);
}

.room:hover img {
  transform: scale(1.07);
}

.room__body {
  padding: 32px;
  color: var(--cream);
  width: 100%;
}

.room__tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(200, 132, 61, 0.92);
  color: #fff;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.room__body h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.room__body p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.room__feats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.room__feats li {
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
}

.amenities {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 22px 12px;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), border-color 0.4s ease;
}

.amenity:hover {
  transform: translateY(-5px);
  border-color: var(--amber-400);
}

.amenity svg {
  width: 28px;
  height: 28px;
  color: var(--green-700);
}

.amenity span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.dining__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}

.dining__feature {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.4;
}

.dining__feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.dining__feature:hover img {
  transform: scale(1.05);
}

.dining__list {
  margin: 26px 0 30px;
  display: grid;
  gap: 18px;
}

.dining__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.dining__item-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--sand-100);
  color: var(--amber-600);
}

.dining__item-icon svg {
  width: 24px;
  height: 24px;
}

.dining__item h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--green-900);
  margin-bottom: 2px;
}

.dining__item p {
  font-size: 0.9rem;
  color: var(--muted);
}

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

.dining__thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease);
}

.dining__thumbs img:hover {
  transform: scale(1.05) rotate(-1deg);
}

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

.tour {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.tour::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--amber-500), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.tour:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.tour:hover::before {
  transform: scaleX(1);
}

.tour__num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--amber-500);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.tour__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--green-900);
  color: var(--amber-400);
  margin: 14px 0 22px;
  transition: transform 0.5s var(--ease);
}

.tour:hover .tour__icon {
  transform: rotate(-8deg) scale(1.05);
}

.tour__icon svg {
  width: 30px;
  height: 30px;
}

.tour h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.tour p {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 18px;
}

.tour__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-700);
  transition: gap 0.3s ease, color 0.3s ease;
}

.tour__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.tour:hover .tour__link {
  color: var(--amber-600);
}

.tour:hover .tour__link svg {
  transform: translateX(4px);
}

.tour--cta {
  background: var(--green-900);
  border-color: var(--green-900);
  display: flex;
  flex-direction: column;
}

.tour--cta::before {
  background: linear-gradient(90deg, var(--amber-400), var(--gold));
}

.tour--cta .tour__num {
  color: var(--amber-400);
  font-size: 1.4rem;
}

.tour--cta h3 {
  color: #fff;
  margin-top: 14px;
}

.tour--cta p {
  color: rgba(243, 236, 224, 0.8);
  margin-bottom: 22px;
}

.tour--cta .btn {
  align-self: flex-start;
  margin-top: auto;
}

.safari-banner {
  margin-top: 34px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--cream);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 320px;
  box-shadow: var(--shadow-lg);
}

.safari-banner__text {
  padding: clamp(34px, 5vw, 56px);
  background: var(--green-900);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.safari-banner__text h3 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 14px;
}

.safari-banner__text p {
  color: rgba(243, 236, 224, 0.82);
  margin-bottom: 26px;
  max-width: 46ch;
}

.safari-banner__media {
  position: relative;
  overflow: hidden;
}

.safari-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.safari-banner:hover .safari-banner__media img {
  transform: scale(1.08);
}

.safari-banner__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: rgba(200, 132, 61, 0.18);
  border: 1px solid rgba(221, 157, 84, 0.5);
  color: var(--amber-400);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.exp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 18px;
}

.exp {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-md);
  isolation: isolate;
}

.exp.tall {
  grid-row: span 2;
}

.exp.wide {
  grid-column: span 2;
}

.exp img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 1s var(--ease);
}

.exp::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 33, 24, 0) 40%, rgba(10, 33, 24, 0.85) 100%);
}

.exp:hover img {
  transform: scale(1.08);
}

.exp__body {
  padding: 24px;
  color: var(--cream);
}

.exp__body h3 {
  color: #fff;
  font-size: 1.28rem;
  margin-bottom: 4px;
}

.exp__body p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 38ch;
  opacity: 0;
  max-height: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.4s ease;
}

.exp:hover .exp__body p {
  opacity: 1;
  max-height: 80px;
  transform: none;
}

.attractions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.attractions__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5 / 4;
}

.attractions__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.attractions__list {
  margin-top: 24px;
  display: grid;
  gap: 4px;
}

.attraction {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 6px;
  border-bottom: 1px solid var(--line);
  transition: padding 0.4s var(--ease);
}

.attraction:hover {
  padding-left: 14px;
}

.attraction__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber-500);
  flex-shrink: 0;
  position: relative;
}

.attraction__dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid var(--amber-500);
  opacity: 0.4;
}

.attraction h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--green-900);
}

.attraction p {
  font-size: 0.86rem;
  color: var(--muted);
}

.attraction__meta {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--amber-600);
  white-space: nowrap;
}

.events {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 4px 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.events::-webkit-scrollbar {
  height: 6px;
}

.events::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 6px;
}

.event-card {
  position: relative;
  flex: 0 0 clamp(260px, 30vw, 360px);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: var(--shadow-md);
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.event-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 33, 24, 0.8));
}

.event-card:hover img {
  transform: scale(1.08);
}

.event-card figcaption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.gallery__filters button {
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--cream);
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}

.gallery__filters button:hover {
  border-color: var(--amber-400);
  color: var(--amber-600);
}

.gallery__filters button.active {
  background: var(--green-800);
  color: var(--cream);
  border-color: var(--green-800);
}

.gallery__grid {
  columns: 4;
  column-gap: 16px;
}

.gallery__item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  display: block;
}

.gallery__item img {
  width: 100%;
  transition: transform 0.7s var(--ease);
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 33, 24, 0.55));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery__item-zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-900);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.4s ease, transform 0.4s var(--ease);
}

.gallery__item-zoom svg {
  width: 18px;
  height: 18px;
}

.gallery__item:hover img {
  transform: scale(1.07);
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery__item:hover .gallery__item-zoom {
  opacity: 1;
  transform: scale(1);
}

.gallery__item.hide {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(8, 24, 18, 0.94);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 30px;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: min(1100px, 92vw);
  max-height: 84vh;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transform: scale(0.94);
  transition: transform 0.45s var(--ease);
}

.lightbox.open .lightbox__img {
  transform: scale(1);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.lightbox__close {
  top: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
}

.lightbox__nav.prev { left: 24px; }
.lightbox__nav.next { right: 24px; }

.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--amber-500);
}

.lightbox__nav svg,
.lightbox__close svg {
  width: 24px;
  height: 24px;
}

.lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.testimonials {
  position: relative;
  overflow: hidden;
}

.tslider {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  min-height: 230px;
}

.tslide {
  position: absolute;
  inset: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
}

.tslide.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  position: relative;
}

.tslide__stars {
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.tslide__quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.4;
  color: var(--cream);
  font-style: italic;
  margin-bottom: 24px;
}

.tslide__author {
  font-weight: 600;
  color: var(--amber-400);
}

.tslide__loc {
  font-size: 0.85rem;
  color: rgba(243, 236, 224, 0.6);
}

.tdots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 36px;
}

.tdots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: background 0.3s ease, transform 0.3s ease;
}

.tdots button.active {
  background: var(--amber-400);
  transform: scale(1.3);
}

.cta {
  position: relative;
  overflow: hidden;
}

.cta__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: stretch;
}

.cta__info {
  display: flex;
  flex-direction: column;
}

.contact-list {
  display: grid;
  gap: 20px;
  margin: 28px 0;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--green-900);
  color: var(--amber-400);
  flex-shrink: 0;
}

.contact-item__icon svg {
  width: 22px;
  height: 22px;
}

.contact-item h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.contact-item p,
.contact-item a {
  font-size: 1.02rem;
  color: var(--green-900);
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--amber-600);
}

.cta__map {
  margin-top: auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  height: 220px;
}

.cta__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(1.05);
}

.form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-md);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  margin-bottom: 18px;
  position: relative;
}

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--line-strong);
  background: var(--sand-50);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--amber-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(200, 132, 61, 0.12);
}

.form__note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 14px;
  text-align: center;
}

.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 140%);
  background: var(--green-800);
  color: var(--cream);
  padding: 15px 26px;
  border-radius: 100px;
  box-shadow: var(--shadow-lg);
  z-index: 400;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.92rem;
  transition: transform 0.5s var(--ease);
  max-width: 90vw;
}

.toast.show {
  transform: translate(-50%, 0);
}

.toast svg {
  width: 22px;
  height: 22px;
  color: var(--amber-400);
  flex-shrink: 0;
}

.footer {
  background: var(--green-950);
  color: rgba(243, 236, 224, 0.7);
  padding: clamp(56px, 7vw, 90px) 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .brand {
  color: var(--cream);
  margin-bottom: 20px;
}

.footer__about p {
  font-size: 0.92rem;
  max-width: 34ch;
  font-style: italic;
  font-family: var(--font-display);
  color: rgba(243, 236, 224, 0.78);
}

.footer h5 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  font-size: 0.92rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer__links a:hover {
  color: var(--amber-400);
  padding-left: 6px;
}

.footer__contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  align-items: flex-start;
}

.footer__contact svg {
  width: 18px;
  height: 18px;
  color: var(--amber-400);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.07);
  color: var(--cream);
  transition: background 0.3s ease, transform 0.3s ease;
}

.footer__social a:hover {
  background: var(--amber-500);
  transform: translateY(-4px);
}

.footer__social svg {
  width: 19px;
  height: 19px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  font-size: 0.84rem;
}

.footer__bottom a:hover {
  color: var(--amber-400);
}

.floats {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease), opacity 0.4s ease, visibility 0.4s ease;
}

.float-btn svg {
  width: 26px;
  height: 26px;
}

.float-btn--wa {
  background: #25d366;
  color: #fff;
}

.float-btn--top {
  background: var(--green-800);
  color: var(--cream);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.float-btn--top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.05);
}

@media (max-width: 1080px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .gallery__grid { columns: 3; }
  .amenities { grid-template-columns: repeat(3, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .nav__links,
  .nav__cta {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(360px, 86vw);
    background: var(--green-900);
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 80px 40px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    box-shadow: var(--shadow-lg);
  }
  body.nav-open .nav {
    transform: translateX(0);
  }
  body.nav-open .nav__links,
  body.nav-open .nav__cta {
    display: flex;
  }
  .nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
  }
  .nav__links a {
    color: var(--cream);
    font-size: 1.3rem;
    font-family: var(--font-display);
    padding: 12px 0;
    width: 100%;
  }
  .header.scrolled .nav__links a {
    color: var(--cream);
  }
  .nav__cta {
    margin-top: 24px;
  }
  body.nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(8, 24, 18, 0.5);
    z-index: 99;
    backdrop-filter: blur(2px);
  }
  .about__grid,
  .dining__grid,
  .attractions {
    grid-template-columns: 1fr;
  }
  .attractions__media {
    order: -1;
  }
  .tours__grid { grid-template-columns: repeat(2, 1fr); }
  .safari-banner { grid-template-columns: 1fr; }
  .safari-banner__media { min-height: 220px; }
  .cta__grid { grid-template-columns: 1fr; }
  .exp__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .rooms__grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .gallery__grid { columns: 2; }
  .dining__thumbs { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .form__row { grid-template-columns: 1fr; }
  .hero__meta-inner .hero__scroll { display: none; }
  .lightbox__nav { width: 46px; height: 46px; }
  .lightbox__nav.prev { left: 10px; }
  .lightbox__nav.next { right: 10px; }
}

@media (max-width: 520px) {
  .container { padding: 0 18px; }
  .amenities { grid-template-columns: repeat(2, 1fr); }
  .exp__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .exp.wide { grid-column: span 1; }
  .exp.tall { grid-row: span 1; }
  .gallery__grid { columns: 1; }
  .brand__name { font-size: 1.1rem; }
  .hero__title { font-size: clamp(2.1rem, 9vw, 3rem); }
}

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