@font-face {
  font-family: "Cabinet Grotesk";
  src: url("../fonts/cabinet-grotesk-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Cabinet Grotesk";
  src: url("../fonts/cabinet-grotesk-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Cabinet Grotesk";
  src: url("../fonts/cabinet-grotesk-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --bg: #f6fafc;
  --surface: #ffffff;
  --surface-alt: #eaf2f6;
  --text: #20313d;
  --muted: #617482;
  --line: #d7e2ea;
  --accent: #6ea9c7;
  --accent-deep: #3f7fa3;
  --sand: #f3ede6;

  --shadow-soft: 0 24px 70px rgba(74, 107, 129, 0.12);
  --shadow-card: 0 22px 54px rgba(94, 129, 148, 0.1);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;

  --space-xxs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  --shell: min(1180px, calc(100vw - 32px));
  --shell-narrow: min(760px, calc(100vw - 32px));
  --font-display: "Cabinet Grotesk", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(110, 169, 199, 0.12),
      transparent 28%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(246, 250, 252, 1));
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

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

button {
  cursor: pointer;
}

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

.shell--narrow {
  width: var(--shell-narrow);
}

.site-frame {
  min-height: 100dvh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(246, 250, 252, 0.88);
  border-bottom: 1px solid rgba(215, 226, 234, 0.75);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: 20px 0;
}

.brandmark {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.brandmark__kicker,
.eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.brandmark__name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.menu {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu a {
  color: var(--muted);
  font-weight: 600;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.menu a:hover,
.menu a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--accent-deep);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 16px 30px rgba(63, 127, 163, 0.24);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 34px rgba(63, 127, 163, 0.28);
}

.button:active {
  transform: scale(0.985);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.75);
  border-color: var(--line);
  color: var(--text);
  box-shadow: none;
}

.button--small {
  padding: 12px 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--accent-deep);
}

.page-shell {
  padding-bottom: var(--space-4xl);
}

.page-section {
  padding: clamp(56px, 8vw, 92px) 0;
}

.page-section--hero {
  padding-top: clamp(44px, 7vw, 72px);
}

.page-section--compact {
  padding-top: 44px;
  padding-bottom: 44px;
}

.page-section--tinted {
  background: linear-gradient(
    180deg,
    rgba(234, 242, 246, 0.8),
    rgba(246, 250, 252, 0.4)
  );
}

.page-section--sand {
  background:
    linear-gradient(
      180deg,
      rgba(243, 237, 230, 0.82),
      rgba(255, 255, 255, 0.65)
    ),
    var(--sand);
}

.section-heading {
  display: grid;
  gap: var(--space-sm);
  max-width: 720px;
  margin-bottom: clamp(24px, 4vw, 36px);
}

.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-lg);
  max-width: none;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

h1 {
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(2rem, 4.3vw, 3.3rem);
  max-width: 13ch;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

p {
  margin: 0;
}

.lede,
.rich-copy > p {
  max-width: 68ch;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero__grid,
.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
}

.hero__copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.hero__actions,
.callout__actions,
.booking-panel__actions,
.stay-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__stage {
  position: relative;
  min-height: 520px;
}

.hero-media,
.detail-hero__media,
.stay-card__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      circle at top right,
      rgba(110, 169, 199, 0.4),
      transparent 36%
    ),
    linear-gradient(135deg, rgba(234, 242, 246, 0.9), rgba(255, 255, 255, 0.96));
  box-shadow: var(--shadow-soft);
}

.hero-media {
  min-height: 100%;
}

.media-frame__image,
.hero-media .media-frame__image,
.detail-hero__media .media-frame__image,
.stay-card__media .media-frame__image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.media-frame__placeholder {
  display: block;
  width: 100%;
  min-height: inherit;
  background:
    radial-gradient(
      circle at 25% 24%,
      rgba(255, 255, 255, 0.88),
      transparent 30%
    ),
    radial-gradient(
      circle at 70% 16%,
      rgba(110, 169, 199, 0.26),
      transparent 24%
    ),
    linear-gradient(
      155deg,
      rgba(63, 127, 163, 0.16),
      rgba(255, 255, 255, 0.92) 40%,
      rgba(243, 237, 230, 0.8)
    );
}

.media-frame__label {
  position: absolute;
  left: 24px;
  bottom: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--accent-deep);
  font-weight: 700;
}

.hero__floating-card {
  position: absolute;
  right: -18px;
  bottom: 24px;
  width: min(320px, 72%);
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.fact-list,
.fact-strip,
.badge-row,
.amenity-list,
.meta-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fact-list {
  display: grid;
  gap: 14px;
}

.fact-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(215, 226, 234, 0.85);
}

.fact-list span {
  color: var(--muted);
}

