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

:root {
  --deep-ocean: #1a2a3a;
  --cream: #f5f0ea;
  --warm-stone: #c4b5a4;
  --muted-sand: #e8e0d4;
  --text-dark: #2a2a2a;
  --text-light: #8a8278;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  background-color: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 24px;
  text-align: center;
}

/* ========================
   NAVIGATION
   ======================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}

.nav.scrolled {
  background: rgba(245, 240, 234, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--muted-sand);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.4s ease;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--deep-ocean);
  transition: width 0.4s ease;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

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

.nav-toggle.active span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.active span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* ========================
   HERO
   ======================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-bg img {
  filter: saturate(0.85) brightness(1.02);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(26, 42, 58, 0.35) 0%,
    rgba(26, 42, 58, 0.25) 50%,
    var(--cream) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.5s ease-out forwards;
}

.hero-title {
  line-height: 1;
}

.hero-wordmark {
  height: auto;
  width: clamp(380px, 55vw, 700px);
  object-fit: contain;
  filter: none;
  display: block;
  margin: 0 auto;
}

.hero-divider {
  width: 40px;
  height: 1px;
  background: var(--warm-stone);
  margin: 32px auto;
}

.hero-tagline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.5s ease-out 0.3s forwards;
}

.hero-slogan {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(11px, 1.5vw, 14px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 1.5s ease-out 0.6s forwards;
  margin-top: 20px;
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.scroll-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.7;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--warm-stone);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { top: -100%; }
  100% { top: 100%; }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================
   ETHOS
   ======================== */
.ethos {
  text-align: center;
  padding: 120px 24px 100px;
}

.ethos-inner {
  max-width: 620px;
  margin: 0 auto;
}

.ethos-lead {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.3;
  color: var(--deep-ocean);
  letter-spacing: -0.01em;
}

.ethos-divider {
  width: 30px;
  height: 1px;
  background: var(--warm-stone);
  margin: 36px auto;
}

.ethos-inner p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.9;
  color: var(--text-dark);
  margin-top: 20px;
}

.ethos-inner p.ethos-lead {
  margin-top: 0;
}



/* ========================
   SLOW STAYS
   ======================== */
.stays-section {
  padding: 80px 48px 100px;
  text-align: center;
}

.stays-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-light);
  margin-bottom: 48px;
}

.stays-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.stay-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.stay-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.95);
  transition: transform 1.2s cubic-bezier(0.25, 0, 0.15, 1), filter 0.6s ease;
}

.stay-card:hover img {
  transform: scale(1.06);
  filter: saturate(0.9) brightness(1);
}

.stay-card-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 42, 58, 0.6) 0%,
    rgba(26, 42, 58, 0.1) 50%,
    transparent 100%
  );
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 20px;
}

.stay-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}

.stay-card-location {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
}

/* ========================
   INDEX PAGES
   ======================== */
.index-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 48px 100px;
}

.index-header {
  margin-bottom: 64px;
}

.index-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(40px, 6vw, 64px);
  color: var(--text-dark);
  margin-top: 16px;
  line-height: 1;
}

.index-list {
  display: flex;
  flex-direction: column;
}

.index-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid var(--muted-sand);
  text-decoration: none;
  color: inherit;
  gap: 24px;
  transition: opacity 0.3s ease;
}

.index-item:first-child {
  border-top: 1px solid var(--muted-sand);
}

.index-item:hover {
  opacity: 0.55;
}

.index-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--text-dark);
  transition: letter-spacing 0.4s ease;
}

.index-item:hover .index-item-name {
  letter-spacing: 0.5px;
}

.index-item-location {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}

.index-country-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--warm-stone);
  padding-top: 48px;
  padding-bottom: 4px;
}

.index-country-label:first-child {
  padding-top: 0;
}

.index-view-all {
  display: inline-block;
  margin-top: 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 1px solid var(--warm-stone);
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.index-view-all:hover {
  color: var(--text-dark);
  border-color: var(--text-dark);
}

/* ========================
   ON THE GROUND
   ======================== */
.on-the-ground {
  padding: 80px 48px 100px;
  text-align: center;
}

.on-the-ground-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--text-light);
  margin-bottom: 32px;
}

.on-the-ground-links {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.on-the-ground-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.4s ease;
}

