/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sand:    #f5efe6;
  --sand-2:  #ede3d5;
  --terra:   #c4844a;
  --terra-d: #9e6135;
  --olive:   #5c6b3a;
  --stone:   #3a3530;
  --white:   #fdfaf6;
  --ink:     #1e1a16;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.45, 0, 0.55, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}

/* ─── NAV ──────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  transition: background .5s, padding .5s;
}
nav.scrolled {
  background: rgba(253,250,246,.94);
  backdrop-filter: blur(12px);
  padding: 1rem 4rem;
  box-shadow: 0 1px 0 rgba(58,53,48,.08);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
  filter: invert(1);
  mix-blend-mode: screen;
  transition: filter .4s;
}
nav.scrolled .nav-logo-img {
  filter: none;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,.85);
  transition: color .3s;
}
nav.scrolled .nav-links a { color: var(--stone); }
.nav-links a:hover { color: var(--terra) !important; }

.nav-lang {
  font-family: var(--font-sans);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color .4s;
}
nav.scrolled .nav-lang { color: var(--stone); }

.nav-lang button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 .3rem;
  font: inherit;
  color: inherit;
  opacity: .6;
  transition: opacity .3s, color .3s;
}
.nav-lang button.active { opacity: 1; color: var(--terra); }

/* ─── HERO ─────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* Slides */
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s var(--ease-in-out),
              transform 7s var(--ease-in-out);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}


/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,26,22,.15) 0%,
    rgba(30,26,22,.05) 40%,
    rgba(30,26,22,.6) 100%
  );
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4rem 5rem;
  max-width: 700px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s .4s var(--ease-out-expo) forwards;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .9s .55s var(--ease-out-expo) forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--sand);
}
.hero-subtitle {
  font-size: .9rem;
  font-weight: 300;
  letter-spacing: .05em;
  color: rgba(245,239,230,.8);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s .7s var(--ease-out-expo) forwards;
}

.hero-ctas {
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s .85s var(--ease-out-expo) forwards;
}
.hero-ctas .btn-primary,
.hero-ctas .btn-ghost {
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2rem;
  background: var(--terra);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .3s, transform .3s var(--ease-out-expo);
}
.btn-primary:hover { background: var(--terra-d); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.5);
  cursor: pointer;
  transition: border-color .3s, background .3s;
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}

/* Slide dots */
.hero-dots {
  position: absolute;
  right: 4rem;
  bottom: 5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.hero-dot {
  width: 2px;
  height: 24px;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: background .3s, height .3s;
}
.hero-dot.active {
  height: 40px;
  background: var(--terra);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}
.scroll-hint span {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s 2s infinite;
}

/* ─── SECTION SHARED ───────────────────────────────────────── */
section { padding: 7rem 4rem; }

.section-label {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
}
.section-title em { font-style: italic; }

/* ─── INTRO / ABOUT ────────────────────────────────────────── */
#about {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: #5a5248;
  margin-top: 1.5rem;
  font-weight: 300;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.stat {
  border-top: 1px solid var(--sand-2);
  padding-top: 1rem;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--terra);
  line-height: 1;
}
.stat-label {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #888;
  margin-top: .3rem;
}
.about-image {
  position: relative;
}
.about-image-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

/* ─── FEATURES ─────────────────────────────────────────────── */
#features {
  background: var(--sand);
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.features-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature-card {
  background: var(--white);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease-out-expo);
}
.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out-expo);
}
.feature-card:hover { transform: translateY(-4px); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.feature-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: .7rem;
}
.feature-desc {
  font-size: .85rem;
  line-height: 1.7;
  color: #7a7068;
  font-weight: 300;
}

/* ─── GALLERY ───────────────────────────────────────────────── */
#gallery {
  background: var(--sand);
  padding: 7rem 4rem;
}
.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-header { margin-bottom: 3rem; }

.gallery-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--sand-2);
  margin-bottom: 2.5rem;
}
.gallery-tab {
  background: none;
  border: none;
  cursor: pointer;
  padding: .75rem 2rem;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #999;
  position: relative;
  transition: color .3s;
}
.gallery-tab::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out-expo);
}
.gallery-tab.active { color: var(--terra); }
.gallery-tab.active::after { transform: scaleX(1); }
.gallery-tab:hover { color: var(--terra); }

