/* --- 1. DESIGN TOKENS --- */
:root {
  --ink: #0D1410;
  /* Deep Green-Black */
  --paper: #F4F1ED;
  /* Warm Organic White */
  --gold: #C0A062;
  /* Elegant Accent */

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Outfit', sans-serif;

  --ease: cubic-bezier(0.25, 1, 0.5, 1);
}

/* Screen Reader Only (SEO & Accessibility) */
.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;
}

/* --- 2. RESET & GLOBAL --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  /* scroll-behavior: smooth;  <-- Removed for Lenis compatibility */
  font-size: 16px;
  height: 100%;
}

body {
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior: none;
  /* App-like bounce prevention */
}

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

/* Film Grain Texture */
/* Fog Animation */
.fog-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
  z-index: 800;
  pointer-events: none;
  animation: driftFog 60s linear infinite;
}

@keyframes driftFog {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 900;
  background: url('https://grainy-gradients.vercel.app/noise.svg');
  opacity: 0;
  /* Removed for clarity as requested */
  display: none;
  mix-blend-mode: overlay;
}

/* --- 3. TYPOGRAPHY --- */
h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  /* Default dark */
}

/* Philosophy Section Specifics */
.philosophy h2 {
  color: var(--paper);
  /* Light text for dark section */
}

.philosophy .lead,
.philosophy .body-text {
  color: rgba(244, 241, 237, 0.8);
  /* Light text with slight transparency */
}

.philosophy .location-byline {
  color: var(--gold);
}

p {
  line-height: 1.7;
  font-weight: 300;
  color: #444;
}

em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

/* --- 3. NAV BAR --- */
.nav-bar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s ease;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}

.brand {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: #FFFFFF;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-book {
  text-decoration: none;
  color: #FFFFFF;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-book:hover {
  border-bottom-color: #FFFFFF;
}

.nav-bar.scrolled {
  background: #0D1410;
  padding: 15px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.hero-img-container {
  position: absolute;
  inset: 0;
}

.parallax-img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  padding: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  /* Restored font */
  font-size: clamp(3.5rem, 8vw, 7rem);
  /* Optimized size */
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 1);
  letter-spacing: -2px;
  line-height: 1.1;
  animation: floatText 6s ease-in-out infinite;
}

@keyframes floatText {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-sub p {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 300;
  /* Light weight */
  font-style: italic;
  color: #F0F0F0;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 1);
  letter-spacing: 0.5px;
}

.hero-btn {
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 60px;
  /* Prevent overlap with scroll indicator */
  background: white;
  color: var(--ink);
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.8;
}

.mouse-line {
  width: 1px;
  height: 60px;
  background: white;
  animation: growLine 2s infinite;
}

@keyframes growLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* --- 5. SECTIONS GENERAL --- */
.section {
  padding: 80px 0;
  /* Optimized from 140px */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Philosophy Split */
.grid-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.text-col h2 {
  font-size: clamp(3.5rem, 8vw, 6rem);
  margin-bottom: 5px;
  /* Reduced for byline */
  line-height: 1;
  letter-spacing: -1px;
}

.lead {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--ink);
  line-height: 1.4;
}

.img-col img {
  border-radius: 4px;
  height: 650px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* --- BORDERLESS PANORAMIC MAP (REVERTED) --- */
.map-container {
  width: 100% !important;
  max-width: none !important;
  /* Full Width */
  height: 60vh !important;
  /* Responsive Height */
  position: relative;
  border: none;
  /* No Border */
  border-radius: 0;
  /* No Radius */
  overflow: hidden;
  background: var(--ink);
  box-shadow: none;
  /* No Shadow */
}

/* Remove Hover Effects */
.map-container:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

/* Branded Loader (Kept for Performance) */
.map-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  z-index: 2;
  transition: opacity 0.8s ease;
}

.gold-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(192, 160, 98, 0.3);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

.map-loader p {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: pulse 2s infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Iframe Transition */
.map-container iframe {
  opacity: 0;
  transition: opacity 1s ease;
}

/* Loaded State */
.map-container.loaded .map-loader {
  opacity: 0;
  pointer-events: none;
}

.map-container.loaded iframe {
  opacity: 1;
}

/* Visual Stream */
.visual-stream {
  padding: 0;
  overflow: hidden;
  background: var(--ink);
  margin-bottom: -5px;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: slide 120s linear infinite;
  gap: 0;
}

.stream-item {
  width: 25vw;
  height: 50vh;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  /* Premium Frame */
  border: 1px solid var(--ink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  transition: transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

.stream-item:hover {
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), inset 0 0 10px rgba(192, 160, 98, 0.1);
  z-index: 10;
}

/* Vignette Overlay */
.stream-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 40%, rgba(13, 20, 16, 0.6) 100%);
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.5s;
}

.stream-item:hover::after {
  opacity: 0.4;
  /* Lighten vignette on hover */
}

.stream-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s, filter 0.5s;
  /* HD Clarity: Removed filters for sharp quality */
  filter: none;
}