.fact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fact-strip li,
.badge-row li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(234, 242, 246, 0.74);
  border: 1px solid rgba(215, 226, 234, 0.8);
  color: var(--accent-deep);
  font-weight: 700;
}

.fact-strip--wide {
  margin-top: 8px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stay-grid,
.reason-grid,
.detail-cards,
.amenity-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.stay-card,
.reason-card,
.detail-card,
.amenity-panel,
.gallery-frame,
.info-card,
.contact-card,
.booking-panel {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(215, 226, 234, 0.82);
  box-shadow: var(--shadow-card);
}

.stay-card {
  overflow: hidden;
  display: grid;
}

.stay-card__media {
  min-height: 280px;
}

.stay-card__body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.stay-card__subtitle,
.detail-hero__subtitle {
  color: var(--accent-deep);
  font-weight: 700;
}

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

.reason-card,
.detail-card,
.amenity-panel,
.info-card {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.region-panel,
.callout,
.contact-layout,
.detail-layout,
.location-panel {
  display: grid;
  gap: 24px;
}

.region-panel {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: start;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(215, 226, 234, 0.72);
}

.callout {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(215, 226, 234, 0.78);
}

.detail-layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  align-items: start;
}

.detail-layout__main {
  display: grid;
  gap: 32px;
}

.detail-section {
  display: grid;
  gap: 24px;
}

.detail-hero__copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.detail-hero__media {
  min-height: 520px;
}

.booking-panel {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
  padding: 28px;
}

.booking-panel__meta {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.amenity-list {
  display: grid;
  gap: 10px;
}

.amenity-list li {
  color: var(--muted);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(215, 226, 234, 0.8);
}

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

.gallery-grid {
  align-items: stretch;
}

.gallery-frame {
  overflow: hidden;
  min-height: 260px;
}

.gallery-frame--featured {
  grid-column: span 2;
  min-height: 380px;
}

.gallery-frame__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: start;
}

.contact-card {
  padding: 28px;
}

.contact-sidebar {
  display: grid;
  gap: 20px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span {
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(246, 250, 252, 0.92);
  color: var(--text);
  padding: 14px 16px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(63, 127, 163, 0.7);
  box-shadow: 0 0 0 4px rgba(110, 169, 199, 0.16);
  background: #fff;
}

.form-field small {
  color: #b55d4b;
}

.form-feedback {
  margin-bottom: 20px;
  padding: 16px 18px;
  border-radius: 18px;
  font-weight: 600;
}

.form-feedback--success {
  background: rgba(227, 244, 236, 0.92);
  color: #24563d;
}

.form-feedback--error {
  background: rgba(255, 240, 236, 0.94);
  color: #8a4233;
}

.meta-list {
  display: grid;
  gap: 10px;
}

.meta-list li,
.meta-list a {
  color: var(--muted);
}

.site-footer {
  margin-top: 56px;
  padding: 40px 0 28px;
  border-top: 1px solid rgba(215, 226, 234, 0.78);
  background: rgba(255, 255, 255, 0.48);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.7fr) minmax(
      180px,
      0.6fr
    );
  gap: 24px;
}

.site-footer__brand,
.site-footer__contact,
.site-footer__links {
  display: grid;
  gap: 12px;
}

.site-footer__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(215, 226, 234, 0.78);
  color: var(--muted);
  font-size: 0.95rem;
}

.rich-copy {
  display: grid;
  gap: 18px;
}

.rich-copy h2,
.rich-copy h3 {
  margin-top: 16px;
}

.archive-intro {
  display: grid;
  gap: 18px;
}

.contact-hero {
  display: grid;
  gap: 16px;
}

.page-copy__header {
  display: grid;
  gap: 10px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 540ms ease,
    transform 540ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@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;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 960px) {
  .site-header__inner,
  .section-heading--split,
  .callout,
  .region-panel,
  .contact-layout,
  .detail-layout,
  .site-footer__grid,
  .site-footer__meta,
  .hero__grid,
  .detail-hero {
    grid-template-columns: 1fr;
    display: grid;
  }

  .site-header__inner {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(215, 226, 234, 0.9);
    box-shadow: var(--shadow-card);
  }

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

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

  .hero__stage {
    min-height: 420px;
  }

  .hero__floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: -80px 16px 0;
  }

  .detail-hero__media {
    min-height: 380px;
  }

  .booking-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 12ch;
  }

  .hero__actions,
  .callout__actions,
  .booking-panel__actions,
  .stay-card__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header__inner {
    gap: 12px;
  }

  .brandmark__name {
    font-size: 1.45rem;
  }

  .gallery-frame--featured {
    grid-column: span 1;
    min-height: 260px;
  }
}
