:root {
  --ink: #071013;
  --ink-soft: #0d181c;
  --slate: #101b1f;
  --char: #17272c;
  --hairline: #284149;
  --bone: #f4f1ea;
  --mist: #d7dfdd;
  --fog: #a9b7b9;
  --lichen: #a7e0c2;
  --kelp: #4f7d67;
  --tide: #6db8c6;
  --rust: #d18b55;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --display: "Cormorant Garamond", Georgia, serif;
  --ui: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --container: 1180px;
  --gutter: clamp(20px, 4vw, 36px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

p,
h1,
h2,
h3,
blockquote {
  margin: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

:focus-visible {
  outline: 2px solid var(--lichen);
  outline-offset: 3px;
}

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

.concept-bar {
  min-height: 36px;
  padding: 8px var(--gutter);
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--fog);
  background: #050b0d;
  border-bottom: 1px solid var(--hairline);
  font-size: 12px;
  letter-spacing: 0.02em;
  text-align: center;
}

.concept-bar a {
  color: var(--lichen);
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 78px;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  background: rgba(7, 16, 19, 0.84);
  border-bottom: 1px solid var(--hairline);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 178px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 30px);
  color: var(--mist);
  font-size: 13px;
  font-weight: 600;
}

.site-nav a,
.footer-links a {
  transition: color 160ms ease;
}

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

.header-cta {
  min-height: 42px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bone);
  border-radius: 999px;
  color: var(--ink);
  background: var(--bone);
  font-size: 13px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 114px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 16, 19, 0.96) 0%, rgba(7, 16, 19, 0.8) 44%, rgba(7, 16, 19, 0.42) 100%),
    linear-gradient(0deg, var(--ink) 0%, rgba(7, 16, 19, 0.2) 42%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 118px var(--gutter) 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 44px;
  align-items: end;
}

.eyebrow,
.package-route,
.proof-item span,
.booking-steps span,
.comfort-grid span {
  color: var(--lichen);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 890px;
  margin-top: 16px;
  font-size: clamp(50px, 8.2vw, 104px);
}

h2 {
  font-size: clamp(38px, 5.2vw, 72px);
}

h3 {
  color: var(--bone);
  font-size: 20px;
  line-height: 1.2;
}

.hero-lede {
  max-width: 680px;
  margin-top: 24px;
  color: var(--mist);
  font-size: clamp(17px, 2vw, 20px);
}

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

.button {
  min-height: 48px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--bone);
  color: var(--ink);
  border: 1px solid var(--bone);
}

.button-secondary {
  background: rgba(244, 241, 234, 0.03);
  color: var(--bone);
  border: 1px solid var(--hairline);
}

.button-secondary:hover {
  border-color: var(--fog);
}

.button-owner {
  color: var(--ink);
  background: var(--lichen);
  border: 1px solid var(--lichen);
  white-space: nowrap;
}

.hero-card {
  padding: 22px;
  background: rgba(16, 27, 31, 0.78);
  border: 1px solid rgba(167, 224, 194, 0.32);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card img {
  width: 110px;
  margin-bottom: 24px;
}

.hero-card dl,
.package-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.hero-card div,
.package-card dl div {
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
}

dt {
  color: var(--fog);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

dd {
  margin: 3px 0 0;
  color: var(--bone);
  font-weight: 600;
}

.proof-strip {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--hairline);
}

.proof-item {
  min-height: 148px;
  padding: 30px 22px;
  border-left: 1px solid var(--hairline);
}

.proof-item:last-child {
  border-right: 1px solid var(--hairline);
}

.proof-item strong {
  display: block;
  margin-top: 12px;
  color: var(--mist);
  font-size: 15px;
  line-height: 1.5;
}

.section,
.gallery-section,
.testimonial,
.owner-cta,
.site-footer {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 96px var(--gutter);
  border-bottom: 1px solid var(--hairline);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2,
.gallery-heading h2 {
  margin-top: 12px;
}

.section-heading p:not(.eyebrow),
.gallery-heading p:not(.eyebrow),
.split-copy p,
.booking-panel > div > p,
.owner-cta p {
  margin-top: 18px;
  color: var(--fog);
  max-width: 68ch;
}

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

.package-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--slate);
  border: 1px solid var(--hairline);
}

.package-card.featured {
  border-color: rgba(167, 224, 194, 0.65);
}

.package-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

.card-body {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  margin-top: 10px;
}

.card-body p:not(.package-route) {
  margin-top: 12px;
  color: var(--fog);
}

