:root {
  --ink: #0b0c0e;
  --slate: #141618;
  --char: #1c1e21;
  --hairline: #23262a;
  --bone: #f4f1ea;
  --mist: #c6cad0;
  --fog: #9aa0a6;
  --lichen: #a7e0c2;
  --moss: #4d6b5b;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Inter", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 40px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
  color: var(--bone);
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.6;
  color: var(--bone);
  background:
    linear-gradient(90deg, rgba(244, 241, 234, 0.035) 1px, transparent 1px) 0 0 / min(18vw, 180px) 100%,
    var(--ink);
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 1px solid var(--lichen);
  outline-offset: 3px;
}

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

.concept-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px var(--gutter);
  border-bottom: 1px solid var(--hairline);
  background: rgba(11, 12, 14, 0.96);
  color: var(--fog);
  font-size: 12px;
}

.concept-bar a {
  color: var(--lichen);
  white-space: nowrap;
}

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

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

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--mist);
  font-size: 13px;
}

.nav-links a,
.footer-links a,
.area-links a,
.text-link {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 600;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-light {
  border-color: var(--bone);
  background: var(--bone);
  color: var(--ink);
}

.button-ghost {
  color: var(--bone);
  background: rgba(20, 22, 24, 0.64);
}

.button-ghost:hover {
  border-color: var(--fog);
  background: var(--char);
}

.hero {
  position: relative;
  min-height: calc(100vh - 102px);
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.04) brightness(0.72);
}

.hero-overlay {
  background:
    radial-gradient(circle at 50% 20%, rgba(167, 224, 194, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(11, 12, 14, 0.22), rgba(11, 12, 14, 0.84) 64%, var(--ink));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: var(--container);
  min-height: calc(100vh - 102px);
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: end;
  gap: 48px;
  margin: 0 auto;
  padding: 140px var(--gutter) 76px;
}

.hero-copy {
  max-width: 760px;
}

.kicker,
.label {
  display: block;
  color: var(--lichen);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-top: 12px;
  font-size: clamp(56px, 8vw, 108px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
}

h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
}

.hero-lede {
  max-width: 650px;
  margin-top: 24px;
  color: var(--mist);
  font-size: 18px;
}

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

.stay-ledger {
  border: 1px solid var(--hairline);
  background: rgba(11, 12, 14, 0.78);
  backdrop-filter: blur(18px);
}

.stay-ledger div,
.contact-row {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-bottom: 1px solid var(--hairline);
}

.stay-ledger div:last-child,
.contact-row:last-of-type {
  border-bottom: 0;
}

.stay-ledger strong,
.stay-ledger a,
.fact strong,
.contact-row a,
.mini-facts span {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--hairline);
}

.fact {
  min-height: 116px;
  padding: 24px var(--gutter);
  border-right: 1px solid var(--hairline);
  background: var(--ink);
}

.fact:last-child {
  border-right: 0;
}

.fact strong {
  display: block;
  margin-top: 12px;
  color: var(--bone);
}

.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px var(--gutter);
  border-bottom: 1px solid var(--hairline);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.65fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 44px;
}

.section-heading .kicker,
.section-heading h2 {
  grid-column: 1;
}

.section-heading p:not(.kicker) {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--fog);
}

.section-heading.compact {
  display: block;
  max-width: 640px;
  margin-bottom: 0;
}

.section-heading.compact p:not(.kicker) {
  margin-top: 18px;
  color: var(--fog);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.cabin-card {
  display: grid;
  grid-template-rows: 240px 1fr;
  min-width: 0;
  background: var(--slate);
}

.cabin-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.02);
}

.card-body {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
}

.card-body p:not(.label) {
  color: var(--mist);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  border-bottom: 1px solid var(--moss);
  color: var(--bone);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.75fr);
  gap: 56px;
  align-items: center;
}

.contact-panel {
  border: 1px solid var(--hairline);
  background: var(--slate);
  padding-bottom: 22px;
}

