@import "https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap";

/* ===== Design System & Custom Styles ===== */
:root {
  --warm-bg: #f5f0eb;
  --warm-bg-alt: #ede7df;
  --warm-cream: #faf7f3;
  --warm-stone: #d4c9bb;
  --text-dark: #2c2520;
  --text-body: #4a4139;
  --text-muted: #8a7e73;
  --accent: #8b7355;
  --accent-light: #b39e7d;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
*,
:before,
:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--sans);
  color: var(--text-body);
  background: var(--warm-bg);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.fade-in-section {
  opacity: 0;
  transition:
    opacity 0.8s,
    transform 0.8s;
  transform: translateY(28px);
}
.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}
.nav {
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.nav--scrolled {
  backdrop-filter: blur(12px);
  background: #f5f0eb;
  padding: 12px 0;
  box-shadow: 0 1px rgba(0, 0, 0, 0.06);
}
.nav-inner {
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
}
.nav-logo {
  font-family: var(--serif);
  color: #fff;
  letter-spacing: 0.02em;
  font-size: 1.6rem;
  font-weight: 400;
  transition: color 0.4s;
}
.nav--scrolled .nav-logo {
  color: var(--text-dark);
}
.nav-inner a[aria-label] {
  color: #fff;
}
.nav--scrolled .nav-inner a[aria-label] {
  color: var(--text-dark);
}
.nav-links {
  gap: 32px;
  display: flex;
}
.nav-links a {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffffd9;
  font-size: 0.82rem;
  font-weight: 400;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #fff;
}
.nav--scrolled .nav-links a {
  color: var(--text-muted);
}
.nav--scrolled .nav-links a:hover {
  color: var(--text-dark);
}
.nav-toggle {
  cursor: pointer;
  background: 0 0;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  display: none;
}
.nav-toggle span {
  background: #fff;
  width: 22px;
  height: 1.5px;
  transition: background 0.3s;
  display: block;
}
.nav--scrolled .nav-toggle span {
  background: var(--text-dark);
}
@media (width<=768px) {
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    background: var(--warm-cream);
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 4px 24px #00000014;
  }
  .nav-links--open {
    display: flex;
  }
  .nav-links a {
    font-size: 0.9rem;
    color: var(--text-body) !important;
  }
}
.hero {
  justify-content: center;
  align-items: center;
  height: 100vh;
  min-height: 600px;
  display: flex;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  background-position: 50% 55%;
  background-size: cover;
  position: absolute;
  inset: 0;
  transform: scale(1.04);
}
.hero-overlay {
  background: linear-gradient(#1e191440 0%, #1e191480 100%);
  position: absolute;
  inset: 0;
}
.hero-content {
  text-align: center;
  color: #fff;
  padding: 0 24px;
  position: relative;
}
.hero-tagline {
  font-family: var(--sans);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 16px;
  font-size: 0.78rem;
  font-weight: 400;
}
.hero-title {
  font-family: var(--serif);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1;
}
.hero-sub {
  font-family: var(--serif);
  opacity: 0.9;
  margin-bottom: 40px;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
}
.hero-stats {
  justify-content: center;
  align-items: center;
  gap: 28px;
  display: flex;
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.2;
  display: block;
}
.hero-stat-label {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  font-size: 0.7rem;
}
.hero-stat-divider {
  background: #ffffff4d;
  width: 1px;
  height: 36px;
}
.hero-scroll {
  color: #fff9;
  animation: 2.5s ease-in-out infinite float;
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translate(-50%);
}
@keyframes float {
  0%,
  to {
    transform: translate(-50%) translateY(0);
  }
  50% {
    transform: translate(-50%) translateY(8px);
  }
}
.section {
  padding: 100px 0;
}
.section-label {
  font-family: var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 500;
}
.section-heading {
  font-family: var(--serif);
  color: var(--text-dark);
  max-width: 640px;
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
}
.intro-section {
  background: var(--warm-cream);
}
.intro-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 64px;
  display: grid;
}
.intro-body {
  color: var(--text-body);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}