.gallery-panel { display: none; }
.gallery-panel.active { display: block; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform .5s var(--ease-out-expo), opacity .3s;
}
.gallery-grid img:hover { transform: scale(1.03); opacity: .88; }

/* ─── LIGHTBOX ──────────────────────────────────────────────── */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.93);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }

#lightbox-img {
  max-width: 88vw;
  max-height: 86vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 8px 60px rgba(0,0,0,.6);
}
#lightbox-close {
  position: absolute;
  top: 1.2rem; right: 1.8rem;
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 2.4rem;
  cursor: pointer;
  line-height: 1;
  transition: color .2s;
}
#lightbox-close:hover { color: #fff; }

#lightbox-prev,
#lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.8);
  font-size: 2rem;
  padding: .6rem 1.1rem;
  cursor: pointer;
  transition: background .2s, color .2s;
  line-height: 1;
}
#lightbox-prev:hover,
#lightbox-next:hover { background: rgba(255,255,255,.18); color: #fff; }
#lightbox-prev { left: 1.5rem; }
#lightbox-next { right: 1.5rem; }

#lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: .72rem;
  letter-spacing: .15em;
  color: rgba(255,255,255,.4);
  font-family: var(--font-sans);
}

/* ─── 360 VIEWER ───────────────────────────────────────────── */
#spin360 {
  padding: 6rem 2rem;
  background: var(--sand);
  text-align: center;
}

.spin-wrap {
  position: relative;
  max-width: 900px;
  margin: 2.5rem auto 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

#spin-canvas {
  display: block;
  width: 100%;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  background: var(--sand-2);
}

.spin-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,.45);
  color: #fff;
  font-family: var(--font-sans);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .55rem 1.2rem;
  border-radius: 2rem;
  pointer-events: none;
  transition: opacity .4s ease;
  white-space: nowrap;
}
.spin-hint.hidden { opacity: 0; }

.spin-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,.2);
}
.spin-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--terra);
  transition: width .05s linear;
}

[data-theme="dark"] #spin360 { background: var(--sand); }

/* ─── AMENITIES ────────────────────────────────────────────── */
#amenities {
  background: var(--stone);
  color: var(--white);
}
.amenities-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.amenities-inner .section-title { color: var(--sand); }
.amenities-inner .section-label { color: var(--terra); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  border: 1px solid rgba(255,255,255,.08);
}
.amenity-item {
  padding: 1rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .82rem;
  font-weight: 300;
  letter-spacing: .04em;
  color: rgba(245,239,230,.75);
  transition: background .3s, color .3s;
}
.amenity-item::before {
  content: '✓';
  color: var(--terra);
  font-size: .8rem;
  font-weight: 600;
  flex-shrink: 0;
}
.amenity-item:hover {
  background: rgba(196,132,74,.08);
  color: var(--sand);
}

/* ─── LOCATION ─────────────────────────────────────────────── */
#location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}
.location-info {
  background: var(--sand);
  padding: 7rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-info p {
  font-size: .9rem;
  line-height: 1.9;
  color: #6a6058;
  font-weight: 300;
  margin-top: 1.5rem;
}
.location-distances {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.distance-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--sand-2);
  font-size: .82rem;
}
.distance-place { color: var(--stone); font-weight: 400; }
.distance-km {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--terra);
}

.location-map {
  min-height: 400px;
  position: relative;
  isolation: isolate;
}

#map {
  width: 100%;
  height: 100%;
  min-height: 400px;
}
.map-placeholder {
  text-align: center;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.map-placeholder p { margin-top: .5rem; font-size: .7rem; }

/* ─── BOOKING / CTA ────────────────────────────────────────── */
#booking {
  background: var(--terra);
  text-align: center;
  padding: 6rem 4rem;
}
#booking .section-label { color: rgba(255,255,255,.6); }
#booking .section-title { color: var(--white); margin-bottom: 1rem; }
#booking p {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2.5rem;
  background: var(--white);
  color: var(--terra);
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .3s, transform .3s var(--ease-out-expo);
}
.btn-white:hover {
  background: var(--sand);
  transform: translateY(-2px);
}

