/*
 * Nordic Zen - Custom Styles
 * Based on HTML design with Cormorant Garamond + Inter fonts
 */

/* CSS Custom Properties */
:root {
  --color-cream: #f4f1ed;
  --color-cream-dark: #F5F0EB;
  --color-sand: #D4C5B5;
  --color-warm-taupe: #B8A99A;
  --color-brown: #5D4E37;
  --color-dark: #2C2824;
  --color-white: #FFFFFF;
  --color-sage: #A8B5A0;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --section-padding: clamp(4rem, 10vw, 8rem);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-cream);
  color: var(--color-dark);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ==================== NAVIGATION ==================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0.8rem clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(250,248,245,0.98), rgba(250,248,245,0));
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}


.nav-left {
  opacity: 0;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-right: auto;
}

.logo {
  opacity: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  margin-left: 0 !important;
}

.logo img {
  height: 75px;
  width: auto;
}

nav.scrolled {
  background: #f5f0eb;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);

  .nav-left {
    opacity: 1;
  }

  .nav-center {
    opacity: 1;
  }

  .logo {
    opacity: 1;
  }
}

.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-center a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brown);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav-center a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-brown);
  transition: width 0.3s ease;
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-brown);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-phone:hover {
  color: var(--color-dark);
}

.nav-phone svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.lang-dropdown {
  position: relative;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brown);
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  background: transparent;
  min-width: 57px;
}

.lang-current svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.3s ease;
}

.lang-dropdown:hover .lang-current svg {
  transform: rotate(180deg);
}

.lang-options {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--color-cream);
  border: 1px solid var(--color-sand);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-width: 60px;
}

.lang-dropdown:hover .lang-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-options a {
  display: block;
  padding: 0.5rem 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brown);
  text-decoration: none;
  transition: background 0.3s ease;
}

.lang-options a:hover {
  background: var(--color-sand);
}

.nav-cta {
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--color-brown);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brown);
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--color-brown);
  color: var(--color-cream);
}

/* Burger Icon */
.burger {
  display: none;
  width: 28px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 6001;
}

.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-brown);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger span:nth-child(3) { bottom: 0; }

/* Burger Animation - Open */
.burger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.burger.active span {
  background: var(--color-cream);
}

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

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

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44, 40, 36, 0.2) 0%,
    rgba(44, 40, 36, 0.4) 50%,
    rgba(44, 40, 36, 0.6) 100%
  );
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(168, 181, 160, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(212, 197, 181, 0.3) 0%, transparent 50%),
    var(--color-cream);
}

.hero-texture {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.hero-content {
  text-align: center;
  z-index: 10;
  padding: 2rem;
  max-width: 900px;
  position: relative;
}

.hero-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s ease-out 0.3s forwards;
}

.hero h1,
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 300;
  color: var(--color-cream);
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease-out 0.5s forwards;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--color-sand);
  font-weight: 300;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 1s ease-out 0.7s forwards;
}

.hero-location {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--color-warm-taupe);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s ease-out 0.9s forwards;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hero-cta {
  display: inline-block;
  padding: 1.1rem 3rem;
  background: var(--color-brown);
  color: var(--color-cream);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.4s ease;
  opacity: 0;
  animation: fadeUp 1s ease-out 1.1s forwards;
  border: 1px solid var(--color-brown);
}

.hero-cta:hover {
  background: transparent;
  border-color: var(--color-sand);
  color: var(--color-cream);
  transform: translateY(-2px);
}

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

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  animation: fadeUp 1s ease-out 1.3s forwards;
  z-index: 10;
  text-align: center;
}

.scroll-indicator div {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-sand);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: var(--color-sand);
  position: relative;
  overflow: hidden;
  display: inline-block;
}

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

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

/* ==================== INTRO / STORY ==================== */
.intro {
  padding: var(--section-padding) clamp(2rem, 5vw, 4rem);
  background: var(--color-white);
  text-align: center;
}

.intro-section {
  padding: var(--section-padding) clamp(2rem, 5vw, 4rem);
  background: var(--color-white);
  text-align: center;
}

.intro-content {
  max-width: 750px;
  margin: 0 auto;
}

.intro-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.8;
  color: var(--color-dark);
  font-weight: 300;
}

.intro-text em {
  font-style: italic;
  color: var(--color-brown);
}

.intro-divider {
  width: 80px;
  height: 1px;
  background: var(--color-sand);
  margin: 3rem auto;
}

.section-divider {
  width: 80px;
  height: 1px;
  background: var(--color-sand);
  margin: 3rem auto;
}