.contact-row {
  grid-template-columns: 140px minmax(0, 1fr);
  align-items: center;
}

.contact-row a {
  overflow-wrap: anywhere;
}

.contact-actions {
  padding: 0 18px;
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 0.88fr);
  gap: 48px;
  align-items: center;
}

.location-copy p:not(.kicker) {
  margin-top: 20px;
  color: var(--mist);
}

.location-copy .text-link {
  margin-top: 24px;
}

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

.location-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.mini-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--hairline);
}

.mini-facts span {
  padding: 16px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  color: var(--mist);
}

.mini-facts span:nth-child(2n) {
  border-right: 0;
}

.mini-facts span:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.area-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 1px;
  border: 1px solid var(--hairline);
  background: var(--hairline);
}

.area-feature,
.area-links {
  background: var(--slate);
}

.area-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  align-items: center;
}

.area-feature img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.area-feature div {
  padding: 34px;
}

.area-feature p {
  margin-top: 14px;
  color: var(--mist);
}

.area-links {
  display: grid;
}

.area-links a {
  display: flex;
  min-height: 64px;
  align-items: center;
  border-bottom: 1px solid var(--hairline);
  padding: 14px 22px;
  color: var(--mist);
  font-weight: 600;
}

.area-links a:last-child {
  border-bottom: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  border: 1px solid var(--hairline);
  background: var(--hairline);
}

.faq-grid article {
  min-height: 180px;
  padding: 28px;
  background: var(--slate);
}

.faq-grid h3 {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
}

.faq-grid p {
  margin-top: 12px;
  color: var(--mist);
}

.owner-cta {
  display: grid;
  max-width: var(--container);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
  padding: 64px var(--gutter);
  border-bottom: 1px solid var(--hairline);
}

.owner-cta h2 {
  max-width: 760px;
  margin-top: 10px;
  font-size: clamp(34px, 4vw, 54px);
}

.owner-cta p:not(.kicker) {
  max-width: 700px;
  margin-top: 16px;
  color: var(--mist);
}

.site-footer {
  display: grid;
  max-width: var(--container);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  margin: 0 auto;
  padding: 40px var(--gutter) 48px;
  color: var(--fog);
}

.site-footer img {
  width: 132px;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--mist);
  font-weight: 600;
}

.disclaimer {
  grid-column: 1 / -1;
  max-width: 780px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
  font-size: 13px;
}

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

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

  .site-header .button {
    width: fit-content;
  }

  .hero-grid,
  .split,
  .location,
  .area-grid,
  .owner-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
    padding-top: 96px;
  }

  .stay-ledger {
    max-width: 520px;
  }

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

  .fact:nth-child(2n) {
    border-right: 0;
  }

  .fact:nth-child(-n + 2) {
    border-bottom: 1px solid var(--hairline);
  }

  .section-heading {
    display: block;
  }

  .section-heading p:not(.kicker) {
    margin-top: 18px;
  }

  .area-feature {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .concept-bar {
    flex-direction: column;
    gap: 4px;
  }

  .site-header {
    position: relative;
  }

  .brand img {
    width: 128px;
  }

  .nav-links {
    gap: 12px 18px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding: 74px var(--gutter) 42px;
  }

  h1 {
    font-size: clamp(46px, 15vw, 62px);
  }

  .hero-lede {
    font-size: 16px;
  }

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

  .button {
    width: 100%;
  }

  .fact-strip,
  .card-grid,
  .faq-grid,
  .mini-facts {
    grid-template-columns: 1fr;
  }

  .fact {
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }

  .fact:last-child {
    border-bottom: 0;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .cabin-card {
    grid-template-rows: 220px auto;
  }

  .card-body {
    min-height: auto;
    padding: 22px;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }

  .mini-facts span,
  .mini-facts span:nth-child(2n),
  .mini-facts span:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }

  .mini-facts span:last-child {
    border-bottom: 0;
  }

  .owner-cta {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

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