:root {
  --lake-deep: #1C2B3A;
  --dusk-water: #2E4A5F;
  --steel-haze: #A8BEC9;
  --marsh-mist: #C8D8C0;
  --birch-white: #F5F0E6;

  --font-primary: 'DM Sans', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;

  --tracking-brand: 0.4em;
  --tracking-label: 0.3em;
  --tracking-headline: 0.05em;
  --tracking-nav: 0.2em;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--lake-deep);
  background-color: var(--birch-white);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background-color: rgba(200, 216, 192, 0.4);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================
   HEADER
   ========================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.site-header.header--scrolled {
  background-color: rgba(245, 240, 230, 0.85);
  backdrop-filter: blur(12px);
}

.site-header.header--hidden {
  transform: translateY(-100%);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .header-inner {
    padding: 1.25rem 2rem;
  }
}

@media (min-width: 1024px) {
  .header-inner {
    padding: 1.25rem 2.5rem;
  }
}

.wordmark {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: var(--tracking-brand);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--birch-white);
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .wordmark {
    font-size: 0.8rem;
  }
}

.header--scrolled .wordmark {
  color: var(--lake-deep);
}

.nav-desktop {
  display: none;
  gap: 2rem;
  align-items: center;
}

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

.nav-link {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: var(--tracking-nav);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--birch-white);
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.3s ease;
}

.nav-link:hover {
  opacity: 1;
}

.header--scrolled .nav-link {
  color: var(--lake-deep);
}

.nav-link--book {
  font-weight: 500;
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

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

.header--scrolled .hamburger-line {
  background-color: var(--lake-deep);
}

.hamburger.is-open .hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 1.25rem;
  background-color: rgba(28, 43, 58, 0.95);
  backdrop-filter: blur(12px);
}

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

.header--scrolled .nav-mobile {
  background-color: rgba(245, 240, 230, 0.95);
}

.header--scrolled .nav-mobile .nav-link {
  color: var(--lake-deep);
}

/* ==========================================
   FOOTER
   ========================================== */

.site-footer {
  background-color: var(--lake-deep);
  padding: 4rem 1.25rem;
}

@media (min-width: 768px) {
  .site-footer {
    padding: 5rem 2rem;
  }
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-wordmark {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: var(--tracking-brand);
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.9);
}

@media (min-width: 768px) {
  .footer-wordmark {
    font-size: 0.78rem;
  }
}

.footer-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1rem;
  color: rgba(168, 190, 201, 0.6);
  margin-top: 0.75rem;
}

.footer-location {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(168, 190, 201, 0.4);
  margin-top: 0.5rem;
}

.footer-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.footer-divider-line {
  display: block;
  width: 40px;
  height: 1px;
  background-color: rgba(168, 190, 201, 0.15);
}

.footer-divider-dot {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: rgba(168, 190, 201, 0.15);
}

.footer-contact {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 0.78rem;
  color: rgba(168, 190, 201, 0.5);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(168, 190, 201, 0.3);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-contact:hover {
  color: rgba(168, 190, 201, 0.8);
  text-decoration-color: rgba(168, 190, 201, 0.7);
}

.footer-copyright {
  font-family: var(--font-primary);
  font-size: 0.7rem;
  color: rgba(168, 190, 201, 0.25);
  margin-top: 1.5rem;
}

/* ==========================================
   HERO
   ========================================== */

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -30%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28, 43, 58, 0.4) 0%,
    rgba(28, 43, 58, 0.3) 40%,
    rgba(28, 43, 58, 0.75) 100%
  );
}

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

.hero-pull-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--steel-haze);
  margin-bottom: 1rem;
}

