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

:root {
  --forest: #2c4a2e;
  --forest-mid: #3d6b40;
  --forest-light: #5a8c5e;
  --cream: #f5f0e8;
  --cream-dark: #ede6d6;
  --ivory: #fdfaf5;
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --brown: #7a5c3a;
  --text-dark: #1c2b1d;
  --text-mid: #4a5e4b;
  --text-light: #8a9e8b;
  --white: #ffffff;
  --border: rgba(44, 74, 46, 0.12);
  --font-display: "Playfair Display", serif;
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Jost", sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: var(--text-dark);
}

body {
  background: var(--ivory);
  color: var(--text-dark);
  font-family: var(--font-body);
  overflow-x: hidden;
}



nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s, padding 0.4s;
}

nav.scrolled {
  background: #1c2b1d !important;
  background-color: #1c2b1d !important;
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.nav-logo-sub {
  font-size: 0.55rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--forest);
  color: var(--white) !important;
  padding: 0.65rem 1.6rem;
  border-radius: 1px;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  transition: background 0.3s, transform 0.2s !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-cta:hover {
  background: var(--forest-mid) !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;

  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.35s, opacity 0.35s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--text-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 3.5rem;
  padding-top: 8rem;
  gap: 1.2rem;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72);
  display: block;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(28, 43, 29, 0.3) 0%,
      rgba(28, 43, 29, 0.15) 40%,
      rgba(28, 43, 29, 0.55) 100%);
}

.hero-brush-top {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--ivory);
  clip-path: ellipse(55% 100% at 50% 0%);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
}

.hero-brush-bottom {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 140px;
  background: var(--ivory);
  clip-path: ellipse(60% 100% at 50% 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.25);
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  letter-spacing: 0.5px;
  max-width: 500px;
  margin: 0 auto;
}

.booking-bar {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: min(860px, 92vw);
  background: rgba(253, 250, 245, 0.96);
  backdrop-filter: blur(20px);
  border-radius: 2px;
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 0;
  border: 1px solid var(--border);
  box-shadow: 0 20px 80px rgba(28, 43, 29, 0.2);
}

.booking-field {
  padding: 0 1.5rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.booking-field:first-child {
  padding-left: 0;
}

.booking-field-label {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
}

.booking-field-val {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-dark);
  line-height: 1;
}

.booking-field-val span {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-left: 0.3rem;
}

.booking-btn {
  background: var(--forest);
  color: var(--white);
  border: none;
  padding: 0 2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  border-radius: 1px;
  white-space: nowrap;
}

.booking-btn:hover {
  background: var(--forest-mid);
}

.section {
  padding: 7rem 3rem;
}

.section-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--forest-light);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.05;
  color: var(--text-dark);
}

.section-title em {
  font-style: italic;
  color: var(--forest);
}

.section-body {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
  max-width: 520px;
}

.about {
  background: var(--cream);
  overflow: hidden;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text .section-body {
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--forest);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 1px;
  text-decoration: none;
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s;

  border: none;
}

.btn-primary:hover {
  background: var(--forest-mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(44, 74, 46, 0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(44, 74, 46, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.3s, color 0.3s;

}

.btn-ghost:hover {
  color: var(--forest-mid);
  border-color: var(--forest-mid);
}

.about-visual {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  filter: brightness(0.95);
}

.about-img-overlay {
  position: absolute;
  bottom: 2.5rem;
  left: -2.5rem;
  width: 65%;
  background: var(--forest);
  padding: 1.5rem 2rem;
  color: var(--white);
  border-radius: 2px;
}

.about-img-overlay-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold-light);
  line-height: 1;
}

.about-img-overlay-text {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.3rem;
}

.about-img-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.3s, background 0.3s;
}

.about-img-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--white);
}

.about-img-play svg {
  width: 22px;
  height: 22px;
  fill: var(--forest);
  margin-left: 3px;
}

.cabins {
  background: var(--ivory);
  padding: 7rem 0;
}

.cabins-header {
  text-align: center;
  padding: 0 3rem;
  margin-bottom: 4rem;
}

.cabin-slider-wrap {
  position: relative;
  overflow: hidden;
}

.cabin-slider {
  display: flex;
  gap: 1.5rem;
  padding: 0 3rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cabin-card {
  flex: 0 0 calc(33.33% - 1rem);
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
}

.cabin-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(28, 43, 29, 0.12);
}

.cabin-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.cabin-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.cabin-card:hover .cabin-img-wrap img {
  transform: scale(1.06);
}

.cabin-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--forest);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 1px;
  transform: rotate(-2deg);
}

.cabin-body {
  padding: 1.5rem;
}

.cabin-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.cabin-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.cabin-book {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--forest);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.65rem 1.3rem;
  border-radius: 1px;
  text-decoration: none;
  transition: background 0.3s;

}

.cabin-book:hover {
  background: var(--forest-mid);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding: 0 3rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--forest);
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: background 0.3s, border-color 0.3s;
}

.slider-btn:hover {
  background: var(--forest);
}

.slider-btn:hover svg {
  stroke: var(--white);
}

.slider-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--forest);
  fill: none;
  stroke-width: 2;
}

.wellbeing {
  background: var(--forest);
  padding: 7rem 3rem;
  overflow: hidden;
  position: relative;
}

.wellbeing-bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.wellbeing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.wellbeing-text .section-eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.wellbeing-text .section-title {
  color: var(--white);
}

.wellbeing-text .section-title em {
  color: var(--gold-light);
}

