:root {
  --ink: #17312f;
  --muted: #687775;
  --line: #dbe7e4;
  --page: #f6f2ea;
  --card: #ffffff;
  --ocean: #137c85;
  --ocean-dark: #0f5f66;
  --sand: #eadcc4;
  --green: #6f927f;
  --sun: #d99a61;
  --shadow: 0 18px 48px rgba(30, 62, 58, 0.12);
  --radius: 8px;
  --max: 1120px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--page);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(246, 242, 234, 0) 0, var(--page) 620px),
    var(--page);
}

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

button,
input {
  font: inherit;
}

.site-hero {
  position: relative;
  min-height: min(760px, 92vh);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(18, 40, 37, 0.28), rgba(18, 40, 37, 0.18) 38%, rgba(18, 40, 37, 0.72)),
    linear-gradient(90deg, rgba(12, 34, 33, 0.58), rgba(12, 34, 33, 0.08));
}

.top-nav,
.hero-content,
.section-shell {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
}

.brand-mark span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  font-weight: 800;
}

.host-link,
.primary-action,
.secondary-action,
.copy-button,
.call-button,
.map-button,
.tab-button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.host-link {
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: 750;
  backdrop-filter: blur(18px);
}

.hero-content {
  display: flex;
  min-height: calc(min(760px, 92vh) - 92px);
  flex-direction: column;
  justify-content: flex-end;
  padding: 72px 0 84px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--ocean-dark);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-hero .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: 3.1rem;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 1.72rem;
  line-height: 1.04;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-weight: 800;
}

.primary-action {
  background: #fff;
  color: var(--ocean-dark);
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

main {
  padding: 26px 0 112px;
}

.section-shell {
  padding: 34px 0;
}

.section-heading {
  margin-bottom: 20px;
}

.section-heading.compact {
  margin-bottom: 14px;
}

.action-grid,
.details-grid,
.contact-grid,
.local-grid {
  display: grid;
  gap: 14px;
}

.action-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.action-card,
.detail-card,
.contact-card,
.local-card,
.wifi-card,
.checkout-panel,
.search-box,
.accordion-item {
  border: 1px solid rgba(219, 231, 228, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(30, 62, 58, 0.08);
}

.action-card {
  display: flex;
  min-height: 126px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.action-card:hover,
.action-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.action-card .icon-pill,
.contact-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #e8f3f1;
  color: var(--ocean-dark);
  font-weight: 900;
}

.action-card strong {
  display: block;
  margin-top: 16px;
  font-size: 1rem;
}

.action-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.4;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 16px;
}

.search-box input {
  width: 100%;
  min-height: 54px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.search-results {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.result-item {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.result-item small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.details-grid {
  grid-template-columns: 1fr;
  margin-bottom: 14px;
}

.detail-card,
.contact-card,
.local-card {
  padding: 18px;
}

.label {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.copy-row,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

code {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  background: #f2f6f5;
  color: var(--ink);
  white-space: nowrap;
}

.copy-button,
.call-button,
.map-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  background: var(--ocean);
  color: #fff;
  font-weight: 800;
}

.map-button {
  background: #eef4f2;
  color: var(--ocean-dark);
}

.wifi-card,
.checkout-panel {
  display: grid;
  gap: 20px;
  padding: 22px;
}

.accordion-list {
  display: grid;
  gap: 12px;
}

.accordion-item {
  overflow: hidden;
}

.accordion-trigger {
  display: flex;
  width: 100%;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0 18px;
  text-align: left;
  cursor: pointer;
}

.accordion-trigger strong {
  font-size: 1rem;
}

.accordion-trigger span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #eff6f4;
  color: var(--ocean-dark);
  font-weight: 900;
  transition: transform 180ms ease;
}

.accordion-item.is-open .accordion-trigger span {
  transform: rotate(45deg);
}

.accordion-content {
  display: none;
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.65;
}

.accordion-item.is-open .accordion-content {
  display: block;
}

.checklist {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.checklist li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.checklist li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #e5f1ef;
  color: var(--ocean-dark);
  font-weight: 900;
}

.local-tabs {
  display: flex;
  gap: 8px;
  padding-bottom: 14px;
  overflow-x: auto;
  scrollbar-width: none;
}

.local-tabs::-webkit-scrollbar {
  display: none;
}

.tab-button {
  flex: 0 0 auto;
  padding: 0 16px;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
  border: 1px solid var(--line);
}

.tab-button[aria-selected="true"] {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.local-card p,
.contact-card p,
.detail-card p {
  color: var(--muted);
  line-height: 1.6;
}

.local-card .meta {
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-card {
  display: grid;
  gap: 12px;
}

.bottom-nav {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  min-height: 70px;
  padding: 8px;
  border: 1px solid rgba(219, 231, 228, 0.8);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(20, 47, 44, 0.18);
  backdrop-filter: blur(22px);
}

.bottom-nav a {
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
}

.bottom-nav span {
  font-size: 1.15rem;
}

.bottom-nav small {
  font-size: 0.68rem;
}

.bottom-nav a:hover,
.bottom-nav a:focus-visible {
  background: #eff6f4;
  color: var(--ocean-dark);
}

@media (min-width: 680px) {
  .top-nav,
  .hero-content,
  .section-shell {
    width: min(calc(100% - 64px), var(--max));
  }

  .action-grid,
  .details-grid,
  .contact-grid,
  .local-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wifi-card,
  .checkout-panel {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
  }
}

@media (min-width: 980px) {
  .site-hero {
    min-height: 720px;
  }

  h1 {
    font-size: 6.2rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .hero-content {
    min-height: 628px;
    padding-bottom: 108px;
  }

  .action-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .details-grid,
  .contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .local-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bottom-nav {
    top: 50%;
    right: 22px;
    bottom: auto;
    left: auto;
    width: 86px;
    min-height: 430px;
    transform: translateY(-50%);
    grid-template-columns: 1fr;
  }

  main {
    padding-bottom: 64px;
  }
}
