:root {
  --navy: #06324a;
  --navy-2: #08263a;
  --teal: #087c8e;
  --teal-dark: #056575;
  --sand: #f7f1e8;
  --sand-2: #efe3d1;
  --sea-glass: #edf8f8;
  --sea-glass-2: #dff0f1;
  --sun-wash: #fff3df;
  --cream: #fffaf3;
  --white: #ffffff;
  --ink: #143044;
  --muted: #667988;
  --gold: #e7ab43;
  --sage: #6f7b59;
  --line: rgba(20, 48, 68, 0.14);
  --shadow: 0 24px 70px rgba(6, 50, 74, 0.16);
  --radius: 24px;
  --container: min(1180px, calc(100vw - 40px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(8,124,142,.06), transparent 25%),
    linear-gradient(180deg, #fffaf3 0%, #f7fbfb 48%, #fff7ea 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.container { width: var(--container); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 999px;
  transform: translateY(-140%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: .86rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 12px 25px rgba(6, 50, 74, .16); }
.button-primary { background: var(--navy); color: var(--white); }
.button-primary:hover { background: var(--teal-dark); }
.button-secondary { background: var(--teal); color: var(--white); }
.button-outline { border-color: var(--teal); color: var(--teal-dark); background: transparent; }
.button-outline:hover { background: rgba(8, 124, 142, .08); box-shadow: none; }
.button-light { background: var(--white); color: var(--navy); }
.button-wide { width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(237, 248, 248, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(8, 124, 142, .16);
  box-shadow: 0 8px 30px rgba(6, 50, 74, .06);
}
.top-bar {
  color: rgba(255,255,255,.92);
  background: linear-gradient(90deg, var(--navy-2), var(--teal-dark));
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.top-bar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 42px);
}
.top-bar span {
  position: relative;
  white-space: nowrap;
}
.top-bar span + span::before {
  content: "";
  position: absolute;
  left: calc(clamp(16px, 4vw, 42px) / -2);
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--gold);
  transform: translate(-50%, -50%);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand-logo {
  width: clamp(190px, 19vw, 250px);
  height: auto;
  max-height: 72px;
  object-fit: contain;
}
.primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.primary-nav a {
  position: relative;
  color: var(--navy-2);
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.primary-nav a:hover::after { transform: scaleX(1); }
.nav-toggle { display: none; }
.header-cta { margin-left: 4px; }

.hero {
  position: relative;
  min-height: 670px;
  display: grid;
  align-items: center;
  overflow: clip;
}
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media {
  background:
    radial-gradient(circle at 70% 34%, rgba(232,118,48,.34), transparent 42%),
    linear-gradient(90deg, rgba(255,250,243,.96) 0%, rgba(255,250,243,.82) 34%, rgba(255,250,243,.1) 62%),
    linear-gradient(180deg, rgba(231,171,67,.1), rgba(6,50,74,.18)),
    url("assets/hero-boardwalk-warm.jpg") center / cover no-repeat;
  transform: scale(1.02);
}
.hero-overlay {
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,.22), transparent 32%), linear-gradient(180deg, rgba(6,50,74,.04), rgba(6,50,74,.12));
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 78px 0 64px;
}
.hero-copy { max-width: 660px; }
.eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 900;
  color: var(--teal-dark);
}
.script {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  text-transform: none;
  letter-spacing: .02em;
  color: var(--teal);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 400;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 700px;
  margin-bottom: 18px;
  font-family: var(--serif);
  color: var(--navy);
  font-size: clamp(3.25rem, 7vw, 6rem);
  line-height: .95;
  letter-spacing: -.055em;
}
.hero-lead {
  max-width: 580px;
  color: #27485b;
  font-size: clamp(1.08rem, 2.2vw, 1.45rem);
  line-height: 1.45;
  margin-bottom: 36px;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 560px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.24);
  backdrop-filter: blur(10px);
}
.hero-proof div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 18px;
  border-right: 1px solid var(--line);
}
.hero-proof div:last-child { border-right: 0; }
.icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 2px solid rgba(8,124,142,.4);
  border-radius: 999px;
  color: var(--teal);
  font-size: 1.25rem;
}
.hero-proof strong {
  font-size: .82rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--navy);
}