.on-the-ground-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--deep-ocean);
  transition: width 0.4s ease;
}

.on-the-ground-links a:hover::after {
  width: 100%;
}

/* ========================
   PLACES
   ======================== */
.places-section {
  padding: 80px 48px 100px;
  text-align: center;
}

.places-grid {
  max-width: 800px;
  margin: 0 auto 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.place-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--text-dark);
  line-height: 1;
  padding: 12px 0;
}

.place-name::after {
  content: '\00b7';
  margin: 0 16px;
  color: var(--warm-stone);
}

.place-name:last-child::after {
  display: none;
}

.places-count {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ========================
   FOOTER
   ======================== */
.footer {
  border-top: 1px solid var(--muted-sand);
  padding: 80px 48px;
  text-align: center;
}

.footer-inner {
  max-width: 480px;
  margin: 0 auto;
}

.footer-logo {
  display: block;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: inline-block;
}

.footer-bio {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 28px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
}

.footer-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.4s ease;
}

.footer-links a:hover {
  color: var(--deep-ocean);
}

.footer-email {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 40px;
  transition: color 0.4s ease;
}

.footer-email:hover {
  color: var(--deep-ocean);
}

.footer-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--warm-stone);
}

/* ========================
   PICK DETAIL PAGE
   ======================== */
.nav-back {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 2px;
}

.nav-back::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--deep-ocean);
  transition: width 0.4s ease;
}

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

.pick-detail {
  padding-top: 100px;
}

.pick-detail-image {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.pick-detail-image img {
  filter: saturate(0.85) brightness(1.02);
}

.pick-detail-content {
  max-width: 620px;
  margin: 0 auto;
  padding: 60px 24px 100px;
  text-align: center;
}

.pick-detail-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(32px, 5vw, 48px);
  color: var(--deep-ocean);
  margin-bottom: 8px;
}

.pick-detail-location {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-light);
  margin-bottom: 0;
}

.pick-detail-divider {
  width: 30px;
  height: 1px;
  background: var(--warm-stone);
  margin: 36px auto;
}

.pick-detail-body p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 24px;
  text-align: justify;
  text-justify: inter-word;
}

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

.pick-detail-secondary-image {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.pick-detail-secondary-image img {
  filter: saturate(0.85) brightness(1.02);
}

.pick-detail-back {
  display: inline-block;
  margin-top: 48px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.4s ease;
}

.pick-detail-back::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--warm-stone);
}

.pick-detail-back:hover {
  color: var(--deep-ocean);
}

/* ========================
   GUIDES SECTION (Homepage)
   ======================== */
.guides-section {
  padding: 80px 48px 100px;
  text-align: center;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.guide-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}

.guide-card img {
  filter: saturate(0.8) brightness(0.95);
  transition: transform 1.2s cubic-bezier(0.25, 0, 0.15, 1), filter 0.6s ease;
}

.guide-card:hover img {
  transform: scale(1.06);
  filter: saturate(0.9) brightness(1);
}

.guide-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 42, 58, 0.6) 0%,
    rgba(26, 42, 58, 0.1) 50%,
    transparent 100%
  );
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 20px;
}

.guide-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--white);
  line-height: 1.2;
}

.guide-card-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
}

/* ========================
   GUIDE / STAY SPLIT LAYOUT
   ======================== */
.guide-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 88vh;
  margin-top: 80px;
}

.guide-split-image {
  overflow: hidden;
  min-height: 450px;
}

.guide-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) brightness(0.97);
}

.guide-split-text {
  background: var(--cream);
  padding: 72px 72px 100px 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

.guide-split-text::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 50%;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid rgba(60, 50, 40, 0.4);
  border-bottom: 1.5px solid rgba(60, 50, 40, 0.4);
  transform: translateX(-50%) rotate(45deg);
  animation: scrollArrow 2.5s ease-in-out infinite;
}

@keyframes scrollArrow {
  0%, 100% {
    transform: translateX(-50%) translateY(0) rotate(45deg);
    opacity: 0.3;
  }
  50% {
    transform: translateX(-50%) translateY(6px) rotate(45deg);
    opacity: 0.65;
  }
}

.guide-split-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(60, 50, 40, 0.45);
  margin-bottom: 20px;
}

.guide-split-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 62px);
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 12px;
}