.hero-headline {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: var(--tracking-headline);
  color: var(--birch-white);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(245, 240, 230, 0.85);
  margin-bottom: 2rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.hero-cta {
  display: inline-block;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: var(--tracking-nav);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--birch-white);
  border: 1px solid rgba(245, 240, 230, 0.4);
  padding: 0.75rem 2rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.hero-cta:hover {
  background-color: rgba(245, 240, 230, 0.1);
  border-color: rgba(245, 240, 230, 0.7);
}

/* Hero staggered animation */
.hero-animate {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background-color: rgba(245, 240, 230, 0.4);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* ==========================================
   SCROLL REVEAL
   ========================================== */

.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.scroll-reveal-stagger > *:nth-child(1) { transition-delay: 0ms; }
.scroll-reveal-stagger > *:nth-child(2) { transition-delay: 80ms; }
.scroll-reveal-stagger > *:nth-child(3) { transition-delay: 160ms; }
.scroll-reveal-stagger > *:nth-child(4) { transition-delay: 240ms; }
.scroll-reveal-stagger > *:nth-child(5) { transition-delay: 320ms; }
.scroll-reveal-stagger > *:nth-child(6) { transition-delay: 400ms; }
.scroll-reveal-stagger > *:nth-child(7) { transition-delay: 480ms; }
.scroll-reveal-stagger > *:nth-child(8) { transition-delay: 560ms; }
.scroll-reveal-stagger > *:nth-child(9) { transition-delay: 640ms; }
.scroll-reveal-stagger > *:nth-child(10) { transition-delay: 720ms; }
.scroll-reveal-stagger > *:nth-child(n+11) { transition-delay: 800ms; }

/* ==========================================
   SECTION CONTAINERS
   ========================================== */

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
}

@media (min-width: 768px) {
  .section-container {
    padding: 4.5rem 2rem;
  }
}

@media (min-width: 1024px) {
  .section-container {
    padding: 5.5rem 2.5rem;
  }
}

.section-label {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--steel-haze);
  margin-bottom: 1rem;
}

.section-headline {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: clamp(1.75rem, 4vw, 3rem);
  letter-spacing: var(--tracking-headline);
  margin-bottom: 2.5rem;
}

/* ==========================================
   INTRO
   ========================================== */

.intro {
  background-color: var(--birch-white);
  padding: 3rem 1.25rem 1rem;
}

@media (min-width: 768px) {
  .intro {
    padding: 3.5rem 2rem 1rem;
  }
}

.intro-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.intro-rule {
  width: 60px;
  height: 1px;
  background-color: var(--steel-haze);
  margin: 0 auto 2.5rem;
}

.intro-heading {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--lake-deep);
  margin-bottom: 1.25rem;
}

.intro-body {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(28, 43, 58, 0.65);
  margin-bottom: 2.5rem;
}

.intro-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.intro-divider-line {
  display: block;
  width: 30px;
  height: 1px;
  background-color: var(--steel-haze);
}

.intro-divider-dot {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--steel-haze);
}

.intro-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--lake-deep);
  margin-bottom: 0.75rem;
}

.intro-quote--secondary {
  font-size: 1.25rem;
  color: rgba(28, 43, 58, 0.7);
  margin-bottom: 2.5rem;
}

/* ==========================================
   THE SPACE (01)
   ========================================== */

.the-space {
  background-color: var(--birch-white);
}

.the-space .section-container {
  padding-top: 1rem;
}

@media (min-width: 768px) {
  .the-space .section-container {
    padding-top: 1.5rem;
  }
}

.space-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .space-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.space-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .space-images {
    height: 100%;
  }

  .space-images img {
    flex: 1;
    min-height: 0;
  }
}

.space-images img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 767px) {
  .space-images img {
    aspect-ratio: 4 / 3;
  }
}

.space-body {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(28, 43, 58, 0.75);
  margin-bottom: 2rem;
}

.space-amenities {
  list-style: none;
  padding: 0;
}

.space-amenities li {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(28, 43, 58, 0.65);
  padding: 0.75rem 0;
  padding-left: 1.25rem;
  position: relative;
  border-top: 1px solid rgba(168, 190, 201, 0.3);
}

.space-amenities li:last-child {
  border-bottom: 1px solid rgba(168, 190, 201, 0.3);
}

.space-amenities li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--steel-haze);
}

.space-panoramic {
  margin-top: 3rem;
}

.space-panoramic img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: 20px;
}

.space-panoramic-caption {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 0.72rem;
  color: rgba(28, 43, 58, 0.35);
  margin-top: 0.75rem;
}

/* ==========================================
   GALLERY
   ========================================== */

.gallery-section {
  background-color: var(--birch-white);
}

.gallery-section .section-container {
  padding-top: 1.5rem;
}

.gallery-headline-rule {
  width: 12px;
  height: 2px;
  background-color: var(--steel-haze);
  margin-bottom: 2.5rem;
}

.gallery-grid {
  display: flex;
  gap: 16px;
}

