:root {
  --ink: #101711;
  --forest-950: #07110d;
  --forest-900: #0b1712;
  --forest-800: #12251c;
  --forest-700: #1d382b;
  --moss: #79856c;
  --gold: #c49a53;
  --gold-bright: #e0bd76;
  --parchment: #f0e7d2;
  --paper: #f7f3e9;
  --white: #fffdf7;
  --line-dark: rgb(224 189 118 / 28%);
  --line-light: rgb(16 23 17 / 16%);
  --shadow: 0 32px 80px rgb(0 0 0 / 28%);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--forest-950);
  background: var(--gold-bright);
  border-radius: 2px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  color: var(--white);
  border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
}

.wordmark-kicker {
  color: var(--gold-bright);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.wordmark-name {
  margin-top: 7px;
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav a {
  text-decoration: none;
}

.primary-nav a:not(.nav-cta) {
  position: relative;
}

.primary-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgb(224 189 118 / 70%);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(900px, 96svh);
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-950);
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center 44%;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgb(4 11 8 / 88%) 0%, rgb(4 11 8 / 55%) 43%, rgb(4 11 8 / 8%) 76%),
    linear-gradient(0deg, rgb(4 11 8 / 80%) 0%, transparent 44%),
    linear-gradient(180deg, rgb(4 11 8 / 58%) 0%, transparent 24%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 190px 105px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.1rem, 10vw, 8.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.76;
  text-shadow: 0 4px 32px rgb(0 0 0 / 42%);
}

.hero-lede {
  max-width: 640px;
  margin: 34px 0 0;
  color: rgb(255 253 247 / 88%);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 14px 23px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 1px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  color: var(--forest-950);
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.button-primary:hover {
  background: var(--parchment);
  border-color: var(--parchment);
}

.button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.text-link {
  color: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
  text-transform: uppercase;
  text-underline-offset: 6px;
}

.text-link:hover {
  color: var(--gold-bright);
}

.hero-caption {
  position: absolute;
  right: 32px;
  bottom: 28px;
  z-index: 2;
  margin: 0;
  color: rgb(255 255 255 / 68%);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.section {
  padding-block: clamp(86px, 11vw, 150px);
}

.story {
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, rgb(196 154 83 / 9%), transparent 30%),
    var(--paper);
}

.story::after {
  position: absolute;
  right: 6vw;
  bottom: 8%;
  width: 160px;
  height: 160px;
  border: 1px solid rgb(196 154 83 / 30%);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 14px var(--paper), inset 0 0 0 15px rgb(196 154 83 / 18%);
  pointer-events: none;
}

.story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 8vw, 120px);
}

.section-heading h2 {
  max-width: 740px;
  margin: 0;
  color: var(--forest-900);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.story-copy {
  max-width: 660px;
  padding-top: 38px;
}

.story-copy p {
  margin-top: 0;
}

.story-copy .lead {
  color: var(--forest-800);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  line-height: 1.45;
}

.legend-note {
  display: grid;
  margin-top: 48px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line-light);
  grid-template-columns: 32px 1fr;
  gap: 15px;
}

.legend-note p {
  margin: 0;
  color: #4d574e;
  font-size: 0.92rem;
}

.legend-mark {
  color: var(--gold);
  font-size: 1.35rem;
}

.highlights {
  padding-block: clamp(72px, 8vw, 112px);
  color: var(--parchment);
  background:
    linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px) 0 0 / 80px 80px,
    var(--forest-800);
}

.highlights-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 64px;
}

.highlights .section-heading h2 {
  color: var(--parchment);
}

.highlights-header > p {
  margin: 0;
  color: rgb(240 231 210 / 70%);
}

.highlights-grid {
  display: grid;
  margin: 64px 0 0;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  grid-template-columns: repeat(4, 1fr);
}

