:root {
  --ink: #16231e;
  --muted: #69766f;
  --paper: #f7f8f4;
  --paper-strong: #ffffff;
  --forest: #244638;
  --forest-deep: #10211b;
  --sage: #a8b49e;
  --gold: #c79d5b;
  --line: rgba(22, 35, 30, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(18, 32, 27, 0.14);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Outfit", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 5;
  transform: translateY(-140%);
  background: var(--paper-strong);
  color: var(--ink);
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 4;
  width: min(calc(100% - 32px), 1180px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 10px 10px 10px 16px;
  color: var(--paper-strong);
  background: rgba(16, 33, 27, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
}

.site-header.is-scrolled {
  background: rgba(16, 33, 27, 0.84);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  width: 12px;
  height: 34px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--gold), var(--sage));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a,
.header-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.header-cta {
  background: var(--gold);
  color: var(--forest-deep);
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms ease, border-color 220ms ease;
}

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

.button:active,
.site-nav a:active,
.header-cta:active {
  transform: translateY(1px) scale(0.99);
}

.button-primary {
  background: var(--gold);
  color: var(--forest-deep);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper-strong);
  border-color: rgba(255, 255, 255, 0.24);
}

.button-secondary {
  background: var(--forest);
  color: var(--paper-strong);
}

.hero {
  position: relative;
  min-height: 94dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper-strong);
  padding: 128px 24px 24px;
}

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

.hero-media img {
  animation: slow-pan 18s ease-in-out infinite alternate;
  transform-origin: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 33, 27, 0.86), rgba(16, 33, 27, 0.38) 48%, rgba(16, 33, 27, 0.08)),
    linear-gradient(0deg, rgba(16, 33, 27, 0.82), rgba(16, 33, 27, 0.02) 54%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  margin: 0 auto 118px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1,
.intro h2,
.feature-copy h2,
.suite-copy h2,
.dark-copy h2,
.utility-head h2,
.view-copy h2,
.proof h2,
.gallery h2,
.request-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: 6.2rem;
}

.hero-copy {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.2rem;
}

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

.hero-facts {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 1;
  width: min(calc(100% - 48px), 1120px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: rgba(16, 33, 27, 0.62);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.hero-facts div {
  padding: 18px 20px;
  border-right: 1px solid var(--line-light);
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  font-size: 1.55rem;
  line-height: 1.1;
}

.hero-facts span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.section-pad {
  padding: 112px 24px;
}

.intro,
.story-grid,
.suite,
.utility,
.proof,
.gallery,
.request {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(280px, 0.86fr);
  gap: 70px;
  align-items: start;
}

.intro h2,
.feature-copy h2,
.suite-copy h2,
.dark-copy h2,
.utility-head h2,
.view-copy h2,
.proof h2,
.gallery h2,
.request-panel h2 {
  font-size: 4.15rem;
}

.intro-copy p,
.feature-copy p,
.suite-copy p,
.dark-copy p,
.view-copy p,
.proof-points p,
.request-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.intro-copy {
  display: grid;
  gap: 18px;
  padding-top: 14px;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr);
  min-height: 720px;
  background: var(--paper-strong);
}

.feature-image {
  min-height: 520px;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px clamp(24px, 5vw, 72px);
}

.feature-copy p {
  margin-top: 22px;
}

.detail-list {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  border-top: 1px solid var(--line);
}

.detail-list div {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.detail-list dt {
  font-weight: 800;
  color: var(--forest);
}

.detail-list dd {
  margin: 6px 0 0;
  color: var(--muted);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: 320px;
  gap: 18px;
}

.story {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--forest-deep);
  color: var(--paper-strong);
  box-shadow: var(--shadow);
}

.story-large {
  grid-row: span 2;
}

.story::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 33, 27, 0.78), rgba(16, 33, 27, 0.02) 58%);
}

.story div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
}

.story span {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.story h3 {
  margin: 8px 0 0;
  max-width: 520px;
  font-family: var(--font-display);
  font-size: 2.65rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.suite {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 58px;
  align-items: center;
}

.suite-copy p {
  margin-top: 22px;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--forest);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.suite-images {
  display: grid;
  grid-template-columns: 1fr 0.58fr;
  gap: 18px;
  align-items: end;
}

.suite-images img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.suite-main {
  aspect-ratio: 4 / 3;
}

.suite-secondary {
  aspect-ratio: 3 / 4;
  transform: translateY(34px);
}

.dark-section {
  padding: 108px 24px;
  background: var(--forest-deep);
  color: var(--paper-strong);
}

.dark-copy,
.amenity-strip {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.dark-copy {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 56px;
  align-items: end;
}

.dark-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.amenity-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.92fr 0.78fr;
  gap: 18px;
  margin-top: 52px;
}

.amenity-strip article {
  min-height: 420px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.amenity-strip img {
  min-height: 310px;
}

.amenity-strip h3 {
  margin: 0;
  padding: 20px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.utility-head {
  width: min(780px, 100%);
}

.utility-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: 22px;
  margin-top: 42px;
}

.utility-image {
  min-height: 620px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.utility-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.utility-list div {
  display: grid;
  grid-template-columns: 0.48fr 0.52fr;
  gap: 18px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.utility-list strong {
  color: var(--forest);
  line-height: 1.22;
}

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

.view-section {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper-strong);
}

.view-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 33, 27, 0.84), rgba(16, 33, 27, 0.08) 62%);
}

.view-copy {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: 88px;
}

.view-copy p:not(.eyebrow) {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
}

.proof {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 62px;
  align-items: start;
}

.proof-points {
  display: grid;
  gap: 18px;
  padding-top: 18px;
}

.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 150px;
  gap: 10px;
}

