:root {
  --primary: #8b1e1e;
  --primary-dark: #6f1717;
  --accent: #d8b36a;
  --text: #222222;
  --muted: #666666;
  --bg: #f7f4ef;
  --white: #ffffff;
  --border: #e6e0d6;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(850px, calc(100% - 2rem));
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand a {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--primary);
  letter-spacing: 0.3px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.main-nav a {
  color: var(--text);
  font-weight: 600;
  padding: 0.4rem 0.2rem;
}

.main-nav a:hover {
  color: var(--primary);
  text-decoration: none;
}

.top-callout {
  background: var(--primary);
  color: var(--white);
}

.top-callout-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.top-callout p {
  margin: 0;
  font-size: 1.05rem;
}

.hero {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 72vh;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.55)
  );
  display: flex;
  align-items: center;
}

.hero-content {
  color: var(--white);
  max-width: 720px;
}

.hero-content h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
}

.hero-content p {
  margin: 0 0 1.5rem;
  font-size: 1.2rem;
}

.btn {
  display: inline-block;
  border-radius: 4px;
  padding: 0.85rem 1.4rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #1f1f1f;
}

.btn-primary:hover {
  background: #c8a35c;
}

.btn-light {
  background: var(--white);
  color: var(--primary);
}

.btn-light:hover {
  background: #f4f4f4;
}

.btn-large {
  padding: 1rem 1.8rem;
  font-size: 1rem;
}

.welcome-section,
.features-section,
.cta-section {
  padding: 4rem 0;
}

.welcome-section {
  background: #fcfaf7;
}

.welcome-section h2,
.features-section h2,
.cta-section h2 {
  text-align: center;
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.welcome-section p {
  margin-bottom: 1.25rem;
  font-size: 1.06rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-radius: 6px;
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.cta-box {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 8px;
  text-align: center;
  padding: 3rem 2rem;
}

.cta-box p {
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.site-footer {
  background: #2a2a2a;
  color: #f1f1f1;
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.site-footer h3 {
  margin-top: 0;
  color: var(--accent);
}

.site-footer a {
  color: #f7dca5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2rem;
  padding: 1rem 0 2rem;
  text-align: center;
  color: #cfcfcf;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .features-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero,
  .hero img {
    min-height: 60vh;
    height: 60vh;
  }
}

@media (max-width: 700px) {
  .header-inner,
  .top-callout-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    gap: 0.75rem;
  }

  .features-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.05rem;
  }

  .welcome-section,
  .features-section,
  .cta-section {
    padding: 3rem 0;
  }
}
.page-hero {
  background: linear-gradient(135deg, #7f1d1d, #b88a44);
  color: var(--white);
  padding: 4.5rem 0;
}
.page-hero-small {
  padding: 3.5rem 0;
}
.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
}
.page-hero p {
  margin: 0;
  font-size: 1.1rem;
}
.gallery-section,
.rates-section,
.reservation-section {
  padding: 4rem 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.gallery-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.gallery-caption {
  padding: 1.25rem;
}
.gallery-caption h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--primary);
}
.gallery-caption p {
  margin: 0;
  color: var(--muted);
}
.rates-intro {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--muted);
}
.rates-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}
.rates-table th,
.rates-table td {
  padding: 1rem;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.rates-table th {
  background: #f3ede2;
  color: var(--primary);
}
.info-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.info-box h3 {
  margin-top: 0;
  color: var(--primary);
}
.clean-list {
  margin: 0;
  padding-left: 1.2rem;
}
.clean-list li {
  margin-bottom: 0.6rem;
}
.reservation-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.reservation-card h2 {
  margin-top: 0;
  color: var(--primary);
}
.reservation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .rates-table th,
  .rates-table td {
    padding: 0.85rem;
  }
  .reservation-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}