.intro-tagline {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--color-warm-taupe);
}

/* ==================== OUR STORY ==================== */
.our-story {
  padding: var(--section-padding) clamp(2rem, 5vw, 4rem);
  background: var(--color-white);
}

.story-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-text {
  max-width: 500px;
}

.story-header {
  text-align: left;
  margin-bottom: 2rem;
}

.story-intro {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  line-height: 1.8;
  color: var(--color-dark);
  font-weight: 300;
  margin-bottom: 2rem;
}

.story-intro em {
  font-style: italic;
  color: var(--color-brown);
}

.story-description {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-warm-taupe);
  line-height: 1.8;
}

.story-description em {
  font-style: italic;
  color: var(--color-brown);
}

.our-story-image {
  aspect-ratio: 1;
  background: var(--color-sand);
  overflow: hidden;
  position: relative;
}

.our-story-image .image-container-large {
  width: 100%;
  height: 100%;
  display: block;
}

.our-story-image .image-container-small {
  width: 100%;
  height: 100%;
  display: none;
}

.our-story-image img,
.story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==================== FEATURES ==================== */
.features {
  padding: var(--section-padding) clamp(2rem, 5vw, 4rem);
  background: var(--color-cream);
}

.features-section {
  padding: var(--section-padding) clamp(2rem, 5vw, 4rem);
  background: var(--color-cream);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-warm-taupe);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-brown);
  font-weight: 300;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--color-cream);
  border: 1px solid transparent;
  transition: all 0.5s ease;
}

.feature-card:hover {
  border-color: var(--color-sand);
  transform: translateY(-5px);
}

.feature-icon {
  margin: 0 auto 1.5rem;
  font-size: 3rem;
  filter: grayscale(100%);
  opacity: 0.6;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-brown);
  margin-bottom: 0.8rem;
  font-weight: 400;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--color-warm-taupe);
  line-height: 1.8;
}

/* ==================== GALLERY ==================== */
.gallery {
  padding: var(--section-padding) clamp(2rem, 5vw, 4rem);
  background: var(--color-cream);
  position: relative;
}

.gallery-section {
  padding: var(--section-padding) clamp(2rem, 5vw, 4rem);
  background: var(--color-cream);
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery .section-label,
.gallery-section .section-label {
  color: var(--color-warm-taupe);
}

.gallery .section-title,
.gallery-section .section-title {
  color: var(--color-brown);
}

.gallery-item {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(44, 40, 36, 0.6));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(44, 40, 36, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

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

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

.lightbox-counter {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: var(--color-warm-taupe);
  letter-spacing: 0.1em;
}

/* ==================== PRICING ==================== */
.pricing {
  padding: var(--section-padding) clamp(2rem, 5vw, 4rem);
  background: var(--color-white);
}

.pricing-container {
  max-width: 800px;
  margin: 0 auto;
}

.pricing-container .section-label{
  color: var(--color-brown);
}

.pricing-card {
  background: var(--color-cream);
  padding: 3rem;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table thead th {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-warm-taupe);
  padding: 0 0 1.5rem 0;
  text-align: left;
  border-bottom: 1px solid var(--color-sand);
}

.pricing-table thead th:not(:first-child) {
  text-align: center;
}

.pricing-table tbody td {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(212, 197, 181, 0.4);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.season-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-brown);
}

.season-months {
  font-size: 0.8rem;
  color: var(--color-warm-taupe);
  margin-top: 0.3rem;
}

.price-cell {
  text-align: center;
}

.price-cell .amount {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-brown);
}

.price-cell .currency {
  font-size: 0.9rem;
  color: var(--color-warm-taupe);
}

.pricing-footer {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-sand);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.pricing-footer-note {
  font-size: 0.8rem;
  color: var(--color-warm-taupe);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-footer-note strong {
  color: var(--color-brown);
}

.pricing-footer-note svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-sand);
  stroke-width: 1.5;
  fill: none;
}

.pricing-info {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--color-brown);
  font-style: italic;
}

.pricing-info a {
  text-decoration: underline;
  color: var(--color-dark);
}