.booking-card {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(8,124,142,.18);
  box-shadow: var(--shadow);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.booking-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.booking-badge {
  display: inline-flex;
  padding: 6px 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(8,124,142,.1);
  color: var(--teal-dark);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
}
.booking-card h2 {
  margin-bottom: 6px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 1.42rem;
}
.booking-card p:not(.booking-badge) {
  color: #3d5665;
  font-size: .96rem;
  margin-bottom: 22px;
}
.booking-form { display: grid; gap: 14px; }
.booking-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.booking-form label span {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .72rem;
  font-weight: 900;
}
.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(20, 48, 68, .22);
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
}
.booking-form input:focus,
.booking-form select:focus {
  outline: 3px solid rgba(8, 124, 142, .18);
  border-color: var(--teal);
}
.booking-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  color: #456171;
  font-size: .82rem;
}
.booking-note span { color: var(--teal); font-weight: 900; }

.amenity-strip {
  padding: 60px 0 52px;
  background:
    linear-gradient(135deg, rgba(8,124,142,.08), rgba(255,255,255,.68) 45%, rgba(231,171,67,.1)),
    var(--sea-glass);
}
.centered { text-align: center; }
.section-title {
  margin-bottom: 30px;
  font-family: var(--serif);
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(8,124,142,.16);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(6,50,74,.06);
}
.amenity-grid article {
  min-height: 142px;
  padding: 26px 14px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  border-right: 1px solid var(--line);
}
.amenity-grid article:last-child { border-right: 0; }
.line-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border: 2px solid rgba(8,124,142,.55);
  color: var(--teal);
  border-radius: 14px;
  font-weight: 900;
}
.amenity-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: .78rem;
  line-height: 1.2;
  text-transform: uppercase;
}
.amenity-grid small {
  margin-top: 4px;
  color: var(--muted);
  font-size: .67rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--sun-wash);
}
.split-image { min-height: 420px; }
.boardwalk-image {
  background: url("assets/location-pool.jpg") center / cover no-repeat;
}
.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 6vw, 90px);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.62), rgba(255,243,223,.92)),
    var(--sun-wash);
}
.split-copy::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 290px;
  height: 290px;
  background: radial-gradient(circle, rgba(231,171,67,.18), transparent 62%);
  border-radius: 999px;
}
.split-copy h2,
.rooms-copy h2,
.map-copy h2 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -.035em;
  margin-bottom: 16px;
}
.split-copy p,
.rooms-copy p,
.map-copy p { color: #415b6b; max-width: 560px; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 26px;
  display: grid;
  gap: 10px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
}
.check-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-size: .78rem;
  font-weight: 900;
}

.rooms {
  padding: 70px 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(255,255,255,.8), transparent 28%),
    linear-gradient(135deg, var(--sea-glass-2) 0%, var(--sea-glass) 40%, var(--cream) 100%);
}
.rooms-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}
.room-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.room-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border-radius: 16px;
  background: var(--navy);
  box-shadow: 0 20px 38px rgba(6,50,74,.12);
}
.room-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform .35s ease;
}
.room-card:hover img { transform: scale(1.04); }
.room-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(4,24,37,.86));
}
.room-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--white);
}
.room-card h3 {
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .9rem;
}
.room-card p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: .86rem;
}

.direct {
  padding: 48px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.16), transparent 27%),
    linear-gradient(135deg, var(--teal-dark), var(--navy-2));
}
.direct-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.22);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(6,50,74,.18);
}
.direct-card,
.direct-cta {
  padding: 32px;
  background: rgba(6,50,74,.25);
  min-height: 180px;
}
.direct-icon {
  font-size: 1.8rem;
  color: var(--gold);
}
.direct h3 {
  margin: 10px 0 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .88rem;
}
.direct p { color: rgba(255,255,255,.82); }
.direct-cta .script { color: var(--white); margin-bottom: 2px; }
.direct-cta h2 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.04;
}

