
:root {
  --navy: #17364d;
  --navy-2: #234d68;
  --sand: #f5efe5;
  --cream: #fcfaf6;
  --brown: #5f3f2d;
  --brown-2: #8d623f;
  --gold: #cb9347;
  --white: #ffffff;
  --text: #1f1f1f;
  --muted: #616161;
  --border: rgba(23, 54, 77, .10);
  --shadow: 0 18px 45px rgba(0, 0, 0, .10);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.section-pad { padding: 84px 0; }
.skip-link { position: absolute; left: -999px; }
.skip-link:focus { left: 12px; top: 12px; background: #fff; padding: 10px 14px; z-index: 99; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 250, 246, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--brown));
  color: #fff;
  font-weight: 800;
}
.brand strong { display: block; font-size: 17px; color: var(--navy); }
.brand small { display: block; color: var(--muted); }
.site-nav { display: flex; gap: 18px; font-weight: 700; }
.site-nav a { text-decoration: none; color: var(--navy); }
.menu-toggle { display: none; border: 0; background: var(--navy); color: #fff; border-radius: 999px; padding: 10px 14px; font-weight: 700; }

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: stretch;
  overflow: clip;
}
.hero-media, .hero-media img, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media img { object-fit: cover; }
.hero-overlay {
  background: linear-gradient(90deg, rgba(10, 20, 28, .74), rgba(10, 20, 28, .40) 46%, rgba(10, 20, 28, .18));
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  padding: 100px 0;
}
.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 13px;
  font-weight: 800;
  color: #f0c47d;
}
h1, h2, h3 { line-height: 1.08; margin: 0; }
h1 { font-size: clamp(42px, 7vw, 76px); color: #fff; letter-spacing: -2px; max-width: 840px; }
h2 { font-size: clamp(30px, 4.2vw, 50px); color: var(--navy); letter-spacing: -1.2px; }
h3 { font-size: 24px; color: var(--navy); }
.lead {
  color: rgba(255,255,255,.93);
  font-size: 20px;
  max-width: 720px;
  margin-top: 18px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--gold); color: #1d1d1d; }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.82); }
.btn-soft { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.26); }
.btn-soft.dark { background: rgba(23,54,77,.08); color: var(--navy); border-color: rgba(23,54,77,.12); }
.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.quick-facts span, .outdoor-points span {
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 700;
}

.intro-grid,
.outdoor-grid,
.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: center;
}
.section-heading { max-width: 720px; margin-bottom: 28px; }
.section-heading p:last-child { color: var(--muted); }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading.light h2, .section-heading.light p { color: #fff; }
.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.feature-card, .room-card, .amenity-card, .info-grid div, .contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feature-card { padding: 22px; display: grid; gap: 8px; }
.feature-card strong { color: var(--navy); font-size: 18px; }
.feature-card span { color: var(--muted); }

.rooms { background: linear-gradient(180deg, #fff, var(--sand)); }
.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.room-card { overflow: hidden; }
.room-card img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; }
.room-copy { padding: 18px; }
.room-copy p { margin: 8px 0 0; color: var(--muted); }

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.amenity-card { overflow: hidden; grid-column: span 4; }
.amenity-card.large { grid-column: span 8; }
.amenity-card img { aspect-ratio: 16 / 10; width: 100%; object-fit: cover; }
.amenity-card div { padding: 18px; }
.amenity-card p { color: var(--muted); margin: 8px 0 0; }

.outdoor { background: #fff; }
.outdoor-grid { align-items: start; }
.outdoor p { color: var(--muted); }
.outdoor-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.outdoor-points span { background: rgba(23,54,77,.08); border-color: rgba(23,54,77,.14); color: var(--navy); }
.outdoor-stack { display: grid; gap: 16px; }
.outdoor-stack > img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.outdoor-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.outdoor-row img { border-radius: var(--radius); height: 100%; object-fit: cover; box-shadow: var(--shadow); }

.gallery { background: var(--sand); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.info { background: var(--navy); }
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.info-grid div {
  padding: 18px;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.10);
  box-shadow: none;
}
.info-grid strong, .info-grid span { display: block; }
.info-grid strong { color: #fff; }
.info-grid span, .info-grid a { color: #d8e7f2; text-decoration: none; }

.contact { background: #fff; }
.contact-form { padding: 22px; display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 8px; font-weight: 700; color: var(--navy); }
input, textarea {
  width: 100%;
  border: 1px solid rgba(23,54,77,.18);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}
textarea { resize: vertical; }

.floating-action {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  background: var(--gold);
  color: #222;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.site-footer { background: #102534; color: #fff; padding: 28px 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.footer-grid span { display: block; color: #d3dce2; }
.footer-links a { margin-left: 16px; text-decoration: none; }

@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 16px;
    flex-direction: column;
  }
  .site-nav.is-open { display: flex; }
  .intro-grid, .outdoor-grid, .contact-grid, .room-grid { grid-template-columns: 1fr; }
  .feature-cards { grid-template-columns: 1fr 1fr; }
  .amenity-card.large, .amenity-card { grid-column: span 6; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .footer-links a { margin: 10px 16px 0 0; display: inline-block; }
}
@media (max-width: 640px) {
  .section-pad { padding: 58px 0; }
  .hero { min-height: 78vh; }
  .hero-content { padding: 84px 0; }
  .lead { font-size: 18px; }
  .feature-cards, .gallery-grid, .info-grid { grid-template-columns: 1fr; }
  .amenity-card.large, .amenity-card { grid-column: span 12; }
  .outdoor-row { grid-template-columns: 1fr; }
  .room-grid { grid-template-columns: 1fr; }
  .brand strong { font-size: 15px; }
  .brand small { font-size: 12px; }
  .brand-mark { width: 42px; height: 42px; }
}
