:root {
  --ink: #112023;
  --muted: #526164;
  --reef: #0b6f72;
  --deep: #063f46;
  --sun: #f4b942;
  --sand: #f7f1df;
  --foam: #f4fbfa;
  --coral: #d95f43;
  --line: #dce8e6;
  --shadow: 0 18px 48px rgba(6, 63, 70, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  background: #fff;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  padding: 10px;
  z-index: 10;
}

.skip-link:focus {
  left: 10px;
}

.alert {
  background: var(--coral);
  color: #fff;
  text-align: center;
  padding: 10px 18px;
  font-size: 0.95rem;
}

.alert a {
  color: #fff;
  font-weight: 900;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 8;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand img {
  width: 190px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 0.92rem;
}

.nav a,
.site-footer a {
  text-decoration: none;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--reef);
}

.call-button,
.primary,
.secondary,
.outline-button,
.contact-form button,
.chat-form button,
.chat-toggle {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 10px 16px;
  font-weight: 800;
  text-decoration: none;
}

.call-button,
.primary,
.contact-form button,
.chat-form button,
.chat-toggle {
  border: 0;
  color: #fff;
  background: var(--reef);
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: #fff;
}

.outline-button {
  border: 1px solid var(--reef);
  color: var(--reef);
  background: #fff;
}

.outline-button.light {
  border-color: rgba(255, 255, 255, 0.78);
  color: #fff;
  background: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.hero {
  min-height: min(760px, calc(100vh - 74px));
  display: grid;
  align-content: end;
  gap: 28px;
  padding: clamp(88px, 13vw, 170px) clamp(20px, 6vw, 76px) 34px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3, 31, 35, 0.88), rgba(3, 31, 35, 0.46) 52%, rgba(3, 31, 35, 0.28)),
    url("/assets/images/cgs-front.jpg") center / cover no-repeat;
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.cta .eyebrow {
  color: var(--sun);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(2.6rem, 8vw, 6.3rem);
  line-height: 0.95;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.hero p {
  max-width: 650px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.hero-facts,
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.hero-facts span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 800;
  text-align: center;
  backdrop-filter: blur(4px);
}

.trust-strip {
  background: var(--deep);
  color: #fff;
}

.trust-strip div {
  padding: 24px clamp(18px, 4vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 6vw, 76px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.reverse {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  background: var(--foam);
}

.split p,
.section-heading p,
.getting p,
.cta p {
  color: var(--muted);
  font-size: 1.05rem;
}

figure {
  margin: 0;
}

figure img,
.card-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.check-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--sun);
}

.planner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
  background: var(--deep);
  color: #fff;
}

.planner p,
.cta p {
  color: rgba(255, 255, 255, 0.8);
}

.planner-tool {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

label {
  font-weight: 800;
}

select,
input,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
}

.recommendation {
  min-height: 116px;
  margin-top: 10px;
  padding: 18px;
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
}

.menu-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 22px 0;
}

.filter {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--ink);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.filter.active {
  color: #fff;
  background: var(--deep);
  border-color: var(--deep);
}

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

.menu-grid article,
.card-grid article,
.contact-card,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-grid article {
  min-height: 110px;
  padding: 16px;
}

.menu-grid strong,
.menu-grid span {
  display: block;
}

.menu-grid span {
  margin-top: 4px;
  color: var(--muted);
}

.menu-grid article.hidden {
  display: none;
}

.cards {
  background: #fff;
}

.service-paths {
  background: linear-gradient(180deg, #fff, var(--foam));
}

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

.path-grid article {
  min-height: 270px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(6, 63, 70, 0.08);
}

.path-grid span {
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--deep);
  background: #fce8d8;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.path-grid p {
  color: var(--muted);
}

