:root {
  --bg: #f8fbfd;
  --bg-2: #eef8fb;
  --bg-3: #f6efe2;
  --card: rgba(255, 255, 255, 0.92);
  --card-strong: rgba(255, 255, 255, 0.98);
  --text: #1f2937;
  --muted: #5f7284;
  --pine: #173844;
  --lake: #5bb6d9;
  --lake-2: #8fd8ef;
  --lake-deep: #0f5f79;
  --sand: #f6efe2;
  --success: #2d7e53;
  --danger: #9e3f3f;
  --border: rgba(15, 95, 121, 0.14);
  --border-strong: rgba(15, 95, 121, 0.22);
  --shadow: 0 26px 70px rgba(15, 52, 66, 0.12);
  --shadow-soft: 0 16px 38px rgba(15, 52, 66, 0.08);
  --radius: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1120px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at top right, rgba(143, 216, 239, 0.22), transparent 24rem),
    radial-gradient(circle at bottom left, rgba(246, 239, 226, 0.65), transparent 28rem),
    linear-gradient(180deg, #fcfeff 0%, var(--bg) 58%, #f7fbfd 100%);
}

body.nav-open {
  overflow: hidden;
}

main {
  display: block;
}

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

svg {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(91, 182, 217, 0.25);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-tight {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(239, 249, 252, 0.96), rgba(255, 255, 255, 0.96)),
    linear-gradient(135deg, rgba(143, 216, 239, 0.14), rgba(246, 239, 226, 0.24));
  border-block: 1px solid var(--border);
}

.section-sand {
  background:
    linear-gradient(180deg, rgba(246, 239, 226, 0.65), rgba(255, 255, 255, 0.96)),
    linear-gradient(135deg, rgba(143, 216, 239, 0.08), rgba(246, 239, 226, 0.16));
  border-block: 1px solid rgba(15, 95, 121, 0.08);
}

.centered {
  text-align: center;
}

.max-copy {
  max-width: 70ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(91, 182, 217, 0.24);
  background: rgba(255, 255, 255, 0.82);
  color: var(--lake-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lake), var(--lake-deep));
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-head p {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  color: var(--pine);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.3rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

p {
  margin: 0 0 1rem;
}

.lead {
  font-size: clamp(1.06rem, 1.25vw, 1.22rem);
  color: var(--muted);
}

.small {
  font-size: 0.95rem;
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.spacer {
  height: 1.25rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  min-height: 3.25rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease, color 0.24s ease;
  box-shadow: var(--shadow-soft);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--lake-deep), #167a99);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 44px rgba(15, 95, 121, 0.28);
}

.btn-secondary {
  color: var(--pine);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.92);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--border-strong);
  box-shadow: 0 18px 44px rgba(15, 52, 66, 0.14);
}

.btn-ghost {
  color: var(--lake-deep);
  border-color: rgba(91, 182, 217, 0.26);
  background: rgba(223, 247, 255, 0.72);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -10rem;
  z-index: 200;
  padding: 0.8rem 1rem;
  background: var(--pine);
  color: white;
  border-radius: 0.8rem;
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  padding: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: saturate(180%) blur(18px);
  background: rgba(248, 251, 253, 0.78);
  border-bottom: 1px solid var(--border);
}

.topbar {
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(15, 95, 121, 0.08);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.topbar a {
  font-weight: 700;
  color: var(--lake-deep);
}

.nav-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding: 0.95rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 8px 22px rgba(15, 95, 121, 0.18));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.02;
}

.brand-copy strong {
  font-size: 1.1rem;
  color: var(--pine);
}

.brand-copy span {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--muted);
}

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

.site-nav a {
  padding: 0.72rem 0.92rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(91, 182, 217, 0.12);
  color: var(--pine);
  outline: none;
}

.site-nav a.active {
  background: rgba(91, 182, 217, 0.15);
  color: var(--lake-deep);
}

.site-nav .nav-cta {
  margin-left: 0.35rem;
  padding-inline: 1.1rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--lake-deep), #167a99);
  box-shadow: 0 18px 44px rgba(15, 95, 121, 0.22);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  color: var(--pine);
  box-shadow: var(--shadow-soft);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  grid-area: 1 / 1;
  width: 1.15rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle::before {
  transform: translateY(-0.36rem);
}