.gallery-item {
  grid-column: span 3;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(36, 70, 56, 0.08);
}

.gallery-item:nth-child(9n + 1),
.gallery-item:nth-child(9n + 7) {
  grid-column: span 6;
  grid-row: span 2;
}

.gallery-item:nth-child(9n + 4) {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-item img {
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.gallery-item span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 8px;
  color: var(--paper-strong);
  background: rgba(16, 33, 27, 0.66);
  border-radius: 5px;
  font-size: 0.72rem;
}

.request {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 28px;
  align-items: start;
}

.request-media {
  position: sticky;
  top: 112px;
  height: calc(100dvh - 144px);
  min-height: 620px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.request-panel {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 48px);
  box-shadow: var(--shadow);
}

.request-panel > p:not(.eyebrow) {
  margin-top: 18px;
}

.lead-form {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.honeypot {
  display: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.field label {
  color: var(--forest);
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(22, 35, 30, 0.24);
  border-radius: 6px;
  background: #fbfcf8;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(36, 70, 56, 0.12);
}

.field.has-error input,
.field.has-error select {
  border-color: #a13f3f;
}

.error {
  min-height: 18px;
  color: #a13f3f;
  font-size: 0.82rem;
}

.form-submit {
  width: 100%;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-status {
  display: none;
  padding: 14px;
  border-radius: 6px;
  background: rgba(168, 180, 158, 0.22);
  color: var(--forest);
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 24px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--forest-deep);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong,
.site-footer span:first-child {
  color: var(--paper-strong);
}

.film-modal[hidden] {
  display: none;
}

.film-modal {
  position: fixed;
  inset: 0;
  z-index: 6;
  display: grid;
  place-items: center;
  padding: 22px;
}

.film-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 20, 17, 0.82);
  backdrop-filter: blur(8px);
}

.film-dialog {
  position: relative;
  width: min(1120px, 100%);
  color: var(--paper-strong);
}

.film-close {
  position: absolute;
  right: 0;
  top: -48px;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper-strong);
}

.film-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: var(--forest-deep);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.34);
}

.film-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 33, 27, 0.86), rgba(16, 33, 27, 0.02) 58%);
}

.film-frame img {
  transition: opacity 360ms ease, transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.film-frame img.is-changing {
  opacity: 0;
  transform: scale(1.03);
}

.film-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
}

.film-caption p {
  margin: 0 0 8px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.film-caption h2 {
  margin: 0;
  max-width: 740px;
  font-family: var(--font-display);
  font-size: 3.6rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes slow-pan {
  from {
    transform: scale(1.02) translate3d(-0.8%, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(0.8%, -0.6%, 0);
  }
}

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

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

  .site-nav {
    display: none;
  }

  .hero h1 {
    font-size: 4.5rem;
  }

  .intro h2,
  .feature-copy h2,
  .suite-copy h2,
  .dark-copy h2,
  .utility-head h2,
  .view-copy h2,
  .proof h2,
  .gallery h2,
  .request-panel h2 {
    font-size: 3.35rem;
  }

  .story h3 {
    font-size: 2.35rem;
  }

  .film-caption h2 {
    font-size: 3rem;
  }

  .hero {
    min-height: 92dvh;
  }

  .hero-inner {
    margin-bottom: 176px;
  }

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

  .hero-facts div:nth-child(2) {
    border-right: 0;
  }

  .hero-facts div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

  .intro-grid,
  .feature-band,
  .suite,
  .dark-copy,
  .utility-layout,
  .proof,
  .request {
    grid-template-columns: 1fr;
  }

  .feature-band {
    min-height: auto;
  }

  .story-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(300px, auto);
  }

  .story-large {
    grid-row: span 1;
  }

  .suite-secondary {
    transform: none;
  }

  .amenity-strip {
    grid-template-columns: 1fr;
  }

  .request-media {
    position: relative;
    top: auto;
    height: 480px;
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand small {
    display: none;
  }

  .header-cta {
    min-height: 34px;
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .hero {
    padding: 104px 16px 16px;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-inner {
    margin-bottom: 188px;
  }

  .hero-facts {
    width: calc(100% - 32px);
    bottom: 16px;
  }

  .hero-facts div {
    padding: 13px 14px;
  }

  .hero-facts strong {
    font-size: 1.25rem;
  }

  .section-pad,
  .dark-section {
    padding: 72px 16px;
  }

  .intro h2,
  .feature-copy h2,
  .suite-copy h2,
  .dark-copy h2,
  .utility-head h2,
  .view-copy h2,
  .proof h2,
  .gallery h2,
  .request-panel h2 {
    font-size: 2.55rem;
  }

  .story h3,
  .film-caption h2 {
    font-size: 2.1rem;
  }

  .feature-copy {
    padding: 42px 16px;
  }

  .suite-images {
    grid-template-columns: 1fr;
  }

  .utility-image {
    min-height: 380px;
  }

  .utility-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .view-section {
    min-height: 620px;
  }

  .gallery-head {
    display: grid;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 126px;
  }

  .gallery-item,
  .gallery-item:nth-child(9n + 1),
  .gallery-item:nth-child(9n + 4),
  .gallery-item:nth-child(9n + 7) {
    grid-column: span 3;
    grid-row: span 1;
  }

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

  .site-footer {
    display: grid;
  }
}

@media (max-width: 460px) {
  .hero-actions .button {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item,
  .gallery-item:nth-child(9n + 1),
  .gallery-item:nth-child(9n + 4),
  .gallery-item:nth-child(9n + 7) {
    grid-column: auto;
  }
}
