@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Jost:wght@300;400&display=swap');

:root {
  --linen: #F5F1EB;
  --sand: #EDE6DC;
  --stone: #C9BFA8;
  --bark: #8C7B65;
  --earth: #2E2A25;
  --forest: #4A6B5B;
  --white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.8;
  color: var(--earth);
  background-color: var(--linen);
}

/* ─── TYPOGRAPHY ─── */

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}

h1 {
  font-size: 56px;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

h2 {
  font-size: 36px;
  font-weight: 400;
}

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
}

p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}

a {
  color: var(--bark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ─── LAYOUT ─── */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.body-copy {
  max-width: 640px;
}

section {
  padding: 120px 0;
}

hr, .divider {
  border: none;
  border-top: 0.5px solid var(--stone);
  margin: 0;
}

/* ─── BUTTONS ─── */

.btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 12px 32px;
  border: 1px solid var(--forest);
  color: var(--forest);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  background: var(--forest);
  color: var(--white);
  text-decoration: none;
}

.btn-white {
  border-color: var(--white);
  color: var(--white);
}

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

/* ─── ARROW LINK ─── */

.arrow-link {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
  border-bottom: 0.5px solid var(--forest);
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}

.arrow-link:hover {
  opacity: 0.7;
  text-decoration: none;
}

/* ─── LABEL ─── */

.label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bark);
}

/* ─── IMAGE PLACEHOLDER ─── */

.img-placeholder {
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.img-placeholder span {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  color: var(--bark);
  text-align: center;
  padding: 16px;
}

/* ─── NAVIGATION ─── */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s ease, border-bottom 0.3s ease, padding 0.3s ease;
  padding: 20px 0;
}

nav.scrolled {
  background: var(--white);
  border-bottom: 0.5px solid var(--stone);
  padding: 16px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

nav.scrolled .nav-logo {
  color: var(--earth);
}

.nav-links {
  display: flex;
  gap: 16px;
  list-style: none;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

.nav-links li {
  white-space: nowrap;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--white);
  text-decoration: none;
}

nav.scrolled .nav-links a {
  color: var(--bark);
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

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

nav.scrolled .hamburger span {
  background: var(--earth);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  list-style: none;
}

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

.mobile-nav a {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bark);
  text-decoration: none;
}

.mobile-nav a:hover {
  color: var(--earth);
}

/* ─── HERO ─── */

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

.hero-short {
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--sand);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.28) 0%,
    rgba(0,0,0,0.05) 60%,
    rgba(0,0,0,0.0) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 680px;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  transform: translateY(-8%);
}

@media (max-width: 768px) {
  .hero-content {
    max-width: 100%;
    padding: 0 40px;
  }
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 0;
}

.hero-content .hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--white);
  display: block;
}

.hero-actions {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
}

.hero-cta-primary:hover,
.hero-cta-secondary:hover {
  text-decoration: none;
}

/* ─── FOOTER ─── */

footer {
  background: var(--earth);
  padding: 64px 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.footer-inner p,
.footer-inner a {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--stone);
  text-decoration: none;
}

.footer-inner a:hover {
  color: var(--white);
  text-decoration: none;
}

.footer-center {
  text-align: center;
  display: flex;
  gap: 24px;
  justify-content: center;
}

.footer-right {
  text-align: right;
}

/* ─── SCROLL ANIMATION ─── */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── INDEX — ORIENTATION ─── */

.orientation {
  background: var(--linen);
  text-align: center;
}

.orientation-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.7;
  color: var(--earth);
}

.orientation-sub {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--bark);
}

/* ─── THREE PILLARS ─── */

.pillars {
  background: var(--sand);
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 80px;
}

.pillar-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 16px;
}

.pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--earth);
}

.pillar p {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--bark);
  line-height: 1.7;
}

/* ─── STAY FEATURE ─── */

.stay-feature {
  background: var(--linen);
}

.stay-split {
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 80px;
  align-items: center;
}

.stay-split .img-placeholder {
  height: 440px;
}

.stay-text .label {
  display: block;
  margin-bottom: 24px;
}