.gallery-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 639px) {
  .gallery-grid {
    flex-direction: column;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .gallery-grid {
    /* 2 columns on tablet - JS handles this */
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 20px;
}

.gallery-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Maintain aspect ratios */
.gallery-item--landscape img {
  aspect-ratio: 3 / 2;
}

.gallery-item--portrait img {
  aspect-ratio: 2 / 3;
}

.gallery-item--square img {
  aspect-ratio: 1 / 1;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 43, 58, 0);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(28, 43, 58, 0.28);
}

.gallery-item-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-primary);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(245, 240, 230, 0.7);
  background: rgba(28, 43, 58, 0.6);
  padding: 0.25rem 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-badge {
  opacity: 1;
}

.gallery-item-caption {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(245, 240, 230, 0.9);
  background: rgba(28, 43, 58, 0.8);
  backdrop-filter: blur(4px);
  padding: 0.75rem 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-caption {
  transform: translateY(0);
}

@media (hover: none) {
  .gallery-item-caption {
    transform: translateY(0);
  }
  .gallery-item-overlay {
    background: rgba(28, 43, 58, 0.15);
  }
}

.gallery-toggle-wrap {
  text-align: center;
  margin-top: 2rem;
}

.gallery-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 1px solid rgba(168, 190, 201, 0.4);
  border-radius: 2rem;
  padding: 0.6rem 1.5rem;
  font-family: var(--font-primary);
  font-size: 0.72rem;
  letter-spacing: var(--tracking-nav);
  text-transform: uppercase;
  color: var(--lake-deep);
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.gallery-toggle:hover {
  border-color: var(--steel-haze);
}

.gallery-toggle-icon {
  font-size: 0.9rem;
  line-height: 1;
}

/* ==========================================
   LIGHTBOX
   ========================================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(13, 24, 32, 0.96);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-content {
  text-align: center;
  max-width: 72vw;
  max-height: 80vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
}

.lightbox-caption {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(245, 240, 230, 0.7);
  margin-top: 1rem;
}

.lightbox-counter {
  font-family: var(--font-primary);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(168, 190, 201, 0.5);
  margin-top: 0.5rem;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(245, 240, 230, 0.7);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 201;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(245, 240, 230, 0.7);
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
  z-index: 201;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--birch-white);
}

/* ==========================================
   SHARED DARK SECTION MODIFIERS
   ========================================== */

.section-label--light {
  color: var(--steel-haze);
}

.section-headline--light {
  color: var(--birch-white);
}

/* ==========================================
   WHO IT'S FOR (02)
   ========================================== */

.who-its-for {
  background-color: var(--lake-deep);
}

.who-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .who-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
  }
}

.who-image {
  position: relative;
  overflow: hidden;
}

.who-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 767px) {
  .who-image img {
    aspect-ratio: 3 / 4;
  }
}

.who-body {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245, 240, 230, 0.75);
  margin-bottom: 1rem;
}

.who-divider {
  width: 10px;
  height: 2px;
  background-color: rgba(168, 190, 201, 0.3);
  margin: 2.5rem 0;
}

.who-note {
  font-family: var(--font-primary);
  font-weight: 300;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(168, 190, 201, 0.7);
}

/* ==========================================
   THE AREA (03)
   ========================================== */

.the-area {
  background-color: var(--birch-white);
}

.area-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .area-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.area-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
}

.area-image-caption {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 0.72rem;
  color: rgba(28, 43, 58, 0.35);
  margin-top: 0.75rem;
}

.area-body {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(28, 43, 58, 0.75);
  margin-bottom: 2rem;
}

.area-places {
  list-style: none;
  padding: 0;
}

.area-places li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(168, 190, 201, 0.3);
}

.area-places li:last-child {
  border-bottom: 1px solid rgba(168, 190, 201, 0.3);
}

.area-place-name {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1rem;
  color: rgba(28, 43, 58, 0.75);
}

.area-place-time {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--steel-haze);
  white-space: nowrap;
  margin-left: 1rem;
}

/* ==========================================
   THE EXPERIENCE (04)
   ========================================== */

.the-experience {
  background-color: var(--dusk-water);
}

.experience-image {
  margin-bottom: 3rem;
}

.experience-image img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: 20px;
}

.experience-content {
  max-width: 100%;
}

