:root {
  --bg: #f7f7f8;
  --text: #1a1a1a;
  --muted: #5a5a5a;
  --dark: #111111;
  --primary: #101996;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: "Work Sans", sans-serif; color: var(--text); background: #fff; }
h1, h2, h3, h4 { font-family: "EB Garamond", serif; margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
figure { margin: 0; }
img { display: block; width: 100%; height: auto; }
.top-bar { background: var(--dark); color: #fff; display: flex; justify-content: space-between; padding: 0.7rem 5vw; font-size: 0.9rem; }
.main-nav { position: absolute; top: 50px; width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.4rem 5vw; z-index: 4; color: #fff; }
.main-nav nav { display: flex; gap: 1.2rem; }
.logo img { width: 120px; }
.book-btn, .primary-btn { border-radius: 999px; padding: 0.7rem 1.2rem; background: #fff; color: #111; font-weight: 600; }
.hero { position: relative; min-height: 88vh; overflow: hidden; }
.hero figure img { height: 88vh; object-fit: cover; }
.hero .overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.hero-content { position: absolute; inset: 0; z-index: 2; display: grid; place-content: center; text-align: center; color: #fff; padding: 0 1rem; max-width: 760px; margin: auto; }
.hero-content h1 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.1; }
.hero-content p { margin: 0.4rem 0; line-height: 1.8; }
.hero-content .primary-btn { display: inline-block; margin: 1.2rem auto 0; background: var(--primary); color: #fff; }
.section { padding: 5rem 5vw; max-width: 1280px; margin: 0 auto; text-align: center; }
.quote { font-size: 1.2rem; font-style: italic; }
.dual-grid { margin-top: 2rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.suite-card, .experience { margin-top: 2rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; text-align: left; align-items: center; }
.suite-card a { color: var(--primary); font-weight: 600; }
.blog-grid { margin-top: 2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.blog-card { position: relative; overflow: hidden; border-radius: 12px; }
.blog-card span { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; color: #fff; font-weight: 600; }
.follow-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.7rem; }
.contact-panel form, .generic-page form, .newsletter form { display: grid; gap: 0.8rem; max-width: 620px; margin: 1rem auto; }
input, textarea, button { font: inherit; border-radius: 10px; border: 1px solid #d8d8d8; padding: 0.8rem 1rem; }
button { background: var(--primary); color: #fff; border: none; cursor: pointer; }
.site-footer { background: var(--dark); color: #ddd; padding: 4rem 5vw 2rem; }
.footer-links { display: flex; gap: 5rem; margin: 2rem 0; }
.footer-links div { display: grid; gap: 0.6rem; }
.status-text { min-height: 1.4rem; }
.generic-page .section, .legal.section { text-align: left; }
@media (max-width: 900px) {
  .main-nav nav { display: none; }
  .dual-grid, .suite-card, .experience, .blog-grid, .follow-grid { grid-template-columns: 1fr; }
  .top-bar { display: none; }
}
