:root {
  --bg: #f7f1ea;
  --paper: #fffdfb;
  --ink: #1b2432;
  --muted: #5a6775;
  --soft: #d6c1a1;
  --gold: #c79d62;
  --gold-strong: #a7722f;
  --navy: #18263d;
  --navy-soft: #23324a;
  --shadow: 0 16px 42px rgba(17, 21, 29, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-spacing {
  padding: 110px 0;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.text-dark {
  color: var(--gold-strong);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 600;
}

h1 {
  font-size: clamp(3.3rem, 5vw, 5.9rem);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(2.5rem, 3.8vw, 4.1rem);
  margin-bottom: 18px;
}

h3 {
  font-size: clamp(1.9rem, 2vw, 2.5rem);
  margin-bottom: 12px;
}

p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.04rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #fff;
  box-shadow: 0 12px 26px rgba(167, 114, 47, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(24, 38, 61, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 0.96rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-text small {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.78;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  font-weight: 600;
}

.header-cta {
  margin-left: 8px;
}

.hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  background-image: url("assets/hero.jpg");
  background-position: center;
  background-size: cover;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 16, 22, 0.8), rgba(10, 16, 22, 0.45));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 120px 0;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 34px;
}

.hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.hero-points li::before {
  content: "•";
  color: var(--soft);
  margin-right: 8px;
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.rooms {
  background: #f0eadf;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading.narrow {
  max-width: 760px;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.room-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(24, 38, 61, 0.06);
  box-shadow: var(--shadow);
  border-radius: 22px;
  overflow: hidden;
}

.room-image {
  height: 310px;
  background-position: center;
  background-size: cover;
}

.room-one {
  background-image: url("assets/room-1.jpg");
}

.room-two {
  background-image: url("assets/room-2.jpg");
}

.room-three {
  background-image: url("assets/room-3.jpg");
}

.room-body {
  padding: 28px 24px 26px;
}

.feature-band {
  background: var(--navy);
  color: #fff;
  padding: 110px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.8);
}

.feature-items {
  display: grid;
  gap: 20px;
}

.feature-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  padding: 22px 22px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(199, 157, 98, 0.14);
  color: var(--soft);
  font-weight: 700;
}

.feature-item h3 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.feature-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.attractions {
  background: linear-gradient(180deg, #faf5f0 0%, #f4efe9 100%);
}

.attraction-copy {
  max-width: 960px;
  margin-bottom: 32px;
}

.distance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.distance-card {
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(24, 38, 61, 0.06);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.distance {
  display: block;
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2vw, 2.5rem);
  font-weight: 800;
  color: var(--gold-strong);
}

.distance-card h3 {
  font-size: 2rem;
  margin-bottom: 0;
}

.booking {
  background: #efe4d5;
}

.booking-wrap {
  display: flex;
  justify-content: center;
}

.booking-card {
  width: min(920px, 100%);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 30px;
  padding: clamp(32px, 5vw, 60px);
  border: 1px solid rgba(24, 38, 61, 0.07);
  box-shadow: var(--shadow);
  text-align: center;
}

.booking-card p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.booking-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.booking-card .btn-primary,
.booking-card .btn-secondary {
  min-width: 210px;
}

.booking-card .btn-secondary {
  background: rgba(24, 38, 61, 0.05);
  border-color: rgba(24, 38, 61, 0.1);
  color: var(--ink);
}

.group-booking {
  background: var(--paper);
}

.group-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.group-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  min-height: 320px;
}

.mini-card {
  min-height: 300px;
  background-image: url("assets/group-1.jpg");
  background-position: center;
  background-size: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.mini-card.alt {
  background-image: url("assets/group-2.jpg");
  transform: translateY(38px);
}

.site-footer {
  background: var(--navy);
  color: #fff;
  padding-top: 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.7fr 1.2fr;
  gap: 32px;
  padding-bottom: 30px;
}

.footer-brand {
  margin-top: 8px;
}

.site-footer h3 {
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0 24px;
  font-size: 0.92rem;
}

.page-shell {
  background: var(--paper);
  padding: 100px 0;
}

.chatbot-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.chatbot-toggle {
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: white;
  border-radius: 999px;
  min-height: 54px;
  padding: 0 18px;
  font-weight: 700;
  box-shadow: 0 18px 30px rgba(167, 114, 47, 0.28);
  cursor: pointer;
}

.chatbot-panel {
  width: min(360px, calc(100vw - 28px));
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(24, 38, 61, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(17, 23, 28, 0.18);
  overflow: hidden;
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: var(--navy);
  color: white;
}

.chatbot-header strong {
  display: block;
  font-size: 0.95rem;
}

.chatbot-header small {
  color: rgba(255, 255, 255, 0.7);
}

.chatbot-close {
  border: none;
  background: transparent;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}

.chatbot-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 280px;
  overflow-y: auto;
  padding: 14px 14px 0;
  background: #f8f6f2;
}

.message {
  max-width: 82%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 0.94rem;
  line-height: 1.5;
}

.message.bot {
  background: white;
  color: var(--ink);
  border: 1px solid rgba(24, 38, 61, 0.05);
}

.message.user {
  align-self: flex-end;
  background: var(--navy);
  color: white;
}

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px 14px 14px;
  background: #f8f6f2;
}

.chatbot-form input {
  min-height: 42px;
  border: 1px solid rgba(24, 38, 61, 0.12);
  border-radius: 10px;
  padding: 0 12px;
  font: inherit;
}

.chatbot-form button {
  border: none;
  border-radius: 10px;
  background: var(--gold-strong);
  color: white;
  font-weight: 700;
  padding: 0 16px;
  cursor: pointer;
}

.page-hero {
  background: linear-gradient(180deg, rgba(24, 38, 61, 0.84), rgba(24, 38, 61, 0.74)),
    url("assets/page-hero-room.jpg") center/cover no-repeat;
  padding: 140px 0 100px;
  color: #fff;
}

.page-hero .container {
  max-width: 820px;
}

.page-hero h1 {
  margin-bottom: 14px;
}

.page-content {
  padding-top: 72px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.content-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(24, 38, 61, 0.06);
}

.content-card .thumb {
  height: 250px;
  background-size: cover;
  background-position: center;
}

.content-card .body {
  padding: 24px 22px 26px;
}

.content-card .body h3 {
  font-size: 2.1rem;
  margin-bottom: 10px;
}

.content-card .body p {
  margin-bottom: 0;
}

.info-panel {
  margin-top: 54px;
  background: #f2e9df;
  border-radius: 24px;
  padding: 34px 28px;
}

.info-panel .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.quick-list {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--ink);
  display: grid;
  gap: 12px;
}

.quick-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.quick-list li::before {
  content: "•";
  color: var(--gold-strong);
  font-size: 1.5rem;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .room-grid,
  .distance-grid,
  .card-grid,
  .feature-grid,
  .group-inner,
  .footer-grid,
  .info-panel .two-col {
    grid-template-columns: 1fr 1fr;
  }

  .feature-grid,
  .group-inner,
  .intro-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 74px;
  }

  .brand-text strong {
    font-size: 0.8rem;
  }

  .brand-text small {
    letter-spacing: 0.08em;
  }

  .section-spacing {
    padding: 82px 0;
  }

  .room-grid,
  .distance-grid,
  .card-grid,
  .footer-grid,
  .info-panel .two-col {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 640px;
  }

  .hero-content {
    padding: 90px 0;
  }

  .hero-actions,
  .booking-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .group-visual {
    grid-template-columns: 1fr;
  }

  .mini-card.alt {
    transform: none;
  }

  .page-hero {
    padding-top: 110px;
  }
}