.experience-body {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(245, 240, 230, 0.7);
  margin-bottom: 1.25rem;
}

.experience-quote {
  border-left: 2px solid rgba(168, 190, 201, 0.3);
  padding-left: 1.5rem;
  margin-top: 2.5rem;
}

.experience-quote p {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  line-height: 1.6;
  color: var(--birch-white);
}

/* ==========================================
   GOOD TO KNOW (05)
   ========================================== */

.good-to-know {
  background-color: var(--birch-white);
}

.gtk-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .gtk-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
  }
}

.gtk-block {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(168, 190, 201, 0.25);
}

.gtk-title {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lake-deep);
  margin-bottom: 0.5rem;
}

.gtk-content {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(28, 43, 58, 0.65);
}

/* ==========================================
   BOOKING (06)
   ========================================== */

.booking {
  background-color: var(--lake-deep);
}

.booking-intro {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1rem;
  color: rgba(245, 240, 230, 0.65);
  margin-bottom: 2.5rem;
}

.booking-widget {
  margin-bottom: 2.5rem;
}

/* Lodgify widget color overrides */
:root {
  --ldg-psb-background: #F5F0E6;
  --ldg-psb-border-radius: 0.15em;
  --ldg-psb-padding: 14px;
  --ldg-psb-input-background: #ffffff;
  --ldg-psb-color-primary: #1C2B3A;
  --ldg-psb-color-primary-lighter: #2E4A5F;
  --ldg-psb-color-primary-darker: #0f1a24;
  --ldg-psb-color-primary-contrast: #F5F0E6;
}

.booking-deposit {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1rem;
  color: rgba(168, 190, 201, 0.6);
  margin-bottom: 1.5rem;
}

.booking-contact {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1rem;
  color: rgba(168, 190, 201, 0.6);
}

.booking-email {
  color: var(--steel-haze);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(168, 190, 201, 0.3);
  transition: text-decoration-color 0.2s ease;
}

.booking-email:hover {
  text-decoration-color: rgba(168, 190, 201, 0.7);
}

/* ==========================================
   FLOATING BOOK BUTTON
   ========================================== */

.floating-book {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateX(100%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 0.8rem;
  background-color: var(--lake-deep);
  border-radius: 0.5rem 0 0 0.5rem;
  text-decoration: none;
  box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-book:hover {
  background-color: var(--dusk-water);
}

.floating-book.is-visible {
  transform: translateX(0);
}

.floating-book-icon {
  color: var(--steel-haze);
  width: 18px;
  height: 18px;
}

.floating-book-text {
  font-family: var(--font-primary);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.8);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

/* ==========================================
   FAQ PAGE
   ========================================== */

.faq-page {
  padding-top: 5rem;
  background-color: var(--birch-white);
  min-height: 100vh;
}

.faq-list {
  max-width: 720px;
}

.faq-category {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--steel-haze);
  margin-top: 3rem;
  margin-bottom: 0.5rem;
}

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

.faq-link {
  color: var(--dusk-water);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(46, 74, 95, 0.3);
  transition: text-decoration-color 0.2s ease;
}

.faq-link:hover {
  text-decoration-color: var(--dusk-water);
}

.faq-item {
  border-top: 1px solid rgba(168, 190, 201, 0.25);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(168, 190, 201, 0.25);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--lake-deep);
  padding: 1.25rem 2rem 1.25rem 0;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: var(--steel-haze);
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"]::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(28, 43, 58, 0.65);
  padding-bottom: 1.25rem;
}

/* ==========================================
   BLOG PAGE
   ========================================== */

.blog-page {
  padding-top: 5rem;
  background-color: var(--birch-white);
  min-height: 100vh;
}

.blog-placeholder {
  max-width: 480px;
  padding: 4rem 0;
}

.blog-placeholder-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--lake-deep);
  margin-bottom: 0.75rem;
}

.blog-placeholder-sub {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(28, 43, 58, 0.5);
}

/* ==========================================
   GRAIN TEXTURE
   ========================================== */

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ==========================================
   REDUCED MOTION
   ========================================== */

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal { opacity: 1; transform: none; transition: none; }
  .hero-animate { opacity: 1; transform: none; animation: none; }
  .hero-scroll-line { animation: none; }
  html { scroll-behavior: auto; }
}