.package-card dl {
  margin-top: 22px;
}

.package-card dd {
  font-family: var(--mono);
  font-size: 13px;
}

.package-card a {
  margin-top: auto;
  padding-top: 22px;
  color: var(--lichen);
  font-weight: 700;
}

.section-note {
  margin-top: 22px;
  color: var(--fog);
  font-size: 14px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.split-media {
  border: 1px solid var(--hairline);
  background: var(--slate);
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 28px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--mist);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border: 1px solid var(--lichen);
  background: rgba(167, 224, 194, 0.12);
}

.comfort {
  background:
    linear-gradient(rgba(167, 224, 194, 0.03), rgba(167, 224, 194, 0)),
    var(--ink);
}

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

.comfort-grid article,
.notes-grid article,
.booking-steps article {
  min-width: 0;
  padding: 24px;
  background: var(--slate);
  border: 1px solid var(--hairline);
}

.comfort-grid h3,
.notes-grid h3,
.booking-steps h3 {
  margin-top: 12px;
}

.comfort-grid p,
.notes-grid p,
.booking-steps p {
  margin-top: 12px;
  color: var(--fog);
}

.booking-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
  background:
    radial-gradient(circle at 82% 18%, rgba(109, 184, 198, 0.13), transparent 34%),
    var(--ink);
}

.booking-steps {
  grid-template-columns: 1fr;
}

.booking-actions {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.gallery-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 32px;
  align-items: end;
}

.gallery-heading a {
  display: inline-flex;
  margin-top: 26px;
  color: var(--lichen);
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 14px;
}

.gallery-grid figure {
  margin: 0;
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--slate);
}

.gallery-grid figure:first-child {
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

.gallery-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--bone);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

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

.testimonial {
  padding-top: 76px;
  padding-bottom: 76px;
}

.testimonial blockquote {
  max-width: 900px;
}

.testimonial p {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.05;
}

.testimonial cite {
  display: block;
  margin-top: 18px;
  color: var(--fog);
  font-style: normal;
}

.owner-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    linear-gradient(120deg, rgba(167, 224, 194, 0.08), rgba(109, 184, 198, 0.03)),
    var(--slate);
}

.owner-cta h2 {
  max-width: 800px;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.95fr 1.55fr;
  gap: 44px;
  border-bottom: 0;
}

.footer-brand img {
  width: 190px;
}

.footer-brand p {
  max-width: 440px;
  margin-top: 24px;
  color: var(--fog);
  font-size: 14px;
}

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

.footer-links h2 {
  margin-bottom: 14px;
  color: var(--bone);
  font-family: var(--ui);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.footer-links a {
  display: block;
  margin-top: 10px;
  color: var(--fog);
  font-size: 14px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    gap: 4px;
    color: var(--bone);
    background: transparent;
    border: 1px solid var(--hairline);
    border-radius: 999px;
  }

  .nav-toggle span:not(.sr-only) {
    width: 18px;
    height: 1px;
    display: block;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    inset: 114px 0 auto 0;
    padding: 24px var(--gutter) 30px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(7, 16, 19, 0.98);
    border-bottom: 1px solid var(--hairline);
  }

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

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--hairline);
  }

  .hero-grid,
  .split-section,
  .booking-panel,
  .gallery-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 92px;
  }

  .hero-card {
    max-width: 420px;
  }

  .proof-strip,
  .package-grid,
  .comfort-grid,
  .notes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-item:nth-child(2) {
    border-right: 1px solid var(--hairline);
  }

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

@media (max-width: 640px) {
  .concept-bar {
    justify-content: flex-start;
    text-align: left;
  }

  .site-header {
    height: 70px;
  }

  .brand {
    width: 150px;
  }

  .site-nav {
    inset: 106px 0 auto 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 86px var(--gutter) 52px;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(7, 16, 19, 0.98), rgba(7, 16, 19, 0.78)),
      linear-gradient(0deg, var(--ink), rgba(7, 16, 19, 0.28));
  }

  .hero-actions,
  .booking-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .proof-strip,
  .package-grid,
  .comfort-grid,
  .notes-grid,
  .footer-links,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:last-child,
  .proof-item:nth-child(2) {
    border-right: 1px solid var(--hairline);
  }

  .section,
  .gallery-section,
  .testimonial,
  .owner-cta,
  .site-footer {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .package-card img,
  .split-media img {
    aspect-ratio: 4 / 3;
  }

  .gallery-grid figure:first-child {
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
