:root {
  --bg: #fafaf8;
  --surface: #ffffff;
  --surface-soft: #f5f5f3;
  --text: #2a2a2a;
  --muted: #6a6a6a;
  --line: #e8e8e6;
  --primary: #5b9aa9;
  --primary-dark: #4a8495;
  --accent: #d4b896;
  --shadow-sm: 0 1px 3px rgba(20, 20, 20, 0.08), 0 1px 2px rgba(20, 20, 20, 0.04);
  --shadow-md: 0 18px 38px rgba(26, 35, 38, 0.12), 0 10px 18px rgba(26, 35, 38, 0.07);
  --shadow-lg: 0 28px 60px rgba(13, 28, 36, 0.18), 0 18px 30px rgba(13, 28, 36, 0.1);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --container: min(1120px, calc(100vw - 32px));
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --mobile-header-height: 80px;
  --mobile-bar-height: 0px;
  --viewport-height: 100vh;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--mobile-header-height) + 12px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 16px/1.5 "Inter", system-ui, sans-serif;
  overflow-x: hidden;
  min-height: 100%;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

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

a,
button,
input,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

summary {
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

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

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.topbar.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.topbar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  gap: 0.3ch;
  align-items: baseline;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
  color: #fff;
}

.topbar.is-scrolled .brand {
  color: var(--text);
}

.brand span:last-child {
  color: var(--primary);
}

.topbar__nav,
.topbar__actions {
  display: flex;
  align-items: center;
}

.topbar__nav {
  justify-content: center;
  gap: 28px;
}

.topbar__nav a,
.topbar__phone {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  transition: color 180ms ease;
}

.topbar.is-scrolled .topbar__nav a,
.topbar.is-scrolled .topbar__phone {
  color: #4a4a4a;
}

.topbar__nav a:hover,
.topbar__phone:hover,
.topbar.is-scrolled .topbar__nav a:hover,
.topbar.is-scrolled .topbar__phone:hover {
  color: var(--primary);
}

.topbar__actions {
  gap: 12px;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 16px;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    0 14px 28px rgba(7, 19, 27, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px) saturate(145%);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.menu-toggle::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.3), transparent 34%),
    linear-gradient(135deg, rgba(212, 184, 150, 0.18), rgba(91, 154, 169, 0.04) 58%, transparent 100%);
  opacity: 0.95;
  z-index: 0;
}

.menu-toggle:hover {
  transform: translateY(-1px) scale(1.015);
}

.menu-toggle:active {
  transform: scale(0.97);
}

.menu-toggle__line {
  display: block;
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease,
    width 220ms ease,
    background-color 180ms ease,
    box-shadow 220ms ease;
  z-index: 1;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.16);
}

.menu-toggle__line:nth-child(1) {
  transform: translate(-50%, -7px);
}

.menu-toggle__line:nth-child(2) {
  transform: translate(-50%, 0);
  width: 16px;
}

.menu-toggle__line:nth-child(3) {
  transform: translate(-50%, 7px);
}

.menu-toggle.is-active {
  border-color: rgba(91, 154, 169, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    rgba(255, 255, 255, 0.88);
  box-shadow:
    0 18px 38px rgba(18, 38, 46, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.menu-toggle.is-active::before {
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.78), transparent 34%),
    linear-gradient(135deg, rgba(212, 184, 150, 0.2), rgba(91, 154, 169, 0.12) 68%, transparent 100%);
}

.menu-toggle.is-active .menu-toggle__line {
  background: var(--text);
  box-shadow: 0 0 16px rgba(91, 154, 169, 0.1);
}

.menu-toggle.is-active .menu-toggle__line:nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle__line:nth-child(2) {
  transform: translate(-50%, 0) scaleX(0.2);
  opacity: 0;
}

.menu-toggle.is-active .menu-toggle__line:nth-child(3) {
  transform: translate(-50%, 0) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible,
.menu-toggle:focus-visible,
.topbar__nav a:focus-visible,
.field:focus-within,
.faq-list summary:focus-visible,
.back-to-top:focus-visible,
.value-chip:focus-visible,
.location-info a:focus-visible {
  outline: 2px solid rgba(91, 154, 169, 0.55);
  outline-offset: 3px;
}

.menu-toggle:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(91, 154, 169, 0.16),
    0 0 0 6px rgba(91, 154, 169, 0.28),
    0 14px 28px rgba(7, 19, 27, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.topbar__nav a:focus-visible {
  outline: none;
  background: rgba(91, 154, 169, 0.1);
  box-shadow: inset 0 0 0 1px rgba(91, 154, 169, 0.18);
}

.btn--sm {
  min-height: 42px;
  padding-inline: 22px;
  font-size: 0.92rem;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: var(--primary-dark);
}

.btn--outline {
  color: var(--primary);
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.82);
}

.btn--glass {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.btn--pill {
  min-height: 56px;
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-md);
}

.btn--block {
  width: 100%;
}

.btn--light {
  background: #fff;
  color: var(--primary);
}

.btn--ghost-light {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero {
  position: relative;
  min-height: min(100vh, 880px);
  display: flex;
  align-items: center;
  overflow: clip;
}

.hero__media,
.hero__veil,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  background-image: url('https://images.unsplash.com/photo-1634277748451-4721addb23f8?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxsdXh1cnklMjBSViUyMHJlc29ydCUyMHBhbG0lMjB0cmVlc3xlbnwxfHx8fDE3NzI4Mzc0NTh8MA&ixlib=rb-4.1.0&q=80&w=1600');
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero__veil {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.18) 48%, var(--bg) 100%);
}

.hero__shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0) 58%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 132px;
  padding-bottom: 110px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  letter-spacing: -0.02em;
}