.wellbeing-text .section-body {
  color: rgba(255, 255, 255, 0.65);
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.wellbeing-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.wellbeing-img {
  border-radius: 2px;
  overflow: hidden;
}

.wellbeing-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 0.6s, filter 0.4s;
}

.wellbeing-img:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}

.wellbeing-img.tall {
  grid-row: span 2;
}

.wellbeing-img.tall img {
  height: 100%;
}

.eat {
  background: var(--cream-dark);
  padding: 7rem 3rem;
}

.eat-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
}

.eat-visual {
  position: relative;
}

.eat-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 2px;
  filter: brightness(0.92);
}

.eat-tag {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--text-dark);
  padding: 1.2rem 1.5rem;
  border-radius: 2px;
  text-align: center;
  font-family: var(--font-display);
}

.eat-tag strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
}

.eat-tag span {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
}

.eat-text .section-body {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.eat-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.eat-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.eat-feat-icon {
  width: 32px;
  height: 32px;
  background: rgba(44, 74, 46, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.eat-feat-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--forest);
  fill: none;
  stroke-width: 1.5;
}

.eat-feat-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

.eat-feat-desc {
  font-size: 0.78rem;
  color: var(--text-mid);
  font-weight: 300;
  margin-top: 0.2rem;
}

.story {
  background: var(--forest);
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.story-img {
  position: relative;
  overflow: hidden;
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.story-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(28, 43, 29, 0.4));
}

.story-content {
  padding: 7rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.story-content .section-eyebrow {
  color: rgba(255, 255, 255, 0.45);
}

.story-content .section-title {
  color: var(--white);
  max-width: 440px;
  margin-top: 0.5rem;
}

.story-content .section-title em {
  color: var(--gold-light);
}

.story-content .section-body {
  color: rgba(255, 255, 255, 0.65);
  margin-top: 1.5rem;
  margin-bottom: 3rem;
  max-width: 420px;
}

.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.story-stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold-light);
  line-height: 1;
}

.story-stat-label {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.3rem;
}

.map-section {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.map-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) sepia(20%);
}

.map-card {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  background: var(--forest);
  padding: 3rem;
  border-radius: 2px;
  min-width: 320px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.map-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.5;
}

.contact-val {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  line-height: 1.5;
}

.insta {
  background: var(--cream);
  padding: 5rem 3rem;
}

.insta-header {
  text-align: center;
  margin-bottom: 3rem;
}

.insta-header .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.insta-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 1px;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s, filter 0.4s;
  filter: brightness(0.9);
}

.insta-item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

.insta-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 74, 46, 0.5);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s;
}

.insta-item:hover .insta-item-overlay {
  opacity: 1;
}

.insta-follow {
  text-align: center;
}

.btn-insta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border: 1.5px solid var(--forest);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;

}

.btn-insta:hover {
  background: var(--forest);
  color: var(--white);
}

footer {
  background: var(--text-dark);
  padding: 4rem 3rem 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  display: block;
}

.footer-logo-sub {
  font-size: 0.55rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  display: block;
  margin-bottom: 1.2rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
  font-weight: 300;
  max-width: 240px;
}

.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 300;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

.footer-copy span {
  color: var(--gold-light);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

.aos-init {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-left"].aos-init {
  transform: translateX(40px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-right"].aos-init {
  transform: translateX(-40px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"].aos-init {
  transform: scale(0.92);
  opacity: 0;
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
  opacity: 1;
}

[data-aos="fade-up-slow"].aos-init {
  opacity: 0;
  transform: translateY(60px);
}

[data-aos="fade-up-slow"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img-overlay {
    left: 0;
  }

  .wellbeing-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .eat-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .eat-tag {
    right: 1rem;
    top: 1rem;
  }

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

  .story-img {
    height: 350px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .booking-bar {
    grid-template-columns: 1fr 1fr;
    row-gap: 1rem;
  }

  .booking-btn {
    grid-column: span 2;
    padding: 1rem;
  }
}

@media (max-width: 900px) {
  nav {
    padding: 1rem 1.5rem;
  }

  nav.scrolled {
    padding: 0.8rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .section {
    padding: 5rem 1.5rem;
  }

  .cabins {
    padding: 5rem 0;
  }

  .cabin-slider {
    padding: 0 1.5rem;
  }

  .cabin-card {
    flex: 0 0 calc(80% - 1rem);
  }

  .story-content {
    padding: 4rem 1.5rem;
  }

  .wellbeing {
    padding: 5rem 1.5rem;
  }

  .eat {
    padding: 5rem 1.5rem;
  }

  .insta {
    padding: 4rem 1.5rem;
  }

  .map-card {
    right: 5%;
    min-width: 280px;
    padding: 2rem;
  }

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

  footer {
    padding: 3rem 1.5rem 1.5rem;
  }

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

@media (max-width: 600px) {
  .hero-h1 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .booking-bar {
    grid-template-columns: 1fr;
    bottom: 60px;
  }

  .booking-field {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0 0 0.8rem;
  }

  .booking-field:last-of-type {
    border-bottom: none;
  }

  .cabin-card {
    flex: 0 0 calc(90% - 1rem);
  }

  .story-stats {
    grid-template-columns: 1fr 1fr;
  }

  .eat-features {
    grid-template-columns: 1fr;
  }

  .wellbeing-imgs {
    grid-template-columns: 1fr;
  }

  .map-section {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .map-bg {
    height: 300px;
    object-fit: cover;
  }

  .map-card {
    position: static;
    transform: none;
    border-radius: 0;
    width: 100%;
    min-width: unset;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}