:root {
  --charcoal: #111111;
  --ink: #201c18;
  --coffee: #2a1d15;
  --sand: #d1c2af;
  --paper: #d7c8b4;
  --gold: #d99a4b;
  --aged-gold: #b7864a;
  --cream: #f0e0cc;
  --muted: #9b8e80;
  --dark-line: rgba(240, 224, 204, 0.16);
  --max: 1440px;
  --font-display: "Meno Display", "Meno", "Playfair Display", Georgia, serif;
  --font-body: "Charter", "Bitstream Charter", Georgia, serif;
  --font-mono: "Roboto Mono", "Space Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--font-body);
  overflow-x: hidden;
}

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

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

.site-nav {
  align-items: center;
  background: rgba(25, 18, 14, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--dark-line);
  display: grid;
  grid-template-columns: minmax(190px, 230px) 1fr auto;
  left: 0;
  padding: 18px clamp(24px, 6vw, 88px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 220ms ease, padding 220ms ease;
  z-index: 20;
}

.site-nav.is-scrolled {
  background: rgba(15, 15, 15, 0.94);
  padding-block: 12px;
}

.brand-mark img,
.footer-logo img {
  filter: brightness(0) invert(1);
}

.brand-mark {
  align-items: center;
  display: inline-flex;
}

.brand-mark img {
  height: 92px;
  object-fit: contain;
  object-position: left center;
  width: 320px;
}

.site-nav nav {
  display: flex;
  gap: clamp(24px, 4vw, 54px);
  justify-content: center;
}

.site-nav nav a,
.nav-cta,
.button,
.eyebrow,
.scroll-cue,
.text-link,
.footer-column h3,
.footer-links h3 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav nav a {
  color: rgba(240, 224, 204, 0.88);
  position: relative;
  transition: color 240ms ease;
}

.site-nav nav a::after,
.nav-cta::after {
  background: var(--gold);
  bottom: -8px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms ease;
  width: 100%;
}

.site-nav nav a:hover {
  color: var(--cream);
}

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

.nav-cta {
  border-bottom: 1px solid var(--gold);
  color: var(--cream);
  padding-bottom: 6px;
  position: relative;
}

.hero {
  align-items: center;
  background-image:
    linear-gradient(180deg, rgba(13, 13, 13, 0.08), rgba(13, 13, 13, 0.48)),
    linear-gradient(90deg, rgba(13, 13, 13, 0.22), rgba(13, 13, 13, 0.06), rgba(13, 13, 13, 0.28)),
    var(--hero-image);
  background-position: center 48%;
  background-size: cover;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100svh;
  padding: clamp(142px, 15vw, 190px) clamp(24px, 6vw, 88px) 30px;
  position: relative;
  text-align: center;
}

.hero-content {
  justify-self: center;
  padding-bottom: 32px;
  width: min(980px, 100%);
}

.eyebrow {
  color: var(--gold);
  margin: 0 0 16px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.04;
  margin: 0;
}

h1 {
  font-size: clamp(54px, 8.5vw, 128px);
  font-weight: 500;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 500;
}

h3 {
  font-size: 24px;
  font-weight: 500;
}

p {
  line-height: 1.7;
}

.hero-copy {
  color: rgba(240, 224, 204, 0.86);
  font-size: clamp(16px, 2vw, 21px);
  margin: 18px auto 0;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 34px;
}

.button {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-height: 46px;
  padding: 13px 24px;
  transition: background-color 240ms ease, color 240ms ease, transform 240ms ease;
}

.button-primary {
  background: var(--sand);
  color: var(--coffee);
}

.button-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.button-line {
  border-bottom: 2px solid var(--gold);
  color: var(--cream);
}

.button-line:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.scroll-cue {
  color: rgba(240, 224, 204, 0.8);
  display: grid;
  gap: 12px;
  justify-items: center;
  left: 50%;
  margin-top: 22px;
  position: relative;
  transform: translateX(-50%);
}

.scroll-cue i {
  background: var(--gold);
  display: block;
  height: 44px;
  width: 1px;
}

.story-scroll {
  display: grid;
  gap: clamp(42px, 7vw, 110px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(90px, 12vw, 170px) clamp(24px, 6vw, 88px);
}

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

.story-copy h2 {
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 36px;
}

.painted-story p {
  color: rgba(240, 224, 204, 0.23);
  font-family: var(--font-body);
  font-size: clamp(23px, 2.8vw, 39px);
  line-height: 1.34;
  margin: 0 0 clamp(42px, 7vw, 90px);
}

.story-sticky {
  height: calc(100svh - 120px);
  margin: 0;
  position: sticky;
  top: 90px;
}

.story-sticky img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.specialties {
  background: #191817;
  padding: clamp(86px, 12vw, 160px) clamp(24px, 6vw, 88px);
  text-align: center;
}

.specialties-header {
  margin: 0 auto;
  max-width: 760px;
}

.specialties-copy {
  color: rgba(240, 224, 204, 0.76);
  font-size: 18px;
  margin: 20px auto 28px;
  max-width: 680px;
}

.specialty-grid {
  column-count: 3;
  column-gap: clamp(22px, 3vw, 44px);
  margin: 70px auto 0;
  max-width: var(--max);
  text-align: left;
}

.specialty-card {
  break-inside: avoid;
  display: inline-block;
  margin: 0 0 clamp(28px, 4vw, 52px);
  overflow: hidden;
  width: 100%;
}

.specialty-card img {
  height: auto;
  object-fit: cover;
  transition: filter 420ms ease, transform 700ms ease;
  width: 100%;
}

.specialty-card:hover img {
  filter: brightness(1.06) saturate(1.08);
  transform: scale(1.035);
}

.specialty-card:nth-child(1) img,
.specialty-card:nth-child(5) img {
  aspect-ratio: 0.82 / 1;
}

.specialty-card:nth-child(2) img,
.specialty-card:nth-child(6) img {
  aspect-ratio: 1 / 0.78;
}

.specialty-card:nth-child(3) img,
.specialty-card:nth-child(4) img {
  aspect-ratio: 1 / 1.18;
}

.space-feature {
  min-height: 88svh;
  overflow: hidden;
  position: relative;
}

.space-slideshow {
  inset: 0;
  position: absolute;
}

.space-slideshow::after {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.82), rgba(10, 10, 10, 0.18) 56%, rgba(10, 10, 10, 0.72)),
    linear-gradient(180deg, rgba(10, 10, 10, 0.12), rgba(10, 10, 10, 0.74));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 2;
}

