:root {
  --bg: #f6f2eb;
  --surface: #fffdf9;
  --text: #1f1a16;
  --muted: #6e665d;
  --accent: #b88a4a;
  --accent-dark: #8f6630;
  --line: rgba(31, 26, 22, 0.12);
  --shadow: 0 20px 40px rgba(31, 26, 22, 0.12);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #f3e8d7 0, var(--bg) 38%, #f8f5ef 100%);
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(246, 242, 235, 0.6);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  border-color: var(--line);
}

.nav-wrap {
  max-width: 1150px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.8px;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

nav a {
  font-size: 0.95rem;
  color: var(--muted);
}

.lang-switcher {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 0.85rem;
  padding: 7px 10px;
  min-width: 64px;
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.hero {
  min-height: 98vh;
  display: grid;
  place-items: center;
  position: relative;
  padding: 140px 24px 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 9, 8, 0.72), rgba(10, 9, 8, 0.38));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  color: #fff;
  text-align: left;
}

.kicker {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 10px;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

h3 {
  font-size: 1.8rem;
}

.hero-content p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.06rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 999px;
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.44);
}

.btn-small {
  padding: 8px 14px;
  font-size: 0.85rem;
}

.section {
  max-width: 1150px;
  margin: 0 auto;
  padding: 88px 24px;
}

.award-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
  padding-top: 56px;
}

.award-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.award-media {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}

.award-media img {
  max-width: 100%;
  height: auto;
}

.review-proof {
  padding-top: 48px;
}

.review-proof p {
  color: var(--muted);
  line-height: 1.7;
}

.review-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.review-metric {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.review-metric strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
}

.review-metric span {
  color: var(--muted);
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 2px;
}

.review-cards.is-carousel {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.review-cards.is-carousel::-webkit-scrollbar {
  display: none;
}

.review-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.review-nav {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fffdfa;
  color: #3a3128;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.review-nav:disabled {
  opacity: 0.45;
  cursor: default;
}

.review-card {
  background: #fffdfa;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  min-width: 0;
}

.review-cards.is-carousel .review-card {
  min-width: calc((100% - 24px) / 3);
  scroll-snap-align: start;
}

.review-score {
  display: inline-block;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  background: #efe3d1;
  border: 1px solid rgba(184, 138, 74, 0.38);
  color: #6b502c;
  margin-bottom: 8px;
}

.review-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #564d44;
}

.review-meta {
  margin-top: 10px;
  font-size: 0.78rem;
  color: #7c7266;
}

.review-note {
  margin-top: 12px;
  font-size: 0.88rem;
}

.heritage {
  padding-top: 28px;
}

.heritage-intro {
  max-width: 850px;
  margin-bottom: 22px;
}

.heritage-intro p {
  color: var(--muted);
  line-height: 1.7;
}

.heritage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.heritage-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.heritage-card p {
  color: var(--muted);
  line-height: 1.7;
}

.heritage-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.social-proof {
  max-width: 1150px;
  margin: -38px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 24px;
  position: relative;
  z-index: 3;
}