.path-grid a {
  align-self: end;
  color: var(--reef);
  font-weight: 900;
  text-decoration: none;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

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

.card-grid article {
  padding: 18px;
}

.card-grid img {
  margin: -18px -18px 18px;
  width: calc(100% + 36px);
  border-radius: 8px 8px 0 0;
  box-shadow: none;
}

.booking-section {
  background: linear-gradient(180deg, var(--sand), #fff);
}

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

.rate-grid article {
  min-height: 180px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(6, 63, 70, 0.08);
}

.rate-grid span {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.rate-grid strong {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1;
}

.rate-grid p,
.booking-note {
  color: var(--muted);
}

.booking-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.booking-note {
  max-width: 820px;
  margin: 16px 0 0;
  font-size: 0.95rem;
}

.booking-embed {
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.booking-embed iframe {
  width: 100%;
  min-height: 820px;
  border: 0;
}

.rate-grid.compact {
  margin-top: 14px;
}

.notice-page {
  background: var(--sand);
}

.notice-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 16px clamp(18px, 5vw, 64px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.notice-main {
  padding: clamp(28px, 6vw, 70px) clamp(18px, 5vw, 64px);
}

.notice-article {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(22px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.notice-article h1 {
  color: var(--deep);
}

.notice-article h2 {
  margin-top: 34px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.notice-lead {
  max-width: 820px;
  padding: 18px;
  color: var(--ink);
  background: #fff2d3;
  border-left: 5px solid var(--sun);
  border-radius: 6px;
  font-weight: 800;
}

.notice-warning {
  padding: 18px;
  border: 1px solid #f0c9bd;
  border-left: 5px solid var(--coral);
  border-radius: 8px;
  background: #fff8f5;
}

.notice-warning h2 {
  margin-top: 0;
}

.last-updated {
  margin-top: 28px;
  color: var(--muted);
  font-weight: 800;
}

.notice-contact {
  display: grid;
  gap: 8px;
}

.notice-contact a {
  color: var(--reef);
  font-weight: 900;
  text-decoration: none;
}

.back-home {
  margin-top: 28px;
}

.getting {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 34px;
  background: var(--sand);
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.contact-card span {
  color: var(--muted);
}

.faq {
  max-width: 960px;
  margin: 0 auto;
}

details {
  padding: 18px 20px;
  margin-top: 12px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin-bottom: 0;
  color: var(--muted);
}

.concierge-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(6, 63, 70, 0.94), rgba(6, 63, 70, 0.78)),
    url("/assets/images/rooms-view.jpg") center / cover no-repeat;
  color: #fff;
}

.concierge-section p {
  color: rgba(255, 255, 255, 0.82);
}

.chat-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.chat-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  color: #fff;
  background: var(--deep);
}

.chat-header span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.chat-close {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 7px 10px;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.chat-log {
  height: 280px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
  overflow: auto;
  background: var(--foam);
}

.message {
  max-width: 88%;
  padding: 11px 13px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.message.user {
  justify-self: end;
  color: #fff;
  background: var(--reef);
  border-color: var(--reef);
}

.message strong {
  display: block;
  margin-bottom: 3px;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
}

.quick-prompts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 12px 12px;
}

.quick-prompts button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}

.chat-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 12;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.floating-chat {
  position: fixed;
  right: 18px;
  bottom: 78px;
  z-index: 13;
  width: min(390px, calc(100vw - 36px));
}

.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;
}

.cta {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
  padding: clamp(58px, 8vw, 96px) clamp(20px, 6vw, 76px);
  color: #fff;
  background: linear-gradient(135deg, var(--deep), #147d75);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 4vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
}

.contact-form button {
  cursor: pointer;
  background: var(--sun);
  color: var(--ink);
}

.contact-options p {
  margin: 0;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-slot:empty {
  display: none;
}

.chat-turnstile {
  padding: 10px 12px 0;
  background: var(--foam);
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-weight: 800;
}

.form-status.error {
  color: #ffd8cf;
}

.form-status.success {
  color: #fff2b8;
}

.room-hero {
  min-height: 520px;
}

.room-page .hero {
  background:
    linear-gradient(90deg, rgba(3, 31, 35, 0.88), rgba(3, 31, 35, 0.42) 54%, rgba(3, 31, 35, 0.25)),
    url("/assets/images/rooms-view.jpg") center / cover no-repeat;
}

.room-page .booking-section {
  background: #fff;
}

.verification-box {
  padding: 20px;
  border: 1px solid #f0c9bd;
  border-left: 5px solid var(--coral);
  border-radius: 8px;
  background: #fff8f5;
}

.verification-box h3 {
  margin-top: 0;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mini-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  padding: 38px clamp(20px, 6vw, 76px);
  color: #fff;
  background: #081f23;
}

.site-footer img {
  width: 190px;
  padding: 8px;
  background: #fff;
  border-radius: 6px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.9);
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .nav {
    justify-content: flex-start;
  }

  .call-button {
    width: max-content;
  }

  .hero-facts,
  .trust-strip,
  .split,
  .reverse,
  .planner,
  .path-grid,
  .rate-grid,
  .concierge-section,
  .getting,
  .cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 620px) {
  .alert {
    text-align: left;
  }

  .brand img,
  .site-footer img {
    width: 160px;
  }

  .nav {
    gap: 10px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 720px;
    padding-top: 72px;
  }

  .hero-actions a {
    width: 100%;
  }

  .hero-facts {
    gap: 8px;
  }

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

  .chat-form {
    grid-template-columns: 1fr;
  }

  .floating-chat {
    right: 10px;
    bottom: 70px;
    width: calc(100vw - 20px);
  }
}