.map-section {
  padding: 70px 0;
  background:
    linear-gradient(180deg, var(--cream), var(--sun-wash));
}
.map-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: center;
}
.map-placeholder {
  min-height: 340px;
  border: 1px solid rgba(20, 48, 68, .14);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(8,124,142,.08) 1px, transparent 1px),
    linear-gradient(rgba(8,124,142,.08) 1px, transparent 1px),
    linear-gradient(135deg, #fff, #eef9fa);
  background-size: 32px 32px, 32px 32px, auto;
  box-shadow: 0 22px 44px rgba(6,50,74,.08);
}
.pin {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 1.5rem;
}
.map-placeholder strong { color: var(--navy); font-size: 1.3rem; }
.map-placeholder span { color: var(--muted); }

.site-footer {
  background: var(--navy-2);
  color: rgba(255,255,255,.82);
  padding: 58px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr .8fr .9fr 1fr;
  gap: 34px;
}
.footer-brand {
  display: inline-flex;
  width: fit-content;
  padding: 0;
  margin-bottom: 14px;
}
.footer-brand .brand-logo {
  width: min(280px, 100%);
  max-height: none;
}
.footer-grid h2 {
  margin: 0 0 12px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
}
.footer-grid a,
.footer-grid span { display: block; margin-bottom: 8px; }
.footer-grid p { max-width: 330px; color: rgba(255,255,255,.7); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.58);
}

.mobile-booking-bar { display: none; }
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  :root { --container: min(100vw - 28px, 720px); }
  .top-bar { font-size: .64rem; letter-spacing: .04em; }
  .top-bar-inner {
    min-height: 32px;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .top-bar-inner::-webkit-scrollbar { display: none; }
  .header-inner { min-height: 76px; }
  .primary-nav {
    position: fixed;
    top: 108px;
    left: 14px;
    right: 14px;
    display: none;
    margin-left: 0;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255,250,243,.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 14px; border-bottom: 1px solid var(--line); }
  .primary-nav a:last-child { border-bottom: 0; }
  .primary-nav a::after { display: none; }
  .nav-toggle {
    margin-left: auto;
    display: inline-grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
  }
  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--navy);
  }
  .header-cta { display: none; }
  .brand-logo { width: 190px; }

  .hero { min-height: unset; }
  .hero-media {
    background:
      radial-gradient(circle at 72% 35%, rgba(232,118,48,.30), transparent 40%),
      linear-gradient(180deg, rgba(255,250,243,.98) 0%, rgba(255,250,243,.80) 46%, rgba(255,250,243,.28) 100%),
      url("assets/hero-boardwalk-warm.jpg") center / cover no-repeat;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 50px;
  }
  .hero-proof { grid-template-columns: 1fr; max-width: 440px; }
  .hero-proof div { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-proof div:last-child { border-bottom: 0; }
  .booking-card { max-width: 520px; }

  .amenity-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .amenity-grid article { border-bottom: 1px solid var(--line); }
  .amenity-grid article:nth-child(even) { border-right: 0; }
  .split { grid-template-columns: 1fr; }
  .split-copy { padding: 40px 22px; }
  .rooms-layout { grid-template-columns: 1fr; }
  .room-cards { grid-template-columns: 1fr; }
  .room-card, .room-card img { min-height: 260px; }
  .direct-grid { grid-template-columns: 1fr 1fr; }
  .map-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 640px) {
  body { padding-bottom: 70px; }
  .top-bar span:nth-child(3) { display: none; }
  h1 { font-size: clamp(2.8rem, 15vw, 4rem); }
  .hero-lead { font-size: 1.05rem; }
  .booking-card { padding: 22px; border-radius: 18px; }
  .booking-row { grid-template-columns: 1fr; }
  .amenity-strip, .rooms, .map-section { padding: 46px 0; }
  .amenity-grid { grid-template-columns: 1fr; }
  .amenity-grid article { border-right: 0; }
  .direct-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-booking-bar {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 120;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    border-radius: 999px;
    color: var(--white);
    background: var(--navy);
    box-shadow: 0 12px 36px rgba(6,50,74,.28);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 900;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