.social-proof div {
  background: var(--surface);
  border-radius: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.social-proof strong {
  display: block;
  font-size: 1.6rem;
  font-family: "Cormorant Garamond", serif;
}

.social-proof span {
  color: var(--muted);
}

.section-head {
  max-width: 680px;
  margin-bottom: 28px;
}

.suite-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card img {
  height: 290px;
  width: 100%;
  object-fit: cover;
}

.card-body {
  padding: 16px 18px 20px;
}

.card-body p {
  color: var(--muted);
  line-height: 1.6;
}

.suite-note {
  margin-top: 10px;
  font-size: 0.92rem;
}

.suite-link {
  display: inline-flex;
  margin-top: 8px;
  font-weight: 700;
  color: var(--accent-dark);
}

.room-details {
  display: grid;
  gap: 22px;
}

.room-detail {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.room-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.room-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.room-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.experience {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.exp-text p,
.location p {
  color: var(--muted);
  line-height: 1.7;
}

.exp-text ul {
  margin: 22px 0 0;
  padding-left: 18px;
  line-height: 1.9;
}

.exp-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.exp-gallery img {
  border-radius: 14px;
  height: 190px;
  object-fit: cover;
  border: 1px solid var(--line);
  width: 100%;
  aspect-ratio: 4 / 3;
}

.exp-gallery img:first-child {
  grid-column: span 2;
  height: 220px;
}

.location {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: center;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chips span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #efe3d1;
  border: 1px solid rgba(184, 138, 74, 0.35);
  font-weight: 600;
  font-size: 0.9rem;
}

.map-card {
  grid-column: 1 / -1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.map-card p {
  color: var(--muted);
  line-height: 1.7;
}

.map-card iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 12px;
}

.nearby-intro {
  color: var(--muted);
  line-height: 1.7;
}

.nearby-head {
  margin-bottom: 18px;
}

.nearby-controls {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 14px;
  margin-bottom: 18px;
}

.nearby-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nearby-filter {
  border: 1px solid rgba(184, 138, 74, 0.38);
  background: #f3e6d3;
  color: #6d512c;
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 700;
  cursor: pointer;
}

.nearby-filter.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.nearby-search-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #6a5c4d;
}

.nearby-search {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  background: #fffdf9;
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.nearby-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.nearby-card h3 {
  margin-bottom: 14px;
}

.nearby-card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.7;
}

.nearby-card li {
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fffcf6;
}

.nearby-note {
  color: var(--muted);
  margin-top: 14px;
  font-size: 0.9rem;
}

.nearby-card a {
  font-weight: 700;
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.nearby-card strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
  margin: 6px 0 4px;
}

.nearby-card p {
  margin: 0 0 6px;
  font-size: 0.92rem;
}

.place-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.place-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.glyph {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  display: inline-block;
  background: currentColor;
}

.tag-food {
  background: #fbe8d0;
  color: #7a4d17;
}

.tag-bar {
  background: #eadcf6;
  color: #5b2f8d;
}

.tag-park {
  background: #dff2e2;
  color: #235e2d;
}

.tag-market {
  background: #ffe9d8;
  color: #8a4a17;
}

.tag-church {
  background: #e8edf9;
  color: #2c4f93;
}

.tag-museum {
  background: #efe7db;
  color: #6a4f2f;
}

.walk {
  font-size: 0.78rem;
  font-weight: 700;
  color: #4f473d;
}

.booking-wrap {
  background: linear-gradient(135deg, #1f1a16, #33291f);
  border-radius: 24px;
  padding: 34px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.booking-wrap p {
  color: rgba(255, 255, 255, 0.82);
}

.booking-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.booking-panel p {
  margin: 0;
}

.booking-panel .btn {
  align-self: flex-start;
}

.cloudbeds-widget {
  display: flex;
  justify-content: center;
  width: 100%;
}

.site-footer {
  margin-top: 30px;
  padding: 40px 20px 30px;
  background: linear-gradient(140deg, #1e1814, #2b231c);
  color: #efe6d9;
}

.footer-inner {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 20px;
}

.footer-brand h3 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-brand p {
  color: rgba(239, 230, 217, 0.82);
  line-height: 1.7;
}

.footer-col h4 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  font-size: 1.3rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  color: rgba(239, 230, 217, 0.88);
}

.footer-col a:hover {
  color: #fff;
}

.footer-copy {
  max-width: 1150px;
  margin: 24px auto 0;
  padding-top: 14px;
  border-top: 1px solid rgba(239, 230, 217, 0.2);
  color: rgba(239, 230, 217, 0.72);
  font-size: 0.9rem;
}

.admin-link {
  font-weight: 700;
  color: var(--accent-dark);
}

.legal-header {
  background: rgba(246, 242, 235, 0.95);
}

.legal-main {
  padding: 120px 20px 70px;
}

.legal-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.legal-card p {
  color: var(--muted);
  line-height: 1.78;
}

.legal-updated {
  font-weight: 700;
  color: #4d463e;
}

.floating-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 22;
  border-radius: 999px;
  padding: 12px 20px;
  background: #1f1a16;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 35;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(28, 23, 18, 0.92);
  color: #f4eee5;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 32px rgba(10, 9, 8, 0.35);
}

.cookie-banner.visible {
  display: flex;
}

.cookie-banner-title {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 0.95rem;
}

.cookie-banner-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(244, 238, 229, 0.88);
}

.cookie-banner-copy {
  max-width: 760px;
}

.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.btn-ghost-cookie {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.btn-ghost-cookie:hover {
  background: rgba(255, 255, 255, 0.12);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .suite-grid,
  .review-metrics,
  .nearby-grid,
  .heritage-grid,
  .award-strip,
  .room-detail,
  .experience,
  .location,
  .booking-wrap {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 88vh;
  }

  .social-proof {
    grid-template-columns: 1fr;
    margin-top: -20px;
  }

  .review-card {
    min-width: 0;
  }

  .review-cards.is-carousel .review-card {
    min-width: calc((100% - 12px) / 2);
  }

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

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

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

  .exp-gallery img:first-child {
    grid-column: auto;
    height: 190px;
  }

}

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

  nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    min-width: 200px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
  }

  .lang-switcher {
    width: 100%;
  }

  nav.open {
    display: flex;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

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

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

  .review-carousel {
    grid-template-columns: 1fr;
  }

  .review-nav {
    display: none;
  }

  .review-card {
    min-width: 0;
  }

  .review-cards.is-carousel .review-card {
    min-width: 100%;
  }

  .room-gallery,
  .exp-gallery {
    grid-template-columns: 1fr;
  }

  .exp-gallery img,
  .exp-gallery img:first-child {
    height: 220px;
    aspect-ratio: 4 / 3;
  }

  .cookie-banner {
    bottom: 80px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-banner-actions .btn {
    flex: 1;
  }
}