.stream-item:hover img {
  transform: scale(1.05);
  /* Reveal True Colors on Hover */
  filter: contrast(1) saturate(1) sepia(0) brightness(1);
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Panoramic Stay */
.panoramic-stay {
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Centered for split layout */
  padding: 0 5%;
  /* Balanced padding */
}

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

.parallax-bg {
  width: 100%;
  height: 115%;
  object-fit: cover;
}

.panoramic-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.panoramic-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1300px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Memories Grid Styles */
.memories-col {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.memories-wrapper {
  text-align: center;
}

.memories-title {
  font-family: var(--font-serif);
  color: #fff;
  /* White for better contrast */
  font-size: 2.2rem;
  margin-bottom: 30px;
  font-style: italic;
  /* Stronger shadow for readability against dark/busy backgrounds */
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9), 0 0 10px rgba(212, 175, 55, 0.3);
  transform: rotate(-5deg);
  letter-spacing: 1px;
}

.memories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  transform: rotate(-5deg);
  width: 100%;
  max-width: 500px;
}

.memory-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.memory-card:hover {
  transform: scale(1.15) rotate(3deg);
  z-index: 10;
  background: white;
  border-color: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.memory-card img {
  height: 140px;
  width: 100%;
  object-fit: cover;
  border-radius: 2px;
  transition: 0.4s;
  /* HD Clarity: Removed filters */
  filter: none;
}

.memory-card:hover img {
  /* Reveal True Colors on Hover */
  filter: contrast(1) saturate(1) sepia(0) brightness(1);
}

/* Mobile Responsive for Split Layout */
@media (max-width: 1024px) {
  .panoramic-stay {
    height: auto;
    padding: 100px 20px;
  }

  .panoramic-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .memories-grid {
    transform: none;
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }

  .memory-card img {
    height: 100px;
  }
}

.glass-card {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 50px;
  border-radius: 8px;
  color: white;
}

.glass-card .label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}

.glass-card h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1;
  color: white;
}

.glass-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.specs-row {
  display: flex;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.spec-icon {
  width: 30px;
  height: 30px;
  color: rgba(255, 255, 255, 0.8);
}

.gold-icon {
  color: var(--gold);
}

.spec-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.highlight-text {
  color: var(--gold);
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Rituals */
.dark-mode {
  background: var(--ink);
  color: var(--paper);
}

.header-center {
  text-align: center;
  margin-bottom: 40px;
  /* Reduced from 60px */
}

.header-center h2 {
  font-size: 4rem;
  color: white;
  margin-bottom: 10px;
}

.sub-head {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
}

.grid-triad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card-img {
  height: 350px;
  overflow: hidden;
  margin-bottom: 20px;
  opacity: 0.9;
  transition: 0.5s;
  border-radius: 4px;
}

.card:hover .card-img {
  opacity: 1;
  transform: scale(0.98);
}

.card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: white;
}

.card p {
  color: #888;
  font-size: 1rem;
}

/* Hide Swipe Hint on Desktop */
.swipe-hint {
  display: none;
}

/* --- NEW REVIEWS SECTION (Glass Scroll) --- */
.reviews {
  padding-bottom: 60px;
  /* Reduced from 100px */
}

/* Extra space */
.review-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
  text-align: center;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.g-star {
  color: var(--gold);
  font-size: 1.1rem;
}

.g-score {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.g-source {
  color: #888;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.review-scroller {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px 30px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
  /* Added for JS scroll */
}

/* ... existing code ... */

.reviews-nav {
  position: absolute;
  top: 60%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10001;
  /* Super high to beat mist overlay */
  transform: translateY(-50%);
  padding: 0 20px;
}

.review-scroller::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar Chrome */
}

.review-card {
  min-width: 350px;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 8px;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 300px;
  transition: transform 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
}

.rc-stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 15px;
}

.rc-text {
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.rc-author {
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.rc-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: white;
}

.rc-type {
  display: block;
  font-size: 0.7rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.scroll-hint {
  text-align: center;
  margin-top: 20px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.3);
}

/* --- MAP LOCATION --- */
/* --- MAP LOCATION --- */
.location {
  padding: 0;
  position: relative;
}

.map-container {
  height: 80vh;
  width: 100%;
  position: relative;
  background: #0D1410;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  opacity: 0.85;
  /* Darker map for mood */
  transition: opacity 0.5s;
  /* HD Clarity: Removed map filters */
  filter: none;
  border: 0;
}

.map-container:hover iframe {
  opacity: 1;
}

/* --- GLOBAL MIST EFFECT --- */
.mist-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
  mix-blend-mode: screen;
  /* Better blending for mist */
}