.eyebrow img {
  width: 20px;
  height: 20px;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.9);
}

.hero h1,
.section__intro h2,
.cta-band h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.05em;
}

.hero h1 {
  margin-top: 20px;
  font-size: clamp(3.15rem, 6vw, 6rem);
  line-height: 0.96;
  color: #fff;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  color: var(--accent);
}

.hero p {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.booking-card {
  max-width: 680px;
  margin-top: 42px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
}

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

.booking-card label > span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.72);
}

.field {
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.field--icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.field--icon img {
  width: 16px;
  height: 16px;
  opacity: 0.8;
}

.field input,
.field select,
select.field {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  outline: 0;
}

select.field option {
  color: var(--text);
}

.value-strip {
  position: relative;
  z-index: 10;
  margin-top: -64px;
}

.value-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  padding: 34px 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.value-chip {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
  font-size: 0.92rem;
}

.value-chip img {
  width: 48px;
  height: 48px;
  padding: 11px;
  border-radius: 999px;
  background: rgba(91, 154, 169, 0.1);
}

.section {
  padding: 112px 0;
}

.section--warm {
  background: linear-gradient(180deg, #fafaf8 0%, #ffffff 100%);
}

.section--plain {
  background: #fff;
}

.section__intro {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section__intro--left {
  margin-inline: 0;
  text-align: left;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section__intro h2,
.cta-band h2 {
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.03;
}

.section__intro h2 span,
.cta-band h2 span {
  color: var(--primary);
}

.section__intro p,
.cta-band p {
  margin: 18px auto 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.site-map-card__board {
  position: relative;
  overflow: hidden;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(212, 184, 150, 0.2), rgba(91, 154, 169, 0.2)), linear-gradient(180deg, var(--surface-soft), #fff);
  box-shadow: var(--shadow-lg);
}

.site-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  min-height: 470px;
}

.site-grid__slot {
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.site-grid__slot:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: var(--primary);
}

.site-grid__slot--active {
  background: rgba(91, 154, 169, 0.38);
}

.site-map-card__legend {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  gap: 18px;
  padding: 10px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  font-size: 0.8rem;
}

.site-map-card__legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-map-card__legend i {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--primary);
}

.site-map-card__legend .reserved {
  background: #fff;
  border: 2px solid var(--line);
}

.site-map-card__cta {
  position: absolute;
  left: 50%;
  bottom: 44px;
  transform: translateX(-50%);
}

.site-map-card__cta img {
  width: 20px;
  height: 20px;
}

.site-map-card__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.site-map-card__stats article,
.pricing-card,
.reason-card,
.testimonial-card,
.location-info article,
.contact-card,
.amenity-card,
.checklist-panel,
.map-card,
.location-info ul,
.faq-list details,
.footer,
.testimonials-grid + div > div {
  background: var(--surface);
}

.site-map-card__stats article,
.pricing-card,
.reason-card,
.testimonial-card,
.map-card,
.faq-list details {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.site-map-card__stats article {
  padding: 24px;
  border-radius: var(--radius-sm);
}

.site-map-card__stats strong {
  display: block;
  color: var(--primary);
  font-size: 1.55rem;
  font-weight: 600;
}

.site-map-card__stats span {
  font-size: 0.92rem;
  color: var(--muted);
}

.amenity-grid,
.reasons-grid,
.pricing-grid,
.testimonials-grid {
  display: grid;
  gap: 28px;
}

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

.amenity-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.amenity-card:hover,
.reason-card:hover,
.pricing-card:hover,
.testimonial-card:hover,
.faq-list details:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.amenity-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.amenity-card div {
  padding: 22px;
}

.amenity-card h3,
.reason-card h3,
.pricing-card h3,
.checklist-panel h3,
.location-info h3,
.testimonial-card strong,
.footer h3,
.footer h4 {
  margin: 0;
  font-size: 1.25rem;
}

.amenity-card p,
.reason-card p,
.pricing-card p,
.location-info p,
.testimonial-card p,
.faq-list p,
.footer p,
.footer a,
.footer li,
.checklist-grid span {
  color: var(--muted);
}

.reason-card {
  padding: 32px;
  border-radius: 20px;
}

.reason-card img {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(91, 154, 169, 0.1);
}

.checklist-panel {
  margin-top: 34px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff 0%, #f7fafb 100%);
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
  margin-top: 26px;
}

.checklist-grid span {
  position: relative;
  padding-left: 34px;
}

.checklist-grid span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(91, 154, 169, 0.12) url('./assets/icons/check.svg') center/12px 12px no-repeat;
}

.gallery-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 36px;
  align-items: end;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 22px;
}

.gallery-mosaic img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.gallery-mosaic__tall {
  grid-column: span 2;
  grid-row: span 2;
}

.pricing-card {
  position: relative;
  padding: 30px;
  border-radius: 22px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.pricing-card--featured {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, rgba(91, 154, 169, 0.06) 0%, #fff 100%);
  box-shadow: var(--shadow-md);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff !important;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price {
  margin: 18px 0 12px;
  font-size: 2.2rem;
  color: var(--text) !important;
}

.price span {
  font-size: 1rem;
  color: var(--muted);
}

.pricing-card ul,
.location-info ul,
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
}

.pricing-card li {
  position: relative;
  padding-left: 18px;
  color: #4a4a4a;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 38px;
  align-items: center;
}

.map-card {
  padding: 20px;
  border-radius: 24px;
}

.map-card__canvas {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 30%, rgba(212, 184, 150, 0.28), transparent 26%),
    radial-gradient(circle at 80% 85%, rgba(91, 154, 169, 0.3), transparent 30%),
    linear-gradient(135deg, rgba(212, 184, 150, 0.12), rgba(91, 154, 169, 0.28));
}

.map-card__canvas::before,
.map-card__canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.32) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: 0.38;
}