@media (max-width: 600px) {
  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .pricing-table thead th {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }

  .price-cell .amount {
    font-size: 1.4rem;
  }

  .pricing-footer {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* ==================== AMENITIES ==================== */
.amenities {
  padding: var(--section-padding) clamp(2rem, 5vw, 4rem);
  background: var(--color-white);
}

.amenities-section {
  padding: var(--section-padding) clamp(2rem, 5vw, 4rem);
  background: var(--color-white);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.amenity-item {
  padding: 1.5rem 1rem;
  background: var(--color-cream);
  transition: transform 0.3s ease;
}

.amenity-item:hover {
  transform: translateY(-3px);
}

.amenity-icon {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  filter: grayscale(100%) opacity(0.6);
}

.amenity-text {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--color-brown);
}

/* ==================== REVIEWS ==================== */
.reviews {
  padding: var(--section-padding) clamp(2rem, 5vw, 4rem);
  background: var(--color-cream);
}

.reviews-section {
  padding: var(--section-padding) clamp(2rem, 5vw, 4rem);
  background: var(--color-white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  padding: 2.5rem;
  background: var(--color-white);
  position: relative;
}

.review-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--color-sand);
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  line-height: 1;
}

.review-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
}

.review-author {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-warm-taupe);
}

.review-stars {
  color: var(--color-sand);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.reviews-link-container {
  text-align: center;
  margin-top: 3rem;
}

.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--color-brown);
  text-decoration: none;
  transition: color 0.3s ease;
}

.reviews-link:hover {
  color: var(--color-dark);
}

.reviews-link svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.3s ease;
}

.reviews-link:hover svg {
  transform: translateX(4px);
}

/* ==================== LOCATION + CONTACT ==================== */
.location {
  padding: var(--section-padding) clamp(2rem, 5vw, 4rem);
  background: var(--color-cream);
}

.location-grid {
  max-width: 1100px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.location-info {
  display: flex;
  flex-direction: column;
}

.location-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  color: var(--color-brown);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.location-info p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-warm-taupe);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.location-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--color-dark);
}

.location-detail svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-brown);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}

.map-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.map-link {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brown);
  text-decoration: none;
  padding: 0.6rem 1rem;
  border: 1px solid var(--color-sand);
  transition: all 0.3s ease;
}

.map-link:hover {
  background: var(--color-brown);
  color: var(--color-cream);
  border-color: var(--color-brown);
}

.map-embed {
  width: 100%;
  flex-grow: 1;
  min-height: 200px;
  border: none;
}

.contact-form-card {
  background: var(--color-white);
  padding: 2.5rem;
}

.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  color: var(--color-brown);
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.contact-form-subtitle {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--color-warm-taupe);
  margin-bottom: 2rem;
}

.contact-form-inline .form-group {
  margin-bottom: 1.5rem;
}

.contact-form-inline .form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-warm-taupe);
  margin-bottom: 0.5rem;
}

.contact-form-inline .form-group input,
.contact-form-inline .form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-sand);
  background: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--color-dark);
  transition: border-color 0.3s ease;
  resize: vertical;
}

.contact-form-inline .form-group input:focus,
.contact-form-inline .form-group textarea:focus {
  outline: none;
  border-color: var(--color-brown);
}

.form-submit-wrapper {
  margin-top: 1.5rem;
}

.form-submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--color-brown);
  color: var(--color-cream);
  border: 1px solid var(--color-brown);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit-btn:hover {
  background: var(--color-dark);
  border-color: var(--color-dark);
}

.contact-alt {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--color-warm-taupe);
  font-style: italic;
}

.contact-alt a {
  color: var(--color-brown);
  text-decoration: none;
}

.contact-alt a:hover {
  text-decoration: underline;
}

/* ==================== NEARBY ==================== */
.nearby {
  padding: var(--section-padding) clamp(2rem, 5vw, 4rem);
  background: var(--color-white);
}

.nearby-section {
  padding: var(--section-padding) clamp(2rem, 5vw, 4rem);
  background: var(--color-white);
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.nearby-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-sand);
}

.nearby-name {
  font-size: 0.95rem;
  color: var(--color-dark);
}

.nearby-distance {
  font-size: 0.85rem;
  color: var(--color-warm-taupe);
  font-style: italic;
}

/* ==================== BOOKING CTA ==================== */
.booking {
  padding: var(--section-padding) clamp(2rem, 5vw, 4rem);
  background: var(--color-brown);
  text-align: center;
}

.booking-section {
  padding: var(--section-padding) clamp(2rem, 5vw, 4rem);
  background: var(--color-brown);
  text-align: center;
}

.booking-content {
  max-width: 600px;
  margin: 0 auto;
}

.booking h2,
.booking-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-cream);
  font-weight: 300;
  margin-bottom: 1rem;
}

.booking p,
.booking-text {
  font-size: 1rem;
  color: var(--color-sand);
  margin-bottom: 2.5rem;
}

