:root {
  --ink: #1a1f18;
  --muted: #5e6b58;
  --paper: #f5efe3;
  --cream: #faf6ee;
  --forest: #162015;
  --moss: #2f3f2b;
  --clay: #a05a3c;
  --gold: #c99555;
  --line: rgba(26, 31, 24, 0.12);
  --line-light: rgba(250, 246, 238, 0.14);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 50;
  transform: translateY(-180%);
  background: var(--gold);
  color: var(--forest);
  padding: 0.7rem 1rem;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  background: rgba(245, 239, 227, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink);
}

.brand span {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  color: var(--moss);
  line-height: 1.1;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(0.75rem, 2.5vw, 1.5rem);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 0.2rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--clay);
}

.kicker {
  margin: 0 0 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: clamp(720px, 92vh, 980px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(5rem, 11vw, 10rem) clamp(1rem, 5vw, 4rem)
    clamp(2.5rem, 6vw, 5rem);
  background: var(--forest);
  color: var(--cream);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(22, 32, 21, 0.92) 0%,
      rgba(22, 32, 21, 0.62) 42%,
      rgba(22, 32, 21, 0.28) 100%
    ),
    url("assets/hero-lake-dusk.webp") center/cover no-repeat;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(22, 32, 21, 0.65));
}

.hero__content,
.availability-card {
  position: relative;
}

.hero h1,
.intro h2,
.section-heading h2,
.detail-panel h2,
.plan h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.6rem, 9vw, 8rem);
}

.lede {
  max-width: 620px;
  margin: 1.1rem 0 0;
  color: rgba(250, 246, 238, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  padding: 0.78rem 1.2rem;
  background: transparent;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 0.74rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  background: rgba(250, 246, 238, 0.08);
}

.button--primary {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--cream);
}

.button--primary:hover {
  background: #8a4b32;
  border-color: #8a4b32;
}

.availability-card {
  padding: 1.25rem;
  border-left: 2px solid var(--gold);
  background: rgba(12, 17, 11, 0.55);
}

.availability-card span,
.facts span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.66rem;
  font-weight: 700;
}

.availability-card strong {
  display: block;
  margin: 0.5rem 0;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.1;
}

.availability-card p {
  margin: 0;
  color: rgba(250, 246, 238, 0.76);
  font-size: 0.95rem;
}

.intro,
.options,
.compare,
.links {
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 5vw, 4rem);
}

.intro {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 2.5rem;
  background: var(--forest);
  color: var(--cream);
}

.intro h2 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.intro > p:last-child {
  max-width: 640px;
  color: rgba(250, 246, 238, 0.78);
  font-size: 1.15rem;
  line-height: 1.65;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

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

.option-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.option-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(22, 32, 21, 0.1);
}

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

.option-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.label {
  margin: 0 0 0.5rem;
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 700;
}

.option-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.05;
}

.option-card p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

dl {
  display: grid;
  gap: 0.5rem;
  margin: auto 0 1rem;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 0.55rem;
}

dt {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

dd {
  margin: 0;
  font-weight: 700;
}

.text-button {
  width: 100%;
  color: var(--ink);
  border-color: var(--line);
}

.text-button:hover {
  background: var(--paper);
}

.detail-panel {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 4rem);
  background: var(--forest);
  color: var(--cream);
}

.detail-panel > div:first-child {
  max-width: 860px;
}

.detail-panel h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

#detail-copy {
  max-width: 760px;
  color: rgba(250, 246, 238, 0.8);
  font-size: 1.1rem;
  line-height: 1.65;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-light);
}