.nav-toggle::after {
  transform: translateY(0.36rem);
}

body.nav-open .nav-toggle span {
  opacity: 0;
}

body.nav-open .nav-toggle::before {
  transform: rotate(45deg);
}

body.nav-open .nav-toggle::after {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.4rem, 5vw, 3.5rem);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto auto 12% -6rem;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 216, 239, 0.24), transparent 68%);
  pointer-events: none;
}

.hero::after {
  inset: 2rem -5rem auto auto;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(246, 239, 226, 0.46), transparent 70%);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy p {
  max-width: 60ch;
}

.hero-actions,
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.quick-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.85rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.74);
  color: var(--pine);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.quick-link:hover,
.quick-link:focus-visible {
  border-color: var(--border-strong);
  outline: none;
}

.hero-pane {
  position: relative;
  min-height: 540px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(223, 247, 255, 0.96), rgba(255, 255, 255, 0.9));
  box-shadow: var(--shadow);
}

.hero-pane img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-pane::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(9, 28, 34, 0.02)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.58), transparent 42%);
}

.hero-card {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1.35rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 42px rgba(15, 52, 66, 0.12);
  z-index: 1;
}

.hero-card h3 {
  margin-bottom: 0.4rem;
}

.hero-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.stat {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(15, 95, 121, 0.12);
  background: rgba(255, 255, 255, 0.74);
}

.stat strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.04rem;
  color: var(--pine);
}

.stat span {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.ribbon {
  padding: 1.1rem 1rem;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 249, 252, 0.8));
  box-shadow: var(--shadow-soft);
}

.ribbon strong {
  display: block;
  color: var(--pine);
  margin-bottom: 0.3rem;
}

.ribbon span {
  color: var(--muted);
  font-size: 0.95rem;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.1rem;
}

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

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

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

.card {
  border-radius: 28px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  padding: 1.35rem;
}

.card.soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 249, 252, 0.82)),
    linear-gradient(135deg, rgba(143, 216, 239, 0.1), rgba(246, 239, 226, 0.14));
}

.card strong.accent {
  color: var(--lake-deep);
}

.split-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.25rem;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.split-card.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.split-card .visual {
  min-height: 100%;
  background: linear-gradient(180deg, rgba(239, 249, 252, 0.95), rgba(255, 255, 255, 0.8));
}

.split-card .visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-card .content {
  padding: 1.5rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(223, 247, 255, 0.9);
  border: 1px solid rgba(91, 182, 217, 0.22);
  color: var(--lake-deep);
  font-size: 0.9rem;
  font-weight: 800;
}

.check-list,
.clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: start;
  margin-bottom: 0.8rem;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  flex: none;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lake), var(--lake-deep));
  box-shadow: 0 0 0 5px rgba(91, 182, 217, 0.14);
}

.clean-list li {
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(15, 95, 121, 0.12);
  color: var(--muted);
}

.clean-list li:last-child {
  border-bottom: none;
}

.metric {
  padding: 1.3rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 249, 252, 0.76));
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.metric strong {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--lake-deep);
  margin-bottom: 0.35rem;
}

.metric span {
  display: block;
  color: var(--muted);
  font-weight: 600;
}

.offer-card,
.feature-card,
.quote-card,
.info-card,
.policy-card,
.faq-card {
  height: 100%;
}

.offer-card .eyebrow,
.quote-card .eyebrow {
  margin-bottom: 0.8rem;
}

.feature-head {
  display: flex;
  gap: 0.95rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.icon-orb {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lake), var(--lake-deep));
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 95, 121, 0.26);
  font-weight: 900;
}

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

.suite-card {
  overflow: hidden;
  padding: 0;
}

.suite-image {
  aspect-ratio: 16 / 11;
  background: linear-gradient(180deg, rgba(239, 249, 252, 0.92), rgba(255, 255, 255, 0.7));
}

.suite-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.suite-body {
  padding: 1.35rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1rem 0 1.1rem;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 95, 121, 0.08);
  border: 1px solid rgba(15, 95, 121, 0.1);
  color: var(--lake-deep);
  font-size: 0.86rem;
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: var(--card-strong);
  box-shadow: var(--shadow-soft);
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid rgba(15, 95, 121, 0.1);
}