.map-card__pin {
  position: relative;
  z-index: 1;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
}

.map-card__pin img {
  width: 44px;
  height: 44px;
}

.location-info {
  display: grid;
  gap: 22px;
}

.location-info article,
.contact-card,
.location-info ul {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.location-info ul {
  display: grid;
  gap: 16px;
}

.location-info li {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 10px;
  align-items: start;
}

.location-info li strong {
  color: var(--primary);
  font-size: 1.1rem;
}

.contact-card {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
}

.contact-card a {
  color: var(--text);
  font-weight: 500;
}

.testimonial-card {
  padding: 30px;
  border-radius: 22px;
}

.stars {
  margin-bottom: 18px;
  color: var(--accent);
  letter-spacing: 0.16em;
}

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

.testimonial-card span {
  font-size: 0.9rem;
  color: var(--muted);
}

.faq-section {
  padding-top: 100px;
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-list details {
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.faq-list summary {
  position: relative;
  padding: 22px 62px 22px 24px;
  font-size: 1.08rem;
  color: var(--text);
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 24px 24px;
}

.cta-band {
  padding: 36px 0 112px;
  background: linear-gradient(180deg, #fafaf8 0%, #ffffff 100%);
}

.cta-band__inner {
  position: relative;
  overflow: hidden;
  padding: 56px clamp(22px, 5vw, 68px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.08), transparent 22%),
    radial-gradient(circle at 84% 68%, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-band__inner > * {
  position: relative;
  z-index: 1;
}

.section__intro--light,
.section__intro--light p,
.section-kicker--light,
.cta-band__benefits article span,
.cta-band__benefits article small {
  color: rgba(255, 255, 255, 0.9);
}

.section__intro--light h2 span {
  color: #fff;
}

.cta-band__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
}

.cta-band__benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 820px;
  margin: 40px auto 0;
}

.cta-band__benefits article {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.cta-band__benefits img {
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.footer {
  padding: 72px 0 28px;
  background: #2a2a2a;
  color: #fff;
}

.footer__grid,
.footer__base {
  display: grid;
  gap: 24px;
}

.footer__grid {
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  margin-bottom: 38px;
}

.footer__grid > div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.brand--footer {
  color: #fff;
}

.footer h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.5);
}

.footer a {
  transition: color 180ms ease;
}

.footer a:hover {
  color: #fff;
}

.footer__base {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
}

.footer__base div {
  display: flex;
  gap: 22px;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.78);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.back-to-top:hover {
  background: var(--primary-dark);
}

.back-to-top img {
  width: 22px;
  height: 22px;
}

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 12px 14px calc(12px + var(--safe-bottom));
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 -8px 24px rgba(18, 31, 38, 0.08);
}

.mobile-bar a {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--text);
  font-size: 0.78rem;
}

.mobile-bar a img {
  width: 18px;
  height: 18px;
}

.mobile-bar__book {
  background: var(--primary);
  color: #fff !important;
}

@media (max-width: 1100px) {
  .topbar__inner {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-grid;
    justify-self: end;
    color: #fff;
  }

  .topbar.is-scrolled .menu-toggle {
    color: var(--text);
  }

  .topbar__nav {
    position: fixed;
    top: var(--mobile-header-height);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid rgba(232, 232, 230, 0.8);
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(255, 255, 255, 0.94)),
      rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow:
      0 24px 54px rgba(17, 31, 38, 0.16),
      0 10px 22px rgba(17, 31, 38, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
    max-height: calc(var(--viewport-height) - var(--mobile-header-height) - 20px - var(--safe-bottom));
    overflow: auto;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(0.97);
    transform-origin: top right;
    transition:
      opacity 220ms ease,
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 220ms;
  }

  .topbar__nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition:
      opacity 220ms ease,
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0s;
  }

  .topbar__nav a,
  .topbar__phone {
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--text) !important;
    opacity: 0;
    transform: translateY(10px);
    transition:
      opacity 180ms ease,
      transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
      background-color 180ms ease,
      box-shadow 180ms ease;
  }

  .topbar__nav.is-open a,
  .topbar__nav.is-open .topbar__phone {
    opacity: 1;
    transform: translateY(0);
  }

  .topbar__nav a:hover,
  .topbar__phone:hover {
    background: rgba(91, 154, 169, 0.08);
    box-shadow: inset 0 0 0 1px rgba(91, 154, 169, 0.12);
  }

  .topbar__nav.is-open a:nth-child(1) { transition-delay: 40ms; }
  .topbar__nav.is-open a:nth-child(2) { transition-delay: 75ms; }
  .topbar__nav.is-open a:nth-child(3) { transition-delay: 110ms; }
  .topbar__nav.is-open a:nth-child(4) { transition-delay: 145ms; }
  .topbar__nav.is-open a:nth-child(5) { transition-delay: 180ms; }

  .topbar__actions {
    display: none;
  }

  .hero__content {
    padding-top: 116px;
  }

  .value-strip__grid,
  .site-map-card__stats,
  .amenity-grid,
  .reasons-grid,
  .pricing-grid,
  .testimonials-grid,
  .cta-band__benefits,
  .footer__grid,
  .location-grid,
  .gallery-layout,
  .checklist-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .gallery-layout {
    align-items: start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100vw - 24px, 1120px);
  }

  .hero {
    min-height: max(760px, calc(var(--viewport-height) - var(--safe-bottom)));
  }

  .site-shell {
    isolation: isolate;
  }

  .topbar {
    top: 0;
    padding-top: var(--safe-top);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .topbar.is-scrolled {
    background: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(232, 232, 230, 0.88);
  }

  .topbar__inner {
    min-height: 64px;
    gap: 16px;
  }

  .brand {
    align-items: center;
    gap: 0.18ch;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.047em;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    box-shadow:
      0 10px 24px rgba(7, 19, 27, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
  }

  .menu-toggle::before {
    inset: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
      radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.16), transparent 54%);
    opacity: 1;
  }

  .menu-toggle:active {
    transform: scale(0.95);
  }

  .menu-toggle__line {
    width: 18px;
    height: 1.8px;
    box-shadow: none;
  }

  .menu-toggle__line:nth-child(1) {
    transform: translate(-50%, -6px);
  }

  .menu-toggle__line:nth-child(2) {
    width: 14px;
  }

  .menu-toggle__line:nth-child(3) {
    transform: translate(-50%, 6px);
  }

  .menu-toggle.is-active {
    border-color: rgba(232, 232, 230, 0.9);
    background: rgba(255, 255, 255, 0.92);
    box-shadow:
      0 16px 34px rgba(18, 38, 46, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.94);
  }

  .menu-toggle.is-active::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.08)),
      radial-gradient(circle at 50% 0%, rgba(91, 154, 169, 0.1), transparent 60%);
  }

  .menu-toggle.is-active .menu-toggle__line {
    background: #2a2a2a;
  }

  .topbar__nav {
    top: calc(var(--safe-top) + 72px);
    left: 12px;
    right: 12px;
    gap: 6px;
    padding: 16px;
    border-radius: 18px;
    transform-origin: top center;
  }

  .topbar__nav a,
  .topbar__phone {
    padding: 13px 14px;
  }

  .hero__content {
    padding-top: calc(var(--safe-top) + 80px);
    padding-bottom: 72px;
  }

  .hero h1 {
    font-size: 3rem;
    line-height: 0.99;
  }

  .hero p {
    max-width: 337px;
    font-size: 1.125rem;
    line-height: 1.625;
  }

  .hero__actions {
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .booking-card {
    margin-top: 32px;
    padding: 24px;
    border-radius: 16px;
  }

  .booking-card label > span {
    margin-bottom: 8px;
  }

  .section {
    padding: 64px 0;
  }

  .section__intro {
    margin-bottom: 32px;
  }

  .section__intro h2 {
    font-size: 1.875rem;
    line-height: 1.2;
  }

  .section__intro p {
    font-size: 1.125rem;
    line-height: 1.56;
  }

  .value-strip {
    margin-top: -48px;
  }

  .value-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 12px;
    padding: 24px;
    border-radius: 16px;
  }

  .value-chip {
    gap: 12px;
    align-content: start;
  }

  .value-chip img {
    width: 48px;
    height: 48px;
    padding: 12px;
  }

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

  .hero__actions,
  .cta-band__actions,
  .contact-card,
  .site-map-card__stats,
  .booking-card__grid,
  .amenity-grid,
  .reasons-grid,
  .pricing-grid,
  .gallery-layout,
  .gallery-mosaic,
  .location-grid,
  .testimonials-grid,
  .cta-band__benefits,
  .footer__grid,
  .footer__base,
  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .booking-card,
  .cta-band__inner,
  .site-map-card__board,
  .checklist-panel,
  .reason-card,
  .pricing-card,
  .testimonial-card,
  .map-card,
  .location-info article,
  .location-info ul,
  .contact-card,
  .faq-list details {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .amenity-card div {
    padding: 16px;
  }

  .amenity-card h3 {
    font-size: 1rem;
  }

  .amenity-card p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .site-map-card__board {
    padding-top: 24px;
    padding-bottom: 108px;
    border-radius: 24px;
  }

  .site-grid {
    min-height: 280px;
    gap: 8px;
  }

  .site-map-card__legend {
    left: 14px;
    right: 14px;
    bottom: 74px;
    justify-content: center;
  }

  .site-map-card__cta {
    width: calc(100% - 28px);
    bottom: 18px;
  }

  .gallery-mosaic {
    grid-auto-rows: 220px;
  }

  .gallery-mosaic__tall {
    grid-column: auto;
    grid-row: auto;
  }

  .map-card__canvas {
    min-height: 320px;
  }

  .location-info li {
    grid-template-columns: 72px 1fr;
  }

  .footer__base {
    text-align: center;
  }

  .footer__base div {
    justify-content: center;
  }

  .back-to-top {
    bottom: calc(var(--mobile-bar-height) + 18px);
  }

  .mobile-bar {
    display: grid;
    left: 0;
    right: 0;
    bottom: 0;
    gap: 10px;
    padding: 12px 12px calc(12px + var(--safe-bottom));
    border-top: 1px solid rgba(232, 232, 230, 0.9);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.96)),
      rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px) saturate(165%);
    -webkit-backdrop-filter: blur(20px) saturate(165%);
    box-shadow: 0 -16px 32px rgba(18, 31, 38, 0.1);
  }

  .mobile-bar a {
    min-height: 54px;
    align-content: center;
    gap: 5px;
    border-radius: 16px;
    background: rgba(91, 154, 169, 0.06);
    box-shadow: inset 0 0 0 1px rgba(91, 154, 169, 0.08);
  }

  .mobile-bar__book {
    background: var(--primary);
    box-shadow:
      0 12px 24px rgba(91, 154, 169, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }

  body {
    padding-bottom: var(--mobile-bar-height);
  }
}
