:root {
  --key: #342216;
  --bg: #ffffff;
  --text-light: #faf8f6;
  --overlay: rgba(14, 10, 8, 0.45);
  --overlay-strong: rgba(14, 10, 8, 0.62);
  --header-offset: 84px;
}

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

body {
  font-family: "Lato", sans-serif;
  background: var(--bg);
  color: var(--key);
  line-height: 1.6;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  background: #ffffff;
  border-bottom: 1px solid rgba(52, 34, 22, 0.1);
}

.nav-wrap {
  position: relative;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand img {
  width: 140px;
  height: auto;
  display: block;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1.35rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--key);
  font-size: 0.93rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: opacity 0.25s ease;
}

.nav-menu a:hover {
  opacity: 0.65;
}

.nav-menu a.active-link {
  font-weight: 700;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--key);
  font-size: 1.2rem;
  cursor: pointer;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.lang-link {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  text-decoration: none;
  color: var(--key);
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid rgba(52, 34, 22, 0.2);
  border-radius: 999px;
  padding: 0.28rem 0.5rem;
  line-height: 1;
  background: #ffffff;
  cursor: pointer;
}

.lang-link.active {
  background: var(--key);
  color: #ffffff;
  border-color: var(--key);
}

.flag {
  display: inline-block;
  width: 1.2em;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(52, 34, 22, 0.15);
}

.translate-widget {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

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

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 8s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--overlay), var(--overlay-strong));
  z-index: 1;
}

.hero-slider-controls {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.slider-btn {
  position: absolute;
  pointer-events: auto;
  border: 0;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--key);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.slider-btn:hover {
  background: #ffffff;
  transform: scale(1.04);
}

.slider-prev {
  left: 1.25rem;
}

.slider-next {
  right: 1.25rem;
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.slider-dot {
  border: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.slider-dot.active {
  background: #ffffff;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 90px;
  color: var(--text-light);
  max-width: 860px;
}

.eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.4rem;
}

.hero-text {
  max-width: 760px;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}

.hero-cta-row {
  display: inline-flex;
  align-items: stretch;
  gap: 0.75rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--key);
  color: #ffffff;
  border: 1px solid var(--key);
  min-height: 52px;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.03em;
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.tripadvisor-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 999px;
  min-height: 52px;
  padding: 0.35rem 1rem;
}

.tripadvisor-badge img {
  height: 32px;
  width: auto;
  display: block;
}

.tripadvisor-rating-card {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 0.52rem 1rem;
  backdrop-filter: blur(2px);
}

.tripadvisor-rating-value {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}

.tripadvisor-rating-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.24rem;
}

.trip-dot {
  width: 0.88rem;
  height: 0.88rem;
  border-radius: 50%;
  border: 1px solid #00aa6c;
  background: transparent;
}

.trip-dot.full {
  background: #00aa6c;
}

.trip-dot.partial {
  background: linear-gradient(to right, #00aa6c 60%, transparent 60%);
}

.tripadvisor-rating-reviews {
  font-size: 0.92rem;
  opacity: 0.92;
}

.placeholder-sections {
  height: 0;
}

.about-page {
  padding-top: 110px;
}

.rooms-page {
  padding-top: 140px;
}

.diy-page {
  padding-top: 124px;
}

.contact-page {
  padding-top: 124px;
}

.terms-page {
  padding-top: calc(var(--header-offset) + 72px) !important;
}

.terms-page .about-content-section {
  padding-top: 1.6rem;
}

.testimonials-page {
  padding-top: calc(var(--header-offset) + 44px);
}

.blog-page {
  padding-top: calc(var(--header-offset) + 40px);
}

.blog-detail-page {
  padding-top: 40px;
}

.blog-section {
  padding-bottom: 2.4rem;
}

.blog-list {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
}

.blog-card {
  border: 1px solid rgba(52, 34, 22, 0.16);
  border-radius: 12px;
  padding: 1rem;
  background: #fff;
  display: grid;
  gap: 0.7rem;
}

.blog-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.05;
}