.stay-text h2 {
  margin-bottom: 24px;
}

.stay-text p {
  color: var(--bark);
  margin-bottom: 32px;
  font-size: 17px;
}

/* ─── EXPERIENCES PREVIEW ─── */

.experiences-preview {
  background: var(--sand);
}

.experiences-heading {
  text-align: center;
  margin-bottom: 72px;
}

.exp-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.exp-card .img-placeholder {
  height: 200px;
  margin-bottom: 24px;
}

.exp-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--earth);
}

.exp-card p {
  font-size: 15px;
  color: var(--bark);
  font-weight: 300;
}

.exp-link-wrap {
  text-align: center;
}

/* ─── PULL QUOTE ─── */

.pull-quote-section {
  background: var(--linen);
  text-align: center;
}

.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto 16px;
  line-height: 1.7;
  color: var(--earth);
}

.pull-quote-attr {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--bark);
}

/* ─── GETTING THERE TEASER ─── */

.getting-there-teaser {
  background: var(--sand);
  text-align: center;
}

.getting-there-teaser .label {
  display: block;
  margin-bottom: 24px;
}

.getting-there-teaser p {
  max-width: 560px;
  margin: 0 auto 40px;
  color: var(--bark);
  font-size: 17px;
}

/* ─── CTA SECTION ─── */

.cta-section {
  background: var(--earth);
  text-align: center;
  padding: 120px 0;
}

.cta-section h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 48px;
}

/* ─── INNER PAGE HERO ─── */

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

/* ─── ABOUT ─── */

.about-content {
  background: var(--linen);
}

.about-body {
  max-width: 640px;
  margin: 0 auto;
}

.about-body p {
  color: var(--bark);
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 1.6;
}

.about-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-image {
    float: none !important;
    width: 100% !important;
    height: 240px !important;
    margin: 24px 0 !important;
  }
}

/* ─── STAY ─── */

.stay-rooms {
  background: var(--linen);
}

.room {
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 0.5px solid var(--stone);
}

.room:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.room .img-placeholder {
  height: 320px;
  margin-bottom: 40px;
}

.room h2 {
  margin-bottom: 16px;
}

.room > p {
  color: var(--bark);
  margin-bottom: 24px;
  font-size: 17px;
  max-width: 640px;
}

.room-amenities {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--bark);
  letter-spacing: 0.03em;
}

.stay-packages {
  background: var(--sand);
}

.package {
  max-width: 640px;
  margin: 0 auto 64px;
  padding-bottom: 64px;
  border-bottom: 0.5px solid var(--stone);
}

.package:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.package .label {
  display: block;
  margin-bottom: 20px;
}

.package p {
  color: var(--bark);
  font-size: 17px;
  margin-bottom: 16px;
}

.package .rates-note {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--stone);
  letter-spacing: 0.05em;
  font-style: italic;
}

/* ─── EXPERIENCES PAGE ─── */

.experiences-body {
  background: var(--linen);
}

.experiences-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
  color: var(--bark);
  font-size: 17px;
}

.experience-item {
  max-width: 640px;
  margin: 0 auto 72px;
  padding-bottom: 72px;
  border-bottom: 0.5px solid var(--stone);
}

.experience-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.experience-item h2 {
  margin-bottom: 8px;
}

.experience-schedule {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 24px;
  display: block;
}

.experience-item p {
  color: var(--bark);
  font-size: 17px;
}

/* ─── GETTING THERE PAGE ─── */

.getting-there-body {
  background: var(--linen);
}

.getting-there-col {
  max-width: 640px;
  margin: 0 auto;
}

.getting-there-col h3 {
  margin-bottom: 16px;
  margin-top: 56px;
}

.getting-there-col h3:first-child {
  margin-top: 0;
}

.getting-there-col p {
  color: var(--bark);
  font-size: 17px;
  margin-bottom: 24px;
}

.getting-there-col .section-note {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--stone);
  font-style: italic;
  margin-top: 48px;
  display: block;
}

/* ─── CONTACT PAGE ─── */