.booking-cta {
  display: inline-block;
  padding: 1.1rem 3rem;
  background: var(--color-cream);
  color: var(--color-brown);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.4s ease;
  border: 1px solid var(--color-cream);
}

.booking-cta:hover {
  background: var(--color-white);
  transform: translateY(-2px);
}

.booking-note {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--color-sand);
  font-style: italic;
}

.booking-note a {
  color: var(--color-cream);
  text-decoration: none;
}

.booking-note a:hover {
  text-decoration: underline;
}

/* IGMS Widget styling */
.igms-direct-booking-widget {
  margin: 2rem 0;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
  padding: var(--section-padding) clamp(2rem, 5vw, 4rem);
  background: var(--color-dark);
  text-align: center;
}

.contact-header {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.contact-subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-warm-taupe);
  margin-bottom: 1rem;
  display: block;
}

.contact-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-cream);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.contact-divider {
  width: 60px;
  height: 1px;
  background: var(--color-warm-taupe);
  margin: 0 auto 1.5rem;
}

.contact-response-time {
  font-size: 0.85rem;
  color: var(--color-warm-taupe);
  font-style: italic;
}

.contact-card {
  max-width: 560px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: clamp(2rem, 4vw, 3rem);
  backdrop-filter: blur(10px);
}

.contact-errors {
  background: rgba(200, 60, 60, 0.15);
  border: 1px solid rgba(200, 60, 60, 0.3);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.contact-errors p {
  color: #e8a0a0;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

.contact-errors p:last-child {
  margin-bottom: 0;
}

.contact-fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-field {
  position: relative;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 1.25rem 1rem 0.75rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s ease;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(255, 255, 255, 0.4);
}

.contact-field label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: var(--color-warm-taupe);
  font-size: 0.85rem;
  pointer-events: none;
  transition: all 0.25s ease;
}

.contact-field input:focus ~ label,
.contact-field textarea:focus ~ label,
.contact-field input.has-value ~ label,
.contact-field textarea.has-value ~ label {
  top: 0.4rem;
  font-size: 0.65rem;
  opacity: 0.7;
}

.contact-submit {
  margin-top: 2rem;
}

.contact-submit-btn {
  width: 100%;
  padding: 1.1rem 3rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-cream);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  border-radius: 6px;
}

.contact-submit-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}

.contact-footer-note {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--color-warm-taupe);
  font-style: italic;
}

.contact-footer-note a {
  color: var(--color-cream);
  text-decoration: none;
}

.contact-footer-note a:hover {
  text-decoration: underline;
}

.contact-tagline {
  margin-top: 3rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: rgba(255, 255, 255, 0.18);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.05em;
}

.contact-section--full {
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* ==================== FOOTER ==================== */
footer {
  padding: 4rem clamp(2rem, 5vw, 4rem) 2rem;
  background: var(--color-dark);
  color: var(--color-sand);
}

.footer-section {
  padding: 4rem clamp(2rem, 5vw, 4rem) 2rem;
  background: var(--color-dark);
  color: var(--color-sand);
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-warm-taupe);
}

.footer-links h4,
.footer-contact h4,
.footer-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-cream);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--color-warm-taupe);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-contact p {
  font-size: 0.85rem;
  color: var(--color-warm-taupe);
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: var(--color-warm-taupe);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--color-cream);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-warm-taupe);
}

.social-links,
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a,
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-warm-taupe);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--color-warm-taupe);
  text-decoration: none;
}

.social-links a:hover,
.footer-social a:hover {
  border-color: var(--color-cream);
  background: var(--color-cream);
  color: var(--color-dark);
}

.social-links svg {
  width: 16px;
  height: 16px;
  fill: var(--color-warm-taupe);
  transition: fill 0.3s ease;
}

.social-links a:hover svg {
  fill: var(--color-dark);
}

.footer-bottom {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(184, 169, 154, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--color-warm-taupe);
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-dark);
  z-index: 6000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  right: calc(clamp(1.5rem, 4vw, 3rem) - 0.5rem);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(0.8rem * 2 + 75px);
  opacity: 0;
  transition: opacity 0.3s ease 0.3s;
}

.mobile-menu.active .mobile-menu-close {
  opacity: 1;
}

/* Menu Content */
.menu-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: safe center;
  padding: 6rem 2.5rem 2rem;
  overflow-y: auto;
  min-height: 0;
}

/* Menu Links */
.menu-links {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
}

.menu-links li {
  overflow: hidden;
}