.mist-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  /* Much subtler gradient to preserve black points */
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.01) 20%,
      /* Reduced from 0.02 */
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0.02) 60%,
      /* Reduced from 0.03 */
      rgba(255, 255, 255, 0) 80%);
  animation: drift 60s linear infinite;
  opacity: 0.05;
  /* Drastically reduced from 0.6 to preserve blacks */
}

.mist-layer:nth-child(2) {
  animation-duration: 45s;
  animation-direction: reverse;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 10%,
      rgba(255, 255, 255, 0.02) 30%,
      /* Reduced from 0.03 */
      rgba(255, 255, 255, 0) 50%,
      rgba(255, 255, 255, 0.01) 70%,
      /* Reduced from 0.02 */
      rgba(255, 255, 255, 0) 90%);
}

@keyframes drift {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.map-overlay-info {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: rgba(13, 20, 16, 0.85);
  backdrop-filter: blur(10px);
  color: white;
  padding: 30px;
  z-index: 10;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 450px;
  /* Increased to fit single line */
  pointer-events: none;
}

.map-overlay-info h3 {
  font-size: 1.8rem;
  margin-bottom: 5px;
  color: var(--gold);
  white-space: nowrap;
  /* Force single line */
}

.map-overlay-info p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ccc;
}

/* --- FOOTER --- */
.site-footer {
  padding: 120px 0 50px;
  background: #080C0A;
  color: white;
  text-align: center;
}

.footer-content h2 {
  font-size: clamp(3rem, 6vw, 6rem);
  margin-bottom: 60px;
}

.cta-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 100px;
}

.primary-btn {
  background: var(--paper);
  color: var(--ink);
  padding: 20px 50px;
  border-radius: 50px;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.2s;
}

.primary-btn:hover {
  transform: scale(1.05);
}

.secondary-btn {
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 5px;
}

.credits {
  font-size: 0.8rem;
  color: #555;
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #222;
  padding-top: 30px;
}

/* --- MOBILE --- */
.mobile-float {
  position: fixed;
  bottom: 30px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 200;
  pointer-events: none;
}

.float-btn {
  pointer-events: auto;
  background: var(--ink);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-size: 0.9rem;
  transition: transform 0.3s;
}

.float-btn:hover {
  transform: scale(1.05);
}

.dot {
  width: 8px;
  height: 8px;
  background: #50C878;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(80, 200, 120, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(80, 200, 120, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(80, 200, 120, 0);
  }
}

