:root {
  color-scheme: light;
  --bg: #fff4ee;
  --surface: #fff7f6;
  --text: #2a1716;
  --muted: #6e524d;
  --accent: #ff6a3d; /* sunset orange */
  --accent-dark: #c04a2b; /* deeper sunset */
  --border: rgba(42,23,19,0.10);
  --shadow: 0 16px 40px rgba(42,23,19,0.08);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { width: 100%; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.hero {
  min-height: 100vh;
  background: linear-gradient(90deg, rgba(42,23,19,0.86), rgba(255,106,61,0.18)), url('https://images.unsplash.com/photo-1501973801540-537f08ccae7b?auto=format&fit=crop&w=1800&q=80') center/cover;
  color: white;
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 0; }
.brand { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; }
.nav-links { display: flex; gap: 1.25rem; }
.nav-links a { color: rgba(255,255,255,0.94); }
.nav-toggle { display: none; background: transparent; border: 0; padding: 0.25rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: white; margin: 4px 0; }
.hero-content { padding: 6rem 0 5rem; max-width: 700px; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.24em; font-size: 0.8rem; font-weight: 600; color: var(--accent); }
.hero .eyebrow { color: #efd8c2; }
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 4.5vw, 4.3rem); margin: 0.3rem 0 1rem; }
.hero-copy { font-size: 1.08rem; margin-bottom: 1.8rem; max-width: 560px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn { display: inline-block; padding: 0.85rem 1.2rem; border-radius: 999px; font-weight: 600; transition: transform 0.2s ease, background 0.2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary { background: rgba(255,255,255,0.16); color: white; border: 1px solid rgba(255,255,255,0.2); }
.section { padding: 5rem 0; }
.intro-grid, .about-grid, .contact-grid { display: grid; gap: 2rem; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; }
.section-heading { margin-bottom: 2rem; }
.card-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow); }
.card img { height: 220px; }
.card-body { padding: 1.2rem; }
.card-body span { color: var(--accent); font-weight: 600; }
.section-accent { background: #efe1d3; }
.amenities-grid { display: grid; gap: 1rem; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.amenities-grid > div { background: rgba(255,255,255,0.45); border: 1px solid rgba(176, 93, 42, 0.12); border-radius: 1rem; padding: 1.25rem; }
.stats { display: grid; gap: 1rem; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stats > div { background: var(--surface); border: 1px solid var(--border); border-radius: 1rem; padding: 1.2rem; text-align: center; box-shadow: var(--shadow); }
.stats strong { display: block; font-size: 1.4rem; color: var(--accent); }
.contact-form { background: var(--surface); padding: 1.5rem; border-radius: 1rem; border: 1px solid var(--border); box-shadow: var(--shadow); display: grid; gap: 0.9rem; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid var(--border); border-radius: 0.75rem; padding: 0.85rem 0.95rem; font: inherit; background: white; }
.contact-form textarea { min-height: 110px; resize: vertical; }
.footer { padding: 1.4rem 0 2rem; color: var(--muted); }
.footer-content { display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--border); padding-top: 1rem; }
@media (max-width: 800px) {
  .nav-links { display: none; position: absolute; top: 4.2rem; right: 1rem; background: rgba(34, 50, 48, 0.95); padding: 1rem; border-radius: 0.8rem; flex-direction: column; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: inline-block; }
  .intro-grid, .about-grid, .contact-grid, .card-grid, .amenities-grid, .stats { grid-template-columns: 1fr; }
}
