:root {
  --navy: #10243f;
  --navy-2: #1b3a63;
  --gold: #c9a227;
  --cream: #faf7f2;
  --ink: #16202c;
  --muted: #5d6b7c;
  --line: #e3ddd2;
  --font: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --wrap: 1100px;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: var(--font); color: var(--ink); background: var(--cream); line-height: 1.55; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-2); }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

header.site { background: var(--navy); color: #fff; position: sticky; top: 0; z-index: 10; }
header.site .wrap { display: flex; align-items: center; gap: 24px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; font-weight: 700; letter-spacing: .04em; }
.brand img { width: 34px; height: 34px; border-radius: 6px; }
nav.site { margin-left: auto; display: flex; gap: 22px; }
nav.site a { color: #dfe6ef; text-decoration: none; font-size: 15px; }
nav.site a:hover, nav.site a[aria-current] { color: var(--gold); }
.cta { background: var(--gold); color: var(--navy) !important; padding: 9px 16px; border-radius: 6px; font-weight: 650; text-decoration: none; display: inline-block; }
.cta:hover { background: #dbb63d; }

.hero { position: relative; background: var(--navy); color: #fff; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; padding: 72px 0; }
.hero h1 { font-size: clamp(34px, 5vw, 52px); line-height: 1.08; margin: 0 0 16px; letter-spacing: -.02em; }
.hero p.lede { font-size: 18px; color: #cfd9e6; margin: 0 0 28px; max-width: 46ch; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.ghost { border: 1px solid #46607f; color: #dfe6ef !important; padding: 9px 16px; border-radius: 6px; text-decoration: none; display: inline-block; }
.hero figure { margin: 0; border-radius: 12px; overflow: hidden; }
figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.stats { display: flex; gap: 34px; border-top: 1px solid #24405f; padding: 20px 0 26px; }
.stats div { font-size: 14px; color: #9fb2c8; }
.stats b { display: block; color: var(--gold); font-size: 22px; font-weight: 700; }

section { padding: 64px 0; }
section.alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
h2 { font-size: 28px; letter-spacing: -.01em; margin: 0 0 8px; }
.sub { color: var(--muted); margin: 0 0 28px; max-width: 60ch; }
.grid { display: grid; gap: 22px; }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
.g2 { grid-template-columns: repeat(2, 1fr); }

.card { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit; display: block; }
.card img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.card .body { padding: 14px 16px 18px; }
.card h3 { margin: 0 0 4px; font-size: 17px; }
.card .meta { color: var(--muted); font-size: 14px; margin: 0; }
.price { font-weight: 700; color: var(--navy); }
.tag { display: inline-block; font-size: 12px; font-weight: 650; letter-spacing: .04em; text-transform: uppercase; padding: 3px 8px; border-radius: 999px; }
.tag.avail { background: #e6f4ea; color: #1a6b35; }
.tag.res { background: #f1eee8; color: #7a6a45; }

table.rates { width: 100%; border-collapse: collapse; font-size: 15px; }
table.rates td { padding: 9px 0; border-bottom: 1px solid var(--line); }
table.rates td:last-child { text-align: right; font-weight: 650; }

ul.check { list-style: none; padding: 0; margin: 0; }
ul.check li { padding: 7px 0 7px 26px; position: relative; border-bottom: 1px solid var(--line); }
ul.check li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

form.apply { max-width: 640px; }
form.apply label { display: block; margin: 18px 0 6px; font-weight: 600; font-size: 15px; }
form.apply input, form.apply select, form.apply textarea {
  width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 8px;
  font: inherit; background: #fff; color: inherit;
}
form.apply input:focus, form.apply select:focus, form.apply textarea:focus { outline: 2px solid var(--navy-2); outline-offset: 1px; }
form.apply small { color: var(--muted); display: block; margin-top: 6px; }
button.submit { margin-top: 26px; background: var(--navy); color: #fff; border: 0; padding: 13px 24px; border-radius: 8px; font: inherit; font-weight: 650; cursor: pointer; }
button.submit:hover { background: var(--navy-2); }
button.submit[disabled] { opacity: .6; cursor: default; }
.notice { margin-top: 18px; padding: 14px 16px; border-radius: 8px; font-size: 15px; }
.notice.ok { background: #e6f4ea; color: #1a6b35; }
.notice.err { background: #fdeaea; color: #8c2626; }

.quote { background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: 8px; padding: 18px 20px; }
.quote p { margin: 0 0 10px; }
.quote cite { color: var(--muted); font-style: normal; font-size: 14px; }

footer.site { background: var(--navy); color: #9fb2c8; padding: 44px 0; font-size: 15px; }
footer.site a { color: #dfe6ef; }
footer.site .cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
footer.site h4 { color: #fff; margin: 0 0 10px; font-size: 15px; }
footer.site .fine { border-top: 1px solid #24405f; margin-top: 28px; padding-top: 18px; font-size: 13px; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; padding: 44px 0; }
  .g3, .g4 { grid-template-columns: repeat(2, 1fr); }
  .g2, footer.site .cols { grid-template-columns: 1fr; }
  nav.site { gap: 14px; font-size: 14px; overflow-x: auto; }
  .stats { gap: 20px; flex-wrap: wrap; }
}
