/*
  Extracted 1:1 from the inline <style> block of reference/live-site/index.html.
  Only intentional changes:
  - The "LANGUAGE TOGGLE" rule block ([data-lang] display toggling) is removed —
    each page is single-language now, so there is nothing to toggle.
  - .lang-btn gained `text-decoration: none` because the toggle is now an <a>
    link pair (/ vs /en/) instead of <button> elements.
*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a, button { touch-action: manipulation; }

:root {
  --cream: #faf8f5;
  --warm-white: #ffffff;
  --dark: #1a1a18;
  --mid: #5c5c58;
  --light: #9c9c96;
  --accent: #7c6a52;
  --accent-light: #b5a080;
  --green: #4a6741;
  --line: #e8e4de;
  /* Motion tokens */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.3s;
  /* Type scale tokens */
  --text-sm: 0.9375rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  /* Spacing tokens */
  --space-after-heading: 48px;
  --gap-media: 8px;
}

html { scroll-behavior: smooth; }

/* Focus system: visible keyboard focus everywhere, white on dark surfaces */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
#gallery :focus-visible,
#booking :focus-visible,
.hero :focus-visible,
.lightbox :focus-visible { outline-color: #fff; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.7;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,8,0.75) 0%, rgba(10,10,8,0.15) 55%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 56px 72px;
  max-width: 720px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 18px;
}
.hero-title {
  font-family: 'Lora', serif;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 22px;
}
.hero-subtitle {
  font-size: var(--text-lg);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 18px;
}
/* Trust line under the subtitle */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}
.hero-trust-stars {
  color: rgba(255,255,255,0.92);
  font-size: 0.8rem;
  letter-spacing: 2px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 15px 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
  border-radius: 2px;
}
.hero-cta:hover { background: #6b5b44; transform: translateY(-2px); }
.hero-cta--ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.9);
}
.hero-cta--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}
/* Language switch overlaid on the hero (before the sticky nav appears) */
.hero-lang {
  position: absolute;
  top: 24px; right: 56px;
  z-index: 3;
  display: flex;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 3px;
  overflow: hidden;
  background: rgba(20,16,12,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-lang-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 10px 14px;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.hero-lang-btn:hover:not(.active) { color: #fff; }
.hero-lang-btn.active { background: rgba(255,255,255,0.92); color: var(--dark); }
.hero-lang-btn + .hero-lang-btn { border-left: 1px solid rgba(255,255,255,0.25); }
.hero-scroll {
  position: absolute;
  bottom: 30px; right: 56px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px; height: 44px;
  background: rgba(255,255,255,0.3);
  animation: scrollpulse 2s ease-in-out infinite;
}
@keyframes scrollpulse {
  0%,100% { opacity:0.3; transform:scaleY(1) translateY(0); }
  50% { opacity:0.9; transform:scaleY(0.55) translateY(4px); }
}

/* ── STICKY NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--warm-white);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 64px;
}
.nav-logo {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
}
.nav-center {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-center a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-center a:hover { color: var(--dark); }
/* Right side: booking CTA + language switcher */
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-book-btn {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 2px;
  transition: background var(--dur) var(--ease);
}
.nav-book-btn:hover { background: #6b5b44; }
/* Language switcher IN the nav */
.nav-lang {
  display: flex;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
}
.lang-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 10px 14px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.lang-btn.active { background: var(--dark); color: #fff; }
.lang-btn:hover:not(.active) { background: var(--cream); color: var(--dark); }
.lang-btn + .lang-btn { border-left: 1px solid var(--line); }

/* ── SECTIONS ── */
section { padding: 100px 56px; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
h2 {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 28px;
}
p.lead {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--mid);
  max-width: 620px;
  line-height: 1.8;
}
p.body-text {
  font-size: var(--text-base);
  color: var(--mid);
  max-width: 640px;
  line-height: 1.85;
  margin-top: 18px;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.about-image:hover img { transform: scale(1.04); }
.about-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--warm-white);
  padding: 12px 18px;
  border-radius: 3px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.about-badge .rating-num {
  font-family: 'Lora', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark);
  display: block;
}
.about-badge .rating-stars { color: var(--accent); font-size: 0.75rem; letter-spacing: 2px; }
.about-badge .rating-label { font-size: 10px; color: var(--mid); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; display: block; }
.about-divider { width: 48px; height: 2px; background: var(--accent); margin: 28px 0; }

/* ── DARK GALLERY ── */
#gallery { background: var(--dark); padding: 100px 56px; }
#gallery h2 { color: #fff; }
#gallery .eyebrow { color: var(--accent-light); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap-media);
  margin-top: var(--space-after-heading);
}
.gallery-item {
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  /* Button reset — gallery items are <button> for keyboard operability */
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  display: block;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease), opacity var(--dur) var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); opacity: 0.88; }
/* Mosaic rows (desktop): each row's columns sum to 12; shared height per row. */
.gallery-item:nth-child(1) { grid-column: 1/8; height: 380px; }
.gallery-item:nth-child(2) { grid-column: 8/13; height: 380px; }
.gallery-item:nth-child(3) { grid-column: 1/4; height: 260px; }
.gallery-item:nth-child(4) { grid-column: 4/9; height: 260px; }
.gallery-item:nth-child(5) { grid-column: 9/13; height: 260px; }
.gallery-item:nth-child(6) { grid-column: 1/6; height: 320px; }
.gallery-item:nth-child(7) { grid-column: 6/13; height: 320px; }
.gallery-item:nth-child(8) { grid-column: 1/8; height: 340px; }
.gallery-item:nth-child(9) { grid-column: 8/13; height: 340px; }
.gallery-item:nth-child(10) { grid-column: 1/4; height: 250px; }
.gallery-item:nth-child(11) { grid-column: 4/7; height: 250px; }
.gallery-item:nth-child(12) { grid-column: 7/13; height: 250px; }
.gallery-item:nth-child(13) { grid-column: 1/6; height: 300px; }
.gallery-item:nth-child(14) { grid-column: 6/13; height: 300px; }
.gallery-item:nth-child(15) { grid-column: 1/7; height: 330px; }
.gallery-item:nth-child(16) { grid-column: 7/13; height: 330px; }

/* ── FEATURES ── */
#features { background: var(--warm-white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-media);
  margin-top: var(--space-after-heading);
}
.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: default;
}
/* Title sits above the image */
.feature-label {
  font-family: 'Lora', serif;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.feature-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 3px;
}
.feature-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
  filter: brightness(1);
}
/* Hover overlay */
.feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(20,16,12,0.88) 0%,
    rgba(20,16,12,0.55) 45%,
    rgba(20,16,12,0.15) 100%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 28px 24px;
}
.feature-overlay-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.93);
  line-height: 1.65;
  font-weight: 300;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.feature-card:hover .feature-img-wrap img {
  transform: scale(1.05);
  filter: brightness(0.78);
}
.feature-card:hover .feature-overlay { opacity: 1; }