.space-slideshow img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  width: 100%;
}

.space-slideshow img.is-active {
  opacity: 1;
}

.space-copy {
  max-width: 560px;
  padding: clamp(70px, 10vw, 130px) clamp(24px, 6vw, 88px);
  position: relative;
  z-index: 3;
}

.space-copy p {
  color: rgba(240, 224, 204, 0.82);
  font-size: 18px;
}

.reserve-strip {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  margin: clamp(86px, 12vw, 160px) auto;
  max-width: min(1120px, calc(100% - 48px));
}

.reserve-card,
.location-card {
  border: 1px solid var(--dark-line);
  padding: clamp(32px, 5vw, 64px);
}

.reserve-card,
.location-card,
.site-footer {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.reserve-card {
  background: #352116;
}

.location-card {
  background: #111111;
}

.reserve-card p,
.location-card p {
  color: rgba(240, 224, 204, 0.74);
}

.text-link {
  border-top: 1px solid var(--dark-line);
  display: block;
  margin-top: 22px;
  padding-top: 16px;
}

.site-footer {
  border-top: 1px solid var(--dark-line);
  padding: 0 clamp(24px, 6vw, 88px) 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1.1fr 0.8fr 1.1fr 1.1fr;
  min-height: 240px;
}

.footer-column,
.footer-logo {
  border-right: 1px solid var(--dark-line);
  display: grid;
  place-content: center;
  text-align: center;
}

.footer-column:first-child {
  border-left: 1px solid var(--dark-line);
}

.footer-column h3,
.footer-links h3 {
  color: var(--cream);
  margin: 0 0 20px;
}

.footer-column p,
.footer-column a,
.footer-links a {
  color: rgba(240, 224, 204, 0.78);
  display: block;
  margin: 5px 0;
  transition: color 220ms ease;
}

.footer-column a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.footer-logo img {
  margin: 0 auto;
  filter: brightness(0) invert(1);
  width: 130px;
}

.footer-logo {
  gap: 12px;
}

.footer-links {
  border-top: 1px solid var(--dark-line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 36px;
  padding-top: 48px;
  text-align: center;
}

.social-links {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: center;
}

.social-links a {
  align-items: center;
  border: 1px solid var(--dark-line);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  margin: 0;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
  width: 44px;
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--coffee);
  transform: translateY(-2px);
}

.social-links i {
  font-size: 18px;
}

.tripadvisor-social i {
  display: none;
}

.tripadvisor-social::before {
  content: "TA";
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.social-links span {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.footer-wordmark-logo {
  display: block;
  filter: brightness(0) invert(1);
  height: auto;
  margin: clamp(42px, 6vw, 72px) auto 44px;
  max-width: min(420px, 72vw);
  width: 100%;
}

.footer-bottom {
  color: rgba(240, 224, 204, 0.82);
  display: flex;
  font-weight: 500;
  justify-content: space-between;
  gap: 20px;
}

.reveal {
  will-change: transform, opacity;
}

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

  .site-nav nav {
    display: none;
  }

  .story-scroll,
  .reserve-strip,
  .footer-top,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .story-sticky {
    height: 64svh;
    order: -1;
    position: relative;
    top: auto;
  }

  .specialty-grid {
    column-count: 2;
    max-width: 560px;
  }

  .footer-column,
  .footer-logo,
  .footer-column:first-child {
    border-left: 1px solid var(--dark-line);
    min-height: 170px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .site-nav {
    padding: 12px 18px;
  }

  .brand-mark img {
    height: 68px;
    width: 235px;
  }

  h1 {
    font-size: 54px;
  }

  .hero {
    min-height: 92svh;
    padding-bottom: 24px;
    padding-top: 126px;
  }

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

  .painted-story p {
    font-size: 30px;
  }

  .footer-wordmark-logo {
    margin-top: 70px;
    max-width: 78vw;
  }

  .specialty-grid {
    column-count: 1;
  }
}
