:root {
  --navy: #16324f;
  --navy-deep: #0e2238;
  --ink: #1c2430;
  --muted: #5a6570;
  --sand: #f4efe6;
  --foam: #fbf9f5;
  --paper: #ffffff;
  --gold: #00b8a9;
  --teal: #00b8a9;
  --teal-light: #7ad9d0;
  --teal-dark: #007a70;
  --gold-dark: #007a70;
  --ocean: #3d7394;
  --line: rgba(22, 50, 79, 0.12);
  --shadow: 0 18px 50px rgba(14, 34, 56, 0.12);
  --radius: 14px;
  --max: 1120px;
  --ldg-psb-background: #ffffff;
  --ldg-psb-border-radius: 0.42em;
  --ldg-psb-box-shadow: 0px 24px 54px 0px rgba(0, 0, 0, 0.1);
  --ldg-psb-padding: 14px;
  --ldg-psb-input-background: #ffffff;
  --ldg-psb-button-border-radius: 3.58em;
  --ldg-psb-color-primary: #00b8a9;
  --ldg-psb-color-primary-lighter: #7ad9d0;
  --ldg-psb-color-primary-darker: #007a70;
  --ldg-psb-color-primary-contrast: #333333;
  --ldg-semantic-color-primary: #00b8a9;
  --ldg-semantic-color-primary-lighter: #7ad9d0;
  --ldg-semantic-color-primary-darker: #007a70;
  --ldg-semantic-color-primary-contrast: #333333;
  --ldg-component-modal-z-index: 999;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--foam);
  line-height: 1.6;
  font-size: 1.05rem;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); }
h1, h2, h3, .logo-name, .kicker {
  font-family: Fraunces, Georgia, serif;
  font-optical-sizing: auto;
}
h1, h2, h3 { color: var(--navy); line-height: 1.15; margin: 0 0 0.5em; }
h1 { font-size: clamp(2.05rem, 6vw, 3.7rem); font-weight: 560; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.25rem); font-weight: 550; }
h3 { font-size: 1.25rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 249, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.7rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--navy);
  min-width: 0;
}
.brand-logo {
  height: 84px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.brand-text { display: none; }
.logo-name {
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.1;
}
.logo-sub {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: "Source Sans 3", sans-serif;
  margin-top: 0.15rem;
}
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  position: relative;
  border-radius: 2px;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.site-nav { display: none; }
.site-nav.open { display: block; position: absolute; left: 0; right: 0; top: 100%; background: var(--foam); border-bottom: 1px solid var(--line); padding: 0.5rem 1.15rem 1rem; }
.site-nav a {
  display: block;
  padding: 0.55rem 0.2rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--gold-dark); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--gold);
  color: #333;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.72rem 1.25rem;
  border: 0;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 184, 169, 0.28);
}
.btn:hover { filter: brightness(0.97); }
.btn.ghost {
  background: transparent;
  box-shadow: none;
  border: 1.5px solid rgba(255,255,255,0.55);
  color: white;
}
.btn.navy {
  background: var(--navy);
  color: white;
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 86vh;
  color: white;
  display: flex;
  align-items: flex-end;
  background: #0e2238 center/cover no-repeat;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,36,0.18) 0%, rgba(10,22,36,0.28) 40%, rgba(10,22,36,0.78) 100%);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.15rem 2rem;
}
.kicker {
  display: inline-block;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  font-weight: 600;
}
.hero h1 { color: white; max-width: 14ch; }
.hero p.lede {
  max-width: 38rem;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.9);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 1.4rem 0 2rem; }

.booking-wrap {
  background: white;
  color: var(--ink);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow);
  margin-bottom: -4.5rem;
  position: relative;
  z-index: 2;
}
.booking-wrap h2 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.booking-wrap .hint { color: var(--muted); font-size: 0.9rem; margin: 0 0 0.8rem; }
#lodgify-search-bar { width: 100%; }

.section { padding: 4.5rem 1.15rem 3.5rem; }
.section.sand { background: var(--sand); }
.section.navy { background: var(--navy-deep); color: rgba(255,255,255,0.9); }
.section.navy h2, .section.navy h3 { color: white; }
.wrap { max-width: var(--max); margin: 0 auto; }
.section-head { max-width: 40rem; margin-bottom: 1.8rem; }
.gold-rule {
  width: 3.2rem;
  height: 3px;
  background: var(--gold);
  border: 0;
  margin: 0 0 1rem;
}

.highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.05rem 1.15rem;
}
.card .icon {
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}
.card h3 { margin-bottom: 0.25rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.welcome-grid {
  display: grid;
  gap: 1.6rem;
}
.prose p { margin: 0 0 1rem; }
.prose p:last-child { margin-bottom: 0; }
.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-top: 1.4rem;
}
.stat {
  border-top: 3px solid var(--gold);
  padding-top: 0.7rem;
}
.stat b { display: block; font-size: 1.45rem; font-family: Fraunces, serif; color: var(--navy); }
.stat span { color: var(--muted); font-size: 0.88rem; }