.facts strong {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.detail-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.detail-links a {
  min-height: auto;
  padding: 0.75rem 1.1rem;
  border: 1px solid var(--line-light);
  background: transparent;
  color: var(--cream);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.detail-links a:hover {
  background: rgba(250, 246, 238, 0.08);
  border-color: var(--gold);
}

.detail-links a::after {
  content: " ↗";
  color: var(--gold);
}

.compare {
  background: var(--cream);
}

.compare-table {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.65fr 0.9fr 1.1fr;
  min-width: 720px;
}

.compare-row span {
  padding: 1rem 0.75rem;
  border-bottom: 1px solid var(--line);
}

.compare-row:last-child span {
  border-bottom: 0;
}

.compare-row--head {
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  font-weight: 700;
}

.plan {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 2.5rem;
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 5vw, 4rem);
  background: var(--forest);
  color: var(--cream);
}

.plan h2 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.plan ol {
  margin: 0;
  padding-left: 1.5rem;
  color: rgba(250, 246, 238, 0.82);
  font-size: 1.1rem;
}

.plan li {
  margin: 1rem 0;
  padding-left: 0.5rem;
  line-height: 1.55;
}

.plan li::marker {
  color: var(--gold);
  font-weight: 700;
}

.links {
  background: var(--paper);
}

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

.link-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: color 0.2s ease;
}

.link-grid a:hover {
  color: var(--clay);
}

.link-grid a::after {
  content: "↗";
  color: var(--gold);
  font-size: 0.85rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 5vw, 4rem);
  background: #0d120c;
  color: rgba(250, 246, 238, 0.65);
  font-size: 0.9rem;
}

footer a {
  color: var(--gold);
  text-decoration: none;
}

@media (max-width: 1120px) {
  .option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-header {
    flex-wrap: wrap;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
    gap: 0.85rem;
    margin-top: 0.5rem;
    font-size: 0.7rem;
  }

  .hero {
    min-height: 720px;
    padding-top: 6rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .intro,
  .plan {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .option-grid,
  .facts,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .compare-table {
    margin: 0 -1rem;
    padding: 0 1rem;
  }

  .compare-row {
    min-width: 720px;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .footer-meta {
    flex-direction: column;
    gap: 0.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  .hero .kicker,
  .hero h1,
  .hero .lede,
  .hero .actions {
    opacity: 1;
    transform: none;
  }
}

/* --- Living dusk: last light breathing over the lake --- */
.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 90% at 78% 88%,
    rgba(201, 149, 85, 0.32) 0%,
    rgba(160, 90, 60, 0.16) 28%,
    transparent 58%
  );
  mix-blend-mode: screen;
  opacity: 0.55;
  animation: lastlight 22s ease-in-out infinite;
}

@keyframes lastlight {
  0%,
  100% {
    opacity: 0.42;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 0.72;
    transform: translateY(-1.5%) scale(1.04);
  }
}

/* --- Hero arrives: a quiet settle, not a slideshow --- */
.hero .kicker,
.hero h1,
.hero .lede,
.hero .actions {
  opacity: 0;
  transform: translateY(14px);
  animation: settle 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.hero .kicker {
  animation-delay: 0.05s;
}
.hero h1 {
  animation-delay: 0.18s;
  animation-duration: 1.1s;
  filter: blur(6px);
  animation-name: settle-sharpen;
}
.hero .lede {
  animation-delay: 0.42s;
}
.hero .actions {
  animation-delay: 0.58s;
}

@keyframes settle {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes settle-sharpen {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* --- Closing: end on the same decisive voice the page opens with --- */
footer {
  display: block;
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 5vw, 4rem) 2.25rem;
}

.footer-cta {
  max-width: 820px;
}

.footer-cta h2 {
  margin: 0 0 1.6rem;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.98;
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  color: var(--cream);
}

.footer-cta h2 em {
  font-style: italic;
  color: var(--gold);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-light);
}

/* --- Sections wake up as you reach them (only when JS is on) --- */
html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

html.js .reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* --- Option cards catch the firelight --- */
.option-card {
  transition: transform 0.3s ease, box-shadow 0.4s ease;
}

.option-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px -18px rgba(160, 90, 60, 0.55);
}

.option-card:hover img {
  filter: saturate(1.06) brightness(1.03);
}

.option-card:focus-visible,
.option-card.is-selected {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.option-card.is-selected .text-button {
  color: var(--clay);
  border-color: var(--clay);
}