.compare-table thead th {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  background: rgba(239, 249, 252, 0.72);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.filter-chip {
  min-height: 2.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  color: var(--muted);
  box-shadow: var(--shadow-soft);
}

.filter-chip.active,
.filter-chip:hover,
.filter-chip:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, var(--lake-deep), #167a99);
  border-color: transparent;
  outline: none;
}

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

.gallery-item {
  grid-column: span 4;
  overflow: hidden;
  padding: 0;
}

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

.gallery-link {
  display: block;
  height: 100%;
}

.gallery-visual {
  position: relative;
  overflow: hidden;
}

.gallery-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.34s ease;
}

.gallery-item:hover .gallery-visual img,
.gallery-item:focus-within .gallery-visual img {
  transform: scale(1.03);
}

.gallery-tag {
  position: absolute;
  left: 1rem;
  top: 1rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.46);
  color: var(--pine);
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.gallery-caption {
  padding: 1rem 1.1rem 1.15rem;
}

.gallery-caption p {
  margin: 0;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(7, 18, 26, 0.82);
  backdrop-filter: blur(16px);
}

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

.lightbox-panel {
  width: min(1040px, 96vw);
  max-height: 94vh;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.lightbox-image {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: linear-gradient(180deg, #f2fbff, #ffffff);
}

.lightbox-info {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem 1.2rem;
}

.lightbox-copy h3 {
  margin-bottom: 0.35rem;
}

.lightbox-copy p {
  margin: 0;
  color: var(--muted);
}

.lightbox-close {
  flex: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(239, 249, 252, 0.82);
  color: var(--pine);
  box-shadow: var(--shadow-soft);
}

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

.quote-card {
  display: flex;
  flex-direction: column;
}

.quote-card blockquote {
  margin: 0;
  font-size: 1.02rem;
  color: var(--pine);
}

.quote-source {
  margin-top: auto;
  padding-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.score-card {
  text-align: center;
}

.score-card strong {
  display: block;
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: var(--lake-deep);
  margin-bottom: 0.3rem;
}

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

.timeline {
  display: grid;
  gap: 0.9rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(15, 95, 121, 0.12);
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-number {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lake), var(--lake-deep));
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(15, 95, 121, 0.18);
}

.timeline-item p {
  margin: 0.18rem 0 0;
  color: var(--muted);
}

form {
  margin: 0;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--pine);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(15, 95, 121, 0.14);
  background: rgba(255, 255, 255, 0.96);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(91, 182, 217, 0.85);
  box-shadow: 0 0 0 4px rgba(91, 182, 217, 0.16);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-top: 1.15rem;
}

.form-note {
  color: var(--muted);
  font-size: 0.94rem;
}

.feedback {
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(91, 182, 217, 0.18);
  background: rgba(223, 247, 255, 0.84);
  color: var(--pine);
}

.feedback.success {
  border-color: rgba(45, 126, 83, 0.16);
  background: rgba(231, 247, 236, 0.92);
}

.feedback.error {
  border-color: rgba(158, 63, 63, 0.16);
  background: rgba(255, 241, 241, 0.94);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1.1rem;
  align-items: start;
}

.sticky-summary {
  position: sticky;
  top: 7rem;
}

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

.estimate-breakdown {
  display: grid;
  gap: 0.25rem;
}

.estimate-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px dashed rgba(15, 95, 121, 0.12);
  color: var(--muted);
}

.estimate-row strong {
  color: var(--pine);
}

.estimate-row:last-child {
  border-bottom: none;
}

.estimate-total {
  font-size: 1.12rem;
  font-weight: 900;
  color: var(--pine);
}

.badge-list {
  display: grid;
  gap: 0.7rem;
}

.badge-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
}

.badge-item .icon-orb {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.85rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 1.15rem;
  font-weight: 800;
  color: var(--pine);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  border-bottom: 1px solid rgba(15, 95, 121, 0.1);
}

.faq-item p,
.faq-item ul {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
}

.newsletter-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 32px;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(15, 95, 121, 0.92), rgba(22, 122, 153, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  box-shadow: var(--shadow);
  color: #ffffff;
}