.menu-links a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.8rem 0;
  text-decoration: none;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.5s ease,
              color 0.3s ease;
}

.mobile-menu.active .menu-links a {
  transform: translateY(0);
  opacity: 1;
}

/* Stagger animation */
.menu-links li:nth-child(1) a { transition-delay: 0.1s; }
.menu-links li:nth-child(2) a { transition-delay: 0.15s; }
.menu-links li:nth-child(3) a { transition-delay: 0.2s; }
.menu-links li:nth-child(4) a { transition-delay: 0.25s; }
.menu-links li:nth-child(5) a { transition-delay: 0.3s; }
.menu-links li:nth-child(6) a { transition-delay: 0.35s; }

.menu-number {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--color-warm-taupe);
  letter-spacing: 0.1em;
  min-width: 2rem;
}

.menu-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 5vw, 1.8rem);
  font-weight: 300;
  color: var(--color-cream);
  letter-spacing: 0.02em;
}

.menu-links a:hover .menu-text {
  color: var(--color-sand);
}

/* Divider */
.menu-divider {
  width: 60px;
  height: 1px;
  background: var(--color-warm-taupe);
  opacity: 0.3;
  margin: 1rem 0 2rem;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.mobile-menu.active .menu-divider {
  transform: scaleX(1);
}

/* Contact Info */
.menu-contact {
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.5s;
}

.mobile-menu.active .menu-contact {
  opacity: 1;
  transform: translateY(0);
}

.menu-contact a {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--color-warm-taupe);
  text-decoration: none;
  margin-bottom: 0.4rem;
  transition: color 0.3s ease;
}

.menu-contact a:hover {
  color: var(--color-cream);
}

/* ==================== BOOKING MODAL ==================== */
.booking-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 40, 36, 0.7);
  z-index: 7000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.booking-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.booking-modal {
  background: var(--color-cream);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.booking-modal-overlay.active .booking-modal {
  transform: translateY(0);
}

.booking-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--color-sand);
}

.booking-modal-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-warm-taupe);
  display: block;
  margin-bottom: 0.25rem;
}

.booking-modal-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-brown);
  font-weight: 300;
}

.booking-modal-close {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.booking-modal-close::before,
.booking-modal-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background: var(--color-brown);
  transition: background 0.3s ease;
}

.booking-modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.booking-modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.booking-modal-close:hover::before,
.booking-modal-close:hover::after {
  background: var(--color-dark);
}

.booking-modal-content {
  padding: 1.5rem 2rem;
  overflow-y: auto;
  flex: 1;
}

.booking-modal-footer {
  padding: 1.25rem 2rem;
  border-top: 1px solid var(--color-sand);
  text-align: center;
}

.booking-modal-footer p {
  font-size: 0.8rem;
  color: var(--color-warm-taupe);
}

.booking-modal-footer a {
  color: var(--color-brown);
  text-decoration: none;
}

.booking-modal-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .booking-modal {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    height: 100%;
  }

  .booking-modal-header {
    padding: 1.25rem 1.5rem;
  }

  .booking-modal-content {
    padding: 1.25rem 1.5rem;
  }

  .booking-modal-footer {
    padding: 1rem 1.5rem;
  }
}

/* ==================== UTILITY CLASSES ==================== */
.bg-cream { background-color: var(--color-cream); }
.bg-sand { background-color: var(--color-sand); }
.bg-warm-taupe { background-color: var(--color-warm-taupe); }
.bg-brown { background-color: var(--color-brown); }
.bg-dark { background-color: var(--color-dark); }
.bg-white { background-color: var(--color-white); }
.bg-sage { background-color: var(--color-sage); }

.text-cream { color: var(--color-cream); }
.text-sand { color: var(--color-sand); }
.text-warm-taupe { color: var(--color-warm-taupe); }
.text-brown { color: var(--color-brown); }
.text-dark { color: var(--color-dark); }
.text-sage { color: var(--color-sage); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1258px) {
  .nav-center {
    display: none;
  }

  .nav-phone {
    display: none;
  }

  .burger {
    display: block;
  }

  .location-grid,
  .story-content {
    grid-template-columns: 1fr;
  }

  .our-story-image {
    order: -1;
    aspect-ratio: 16/9;
  }

  .our-story-image .image-container-large {
    display: none;
  }

  .our-story-image .image-container-small {
    display: block;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links,
  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero h1,
  .hero-title {
    letter-spacing: 0.05em;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nearby-grid {
    grid-template-columns: 1fr;
  }
}
