* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #F8F4EC;
  color: #2C382F;
  line-height: 1.4;
  overflow-x: hidden;
}

h1, h2, h3, h4, .section-title {
  font-family: 'Playfair Display', serif;
}

.font-serif-italic {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
}

.font-serif {
  font-family: 'Libre Baskerville', serif;
}

.site-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* HEADER */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #F1E9DC;
  padding: 0 40px;
  height: 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.header-left {
  display: flex;
  align-items: center;
}

.header-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: opacity 0.2s;
}

.hamburger-btn:hover {
  opacity: 0.6;
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #2B2B2B;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.hamburger-btn.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger-btn.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-btn.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: #E4C58A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  color: #2B2B2B;
  flex-shrink: 0;
}

.logo-wordmark {
  font-family: 'Libre Baskerville', serif;
  font-size: 15px;
  color: #6A6A6A;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.phone-number {
  font-family: 'Libre Baskerville', serif;
  font-size: 13px;
  color: #2B2B2B;
  letter-spacing: 0.02em;
}

.book-now-btn {
  background: #E4C58A;
  border: none;
  padding: 8px 22px;
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #17261E;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.book-now-btn:hover {
  background: #083536;
  color: #E4C58A;
}

/* NAV OVERLAY */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}

.nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 38, 30, 0);
  transition: background 0.4s ease;
}

.nav-overlay.is-open .nav-backdrop {
  background: rgba(23, 38, 30, 0.55);
  pointer-events: auto;
}

.nav-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 100%;
  background: #485047;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.nav-overlay.is-open .nav-panel {
  transform: translateX(0);
  pointer-events: auto;
}

.nav-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #AFA793;
  font-size: 22px;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}

.nav-close-btn:hover {
  color: #E4C58A;
}

.nav-links {
  padding: 32px 0;
  flex: 1;
}

.nav-links a {
  display: block;
  padding: 14px 28px;
  color: #AFA793;
  text-decoration: none;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
  font-weight: 500;
  transition: all 0.2s;
  border-left: 2px solid transparent;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: #E4C58A;
  border-left-color: #E4C58A;
  background: rgba(228, 197, 138, 0.06);
  padding-left: 36px;
}

.nav-panel-footer {
  padding: 24px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.nav-panel-footer p {
  font-size: 12px;
  color: #7A8077;
  font-family: 'Libre Baskerville', serif;
  margin-bottom: 6px;
}

.nav-panel-footer a {
  font-size: 13px;
  color: #AFA793;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}

.nav-panel-footer a:hover {
  color: #E4C58A;
}

/* COMMON STYLES */
section { width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.two-col-grid-60-40 {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
}
.col-video { width: 60%; overflow: hidden; }
.col-text {
  width: 40%;
  background: #F7F3EC;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.two-col-grid-40-60 {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
}
.col-text-left {
  width: 40%;
  background: #F7F3EC;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.col-video-right { width: 60%; overflow: hidden; }

.btn-outline-dark {
  background: #677042;
  border: none;
  padding: 10px 28px;
  font-family: 'Libre Baskerville', serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #F7F3EC;
  cursor: pointer;
  transition: 0.2s;
  display: inline-block;
  text-transform: uppercase;
  width: fit-content;
}
.btn-outline-dark:hover { background: #E4C58A; color: #17261E; }

.section-title {
  font-size: 27px;
  font-weight: 400;
  color: #2C382F;
  text-align: center;
  margin-bottom: 24px;
}
.section-subtitle {
  font-size: 22px;
  font-family: 'Libre Baskerville', serif;
  text-align: center;
  margin-bottom: 40px;
  color: #2C382F;
}
.description-text {
  font-size: 15px;
  line-height: 1.5;
  color: #3D463C;
  font-weight: 400;
}
.beige-bg { background-color: #F5EEE6; }
.dark-bg { background-color: #2C382F; color: #F7F3EC; }
.dark-bg .description-text { color: #EBE5D6; }

.room-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin: 40px 0;
}
.room-icon { width: 208px; height: 181px; overflow: hidden; }
.room-icon img { width: 100%; height: 100%; object-fit: cover; }

.vertical-gallery {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
}
.vertical-card-wrap {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 260px;
}
.vertical-card { width: 100%; position: relative; overflow: hidden; }
.vertical-card img { width: 100%; height: 600px; display: block;}
.card-label-on-image {
  position: absolute;
  bottom: 0px;
  left: 0; right: 0;
  text-align: center;
  font-size: 20px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  padding: 20px 12px 12px;
  pointer-events: none;
}
.card-desc {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #3a3a3a;
  text-align: center;
}

.centered-video-block { display: flex; justify-content: center; margin: 32px 0; }
.centered-video-wrapper { width: 60%; overflow: hidden; }
.centered-video-wrapper video { width: 100%; display: block; }

.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.5);
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  border: none;
  pointer-events: none;
}

.fullwidth-image-wrap {
  width: 100%;
  line-height: 0;
}
.fullwidth-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* FOOTER */
.footer {
  background-color: #17261E;
  color: #E1D9C7;
  padding: 60px 40px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer a { color: #E1D9C7; text-decoration: none; }
.footer a:hover { color: #E4C58A; }
.horizontal-line { height: 1px; background: #F7F3EC; margin: 32px 0; opacity: 0.3; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .two-col-grid-60-40, .two-col-grid-40-60 { flex-direction: column; }
  .col-video, .col-text, .col-text-left, .col-video-right { width: 100%; }
  .centered-video-wrapper { width: 90%; }
  .main-header { padding: 0 20px; }
  .phone-number { display: none; }
  .nav-panel { width: 280px; }
}

@media (max-width: 480px) {
  .logo-wordmark { display: none; }
}