.newsletter-shell h2,
.newsletter-shell h3,
.newsletter-shell p,
.newsletter-shell label {
  color: #ffffff;
}

.newsletter-shell .lead,
.newsletter-shell .form-note {
  color: rgba(255, 255, 255, 0.82);
}

.newsletter-shell .btn-secondary {
  background: rgba(255, 255, 255, 0.96);
}

.newsletter-form {
  display: grid;
  gap: 0.9rem;
}

.newsletter-shell input {
  background: rgba(255, 255, 255, 0.96);
}

.site-footer {
  margin-top: 4rem;
  padding: 3rem 0 2rem;
  color: rgba(255, 255, 255, 0.88);
  background:
    radial-gradient(circle at top right, rgba(143, 216, 239, 0.2), transparent 16rem),
    linear-gradient(180deg, #0f5f79 0%, #103b4a 68%, #0d2d38 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr) minmax(0, 0.84fr);
  gap: 1.4rem;
  margin-top: 2rem;
}

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

.footer-brand img {
  width: 56px;
  height: 56px;
}

.footer-brand strong {
  color: #ffffff;
}

.site-footer h3,
.site-footer h4 {
  color: #ffffff;
  margin-bottom: 0.7rem;
}

.footer-links a {
  display: block;
  padding: 0.28rem 0;
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
  outline: none;
}

.footer-note {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.74);
}

.footer-note a {
  color: #ffffff;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 1rem;
  background:
    radial-gradient(circle at top, rgba(91, 182, 217, 0.28), transparent 24rem),
    linear-gradient(180deg, rgba(11, 33, 43, 0.94), rgba(9, 25, 34, 0.96));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.page-transition.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.transition-shell {
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
}

.transition-logo {
  width: 112px;
  height: 112px;
  margin: 0 auto;
  padding: 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  animation: logoPop 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.transition-logo img {
  width: 100%;
  height: 100%;
}

.transition-shell h3 {
  margin: 1rem 0 0.4rem;
  color: #ffffff;
}

.transition-shell p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.transition-bar {
  width: 240px;
  height: 0.4rem;
  margin: 1rem auto 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.transition-bar span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, #8fd8ef, #ffffff);
  animation: progressFill 2s linear forwards;
}

@keyframes logoPop {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.82);
  }
  22% {
    opacity: 1;
    transform: translateY(0) scale(1.04);
  }
  48% {
    transform: translateY(-2px) scale(1.12);
  }
  76% {
    transform: translateY(0) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes progressFill {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.scroll-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  width: 3.25rem;
  height: 3.25rem;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lake-deep), #167a99);
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 20px 48px rgba(15, 95, 121, 0.26);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover,
.scroll-top:focus-visible {
  outline: none;
  transform: translateY(-2px);
}

.notice {
  padding: 1rem 1.15rem;
  border-radius: 20px;
  border: 1px solid rgba(91, 182, 217, 0.18);
  background: rgba(223, 247, 255, 0.74);
  color: var(--pine);
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 95, 121, 0.18), transparent);
  margin: 2rem 0;
}

@media (max-width: 1040px) {
  .hero-shell,
  .booking-layout,
  .newsletter-shell,
  .footer-grid,
  .split-card,
  .split-card.reverse {
    grid-template-columns: 1fr;
  }

  .sticky-summary {
    position: static;
  }

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

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

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

@media (max-width: 860px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: calc(4.4rem + 38px);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: 26px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.7rem);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero-pane {
    min-height: 420px;
  }

  .suites-grid,
  .grid-3,
  .location-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .section {
    padding: 3.5rem 0;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }

  .form-grid,
  .grid-2,
  .grid-4,
  .ribbon-grid,
  .score-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .quick-links,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .quick-link {
    width: 100%;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: start;
  }

  .hero-pane {
    min-height: 380px;
  }

  .brand img,
  .footer-brand img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 1rem, 100%);
  }

  .hero-card {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
    padding: 1rem;
  }

  .card,
  .suite-body,
  .split-card .content {
    padding: 1.15rem;
  }

  .transition-bar {
    width: 190px;
  }

  .lightbox-info {
    flex-direction: column;
  }
}

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

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

  .transition-logo,
  .transition-bar span {
    animation: none !important;
  }
}