.photo-strip {
  display: grid;
  gap: 0.7rem;
}
.photo-strip a {
  overflow: hidden;
  border-radius: 12px;
  display: block;
  min-height: 160px;
}
.photo-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.quotes {
  display: grid;
  gap: 1rem;
}
.quote {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.3rem 1.2rem;
  border: 1px solid var(--line);
}
.quote p { margin: 0 0 0.85rem; font-size: 1.05rem; }
.quote cite { font-style: normal; color: var(--muted); font-size: 0.9rem; }
.stars { color: var(--gold-dark); letter-spacing: 0.08em; font-size: 0.9rem; margin-bottom: 0.4rem; }

.page-hero {
  background: var(--navy) center/cover no-repeat;
  color: white;
  padding: 3.4rem 1.15rem 2.6rem;
  position: relative;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,34,56,0.45), rgba(14,34,56,0.72));
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { color: white; max-width: 16ch; }

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
.gallery a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #ddd;
}
.gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery a:hover img { transform: scale(1.04); }
.gallery figcaption {
  font-size: 0.78rem;
  color: var(--muted);
  padding: 0.35rem 0.15rem 0.2rem;
}

.walkthroughs { margin-top: 2.5rem; }
.walkthroughs p { margin: 0; }
.walkthrough-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.walkthrough-card {
  display: block;
  overflow: hidden;
  color: var(--navy);
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(14, 34, 56, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.walkthrough-card:hover,
.walkthrough-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(14, 34, 56, 0.14);
}
.walkthrough-thumb {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--navy-deep);
}
.walkthrough-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.walkthrough-card:hover .walkthrough-thumb img,
.walkthrough-card:focus-visible .walkthrough-thumb img { transform: scale(1.04); }
.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  padding-left: 0.15rem;
  color: var(--navy-deep);
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 14px rgba(14, 34, 56, 0.3);
  font-size: 1.1rem;
}
.walkthrough-title {
  display: block;
  padding: 0.85rem 1rem 1rem;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.18rem;
  font-weight: 560;
}

.rooms {
  display: grid;
  gap: 1rem;
}
.room {
  display: grid;
  gap: 0.8rem;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.room img { width: 100%; height: 210px; object-fit: cover; }
.room .pad { padding: 0 1.1rem 1.15rem; }

.amenity-cols {
  display: grid;
  gap: 1.4rem;
}
.amenity-cols ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.amenity-cols li {
  padding: 0.38rem 0 0.38rem 1.1rem;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.amenity-cols li::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  left: 0; top: 0.75rem;
}

.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.65rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
}
.faq details p { margin: 0.7rem 0 0.2rem; color: var(--muted); }

.map-frame {
  border: 0;
  width: 100%;
  height: 320px;
  border-radius: var(--radius);
  filter: grayscale(0.15);
}

.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.78);
  padding: 2.4rem 1.15rem 2rem;
  font-size: 0.95rem;
}
.site-footer .wrap {
  display: grid;
  gap: 1.4rem;
}
.site-footer a { color: white; }
.site-footer .gold { color: var(--gold); font-family: Fraunces, serif; font-size: 1.2rem; }
.legal { font-size: 0.82rem; opacity: 0.75; }
.footer-social { margin-top: 1rem; }
.footer-social > span {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255,255,255,0.92);
  font-size: 0.88rem;
  font-weight: 700;
}
.social-links { display: flex; gap: 0.55rem; }
.social-links a {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  color: var(--gold);
  background: rgba(0, 184, 169, 0.12);
  border: 1px solid rgba(0, 184, 169, 0.58);
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.social-links a:hover,
.social-links a:focus-visible {
  color: var(--navy-deep);
  background: var(--gold);
  transform: translateY(-2px);
}
.social-links svg { width: 1.15rem; height: 1.15rem; }

.lightbox {
  position: fixed; inset: 0; background: rgba(8,16,28,0.92);
  display: none; align-items: center; justify-content: center;
  z-index: 80; padding: 3.5rem 4.5rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(82vw, 1200px); max-height: 82vh;
  object-fit: contain; border-radius: 6px;
}
.lightbox button {
  position: absolute; display: grid; place-items: center;
  background: var(--gold); color: var(--navy-deep);
  border: 0; border-radius: 999px;
  width: 52px; height: 52px; font-size: 1.7rem;
  line-height: 1; font-weight: 800; cursor: pointer;
}
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  color: white; background: rgba(8,16,28,0.72); border-radius: 999px;
  padding: 0.35rem 0.7rem; font-size: 0.9rem; font-weight: 700;
}

@media (min-width: 760px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: flex !important;
    position: static;
    background: none;
    border: 0;
    padding: 0;
    gap: 1.15rem;
    align-items: center;
  }
  .site-nav a { padding: 0; font-size: 0.95rem; }
  .nav-cta { margin-left: 0.4rem; padding: 0.5rem 1rem; font-size: 0.92rem; }
  .highlights { grid-template-columns: repeat(4, 1fr); }
  .welcome-grid { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
  .photo-strip { grid-template-columns: repeat(3, 1fr); }
  .quotes { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .gallery img { height: 210px; }
  .walkthrough-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms { grid-template-columns: 1fr 1fr; }
  .amenity-cols { grid-template-columns: 1fr 1fr 1fr; }
  .stat-row { grid-template-columns: repeat(4, 1fr); }
  .site-footer .wrap { grid-template-columns: 1.4fr 1fr 1fr; }
  .map-frame { height: 420px; }
  .booking-wrap { padding: 1.2rem 1.3rem 1.35rem; }
}

@media (max-width: 720px) {
  .brand-logo { height: 69px; }
}
