:root {
  --bg: #f8f4ec;
  --surface: rgba(255, 252, 246, 0.88);
  --ink: #16313b;
  --muted: #526975;
  --line: rgba(22, 49, 59, 0.12);
  --sea: #0c5f69;
  --sea-deep: #083e46;
  --sand: #e7cfaa;
  --shadow: 0 22px 60px rgba(12, 39, 44, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(230, 132, 100, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(12, 95, 105, 0.18), transparent 30%),
    linear-gradient(180deg, #fff7ef 0%, var(--bg) 42%, #fffdf9 100%);
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  line-height: 1.7;
}

.site-shell {
  overflow: clip;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 1rem auto 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(18, 38, 43, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sea), #1f8a8c);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-text {
  display: grid;
}

.brand-text strong,
.eyebrow,
h1,
h2,
h3 {
  font-family: "Fraunces", serif;
}

.brand-text strong {
  font-size: 0.98rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--sea-deep);
}

.nav-cta {
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  background: var(--sea);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  background: rgba(12, 95, 105, 0.12);
  color: var(--sea-deep);
  padding: 0.8rem 1rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.section {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 5.5rem 0 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 2rem;
  min-height: calc(100vh - 7rem);
  align-items: center;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--sea);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  max-width: 14ch;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  max-width: 16ch;
}

h3 {
  margin: 0 0 1rem;
  font-size: 1.55rem;
}

.hero-text,
.section-heading p,
.hero-card-content p,
.panel p,
.room-card p,
.faq-card p,
.cta-panel p {
  color: var(--muted);
}

.hero-text {
  max-width: 58ch;
  margin-top: 1.4rem;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible,
.floating-cta:hover,
.floating-cta:focus-visible {
  transform: translateY(-2px);
}

.button-primary,
.floating-cta {
  background: linear-gradient(135deg, var(--sea), #1a8284);
  color: #fff;
  box-shadow: 0 18px 34px rgba(12, 95, 105, 0.24);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--sea-deep);
}

.button.large {
  min-height: 3.8rem;
  padding-inline: 1.7rem;
}

.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 1.9rem 0 0;
}

.feature-chips li {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(12, 95, 105, 0.12);
  background: rgba(255, 255, 255, 0.66);
  color: var(--sea-deep);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-media {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr;
  gap: 1rem;
  align-items: stretch;
}

.hero-stack {
  display: grid;
  gap: 1rem;
}

.hero-card,
.panel,
.room-card,
.gallery-item,
.faq-card,
.map-card,
.cta-panel {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 18rem;
  border-radius: var(--radius-xl);
}

.hero-card-main {
  min-height: 34rem;
}

.hero-card img {
  height: 100%;
  object-fit: cover;
}

.hero-card-content {
  position: absolute;
  inset: auto 0 0;
  padding: 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(8, 36, 41, 0.78));
  color: #fff;
}

.hero-card-content p {
  color: rgba(255, 255, 255, 0.86);
}

.label {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--sand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.accent-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(231, 207, 170, 0.34), transparent 38%),
    linear-gradient(145deg, var(--sea-deep), var(--sea));
  color: #fff;
}

.accent-card .label {
  color: rgba(255, 255, 255, 0.78);
}

.accent-card h2 {
  max-width: 12ch;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.stats-band {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stats-band div {
  padding: 1.35rem 1.4rem;
  border: 1px solid rgba(12, 95, 105, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.66);
}

.stats-band strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
}

.stats-band span {
  color: var(--muted);
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading p {
  max-width: 62ch;
  margin-top: 1rem;
}

.grid-two,
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}

.panel,
.faq-card,
.cta-panel {
  padding: 1.7rem;
  border-radius: var(--radius-xl);
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.detail-list li {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.detail-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.amenity-grid span {
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(12, 95, 105, 0.08);
  color: var(--sea-deep);
  font-weight: 700;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.3rem;
}

.room-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.room-card img {
  aspect-ratio: 1 / 1.02;
  object-fit: cover;
}

.room-card div {
  padding: 1.3rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-xl);
  grid-column: span 4;
}

.gallery-item.tall {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 7;
}

.gallery-item img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-item.tall img {
  aspect-ratio: 0.84 / 1;
}

.gallery-item.wide img {
  aspect-ratio: 1.8 / 1;
}

.gallery-item figcaption {
  padding: 1rem 1.1rem 1.2rem;
  color: var(--muted);
}

.nearby-list {
  display: grid;
  gap: 1.1rem;
}

.nearby-list div {
  padding-bottom: 1.05rem;
  border-bottom: 1px solid var(--line);
}

.nearby-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.nearby-list strong {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 1.02rem;
}

.map-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: 30rem;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 30rem;
  border: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.cta-section {
  padding-bottom: 4rem;
}

.cta-panel {
  text-align: center;
  padding: 3rem 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(231, 207, 170, 0.3), transparent 28%),
    linear-gradient(145deg, rgba(12, 95, 105, 0.12), rgba(255, 255, 255, 0.92));
}

.cta-panel h2 {
  margin-inline: auto;
  max-width: 12ch;
}

.cta-panel p {
  max-width: 56ch;
  margin: 1rem auto 1.8rem;
}

.footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 0 0 6rem;
  color: var(--muted);
  text-align: center;
}

.footer p + p {
  margin-top: 0.45rem;
}

.footer a {
  color: var(--sea);
  font-weight: 800;
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 15;
  display: inline-flex;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  font-weight: 800;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .floating-cta,
  html.js .reveal {
    transition: none;
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero,
  .hero-media,
  .grid-two,
  .location-grid,
  .room-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3.5rem;
  }

  .hero-card-main {
    min-height: 28rem;
  }

  .stats-band {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 6;
  }
}

@media (max-width: 760px) {
  .topbar {
    margin-top: 0.75rem;
    border-radius: 24px;
    padding: 0.85rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.8rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 250, 243, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .hero-card-main {
    min-height: 22rem;
  }

  .section {
    padding-top: 4.5rem;
  }

  h1 {
    font-size: clamp(2.5rem, 15vw, 4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.9rem);
  }

  .amenity-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
  }

  .floating-cta {
    left: 1rem;
    justify-content: center;
    text-align: center;
  }
}