/* ── REVIEWS MARQUEE ── */
#reviews {
  background: var(--accent);
  padding: 80px 0;
  overflow: hidden;
}
.reviews-header {
  text-align: center;
  padding: 0 56px;
  margin-bottom: var(--space-after-heading);
}
#reviews .eyebrow { color: rgba(255,255,255,0.95); }
#reviews h2 { color: #fff; margin-bottom: 10px; }
.reviews-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  margin-top: 4px;
}
.reviews-rating .stars { color: rgba(255,255,255,0.92); font-size: 1rem; letter-spacing: 2px; }
.reviews-rating .score { font-family: 'Lora', serif; font-size: 1.5rem; font-weight: 600; color: #fff; }

/* Marquee track */
.marquee-wrapper { position: relative; }
.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-card {
  background: rgba(26,22,16,0.15);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 4px;
  padding: 28px 32px;
  width: 340px;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
}
.review-stars { color: rgba(255,255,255,0.92); font-size: 0.82rem; letter-spacing: 3px; margin-bottom: 14px; }
.review-text {
  font-size: var(--text-sm);
  color: #fff;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}
.review-author {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
/* Fade edges */
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrapper::before { left: 0; background: linear-gradient(to right, var(--accent), transparent); }
.marquee-wrapper::after  { right: 0; background: linear-gradient(to left, var(--accent), transparent); }

/* ── LOCATION ── */
#location { background: var(--cream); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
  margin-top: var(--space-after-heading);
}
.location-list { list-style: none; margin-top: 24px; }
.location-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: var(--text-sm);
}
.location-list li:last-child { border-bottom: none; }
.place-info { display: flex; align-items: center; gap: 8px; }
.place-link {
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}
.place-link:hover { color: var(--accent); }
.map-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  transition: color 0.2s;
  flex-shrink: 0;
  /* Enlarged touch target without shifting layout */
  padding: 10px;
  margin: -10px 0;
}
.map-icon:hover { color: var(--accent); }
.map-icon svg { display: block; }
.place-dist { color: var(--accent); font-size: 0.85rem; font-weight: 500; white-space: nowrap; }
.map-container {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--line);
  height: 440px;
}
.map-container iframe { width: 100%; height: 100%; border: none; display: block; }
/* Scroll-lock overlay — prevents accidental zoom while scrolling the page */
.map-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Button reset — overlay is a <button> for keyboard operability */
  border: none;
  background: transparent;
  width: 100%;
  font: inherit;
}
.map-overlay-hint {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--mid);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.map-overlay:hover .map-overlay-hint,
.map-overlay:focus-visible .map-overlay-hint { opacity: 1; }
.map-overlay.unlocked { display: none; }