/* --- FAQ SECTION --- */
.faq-section {
  background: var(--paper);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  padding: 10px 0;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question .icon {
  font-size: 1.5rem;
  transition: transform 0.3s;
  font-family: var(--font-sans);
  font-weight: 300;
}

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

.faq-answer p {
  padding-top: 10px;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* --- LIGHTBOX --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(13, 20, 16, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  transform: scale(0.8);
  transition: transform 0.4s;
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
}

.lightbox-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/* Make stream items clickable */
.stream-item {
  cursor: pointer;
}

@media (max-width: 900px) {

  .grid-split,
  .grid-triad {
    display: block;
  }

  .text-col,
  .card {
    margin-bottom: 30px;
  }

  /* Reduce Vertical Gaps */
  .section {
    padding: 60px 20px;
  }

  .img-col img {
    height: 400px;
  }

  /* Mobile Panoramic */
  .panoramic-stay {
    height: auto;
    padding: 60px 20px;
    display: block;
  }

  .panoramic-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .glass-card {
    padding: 30px;
    backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, 0.5);
  }

  .glass-card h2 {
    font-size: 2.5rem;
    /* Smaller font for mobile */
  }

  /* Fix Nav Transparency on Mobile - FORCED OPAQUE */
  .nav-bar {
    background: rgba(13, 20, 16, 0.98) !important;
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    /* Compact padding */
  }

  .nav-bar.scrolled {
    background: rgba(13, 20, 16, 0.98) !important;
  }

  /* Accommodation: Clean Balanced Layout */
  .specs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
  }

  .spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: auto;
    margin-bottom: 0;
  }

  /* Mobile Memories Grid: Center Last Item */
  .memories-grid {
    grid-template-columns: repeat(2, 1fr);
    transform: none;
    gap: 10px;
  }

  .memories-title {
    font-size: 1.8rem;
    transform: none;
    margin-bottom: 20px;
  }

  .memory-card img {
    height: 120px;
  }

  /* Specific target for the 9th item (last one) */
  .memory-card:nth-child(9) {
    grid-column: 1 / -1;
    /* Span full width */
    width: 60%;
    margin: 0 auto;
  }

  /* Rituals Revamp: Horizontal Swipe Deck */
  .grid-triad {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 30px;
    /* Space for scrollbar/touch */
    margin: 0 -20px;
    /* Negative margin to touch edges */
    padding-left: 20px;
    /* Restore padding */
    padding-right: 20px;
    -webkit-overflow-scrolling: touch;
  }

  .grid-triad::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for clean look */
  }

  .grid-triad .card {
    min-width: 80vw;
    /* Slightly smaller to peek next card */
    scroll-snap-align: center;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    /* Glass card background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
  }

  .grid-triad .card-img {
    height: 250px;
    /* Taller image */
  }

  .grid-triad .card h3 {
    font-size: 1.5rem;
    margin-top: 15px;
  }

  /* Swipe Hint Styling */
  .swipe-hint {
    display: block;
    /* Visible on mobile */
    text-align: center;
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.8;
    animation: pulse 2s infinite;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  @keyframes pulse {
    0% {
      opacity: 0.5;
      transform: translateX(0);
    }

    50% {
      opacity: 1;
      transform: translateX(5px);
    }

    100% {
      opacity: 0.5;
      transform: translateX(0);
    }
  }

  /* Mobile Reviews */
  .review-scroller {
    padding: 10px 20px;
    scroll-padding-left: 20px;
  }

  .review-card {
    min-width: 280px;
    /* Increased width for better readability */
    height: auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    /* Increased padding */
  }

  .rc-text {
    font-size: 0.95rem;
    /* Improved readability */
    line-height: 1.5;
  }

  /* Mobile Marquee - Larger Images */
  .stream-item {
    width: 70vw;
    /* Wider images on mobile */
    height: 40vh;
  }

  .map-container {
    height: 50vh !important;
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    border: none !important;
    padding: 0 !important;
    background: black;
  }

  /* Aggressive Map Frame Removal */
  .section.location {
    padding: 0 !important;
    border: none !important;
    background-color: black;
  }

  .map-container iframe {
    border: none !important;
    width: 100% !important;
    height: 100% !important;
  }

  .map-overlay-info {
    display: none !important;
  }

  .floating-cta {
    display: none !important;
  }

  /* Fix Book Stay Button on Mobile */
  .hero-cta {
    max-width: 90%;
    white-space: normal;
    font-size: 1rem;
    padding: 12px 25px;
  }

  .nav-bar {
    padding: 20px;
  }
}

/* --- ANIMATIONS --- */
.reveal-text,
.reveal-img,
.reveal-up,
.reveal-block {
  opacity: 1;
  /* FORCED VISIBILITY */
  transform: translateY(0);
  /* RESET TRANSFORM */
  transition: 1.2s var(--ease);
}

.reveal-img {
  transform: scale(0.95) translateY(40px);
}

.active.reveal-text,
.active.reveal-up,
.active.reveal-block {
  opacity: 1;
  transform: translateY(0);
}

.active.reveal-img {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

/* --- BENTO GRID & ESSENTIALS --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 50px;
  perspective: 1000px;
}

/* Mobile Horizontal Scroll for Essentials */
@media (max-width: 900px) {
  .bento-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 40px;
    /* Space for scrollbar/swipe */
    margin-top: 30px;
    scrollbar-width: none;
    /* Hide scrollbar for cleaner look */
    padding-right: 20px;
    /* Peek effect */
    scroll-padding-left: 20px;
    /* Fix first card alignment */
  }

  .bento-grid::-webkit-scrollbar {
    display: none;
  }

  .bento-card {
    min-width: 140px;
    /* Narrower than 160px, wider than 110px */
    scroll-snap-align: center;
    margin-bottom: 0;
    margin-right: 15px;
    padding: 15px;
    border-radius: 12px;
    transform: none !important;
    box-shadow: none !important;
  }

  .bento-card:hover {
    transform: none !important;
    background: rgba(255, 255, 255, 0.05);
    /* Keep background static */
  }

  .bento-icon {
    font-size: 1.5rem;
    /* Tiny icon */
    margin-bottom: 5px;
  }

  .bento-title {
    font-size: 1rem;
    /* Tiny title */
  }

  .bento-text {
    font-size: 0.8rem;
    /* Tiny text */
    line-height: 1.3;
  }
}

/* Scroll Hint Animation */
.scroll-hint {
  text-align: center;
  color: var(--gold);
  font-size: 1.1rem;
  /* Larger font */
  font-weight: 500;
  margin-top: 0px;
  margin-bottom: 25px;
  opacity: 1;
  animation: bounceHint 2s infinite;
  /* Continuous bounce */
  display: none;
  /* Hidden by default */
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .scroll-hint {
    display: block;
    /* Show only on mobile */
    margin-bottom: 10px;
    font-size: 0.8rem;
    opacity: 0.7;
  }
}