.contact-section {
  background: var(--linen);
  padding-top: 200px;
  padding-bottom: 120px;
  text-align: center;
}

.contact-section h1 {
  font-size: 52px;
  margin-bottom: 40px;
}

.contact-intro {
  max-width: 560px;
  margin: 0 auto 64px;
  color: var(--bark);
  font-size: 17px;
}

.contact-form {
  max-width: 560px;
  margin: 0 auto 64px;
  text-align: left;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  height: 40px;
  border: 0.5px solid var(--stone);
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--earth);
  padding: 0 16px;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--bark);
  opacity: 0.7;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--forest);
}

.form-group textarea {
  height: 140px;
  padding: 12px 16px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  cursor: pointer;
  color: var(--bark);
}

.form-group select option {
  color: var(--earth);
}

.form-submit {
  text-align: center;
  margin-top: 40px;
}

.form-submit button {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 12px 32px;
  border: 1px solid var(--forest);
  color: var(--forest);
  background: transparent;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.25s ease, color 0.25s ease;
}

.form-submit button:hover {
  background: var(--forest);
  color: var(--white);
}

.contact-details {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.contact-details p {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--bark);
  margin-bottom: 8px;
}

.contact-details a {
  color: var(--forest);
}

/* ─── FAQ PAGE ─── */

.faq-section {
  background: var(--linen);
  padding-top: 160px;
  padding-bottom: 120px;
}

.faq-section h1 {
  max-width: 640px;
  margin: 0 auto 80px;
}

.faq-body {
  max-width: 640px;
  margin: 0 auto;
}

.faq-item {
  margin-top: 48px;
}

.faq-item:first-child {
  margin-top: 0;
}

.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--earth);
  margin-bottom: 8px;
}

.faq-a {
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: var(--bark);
  line-height: 1.8;
}

/* ─── ENQUIRY TOGGLE ─── */

.enquiry-toggle {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

.enquiry-btn {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 10px 28px;
  border: 0.5px solid var(--stone);
  background: transparent;
  color: var(--bark);
  cursor: pointer;
  border-radius: 2px;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

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

.enquiry-btn.active {
  border-color: var(--forest);
  color: var(--forest);
  background: transparent;
}

/* ─── HIRE STATS GRID ─── */

.hire-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
  margin-top: 8px;
}

.hire-stat .label {
  display: block;
  margin-bottom: 8px;
}

.hire-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--earth);
  line-height: 1.2;
}

/* ─── RESPONSIVE ─── */

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-content .hero-sub {
    font-size: 36px;
  }

  section {
    padding: 80px 0;
  }

  .container {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .stay-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .exp-cards {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .footer-center {
    flex-direction: column;
    gap: 12px;
  }

  .footer-right {
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    gap: 20px;
  }

  .nav-logo {
    font-size: 16px;
  }

  .contact-section {
    padding-top: 140px;
  }

  .contact-section h1 {
    font-size: 36px;
  }

  .faq-section {
    padding-top: 120px;
  }
}

.retreat-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  padding: 12px 0;
  margin: 0;
  list-style: none;
  border-top: 0.5px solid var(--stone);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease, visibility 200ms ease;
}

.retreat-dropdown a {
  font-family: 'Jost', sans-serif !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--bark) !important;
  text-decoration: none !important;
  display: block !important;
  padding: 10px 20px !important;
  white-space: normal !important;
  word-wrap: break-word !important;
  line-height: 1.5 !important;
}

li:hover .retreat-dropdown {
  display: block;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .retreat-dropdown {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border-top: none;
    padding: 0 0 0 16px;
    min-width: unset;
    transition: none;
    box-shadow: none;
  }

  li.dropdown-active .retreat-dropdown {
    display: block;
  }
}

@media (max-width: 768px) {
  #carousel-track {
    flex-direction: column;
    transform: none !important;
    transition: none;
  }
  #carousel-track > div {
    flex: 0 0 100%;
    padding: 0 0 40px 0;
  }
  #carousel-dots {
    display: none;
  }
}

@media (max-width: 768px) {
  .cta-section,
  .retreat-cta {
    display: none !important;
  }
}