.highlights-grid > div {
  min-height: 160px;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.highlights-grid dt {
  margin-bottom: 34px;
  color: var(--gold-bright);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.highlights-grid dd {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  line-height: 1.2;
}

.tour-section {
  color: var(--parchment);
  background:
    radial-gradient(circle at 85% 10%, rgb(196 154 83 / 11%), transparent 27%),
    linear-gradient(145deg, var(--forest-950), #0c1d16 68%, #10251c);
}

.tour-intro {
  display: grid;
  margin-bottom: 52px;
  grid-template-columns: minmax(0, 1.5fr) minmax(240px, 0.5fr);
  align-items: end;
  gap: 50px;
}

.tour-intro .section-heading h2 {
  color: var(--parchment);
}

.tour-intro > p {
  margin: 0;
  color: rgb(240 231 210 / 68%);
}

.tour-frame {
  border: 1px solid var(--line-dark);
  background: rgb(0 0 0 / 20%);
  box-shadow: var(--shadow);
}

.tour-preview {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.tour-preview > img,
.tour-preview-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tour-preview > img {
  object-fit: cover;
}

.tour-preview-shade {
  z-index: 1;
  background: linear-gradient(180deg, rgb(4 10 7 / 10%), rgb(4 10 7 / 72%));
}

.tour-launch-panel {
  position: relative;
  z-index: 2;
  display: flex;
  padding: 28px;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.tour-launch-panel p {
  margin: 18px 0 22px;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
}

.tour-icon {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 1px solid rgb(224 189 118 / 70%);
  border-radius: 50%;
  color: var(--gold-bright);
  background: rgb(7 17 13 / 68%);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.tour-preview iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.tour-toolbar {
  display: flex;
  min-height: 72px;
  padding: 15px 22px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line-dark);
}

.tour-status {
  margin: 0;
  color: rgb(240 231 210 / 62%);
  font-size: 0.82rem;
}

.lake-section {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.lake-section::before {
  position: absolute;
  top: -180px;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgb(196 154 83 / 20%);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 36px var(--paper), inset 0 0 0 37px rgb(196 154 83 / 16%);
  pointer-events: none;
}

.lake-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(44px, 8vw, 112px);
}

.lake-figure {
  position: relative;
  margin: 0;
}

.lake-figure::before {
  position: absolute;
  inset: -12px 12px 12px -12px;
  z-index: -1;
  border: 1px solid rgb(196 154 83 / 55%);
  content: "";
}

.lake-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: 0 26px 70px rgb(20 28 21 / 18%);
}

.lake-figure figcaption,
.gallery-item figcaption {
  color: #5c665e;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lake-figure figcaption {
  margin-top: 15px;
}

.lake-copy h2 {
  margin: 0;
  color: var(--forest-900);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.lake-copy .lead {
  margin: 34px 0 20px;
  color: var(--forest-800);
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.5;
}

.dark-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--forest-800);
}

.gallery {
  background: #e8dfca;
}

.gallery-header {
  display: grid;
  margin-bottom: 54px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
}

.gallery-header > p {
  max-width: 320px;
  margin: 0;
  color: #596158;
}

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

.gallery-item {
  margin: 0;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--forest-800);
  filter: saturate(0.92) contrast(1.02);
  transition: filter 250ms ease;
}

.gallery-item:hover img {
  filter: saturate(1.04) contrast(1.02);
}

.gallery-item figcaption {
  margin-top: 13px;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-wide img {
  aspect-ratio: 16 / 8.4;
}

.gallery-porch img {
  object-position: center 42%;
}

.contact {
  color: var(--parchment);
  background:
    radial-gradient(circle at 85% 50%, rgb(196 154 83 / 13%), transparent 32%),
    var(--forest-950);
  border-top: 1px solid var(--line-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.contact h2 {
  margin: 0;
  color: var(--parchment);
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.9vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgb(240 231 210 / 70%);
}

.contact-actions {
  display: flex;
  margin-top: 36px;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.property-location {
  margin-top: 38px;
  padding-top: 25px;
  border-top: 1px solid var(--line-dark);
  color: rgb(240 231 210 / 65%);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

.property-location span {
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-card {
  display: flex;
  min-height: 360px;
  padding: clamp(26px, 5vw, 60px);
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-dark);
  flex-direction: column;
  text-decoration: none;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 2%), transparent),
    rgb(0 0 0 / 22%);
  box-shadow: var(--shadow);
  transition: border-color 180ms ease, transform 180ms ease;
}

.brand-card:hover {
  border-color: rgb(224 189 118 / 65%);
  transform: translateY(-3px);
}

.brand-card img {
  width: min(100%, 560px);
  height: auto;
}

.brand-card > span {
  margin-top: 25px;
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  padding-block: 44px;
  color: rgb(240 231 210 / 68%);
  background: #050b08;
  border-top: 1px solid rgb(224 189 118 / 18%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 42px;
}

.footer-name,
.footer-location,
.footer-credit {
  margin: 0;
}

.footer-name {
  color: var(--parchment);
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-location,
.footer-credit {
  margin-top: 5px;
  font-size: 0.72rem;
}

.footer-credit {
  margin-top: 0;
  text-align: right;
}

.footer-credit a {
  color: var(--gold-bright);
}

.footer-nav {
  display: flex;
  gap: 26px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav a {
  text-decoration-color: transparent;
  text-underline-offset: 5px;
}

.footer-nav a:hover {
  color: var(--gold-bright);
  text-decoration-color: var(--gold-bright);
}

@media (max-width: 1120px) {
  .primary-nav a:not(.nav-cta) {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 680px);
  }

  .header-inner {
    min-height: 76px;
  }

  .primary-nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero-media img {
    object-position: 42% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgb(4 11 8 / 78%), rgb(4 11 8 / 20%)),
      linear-gradient(0deg, rgb(4 11 8 / 92%) 0%, rgb(4 11 8 / 28%) 68%),
      linear-gradient(180deg, rgb(4 11 8 / 52%), transparent 22%);
  }

  .hero-content {
    padding-block: 150px 88px;
  }

  .hero h1 {
    font-size: clamp(3.9rem, 18vw, 6.8rem);
  }

  .hero-caption {
    display: none;
  }

  .story-grid,
  .tour-intro,
  .highlights-header,
  .lake-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .story-copy {
    padding-top: 0;
  }

  .story::after {
    display: none;
  }

  .tour-intro {
    gap: 26px;
  }

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

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

  .lake-copy {
    max-width: 640px;
  }

  .gallery-header {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    gap: 60px;
  }

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

  .footer-credit {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .wordmark-kicker {
    letter-spacing: 0.15em;
  }

  .wordmark-name {
    font-size: 1rem;
  }

  .nav-cta {
    padding: 9px 11px;
    font-size: 0.67rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .tour-preview {
    min-height: 440px;
    aspect-ratio: 4 / 5;
  }

  .tour-preview > img {
    object-position: 46% center;
  }

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

  .highlights-grid > div {
    min-height: 126px;
  }

  .gallery-grid {
    display: block;
  }

  .gallery-item + .gallery-item {
    margin-top: 34px;
  }

  .gallery-wide img {
    aspect-ratio: 4 / 3;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-actions .text-link {
    align-self: flex-start;
  }

  .brand-card {
    min-height: 280px;
  }

  .footer-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