/* Pricing cards */
.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}
.pricing-card {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  padding: 2rem 2.5rem;
  color: var(--white);
  min-width: 180px;
  text-align: center;
}
.pricing-season {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: .5rem;
}
.pricing-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
}
.pricing-note {
  font-size: .7rem;
  opacity: .6;
  margin-top: .3rem;
}

/* ─── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(245,239,230,.5);
  padding: 4rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo {
  margin-bottom: .8rem;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: invert(1);
  mix-blend-mode: screen;
}
.footer-tagline {
  font-size: .8rem;
  line-height: 1.8;
  font-weight: 300;
}
.footer-heading {
  font-family: var(--font-sans);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.2rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-links a {
  font-size: .82rem;
  color: rgba(245,239,230,.5);
  text-decoration: none;
  transition: color .3s;
}
.footer-links a:hover { color: var(--terra); }

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
}

/* ─── REVEAL ANIMATIONS ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ─── KEYFRAMES ────────────────────────────────────────────── */
@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: .3; transform: scaleY(.6); }
}

/* ─── MOBILE ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 2rem; }
  nav.scrolled { padding: .8rem 2rem; }
  .nav-links { display: none; }

  section { padding: 5rem 2rem; }
  #about { grid-template-columns: 1fr; gap: 3rem; }

  .features-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  #location { grid-template-columns: 1fr; }
  .location-info { padding: 4rem 2rem; }
  .location-map { min-height: 300px; }
  #gallery { padding: 5rem 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-tab { padding: .75rem 1.2rem; }
  .hero-content { padding: 0 2rem 4rem; }
  .hero-dots { right: 1.5rem; bottom: 4rem; }
}

/* ─── SMALL SCREENS ────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero-ctas { display: grid; grid-auto-flow: row; grid-auto-columns: unset; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost { width: 100%; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > div:first-child {
    grid-column: 1 / -1;
    text-align: center;
  }
  .footer-inner > div:first-child .footer-logo-img { margin: 0 auto; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

/* ─── NAV CONTROLS ─────────────────────────────────────────── */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ─── THEME TOGGLE ─────────────────────────────────────────── */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  padding: 0;
  line-height: 1;
  transition: color .3s;
}
nav.scrolled .theme-toggle { color: var(--stone); }
.theme-toggle:hover { color: var(--terra) !important; }

/* ─── DARK MODE ─────────────────────────────────────────────── */
[data-theme="dark"] {
  --sand:   #252018;
  --sand-2: #32291f;
  --white:  #1c1814;
  --ink:    #ede3d5;
  --stone:  #b0a090;
}

[data-theme="dark"] nav.scrolled {
  background: rgba(28,24,20,.95);
}

[data-theme="dark"] #amenities {
  background: #2a2218;
}
[data-theme="dark"] .amenities-inner .section-title { color: #ede3d5; }
[data-theme="dark"] .amenities-inner .section-label { color: var(--terra); }

[data-theme="dark"] footer {
  background: #100e0b;
}

[data-theme="dark"] .about-text p,
[data-theme="dark"] .feature-desc,
[data-theme="dark"] .location-info p { color: #9a8878; }

[data-theme="dark"] .stat-label { color: #6a5a4a; }

/* Hero text — always over the image, always white */
[data-theme="dark"] .hero-title,
[data-theme="dark"] .hero-title em,
[data-theme="dark"] .btn-ghost { color: rgba(255,255,255,.95); }

/* Nav logo — unscrolled (over hero image, already white via filter) */

/* Nav text — scrolled (dark bg in dark mode) */
[data-theme="dark"] nav.scrolled .nav-logo-img { filter: invert(1); mix-blend-mode: screen; }
[data-theme="dark"] nav.scrolled .nav-logo,
[data-theme="dark"] nav.scrolled .nav-links a,
[data-theme="dark"] nav.scrolled .nav-lang,
[data-theme="dark"] nav.scrolled .theme-toggle { color: var(--ink); }

[data-theme="dark"] nav.scrolled .nav-links a:hover,
[data-theme="dark"] nav.scrolled .nav-lang button.active { color: var(--terra); }