.intro-images {
  gap: 16px;
  display: grid;
}
.intro-img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.intro-img--main {
  aspect-ratio: 4/3;
}
.intro-img--secondary {
  aspect-ratio: 16/9;
}
@media (width<=768px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.full-bleed {
  height: 60vh;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}
.full-bleed img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.full-bleed-overlay {
  text-align: center;
  background: #1e191459;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  display: flex;
  position: absolute;
  inset: 0;
}
.full-bleed-overlay blockquote {
  font-family: var(--serif);
  color: #fff;
  max-width: 700px;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
}
.full-bleed-overlay cite {
  font-family: var(--sans);
  color: #ffffffb3;
  letter-spacing: 0.08em;
  margin-top: 16px;
  font-size: 0.82rem;
  font-style: normal;
}
.gallery-section {
  background: var(--warm-bg);
}
.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
  display: grid;
}
.gallery-item {
  cursor: pointer;
  overflow: hidden;
}
.gallery-item img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
}
.gallery-item:hover img {
  transform: scale(1.03);
}
.gallery-item--wide {
  grid-column: span 2;
}
.gallery-item--wide img {
  aspect-ratio: 16/9;
}
.gallery-item--tall {
  grid-row: span 2;
}
.gallery-item--tall img {
  aspect-ratio: 2/3;
  height: 100%;
}
.gallery-item--normal img {
  aspect-ratio: 4/3;
}
@media (width<=768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item--wide {
    grid-column: span 2;
  }
  .gallery-item--tall {
    grid-row: span 1;
  }
  .gallery-item--tall img {
    aspect-ratio: 4/3;
  }
}
@media (width<=480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item--wide {
    grid-column: span 1;
  }
}
.lightbox-overlay {
  z-index: 200;
  cursor: pointer;
  background: #14100ceb;
  justify-content: center;
  align-items: center;
  padding: 40px;
  display: flex;
  position: fixed;
  inset: 0;
}
.lightbox-img {
  -o-object-fit: contain;
  object-fit: contain;
  cursor: default;
  border-radius: 2px;
  max-width: 90vw;
  max-height: 85vh;
}
.lightbox-close {
  color: #ffffffb3;
  cursor: pointer;
  background: 0 0;
  border: none;
  font-size: 2rem;
  line-height: 1;
  transition: color 0.3s;
  position: absolute;
  top: 20px;
  right: 28px;
}
.lightbox-close:hover {
  color: #fff;
}
.amenities-section {
  background: var(--warm-cream);
}
.amenities-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  display: grid;
}
.amenity-card {
  border: 1px solid var(--warm-stone);
  background: var(--warm-bg);
  padding: 32px 28px;
  transition: border-color 0.3s;
}
.amenity-card:hover {
  border-color: var(--accent-light);
}
.amenity-icon {
  color: var(--accent);
  margin-bottom: 16px;
  font-size: 0.6rem;
  display: block;
}
.amenity-title {
  font-family: var(--serif);
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 1.3rem;
  font-weight: 400;
}
.amenity-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
@media (width<=768px) {
  .amenities-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media (width<=480px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}
.rooms-section {
  background: var(--warm-bg);
}
.rooms-intro {
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.floor-nav {
  border-bottom: 1px solid var(--warm-stone);
  gap: 0;
  margin-top: 40px;
  margin-bottom: 48px;
  display: flex;
}
.floor-nav-btn {
  cursor: pointer;
  text-align: left;
  background: 0 0;
  border: none;
  border-bottom: 2px solid #0000;
  flex: 1;
  padding: 20px 16px;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.floor-nav-btn:hover {
  background: #8b73550a;
}
.floor-nav-btn--active {
  border-bottom-color: var(--accent);
}
.floor-nav-num {
  font-family: var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-size: 0.7rem;
  font-weight: 500;
  display: block;
}
.floor-nav-btn--active .floor-nav-num {
  color: var(--accent);
}
.floor-nav-label {
  font-family: var(--serif);
  color: var(--text-dark);
  font-size: 1.3rem;
  font-weight: 400;
  display: block;
}
.floor-content {
  animation: 0.5s fadeUp;
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.floor-hero {
  margin-bottom: 40px;
}
.floor-hero img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.floor-description {
  max-width: 720px;
  margin-bottom: 40px;
}
.floor-description h3 {
  font-family: var(--serif);
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 2rem;
  font-weight: 400;
}
.floor-badge {
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 0.78rem;
  font-weight: 400;
}
.floor-description p {
  margin-bottom: 16px;
  font-size: 1.02rem;
  line-height: 1.8;
}
.floor-gallery-row {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 56px;
  display: grid;
}
.floor-gallery-row img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.floor-gallery-row--four {
  grid-template-columns: repeat(4, 1fr);
}
.floor-gallery-caption {
  flex-direction: column;
  display: flex;
}
.floor-gallery-caption img {
  aspect-ratio: 3/4;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.floor-gallery-caption span {
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 8px;
  font-size: 0.78rem;
}
.floor-facade {
  margin-top: 24px;
}
.floor-facade img {
  aspect-ratio: 3/4;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  max-height: 600px;
}
.floor-facade-caption {
  color: var(--text-muted);
  max-width: 600px;
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.6;
}
@media (width<=768px) {
  .floor-nav {
    flex-direction: column;
  }
  .floor-nav-btn {
    border-bottom: none;
    border-left: 2px solid #0000;
  }
  .floor-nav-btn--active {
    border-left-color: var(--accent);
    border-bottom: none;
  }
  .floor-gallery-row,
  .floor-gallery-row--four {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width<=480px) {
  .floor-gallery-row--four {
    grid-template-columns: 1fr;
  }
}
.location-section {
  background: var(--text-dark);
  color: #fff;
}
.location-section .section-label {
  color: var(--accent-light);
}
.location-section .section-heading {
  color: #fff;
}
.location-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 64px;
  margin-top: 24px;
  display: grid;
}
.location-text p {
  color: #fffc;
  margin-bottom: 32px;
  font-size: 1.05rem;
  line-height: 1.8;
}
.location-distances {
  flex-direction: column;
  gap: 0;
  display: flex;
}
.location-item {
  border-bottom: 1px solid #ffffff1a;
  align-items: baseline;
  gap: 20px;
  padding: 14px 0;
  display: flex;
}
.location-item:first-child {
  border-top: 1px solid #ffffff1a;
}
.location-dist {
  font-family: var(--serif);
  color: var(--accent-light);
  flex-shrink: 0;
  min-width: 70px;
  font-size: 1.1rem;
  font-weight: 500;
}
.location-place {
  color: #ffffffb3;
  font-size: 0.92rem;
}
.location-img {
  aspect-ratio: 3/4;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
@media (width<=768px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.journal-section {
  background: var(--warm-cream);
}
.journal-intro {
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.journal-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  display: grid;
}
.journal-card {
  background: var(--warm-bg);
  cursor: pointer;
  border: 1px solid #0000;
  padding: 36px 32px;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.journal-card:hover {
  border-color: var(--warm-stone);
  transform: translateY(-3px);
}
.journal-tag {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 0.7rem;
  font-weight: 500;
  display: block;
}
.journal-title {
  font-family: var(--serif);
  color: var(--text-dark);
  margin-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
}
.journal-excerpt {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.92rem;
  line-height: 1.7;
}
.journal-link {
  letter-spacing: 0.06em;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 500;
  transition: color 0.3s;
}
.journal-card:hover .journal-link {
  color: var(--text-dark);
}
@media (width<=768px) {
  .journal-grid {
    grid-template-columns: 1fr;
  }
}
.contact-section {
  background: var(--warm-bg);
}
.contact-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.contact-body {
  margin-bottom: 32px;
  font-size: 1.1rem;
  line-height: 1.8;
}
.contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.contact-btn {
  font-family: var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--text-dark);
  padding: 16px 48px;
  font-size: 0.85rem;
  font-weight: 400;
  transition: background 0.3s;
  display: inline-block;
}
.contact-btn:hover {
  background: var(--accent);
}
.footer {
  border-top: 1px solid var(--warm-stone);
  padding: 40px 0;
}
.footer-inner {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  display: flex;
}
.footer-logo {
  font-family: var(--serif);
  color: var(--text-dark);
  font-size: 1.2rem;
}
.footer-loc {
  color: var(--text-muted);
  font-size: 0.82rem;
}
.footer-copy {
  color: var(--text-muted);
  font-size: 0.78rem;
}
@media (width<=768px) {
  .footer-inner {
    text-align: center;
    flex-direction: column;
  }
  .section {
    padding: 72px 0;
  }
}

/* ===== Journal Modal ===== */
.journal-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  padding: 40px 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.journal-modal-backdrop.active {
  opacity: 1;
}
.journal-modal {
  background: #faf8f5;
  max-width: 740px;
  width: 100%;
  transform: translateY(30px);
  transition: transform 0.4s ease;
  position: relative;
}
.journal-modal-backdrop.active .journal-modal {
  transform: translateY(0);
}
.journal-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  padding: 16px 20px;
}
.journal-modal-close button {
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  transition: opacity 0.2s;
  padding: 4px 12px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.journal-modal-close button:hover {
  opacity: 0.7;
}
.journal-modal-hero {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.journal-modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.journal-modal-body {
  padding: 48px 52px 60px;
}
.jm-tag {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a7e6b;
  font-size: 0.7rem;
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}
.journal-modal-body h2 {
  font-family: "Cormorant Garamond", serif;
  color: #2c2825;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 32px;
}
.journal-modal-body p {
  color: #6b6560;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.journal-modal-body h3 {
  font-family: "Cormorant Garamond", serif;
  color: #2c2825;
  font-size: 1.3rem;
  font-weight: 400;
  margin-top: 36px;
  margin-bottom: 16px;
}
.jm-img {
  margin: 32px 0;
  overflow: hidden;
}
.jm-img img {
  width: 100%;
  object-fit: cover;
}
.jm-caption {
  color: #6b6560;
  font-size: 0.78rem;
  font-style: italic;
  margin-top: 8px;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .journal-modal-body {
    padding: 32px 24px 40px;
  }
  .journal-modal-body h2 {
    font-size: 1.5rem;
  }
}

/* ===== Map Modal ===== */
.map-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 300;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.map-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}
.map-modal {
  background: #fff;
  border-radius: 8px;
  width: 90vw;
  max-width: 900px;
  height: 75vh;
  max-height: 640px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.map-modal-backdrop.active .map-modal {
  transform: scale(1);
}
.map-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #e5e0da;
}
.map-modal-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-dark);
}
.map-modal-subtitle {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.map-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}
.map-modal-close:hover {
  color: var(--text-dark);
}
.map-modal-body {
  height: calc(100% - 60px);
}
.map-modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.map-modal-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
.map-modal-link:hover {
  color: var(--text-dark);
}

/* ===== Calendar Modal ===== */
.cal-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cal-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}
.cal-modal {
  background: #fff;
  border-radius: 8px;
  width: 420px;
  max-width: 90vw;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.cal-modal-backdrop.active .cal-modal {
  transform: scale(1);
}
.cal-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #e5e0da;
}
.cal-modal-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-dark);
}
.cal-modal-subtitle {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.cal-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}
.cal-modal-close:hover {
  color: var(--text-dark);
}
.cal-modal-body {
  padding: 20px 24px 24px;
}
.cal-modal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.cal-modal-nav-btn {
  background: none;
  border: 1px solid var(--warm-stone);
  border-radius: 4px;
  cursor: pointer;
  color: var(--text-body);
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}
.cal-modal-nav-btn:hover:not(:disabled) {
  background: var(--warm-bg-alt);
  color: var(--text-dark);
}
.cal-modal-nav-btn:disabled {
  opacity: 0.3;
  cursor: default;
}
.cal-modal-month {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}
.cal-grid-header {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 4px 0 8px;
}
.cal-day {
  font-family: var(--sans);
  font-size: 0.82rem;
  padding: 8px 4px;
  border-radius: 4px;
  line-height: 1;
}
.cal-day--empty {
  visibility: hidden;
}
.cal-day--available {
  background: var(--warm-bg);
  color: var(--text-body);
}
.cal-day--booked {
  background: var(--accent);
  color: var(--text-dark);
  font-weight: 500;
}
.cal-day--checkin {
  background: linear-gradient(to bottom right, var(--warm-bg) 50%, var(--accent) 50%);
  color: var(--text-dark);
  font-weight: 500;
}
.cal-day--checkout {
  background: linear-gradient(to bottom right, var(--accent) 50%, var(--warm-bg) 50%);
  color: var(--text-dark);
  font-weight: 500;
}
.cal-day--past {
  background: none;
  color: var(--text-muted);
  text-decoration: line-through;
}
.cal-day--today {
  box-shadow: inset 0 0 0 2px var(--accent-light);
}
.cal-legend {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #e5e0da;
}
.cal-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.cal-legend-swatch {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}
.cal-legend-swatch--available {
  background: var(--warm-bg);
  border: 1px solid var(--warm-stone);
}
.cal-legend-swatch--booked {
  background: var(--accent);
}
.cal-legend-swatch--past {
  background: #ddd;
}
.cal-contact-btn {
  font-family: var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
  padding: 12px 28px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: none;
  cursor: pointer;
  display: inline-block;
  transition: background 0.3s, color 0.3s;
}
.cal-contact-btn:hover {
  background: var(--accent);
  color: #fff;
}
@media (max-width: 768px) {
  .cal-modal-backdrop {
    padding: 0;
    align-items: flex-end;
  }
  .cal-modal {
    width: 100%;
    max-width: 100%;
    border-radius: 12px 12px 0 0;
    max-height: 90vh;
    overflow-y: auto;
  }
  .cal-day {
    padding: 6px 2px;
    font-size: 0.78rem;
  }
  .cal-legend {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* ===== Language Switcher ===== */
.lang-switcher {
  position: relative;
  margin-left: 12px;
}
.lang-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  padding: 4px 10px;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}
.lang-switcher-btn .lang-current {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #ffffffd9;
  transition: color 0.3s;
}
.lang-switcher-btn svg {
  width: 10px;
  height: 10px;
  stroke: #ffffffd9;
  transition: stroke 0.3s;
}
.nav--scrolled .lang-switcher-btn {
  border-color: var(--warm-stone);
}
.nav--scrolled .lang-switcher-btn .lang-current {
  color: var(--text-muted);
}
.nav--scrolled .lang-switcher-btn svg {
  stroke: var(--text-muted);
}
.lang-switcher-btn:hover .lang-current {
  color: #fff;
}
.nav--scrolled .lang-switcher-btn:hover .lang-current {
  color: var(--text-dark);
}
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--warm-cream);
  border: 1px solid var(--warm-stone);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  min-width: 120px;
  z-index: 110;
  overflow: hidden;
}
.lang-dropdown.open {
  display: block;
}
.lang-flag {
  margin-right: 6px;
  font-size: 1em;
}
.lang-flag-current {
  margin-right: 4px;
  font-size: 0.9em;
}
.lang-dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 10px 16px;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--text-body);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lang-dropdown button:hover {
  background: var(--warm-bg-alt);
  color: var(--text-dark);
}
.lang-dropdown button.active {
  color: var(--accent);
  font-weight: 500;
}
@media (max-width: 768px) {
  .lang-switcher {
    margin: 8px 0 0 0;
    align-self: flex-start;
  }
  .lang-dropdown {
    right: auto;
    left: 0;
  }
}