.guide-split-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(15px, 1.6vw, 20px);
  color: rgba(60, 50, 40, 0.6);
}

.guide-split-body {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(60, 50, 40, 0.12);
}

.guide-split-body p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.85;
  color: var(--text-dark);
  margin-bottom: 1.2em;
}

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

/* ========================
   GUIDE DETAIL PAGE (legacy hero — kept for any standalone use)
   ======================== */
.guide-hero {
  position: relative;
  height: 70vh;
  min-height: 450px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

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

.guide-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.85) brightness(0.95);
}

.guide-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(26, 42, 58, 0.4) 70%,
    var(--cream) 100%
  );
}

.guide-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.5s ease-out forwards;
}

.guide-hero-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.guide-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(40px, 7vw, 72px);
  color: var(--white);
  line-height: 1;
}

.guide-hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.85);
  margin-top: 16px;
}

.guide-content {
  max-width: 660px;
  margin: 0 auto;
  padding: 80px 24px 100px;
}

.guide-intro {
  text-align: center;
  margin-bottom: 80px;
}

.guide-intro p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.8;
  color: var(--text-dark);
}

.guide-section {
  margin-bottom: 80px;
}

.guide-section-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 40px;
  text-align: center;
}

.guide-section-divider {
  width: 30px;
  height: 1px;
  background: var(--warm-stone);
  margin: 0 auto 40px;
}

.guide-item {
  margin-bottom: 48px;
}

.guide-item:last-child {
  margin-bottom: 0;
}

.guide-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 28px);
  color: var(--deep-ocean);
  margin-bottom: 8px;
  text-align: center;
}

.guide-item-detail {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 16px;
  text-align: center;
}

.guide-item p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.8;
  color: var(--text-dark);
  text-align: justify;
  text-justify: inter-word;
}

.guide-dos-donts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.guide-dos-donts-column h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 28px);
  color: var(--deep-ocean);
  margin-bottom: 24px;
  text-align: center;
}

.guide-dos-donts-column ul {
  list-style: none;
  padding: 0;
}

.guide-dos-donts-column li {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
  color: var(--text-dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--muted-sand);
}

.guide-dos-donts-column li:last-child {
  border-bottom: none;
}

.guide-back {
  display: inline-block;
  margin-top: 48px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.4s ease;
}

.guide-back::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--warm-stone);
}

.guide-back:hover {
  color: var(--deep-ocean);
}

.guide-footer-link {
  text-align: center;
  margin-top: 20px;
}

/* ========================
   REVEAL ANIMATIONS
   ======================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

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

.reveal-stagger {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* ========================
   MOBILE MENU OVERLAY
   ======================== */
.nav-links.open {
  display: flex;
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 900px) {
  .nav-inner {
    padding: 20px 24px;
  }

  .footer {
    padding: 60px 24px;
  }

  .places-section {
    padding: 60px 24px 80px;
  }

  .guides-section {
    padding: 60px 24px 80px;
  }

  .guides-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stays-section {
    padding: 60px 24px 80px;
  }

  .stays-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .index-page {
    padding: 100px 24px 80px;
  }

  .index-item-name {
    font-size: 24px;
  }

  .index-item-location {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .guide-content {
    padding: 60px 24px 80px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 240, 234, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }

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

  .nav-links a {
    font-size: 16px;
    letter-spacing: 3px;
  }

  .ethos {
    padding: 80px 24px 60px;
  }

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

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

  .guide-dos-donts {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .guide-hero {
    height: 55vh;
    min-height: 350px;
  }

  .guide-split {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .guide-split-image {
    height: 70vw;
    min-height: 280px;
  }

  .guide-split-text {
    padding: 48px 28px 56px;
    justify-content: flex-start;
  }

  .guide-split-body {
    margin-top: 32px;
    padding-top: 28px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    letter-spacing: 4px;
  }

  .guide-hero-title {
    font-size: 26px;
  }
}

@media (max-width: 400px) {
  .guide-card-title {
    font-size: 16px;
  }

  .guide-card-subtitle {
    font-size: 8px;
    letter-spacing: 1.5px;
  }

  .stay-card-name {
    font-size: 16px;
  }

  .stay-card-location {
    font-size: 8px;
    letter-spacing: 1.5px;
  }
}