.blog-see-more {
  display: inline-flex;
  width: fit-content;
  justify-self: start;
  border: 1px solid var(--key);
  background: #fff;
  color: var(--key);
  border-radius: 999px;
  padding: 0.48rem 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.blog-detail {
  max-width: 860px;
  display: grid;
  gap: 1rem;
}

.blog-detail a {
  color: var(--key);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

.blog-detail-section {
  display: none;
}

.blog-detail-section.open {
  display: block;
}

.blog-page.detail-open .blog-list-section {
  display: none;
}

.testimonials-section {
  padding-bottom: 2.6rem;
}

.testimonials-stack {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
}

.testimonials-stack img {
  width: 100%;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(52, 34, 22, 0.16);
}

.contact-section {
  padding: 2.1rem 0 2.7rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.2rem;
  align-items: start;
}

.contact-details {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.45rem;
  font-size: 1.05rem;
}

.contact-details a {
  color: var(--key);
}

.leaflet-map {
  width: 100%;
  min-height: 430px;
  border-radius: 14px;
  border: 1px solid rgba(52, 34, 22, 0.2);
  overflow: hidden;
}

.diy-hero {
  padding: 2rem 0 0.9rem;
}

.diy-copy {
  max-width: 920px;
  display: grid;
  gap: 1rem;
  font-size: 1.05rem;
}

.diy-packages-section {
  padding: 1.2rem 0 2.8rem;
}

.diy-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(52, 34, 22, 0.25);
  border-radius: 14px;
  background: #3f2a1d;
}

.diy-packages-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.diy-packages-table th,
.diy-packages-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 0.8rem;
  text-align: left;
  vertical-align: top;
  color: #fff;
}

.diy-packages-table th {
  background: #342216;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.diy-packages-table tbody tr:nth-child(odd) td {
  background: rgba(255, 255, 255, 0.07);
}

.diy-packages-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}

.diy-notes {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.diy-notes a {
  color: var(--key);
  font-weight: 700;
}

.about-hero-section {
  padding: 2.2rem 0 1.2rem;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.about-hero-media img {
  width: 100%;
  max-width: 430px;
  display: block;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(52, 34, 22, 0.16);
}

.about-title {
  color: var(--key);
  margin-bottom: 0;
}

.about-eyebrow {
  color: var(--key);
  margin-bottom: 0.8rem;
}

.about-content-section {
  padding: 1rem 0 0.6rem;
}

.about-content {
  max-width: 900px;
  display: grid;
  gap: 1.1rem;
  font-size: 1.06rem;
}

.about-content a {
  color: var(--key);
  font-weight: 700;
}

.about-video-section,
.about-gallery-section {
  padding: 2.2rem 0;
}

.about-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}

.video-frame-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(52, 34, 22, 0.18);
}

.video-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.gallery-item {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: transform 0.25s ease;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
  padding: 1rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 95vw;
  max-height: 88vh;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
}

.rooms-hero {
  padding: 2.6rem 0 1.2rem;
}

.rooms-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: 1.8rem;
}

.rooms-intro-text {
  font-size: 1.05rem;
}

.rooms-hero-image img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

.rooms-perks {
  padding: 1rem 0 2rem;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.perks-grid div {
  background: #f6f2ee;
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font-size: 0.95rem;
}

.perks-grid i {
  margin-right: 0.45rem;
}

.rooms-list-section {
  padding-bottom: 2rem;
}

.rooms-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.room-card {
  border: 1px solid rgba(52, 34, 22, 0.14);
  border-radius: 14px;
  padding: 1rem;
  background: #fff;
}

.room-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin: 0.7rem 0 0.4rem;
  line-height: 1.05;
}

.room-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.42rem;
  background: #f6f2ee;
  border: 1px solid rgba(52, 34, 22, 0.22);
  border-radius: 999px;
  padding: 0.28rem 0.72rem;
  font-weight: 700;
  color: var(--key);
  margin-bottom: 0.55rem;
}

.room-price span {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.8;
}

.room-detail-copy .room-price {
  padding: 0.2rem 0.58rem;
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
  width: fit-content;
  justify-self: start;
}

.room-detail-copy .room-price span {
  font-size: 0.68rem;
}

.room-detail-open-btn {
  margin-top: 0.35rem;
  border: 1px solid var(--key);
  background: #fff;
  color: var(--key);
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
}

.room-card-actions {
  margin-top: 0.55rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.room-card-actions .room-detail-open-btn,
.room-card-actions .room-book-now-btn {
  min-width: 184px;
  height: 46px;
}

.room-book-now-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid var(--key);
  background: var(--key);
  color: #fff;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-weight: 700;
  font-size: 0.98rem;
}

