:root {
  --terracotta: #C1440E;
  --terracotta-dark: #9C3609;
  --gold: #D4A017;
  --maroon: #5C1A1B;
  --cream: #FFF8F0;
  --cream-dark: #FBEFDD;
  --ink: #2C1810;
  --text-muted: #6b5a52;
  --shadow: 0 10px 30px rgba(92, 26, 27, 0.12);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
  color: var(--maroon);
  margin: 0 0 0.5em;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: var(--terracotta);
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 6px 18px rgba(193, 68, 14, 0.35);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--maroon);
  border: 2px solid var(--maroon);
}

.btn-secondary:hover {
  background: var(--maroon);
  color: #fff;
  transform: translateY(-2px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(92, 26, 27, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  font-family: 'Merriweather', serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--maroon);
  text-decoration: none;
}

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--terracotta);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--maroon);
  border-radius: 2px;
}

/* Hero */
.hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 160, 23, 0.18), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(193, 68, 14, 0.15), transparent 50%),
    var(--cream);
  padding: 90px 0 70px;
  text-align: center;
}

.hero-inner h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 0.2em;
}

.hero-slogan {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--terracotta);
  font-weight: 600;
  margin: 0 0 0.3em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 0 1.8em;
}

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

/* Divider ornament */
.divider {
  color: var(--gold);
  height: 20px;
  overflow: hidden;
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 24px;
}

.divider svg {
  width: 100%;
  height: 20px;
  display: block;
}

/* Sections */
.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--cream-dark);
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  text-align: center;
  margin-bottom: 0.6em;
}

.section-lead {
  text-align: center;
  color: var(--text-muted);
  margin-top: -0.4em;
  margin-bottom: 2em;
}

/* Why us cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 2em;
}

.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.why-icon {
  display: block;
  font-size: 2.4rem;
  margin-bottom: 0.5em;
}

.why-card p {
  margin: 0;
  font-size: 0.98rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
}

.about-facts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fact {
  background: #fff;
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
}

.fact-number {
  display: block;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: var(--terracotta);
  font-size: 1.3rem;
}

.fact-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Rooms */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 1em;
}

.room-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.room-photo {
  height: 140px;
}

.room-photo-1 { background: linear-gradient(135deg, #C1440E, #D4A017); }
.room-photo-2 { background: linear-gradient(135deg, #D4A017, #5C1A1B); }
.room-photo-3 { background: linear-gradient(135deg, #5C1A1B, #C1440E); }
.room-photo-4 { background: linear-gradient(135deg, #9C3609, #D4A017); }

.room-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.3em;
}

.room-body h3 small {
  font-size: 0.65em;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.room-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  flex: 1;
}

.room-price {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: var(--maroon);
  font-size: 1.2rem;
  margin-top: 10px;
}

.room-price small {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.65em;
  color: var(--text-muted);
}

.fine-print {
  margin-top: 2em;
  text-align: center;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Rules */
.rules-list {
  max-width: 720px;
  margin: 1.5em auto 0;
  padding-left: 1.2em;
}

.rules-list li {
  margin-bottom: 0.9em;
  font-size: 1.02rem;
}

.rules-list li::marker {
  color: var(--terracotta);
  font-weight: 700;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 1.5em;
}

.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  margin: 0;
  position: relative;
}

.review-card p {
  font-style: italic;
  color: var(--ink);
  margin: 0 0 1em;
}

.review-card footer {
  font-size: 0.85rem;
  color: var(--terracotta);
  font-weight: 600;
}

/* Contacts */
.contacts-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.contacts-list {
  list-style: none;
  padding: 0;
  margin: 1.5em 0 2em;
}

.contacts-list li {
  margin-bottom: 1em;
  font-size: 1.02rem;
}

.contact-icon {
  margin-right: 8px;
}

.map-placeholder {
  height: 260px;
  border-radius: var(--radius);
  background: repeating-linear-gradient(135deg, var(--cream-dark), var(--cream-dark) 20px, #f3ddc0 20px, #f3ddc0 40px);
  border: 2px dashed var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--maroon);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  padding: 20px;
}

/* Footer */
.site-footer {
  background: var(--maroon);
  color: #f3e6d8;
  padding: 40px 0;
  text-align: center;
}

.footer-slogan {
  font-family: 'Merriweather', serif;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.4em;
}

.site-footer p:last-child {
  font-size: 0.85rem;
  opacity: 0.85;
  margin: 0;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 24, 16, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
}

.modal p {
  color: var(--text-muted);
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 1.5em;
}

/* Responsive */
@media (max-width: 900px) {
  .cards-grid,
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    border-bottom: 1px solid rgba(92, 26, 27, 0.1);
  }

  .main-nav.open {
    max-height: 400px;
  }

  .main-nav a {
    padding: 14px 24px;
    border-top: 1px solid rgba(92, 26, 27, 0.08);
  }

  .nav-toggle {
    display: flex;
  }

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

  .hero {
    padding: 60px 0 50px;
  }

  .section {
    padding: 48px 0;
  }
}