/* ── BOOKING ── */
#booking { background: var(--dark); text-align: center; }
#booking h2 { color: #fff; }
#booking .eyebrow { color: var(--accent-light); }
#booking p.lead { color: rgba(255,255,255,0.65); max-width: 500px; margin: 0 auto 44px; }
.booking-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 16px 34px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn-primary:hover { background: #6b5b44; transform: translateY(-2px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 16px 34px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 2px;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); color: #fff; background: rgba(255,255,255,0.06); }

/* ── FOOTER ── */
footer {
  background: #141412;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.62);
  padding: 40px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}
footer a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: #fff; }
.footer-logo { font-family: 'Lora', serif; font-size: 1.1rem; color: rgba(255,255,255,0.75); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  section, #gallery { padding: 72px 28px; }
  .site-nav { padding: 0 28px; }
  .hero-content { padding: 0 28px 56px; }
  .hero-lang { top: 16px; right: 28px; }
  .about-grid, .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { aspect-ratio: 4/3; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: var(--gap-media); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item { grid-column: unset !important; grid-row: unset !important; height: auto !important; aspect-ratio: 4/3 !important; }
  footer { flex-direction: column; gap: 16px; text-align: center; padding: 32px 28px; }
  .nav-center { display: none; }
  .reviews-header { padding: 0 28px; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; gap: var(--gap-media); }
  .gallery-grid { grid-template-columns: 1fr; }
  .booking-buttons { flex-direction: column; align-items: center; }
  .hero-scroll { display: none; }
}

/* ── LIGHTBOX ── */
.lightbox {
  display: flex;
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(10,10,8,0.96);
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
  transform: scale(0.98);
  transition: transform var(--dur) var(--ease);
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 12px; right: 12px;
  padding: 12px 16px;
  background: none; border: none;
  color: rgba(255,255,255,0.6); font-size: 2rem;
  cursor: pointer; transition: color 0.2s;
}
.lightbox-close:hover { color: #fff; }

/* Moved from inline styles (html-validate no-inline-style) */
.section-inner--center { text-align: center; }
#reviews { padding: 80px 0; }
.rating-note { color: rgba(255,255,255,0.95); font-size: 0.88rem; }

/* ── MOTION & TOUCH ──
   Touch devices and reduced-motion users get a swipeable reviews strip
   instead of the auto-scrolling marquee, always-visible overlays instead
   of hover reveals, and no decorative animation. */
@media (hover: none), (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    overflow-x: auto;
    width: auto;
    padding: 0 28px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .marquee-track .marquee-dup { display: none; }
  .review-card { scroll-snap-align: center; }
  .marquee-wrapper::before, .marquee-wrapper::after { display: none; }
  .feature-overlay { opacity: 1; }
  .feature-card .feature-img-wrap img { filter: brightness(0.85); }
  .map-overlay-hint { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-scroll::after { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