.detail-book-now {
  margin-top: 0.35rem;
  width: fit-content;
}

.room-gallery-item {
  border: 0;
  background: transparent;
  padding: 0;
  width: 100%;
  cursor: zoom-in;
}

.room-gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 11px;
  display: block;
}

.room-detail-section {
  padding: 2.4rem 0 2.5rem;
  display: none;
  scroll-margin-top: 140px;
}

.room-detail-section.open {
  display: block;
}

.rooms-page.detail-open .rooms-hero,
.rooms-page.detail-open .rooms-perks,
.rooms-page.detail-open .rooms-list-section {
  display: none;
}

.room-detail-close-btn {
  border: 0;
  background: transparent;
  color: var(--key);
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 0.7rem;
  padding-top: 0.2rem;
}

.room-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.room-detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.room-detail-copy {
  display: grid;
  gap: 0.9rem;
}

.amenities-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.amenities-list i {
  margin-right: 0.35rem;
}

.site-footer {
  background: #f6f2ee;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.site-footer h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin-bottom: 0.35rem;
}

.footer-actions {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--key);
  color: #ffffff;
  border: 1px solid var(--key);
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
}

.btn-footer:hover {
  background: transparent;
  color: var(--key);
}

.footer-legal-link {
  color: var(--key);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.footer-links a {
  color: var(--key);
  text-decoration: none;
}

.footer-links a i {
  width: 18px;
}

@media (max-width: 950px) {
  .menu-toggle {
    display: inline-flex;
  }

  nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(52, 34, 22, 0.1);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
  }

  nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu {
    width: min(1140px, 92%);
    margin: 1rem auto;
    flex-direction: column;
    gap: 0.6rem;
  }

  .brand img {
    width: 122px;
  }

  .language-switcher {
    margin-left: auto;
    margin-right: 0.4rem;
    gap: 0.3rem;
  }

  .lang-link {
    padding: 0.26rem 0.44rem;
    font-size: 0.72rem;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }

  .slider-prev {
    left: 0.75rem;
  }

  .slider-next {
    right: 0.75rem;
  }

  .hero-text {
    font-size: 1rem;
  }

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

  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .about-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rooms-hero-grid,
  .room-detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .rooms-list {
    grid-template-columns: 1fr;
  }

  .room-card-actions {
    gap: 0.45rem;
  }

  .diy-page {
    padding-top: 112px;
  }
}

@media (max-width: 640px) {
  .language-switcher {
    margin-left: auto;
    margin-right: 0.35rem;
    gap: 0.24rem;
  }

  .lang-link {
    padding: 0.24rem 0.36rem;
    font-size: 0.68rem;
    gap: 0.18rem;
  }

  .hero-content {
    padding-top: 110px;
    padding-bottom: 130px;
  }

  .hero-actions {
    align-items: flex-start;
  }

  .hero-cta-row {
    gap: 0.55rem;
  }

  .btn-primary,
  .tripadvisor-badge {
    min-height: 48px;
  }

  .btn-primary {
    padding: 0.72rem 1.25rem;
  }

  .tripadvisor-badge {
    padding: 0.32rem 0.75rem;
  }

  .tripadvisor-badge img {
    height: 28px;
  }

  .tripadvisor-rating-card {
    padding: 0.48rem 0.9rem;
  }

  .trip-dot {
    width: 0.8rem;
    height: 0.8rem;
  }

  .tripadvisor-rating-reviews {
    font-size: 0.85rem;
  }

  .hero-slider-controls {
    display: none;
  }

  .hero-slider-dots {
    bottom: 4.2rem;
  }

  .about-page {
    padding-top: 96px;
  }

  .rooms-page {
    padding-top: 122px;
  }

  .diy-page {
    padding-top: 102px;
  }

  .contact-page {
    padding-top: 102px;
  }

  .terms-page {
    padding-top: calc(var(--header-offset) + 52px) !important;
  }

  .testimonials-page {
    padding-top: calc(var(--header-offset) + 28px);
  }

  .blog-page {
    padding-top: calc(var(--header-offset) + 24px);
  }

  .about-content {
    font-size: 1rem;
  }

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

  .gallery-item img {
    height: 170px;
  }

  .room-gallery-item img {
    height: 200px;
  }

  .amenities-list {
    grid-template-columns: 1fr;
  }
}
