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

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&family=Inter:wght@400;500;600;700&display=swap');

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #f7f3ea;
  color: #1a2420;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

a {
  color: #1f4a31;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.shell {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.header {
  padding: 20px 0;
  border-bottom: 1px solid #e5dcc4;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #1a2420;
}

.brand-dot {
  color: #1f4a31;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: #4a5248;
}

.nav a {
  color: #4a5248;
}

.nav a:hover {
  color: #1f4a31;
}

/* HERO */
.hero {
  text-align: center;
  margin: 48px 0 32px 0;
}

.hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  color: #1a2420;
  line-height: 1.05;
}

@media (max-width: 600px) {
  .hero h1 { font-size: 38px; }
}

.hero p {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 20px;
  color: #4a5248;
  max-width: 520px;
  margin: 0 auto;
}

.cta {
  text-align: center;
  margin: 32px 0 48px 0;
}

.cta-text {
  display: inline-block;
  padding: 14px 24px;
  background: #1f4a31;
  color: #fdfaf3;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
}

.cta-sub {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: #8a8f84;
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
}

/* ROOMS PREVIEW */
.rooms-intro {
  text-align: center;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  color: #4a5248;
  margin: 48px 0 24px 0;
  font-style: italic;
}

.rooms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-bottom: 48px;
}

.room-card {
  background: #fdfaf3;
  border: 1px solid #e5dcc4;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 1px 2px rgba(26, 36, 32, 0.04);
}

.room-card-emergency {
  border-left: 3px solid #8b1a1a;
  background: linear-gradient(to right, #fbf1ec 0%, #fdfaf3 30%);
}

.room-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1a2420;
}

.room-card p {
  font-size: 14px;
  color: #4a5248;
}

/* PROMISE STRIP */
.promise {
  background: #fdfaf3;
  border: 1px solid #e5dcc4;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  margin: 48px 0;
}

.promise h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: #1f4a31;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}

.promise p {
  font-size: 15px;
  color: #4a5248;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* LEGAL PAGES */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
}

.page-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.025em;
  color: #1a2420;
}

.page-sub {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 17px;
  color: #4a5248;
  margin-bottom: 36px;
}

.legal-section {
  margin-bottom: 30px;
}

.legal-section h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: #1a2420;
}

.legal-section p {
  margin-bottom: 14px;
  line-height: 1.65;
  color: #2c3631;
  font-size: 15px;
}

.legal-section ul {
  margin: 12px 0 16px 24px;
  line-height: 1.65;
  color: #2c3631;
  font-size: 15px;
}

.legal-section li {
  margin-bottom: 8px;
}

/* FOOTER */
.footer {
  margin-top: 56px;
  padding: 28px 0;
  border-top: 1px solid #e5dcc4;
  text-align: center;
  color: #8a8f84;
  font-size: 13px;
  line-height: 1.7;
}

.footer a {
  color: #4a5248;
}

.footer a:hover {
  color: #1f4a31;
}

.footer-links {
  margin-top: 6px;
}

.footer-links a {
  margin: 0 8px;
}

.footer-contact {
  margin-top: 10px;
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
}