@keyframes bounceHint {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(10px);
  }

  /* Side-to-side bounce for "Swipe" */
}

/* --- VIBRANT ESSENTIALS --- */
.faq-section {
  background: var(--ink);
  /* Solid dark background */
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
}

/* Remove the radial gradient glow if it causes "fade" issues, or keep it very subtle */
.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(192, 160, 98, 0.05), transparent 70%);
  /* Very subtle */
  pointer-events: none;
  z-index: 0;
}

@keyframes rotateBg {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.bento-card {
  background: rgba(255, 255, 255, 0.05);
  /* Dark glass */
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform-style: preserve-3d;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.bento-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.bento-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
}

.bento-card:hover::after {
  opacity: 1;
}

.bento-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(255, 215, 0, 0.3));
}

.bento-title {
  color: #FFFFFF;
  /* Force White */
  font-size: 1.8rem;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.bento-text {
  color: var(--gold);
  /* Match "The Essentials" heading */
  font-weight: 400;
  line-height: 1.6;
}

/* Classy Gradients (Gold, Bronze, Silver, Deep Green) */
.bento-card:nth-child(1) .bento-icon {
  background: linear-gradient(45deg, #FFD700, #B8860B);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Network - Gold */
.bento-card:nth-child(2) .bento-icon {
  background: linear-gradient(45deg, #E0E0E0, #A9A9A9);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Fuel - Silver */
.bento-card:nth-child(3) .bento-icon {
  background: linear-gradient(45deg, #CD7F32, #8B4513);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Check Post - Bronze */
.bento-card:nth-child(4) .bento-icon {
  background: linear-gradient(45deg, #4CAF50, #2E7D32);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Payment - Emerald */
/* Plastic Free Card - Revert to Uniform Dark Glass */
.bento-card:nth-child(6) {
  background: rgba(255, 255, 255, 0.05);
  /* Standard Dark Glass */
  border-color: rgba(255, 255, 255, 0.1);
}

.bento-card:nth-child(6) .bento-title {
  color: #FFFFFF !important;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.bento-card:nth-child(6) .bento-text {
  color: var(--gold);
  font-weight: 400;
}

.bento-card:nth-child(6) .bento-icon {
  background: linear-gradient(45deg, #81C784, #4CAF50);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Section Headers - Visibility Fix */
.faq-section .label {
  color: var(--gold);
}

.faq-section h2 {
  color: white;
}

.faq-section .separator {
  background: var(--gold);
}

.bento-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #FFFFFF !important;
  /* Force White for visibility */
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* --- JOURNEY & PACKING --- */
.journey-section {
  background: var(--ink);
  color: white;
  padding: 100px 0;
}

.journey-timeline {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  position: relative;
  padding: 0 40px;
}



/* Arrow Styling */
.journey-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  width: 40px;
  height: 40px;
  opacity: 0.6;
  animation: pulseArrow 2s infinite;
}

.journey-arrow svg {
  width: 100%;
  height: 100%;
}

@keyframes pulseArrow {

  0%,
  100% {
    transform: translateX(0);
    opacity: 0.6;
  }

  50% {
    transform: translateX(5px);
    opacity: 1;
  }
}

.mobile-path {
  display: none;
  /* Hidden on desktop */
}

/* Mobile Journey Line Fix */
@media (max-width: 900px) {
  .journey-line {
    stroke-width: 4px;
    /* Thicker line for mobile visibility */
    stroke-dasharray: 8 8;
    /* Tighter dots */
  }

  .journey-arrow {
    transform: rotate(90deg);
    /* Rotate arrows vertically */
    margin: 20px auto;
    /* Stack vertically */
  }
}

.journey-car {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2.5rem;
  z-index: 5;
  offset-path: path('M0,50 Q166,-20 333,50 Q500,120 666,50 Q833,-20 1000,50');
  offset-distance: 0%;
  offset-rotate: auto;
  offset-anchor: center center;
  /* Ensure car is ON the line */
  /* Flip the car horizontally to face right (if emoji faces left by default) */
  transform: scaleX(-1) translateY(-15%);
  /* Fine-tuned vertical alignment */
  animation: driveLoop 8s linear infinite normal;
  /* One-way loop */
}

@keyframes driveLoop {
  0% {
    offset-distance: 0%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}

.timeline-point {
  position: relative;
  z-index: 1;
  text-align: center;
  background: var(--ink);
  padding: 0 10px;
}

.timeline-point h3 {
  color: white;
  /* Visibility Fix */
  margin-bottom: 5px;
}

.timeline-dot {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-weight: bold;
}

.pack-list {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 40px 20px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.pack-item {
  min-width: 160px;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  scroll-snap-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.pack-item:nth-child(1) {
  background: #e3f2fd;
}

/* Blue */
.pack-item:nth-child(2) {
  background: #fff3e0;
}

/* Orange */
.pack-item:nth-child(3) {
  background: #fce4ec;
}

/* Pink */
.pack-item:nth-child(4) {
  background: #e8f5e9;
}

/* Green */
.pack-item:nth-child(5) {
  background: #f3e5f5;
}

/* Purple */

.pack-item:hover {
  transform: scale(1.15) translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.pack-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
  transition: transform 0.4s;
}

.pack-item:hover .pack-icon {
  transform: scale(1.3) rotate(10deg);
  animation: jelly 0.6s;
}

@keyframes jelly {

  0%,
  100% {
    transform: scale(1.3) rotate(10deg);
  }

  25% {
    transform: scale(0.9, 1.4) rotate(5deg);
  }

  50% {
    transform: scale(1.4, 0.9) rotate(15deg);
  }

  75% {
    transform: scale(0.95, 1.35) rotate(8deg);
  }
}

/* --- MOBILE FLOATING ACTION (Updated) --- */
.mobile-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1100;
  transform: translateY(0);
  transition: transform 0.3s;
}

/* Hide mobile float on desktop to prevent overlap with Hero CTA */
@media (min-width: 769px) {
  .mobile-float {
    display: none;
  }
}

.float-btn {
  background: var(--ink);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.float-btn .dot {
  width: 8px;
  height: 8px;
  background: #4CAF50;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
  }
}

/* --- FINAL MOBILE OVERRIDES (AGGRESSIVE) --- */
@media (max-width: 900px) {

  /* --- SIMPLIFIED ARROW LAYOUT (MOBILE) --- */
  .journey-timeline {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    /* Increased from 15px to reduce congestion */
    margin-top: 30px;
    padding-left: 0;
    overflow-x: auto;
    padding-bottom: 20px;
  }

  .timeline-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 150px;
    /* Ensure width for text */
    flex-shrink: 0;
  }

  /* Reset Arrow for Horizontal */
  /* Reset Arrow for Horizontal */
  .journey-arrow {
    transform: rotate(0deg);
    margin: 0 5px;
    /* Reduce margin */
    animation: pulseArrowRight 2s infinite;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    min-width: 30px;
    /* Smaller arrow container */
    color: var(--gold) !important;
    z-index: 10;
    height: auto;
    /* Allow height to fit */
    align-self: center;
    /* Vertically center */
  }

  @keyframes pulseArrowRight {

    0%,
    100% {
      transform: translateX(0);
      opacity: 0.8;
    }

    50% {
      transform: translateX(5px);
      opacity: 1;
    }
  }

  /* --- MOBILE CARD OPTIMIZATIONS --- */
  .review-scroller,
  .bento-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-bottom: 30px;
    padding-right: 20px;
    /* Peek effect */
    scroll-padding-left: 20px;
    -webkit-overflow-scrolling: touch;
  }

  .review-card,
  .bento-card {
    min-width: 250px;
    /* Reduced width as requested */
    scroll-snap-align: center;
    margin-right: 0;
    /* Gap handles spacing */
    flex-shrink: 0;
    /* Prevent shrinking */
    height: auto;
    /* Allow growth */
    white-space: normal;
    /* Allow text wrap */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Align to top */
  }

  .bento-card h3,
  .bento-card p {
    white-space: normal;
    /* Ensure text wraps */
    overflow: visible;
    /* Show all text */
  }

  /* Ensure Essentials cards (Bento) behave like cards on mobile */
  .bento-grid {
    grid-template-columns: none;
    /* Disable grid */
    flex-direction: row;
  }
}

/* --- LOCATION BYLINE --- */
.location-byline {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  font-style: italic;
  margin-top: 0;
  margin-bottom: 30px;
  font-weight: 400;
  letter-spacing: 0.5px;
  display: block;
  /* Ensure visibility */
  position: relative;
  z-index: 10;
}

@media (max-width: 900px) {
  .location-byline {
    font-size: 1.4rem;
    margin-top: -15px;
    margin-bottom: 20px;
  }
}

/* --- NAV BYLINE --- */
.nav-byline {
  display: block;
  font-size: 0.8rem;
  color: var(--gold);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  margin-top: 2px;
  /* Fixed overlap */
  letter-spacing: 0.5px;
  text-shadow: none;
}

.brand {
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Centered byline */
}

@media (max-width: 900px) {
  .nav-byline {
    font-size: 0.7rem;
    /* Smaller on mobile to prevent congestion */
    margin-top: 0px;
  }
}

/* --- MAP CONTAINER BREAKOUT --- */
.map-container {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: black;
  /* Ensure container itself is black */
}

/* --- DESKTOP REVIEW NAVIGATION --- */
/* Duplicate .reviews-nav removed */

.nav-arrow {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  /* Re-enable clicks */
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.nav-arrow:hover {
  background: var(--gold);
  color: black;
  transform: scale(1.1);
}

.desktop-only {
  display: flex;
}

@media (max-width: 900px) {
  .desktop-only {
    display: none !important;
  }
}


/* --- FIX REVIEWS POSITIONING --- */
.reviews {
  position: relative;
  /* Create positioning context for arrows */
}

/* Force map iframe to fill */
.map-container iframe {
  width: 100vw !important;
  height: 100% !important;
  border: none !important;
}

/* Force dark background for philosophy section to match the aesthetic */
.philosophy {
  background-color: var(--ink);
  color: var(--paper);
  padding: 100px 0;
}

/* --- NEW FOOTER ELEMENTS --- */
.insta-link {
  color: var(--gold) !important;
  text-decoration: none !important;
  font-size: 1.1rem;
  margin-left: 20px;
  border-bottom: 1px solid transparent;
  transition: border 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.insta-link:hover {
  border-bottom-color: var(--gold);
}

.insta-link:visited {
  color: var(--gold) !important;
}

.glass-connect-card {
  background: rgba(13, 20, 16, 0.3);
  /* Darker, more transparent base */
  backdrop-filter: blur(5px);
  /* Subtler blur */
  border: 1px solid rgba(255, 255, 255, 0.05);
  /* Fainter border */
  border-radius: 16px;
  padding: 25px 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 500px;
  margin: 50px auto 0;
  transition: transform 0.3s, background 0.3s;
}

.glass-connect-card:hover {
  transform: translateY(-5px);
  background: rgba(13, 20, 16, 0.5);
  /* Slightly more visible on hover */
  border-color: rgba(192, 160, 98, 0.3);
  /* Subtle gold hint on hover */
}

.connect-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
}

.connect-icon {
  font-size: 1.5rem;
}

.connect-text {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.highlight-phone {
  color: var(--gold) !important;
  font-weight: 600;
  font-size: 1.3rem;
  /* Increased size */
  letter-spacing: 1px;
  text-decoration: none !important;
}

/* Force all phone links to be gold and no underline */
a[href^="tel:"] {
  color: var(--gold) !important;
  text-decoration: none !important;
}

.connect-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* Mobile Footer Optimization */
@media (max-width: 768px) {
  .cta-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .insta-link {
    margin-left: 0;
    font-size: 1rem;
  }

  .glass-connect-card {
    flex-direction: column;
    gap: 20px;
    padding: 25px;
    width: 90%;
    margin-top: 40px;
  }

  .connect-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
  }

  .connect-item {
    width: 100%;
    justify-content: center;
  }

  .highlight-phone {
    font-size: 1.3rem;
    /* Even larger on mobile for easy tapping */
  }
}

/* Face Focus for Family Photo (No Zoom, just Position) */
.face-focus {
  object-position: center 25% !important;
}

/* --- PULSE ANIMATION (CRO) --- */
@keyframes pulse-gold {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

.pulse-gold {
  animation: pulse-gold 2s infinite;
}

/* --- GOOGLE GOLD SEAL (CRO) --- */
.google-seal {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 15px auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  /* Coin Base: Dark blended background */
  background: radial-gradient(circle at 30% 30%, rgba(30, 35, 30, 0.9), rgba(10, 15, 10, 0.95));
  /* Layering: 1. Thin Gold Edge, 2. Dark Outer Ring Shadow, 3. Inner Gold Rim Highlight */
  border: 1px solid rgba(192, 160, 98, 0.6);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.5),
    /* Drop Shadow for blending */
    inset 0 0 0 2px rgba(0, 0, 0, 0.5),
    /* Dark groove inside border */
    inset 0 0 10px rgba(192, 160, 98, 0.2);
  /* Inner Gold Glow */
  transition: transform 0.3s ease;
  cursor: default;
}

.google-seal:hover {
  transform: scale(1.05);
  border-color: var(--gold);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.6),
    inset 0 0 0 2px rgba(0, 0, 0, 0.5),
    inset 0 0 15px rgba(192, 160, 98, 0.3);
}

/* Inner Gold Ring */
.google-seal::after {
  content: '';
  position: absolute;
  width: 64%;
  /* Reduced to make room for text */
  height: 64%;
  border-radius: 50%;
  border: 1px solid rgba(192, 160, 98, 0.3);
  /* Subtle inner border */
  pointer-events: none;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
  /* Depth for inner circle */
}

.seal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  margin-top: 0;
  /* Text Layering: Pop off the coin face */
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
}

.seal-score {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  /* Reduced from 2.2rem to fit in inner circle */
  color: var(--gold);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -1px;
  /* Metallic Text Effect */
  background: linear-gradient(135deg, #fff0c4 0%, #c0a062 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.seal-stars {
  color: var(--gold);
  font-size: 0.45rem;
  /* Reduced */
  letter-spacing: 2px;
  margin: 2px 0;
  opacity: 0.9;
}

.seal-text {
  font-family: var(--font-sans);
  font-size: 0.3rem;
  /* Reduced */
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Rotating Text Ring */
.seal-text-circle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: rotateSeal 30s linear infinite;
  pointer-events: none;
  opacity: 0.7;
}

.seal-text-circle text {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  fill: #d4af37;
  /* Solid Gold for contrast */
  text-transform: uppercase;
}

@keyframes rotateSeal {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Mobile Optimization for Seal */
@media (max-width: 768px) {
  .google-seal {
    width: 85px;
    height: 85px;
    margin-top: 20px;
  }

  .seal-score {
    font-size: 1.5rem;
    /* Reduced for mobile */
  }

  .seal-stars {
    font-size: 0.4rem;
    letter-spacing: 1px;
    margin: 2px 0;
  }

  .seal-text {
    font-size: 0.25rem;
    /* Reduced for mobile */
  }

  .seal-text-circle text {
    font-size: 10px;
    letter-spacing: 2.5px;
  }

  .hero-btn {
    margin-bottom: 10px;
  }
}

/* --- MAP CONTAINER (Lazy Load Fix) --- */
.section.location {
  padding: 0 !important;
  /* Force full width */
}

.map-container {
  width: 100%;
  height: 450px;
  /* Fixed height to ensure visibility for Observer */
  background: #0D1410;
  /* Dark background to prevent white flash */
  position: relative;
  overflow: hidden;
  border-radius: 0;
  /* Full width, no corners */
  margin-top: 0;
  /* Remove gap */
  z-index: 950;
  /* Lift above everything except nav */
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  /* Balanced Vegetative: Natural boost */
  filter: saturate(1.2) contrast(1.1) brightness(0.95);
}

/* Text Link (Invisible/Seamless) */
.text-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.3s;
}

.text-link:hover {
  opacity: 0.8;
}

/* --- ADVENTURE MODAL --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 20, 16, 0.9);
  /* Dark Ink with opacity */
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(192, 160, 98, 0.3);
  /* Gold border */
  padding: 3px;
  /* Double border effect */
  border-radius: 12px;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-glass {
  transform: scale(1);
}

.modal-content {
  background: #0D1410;
  /* Ink */
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  width: 90vw;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 20px;
  animation: shake 2s infinite;
}

@keyframes shake {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-10deg);
  }

  75% {
    transform: rotate(10deg);
  }
}

.modal-content h2 {
  color: white;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.modal-content p {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 20px;
}

.warning-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
}

.warning-list li {
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.warning-list li::before {
  content: "⚠️";
  margin-right: 10px;
  font-size: 0.8rem;
}

.modal-question {
  color: white !important;
  font-size: 1.2rem !important;
  font-style: italic;
  margin-bottom: 30px !important;
}

.modal-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.modal-btn {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  border: none;
  font-family: var(--font-sans);
}

.modal-btn.primary {
  background: var(--gold);
  color: var(--ink);
}

.modal-btn.primary:hover {
  background: white;
  transform: translateY(-2px);
}

.modal-btn.secondary {
  background: transparent;
  border: 1px solid #333;
  color: #666;
}

.modal-btn.secondary:hover {
  border-color: #666;
  color: #888;
}

/* Mobile Optimization for Modal */
@media (max-width: 480px) {
  .modal-content {
    padding: 30px 20px;
  }

  .modal-content h2 {
    font-size: 2rem;
  }

  .modal-actions {
    flex-direction: column;
    gap: 10px;
  }

  .modal-btn {
    width: 100%;
  }
}

/* Footer Links Optimization */
.footer-links {
  margin-top: 40px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-sep {
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }

  .footer-sep {
    display: none;
    /* Hide pipes on mobile */
  }

  .footer-links a {
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    width: 80%;
    /* Button-like touch targets */
  }


}

/* Widget Safety Container */
#insta-feed-container {
  max-width: 100%;
  overflow: hidden;
  padding: 0 15px;
  /* Prevent edge touching on mobile */
}

/* Fix for Social Feed Username on Mobile */
@media (max-width: 480px) {
  .header-center h2 {
    font-size: 1.8rem !important;
    /* Prevent long username from breaking layout */
    overflow-wrap: break-word;
    word-wrap: break-word;
    line-height: 1.2;
    padding: 0 10px;
  }
}

/* Clickable Instagram Handle */
.insta-handle-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
  /* Force pointer on all devices */
  position: relative;
  /* Ensure z-index works if needed */
  z-index: 10;
}

.insta-handle-link:hover,
.insta-handle-link:active {
  /* :active for Mobile Touch */
  color: var(--gold);
  opacity: 0.8;
}