:root {
  --green: #404a35;
  --green-dark: #253122;
  --brown: #3b281a;
  --brown-deep: #21150e;
  --rust: #864638;
  --rust-dark: #6f392e;
  --ochre: #8f683c;
  --cream: #f7f3e6;
  --cream-deep: #eee3cb;
  --ink: #251910;
  --muted: #6d5d4e;
  --line: rgba(59, 40, 26, 0.22);
  --shadow: 0 26px 60px rgba(20, 13, 8, 0.25);
  --display: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --western: "Rye", "American Typewriter Condensed", "American Typewriter", Rockwell, Copperplate, Georgia, serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --script: "Satisfy", "Snell Roundhand", "Apple Chancery", "Brush Script MT", cursive;
  --paper-grain:
    radial-gradient(circle at 12% 18%, rgba(59, 40, 26, 0.1) 0 0.7px, transparent 1.4px),
    radial-gradient(circle at 72% 32%, rgba(143, 104, 60, 0.1) 0 0.8px, transparent 1.5px),
    radial-gradient(circle at 38% 74%, rgba(59, 40, 26, 0.07) 0 0.7px, transparent 1.5px),
    repeating-linear-gradient(0deg, rgba(59, 40, 26, 0.025) 0 1px, transparent 1px 5px);
  --paint-grain:
    radial-gradient(circle at 14% 24%, rgba(247, 243, 230, 0.06) 0 0.8px, transparent 1.7px),
    radial-gradient(circle at 66% 58%, rgba(20, 13, 8, 0.12) 0 1px, transparent 2px),
    repeating-linear-gradient(90deg, rgba(247, 243, 230, 0.025) 0 1px, transparent 1px 7px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(143, 104, 60, 0.07) 0 1px, transparent 1.6px),
    radial-gradient(circle at 74% 42%, rgba(59, 40, 26, 0.055) 0 1px, transparent 1.8px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 34%, rgba(59, 40, 26, 0.035)),
    var(--cream);
  background-size: 18px 18px, 26px 26px, 100% 100%, auto;
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.45;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

section {
  scroll-margin-top: 72px;
}

button,
input,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 5vw, 64px);
  color: var(--cream);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background:
    var(--paint-grain),
    linear-gradient(180deg, rgba(64, 74, 53, 0.98), rgba(37, 49, 34, 0.98));
  background-size: 17px 17px, 25px 25px, auto, auto;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.brand {
  font-family: var(--western);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.menu-toggle {
  position: fixed;
  top: auto;
  right: 22px;
  top: 18px;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 5px;
  background: transparent;
  border: 0;
  color: var(--cream);
  cursor: pointer;
  transform: none;
}

.menu-toggle::before {
  content: none;
  display: none;
  width: 32px;
  height: 22px;
  background:
    linear-gradient(currentColor, currentColor) 0 0 / 32px 3px no-repeat,
    linear-gradient(currentColor, currentColor) 0 9px / 32px 3px no-repeat,
    linear-gradient(currentColor, currentColor) 0 18px / 32px 3px no-repeat;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 32px;
  height: 3px;
  background: currentColor;
}

.site-nav {
  position: fixed;
  inset: 80px 16px auto;
  display: none;
  padding: 22px;
  background: var(--brown);
  border: 1px solid rgba(247, 243, 230, 0.2);
  box-shadow: var(--shadow);
}

.site-header.is-open .site-nav {
  display: grid;
}

.site-nav a {
  padding: 15px 0;
  color: var(--cream);
  border-bottom: 1px solid rgba(247, 243, 230, 0.18);
  font-family: var(--display);
  font-size: 1.35rem;
  text-transform: uppercase;
}

.site-nav a:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--green-dark);
  color: var(--cream);
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  z-index: -2;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(17, 23, 22, 0.1), rgba(12, 17, 15, 0.28) 38%, rgba(11, 13, 10, 0.66) 80%),
    linear-gradient(90deg, rgba(33, 21, 14, 0.5), rgba(33, 21, 14, 0.05) 54%, rgba(33, 21, 14, 0.28));
}

.hero-content {
  display: flex;
  width: 100vw;
  max-width: 100vw;
  min-height: 82svh;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 64px clamp(22px, 6vw, 84px) 158px;
  text-align: center;
  overflow: hidden;
}

.hero-content > * {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--ochre);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--rust);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--western);
  font-weight: 700;
  line-height: 0.96;
  text-transform: uppercase;
}

.accent-rust {
  color: var(--rust);
}

.accent-gold {
  color: #d5a44d;
}

h1 {
  max-width: none;
  font-size: clamp(2rem, 9.6vw, 3rem);
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
  -webkit-text-stroke: 0.35px rgba(247, 243, 230, 0.45);
  text-shadow: 0 7px 18px rgba(0, 0, 0, 0.45);
}

h2 {
  font-size: 2.45rem;
}

h3 {
  font-size: 1.8rem;
}

.script-line {
  max-width: 330px;
  margin: 10px 0 0;
  color: #d5a44d;
  font-family: var(--script);
  font-size: 2.1rem;
  line-height: 1.05;
}

.star-rule {
  display: flex;
  align-items: center;
  width: 138px;
  margin: 28px 0 22px;
}

.star-rule.dark {
  width: 168px;
  margin: 6px auto 24px;
}

.star-rule::before,
.star-rule::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(247, 243, 230, 0.55);
}

.star-rule.dark::before,
.star-rule.dark::after {
  background: rgba(59, 40, 26, 0.45);
}

.star-rule span {
  width: 12px;
  height: 12px;
  margin: 0 13px;
  background: var(--ochre);
  clip-path: polygon(50% 0, 60% 38%, 100% 50%, 60% 62%, 50% 100%, 40% 62%, 0 50%, 40% 38%);
}

.star-rule.dark span {
  background: var(--brown);
}

.hero-copy {
  max-width: 450px;
  margin: 0;
  color: rgba(247, 243, 230, 0.92);
  font-size: clamp(1.1rem, 4.6vw, 1.45rem);
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: calc(100vw - 44px);
  max-width: 430px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border: 1px solid rgba(247, 243, 230, 0.62);
  color: var(--cream);
  font-family: var(--western);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease, background 160ms ease;
}

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

.button-rust {
  background: var(--rust);
}

.button-green {
  background: var(--green);
}

.button-brown {
  background: var(--brown);
}

.button-ghost {
  background: transparent;
  border-color: rgba(247, 243, 230, 0.7);
}

.button-stacked {
  flex-direction: column;
  gap: 2px;
  line-height: 1;
  padding-top: 11px;
  padding-bottom: 11px;
}

.button-stacked .button-main {
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.button-stacked .button-sub {
  font-family: var(--display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.75;
}

.proof-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 108px;
  background:
    var(--paint-grain),
    rgba(37, 49, 34, 0.96);
  background-size: 17px 17px, 25px 25px, auto, auto;
  border-top: 1px solid rgba(143, 104, 60, 0.75);
}

.proof-strip div,
.booking-proof div {
  display: grid;
  place-items: center;
  padding: 14px 8px;
  text-align: center;
}

.proof-strip div + div,
.booking-proof div + div {
  border-left: 1px solid rgba(143, 104, 60, 0.55);
}

.proof-strip strong,
.booking-proof strong {
  max-width: 11ch;
  color: #e0bd72;
  font-family: var(--western);
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

.line-icon {
  position: relative;
  display: block;
  width: 34px;
  height: 30px;
  margin-bottom: 8px;
  color: var(--ochre);
}

.proof-svg {
  display: block;
  width: 38px;
  height: 38px;
  margin: 0 auto 8px;
  color: var(--ochre);
  overflow: visible;
}

.key-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 14px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.key-icon::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 16px;
  width: 20px;
  height: 3px;
  background: currentColor;
  box-shadow: 10px 6px 0 -1px currentColor;
  transform: rotate(-25deg);
}

.hat-icon::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 18px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 35% 35%;
}

.hat-icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 34px;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.mountain-icon::before {
  content: "";
  position: absolute;
  inset: 6px 1px 0;
  border-left: 3px solid currentColor;
  border-top: 3px solid currentColor;
  transform: skew(-20deg) rotate(45deg);
}

.mountain-icon::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  width: 18px;
  height: 18px;
  border-left: 3px solid currentColor;
  border-top: 3px solid currentColor;
  transform: skew(-20deg) rotate(45deg);
}

.section-inner {
  width: min(100% - 38px, 1180px);
  margin: 0 auto;
}

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

.promise {
  padding: 70px 0;
}

.promise-grid {
  display: grid;
  gap: 28px;
}

.promise h2 {
  max-width: 820px;
  color: var(--brown);
}

.promise p:last-child {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}

.experience {
  position: relative;
  background:
    var(--paint-grain),
    linear-gradient(135deg, rgba(64, 74, 53, 0.22), transparent 46%),
    var(--brown-deep);
  background-size: 17px 17px, 25px 25px, 100% 100%, auto, auto;
  color: var(--cream);
}

.experience-heading {
  position: relative;
  z-index: 1;
  padding: 70px 20px 28px;
  text-align: center;
  background:
    var(--paper-grain),
    linear-gradient(90deg, rgba(255,255,255,0.12), transparent 48%, rgba(59,40,26,0.04)),
    var(--cream);
  background-size: 15px 15px, 23px 23px, 19px 19px, 100% 100%, auto, auto;
  color: var(--brown);
  border-bottom: 1px solid rgba(59, 40, 26, 0.28);
}

.experience-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
  background:
    var(--paint-grain),
    linear-gradient(180deg, var(--green-dark) 0%, var(--green) 100%);
  background-size: 17px 17px, 25px 25px, auto, auto;
  clip-path: polygon(
    0 0, 100% 0,
    100% 100%, 97% calc(100% - 4px), 94% calc(100% - 11px), 91% calc(100% - 2px),
    88% calc(100% - 9px), 85% calc(100% - 13px), 82% calc(100% - 6px), 79% calc(100% - 10px),
    76% calc(100% - 2px), 73% calc(100% - 12px), 70% calc(100% - 5px), 67% calc(100% - 8px),
    64% calc(100% - 14px), 61% calc(100% - 4px), 58% calc(100% - 10px), 55% calc(100% - 7px),
    52% calc(100% - 13px), 49% calc(100% - 2px), 46% calc(100% - 9px), 43% calc(100% - 6px),
    40% calc(100% - 12px), 37% calc(100% - 4px), 34% calc(100% - 10px), 31% calc(100% - 7px),
    28% calc(100% - 13px), 25% calc(100% - 3px), 22% calc(100% - 11px), 19% calc(100% - 6px),
    16% calc(100% - 8px), 13% calc(100% - 14px), 10% calc(100% - 5px), 7% calc(100% - 10px),
    4% calc(100% - 7px), 0 calc(100% - 12px)
  );
}

.experience-heading h2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--western);
  font-size: 1.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-shadow: 0.55px 0 currentColor, 0 1px rgba(255, 255, 255, 0.28);
}

.experience-heading h2::before,
.experience-heading h2::after {
  content: "*";
  color: var(--brown);
  font-family: Georgia, serif;
  font-size: 0.9rem;
  text-shadow: none;
}

.experience-heading .script-line {
  max-width: none;
  margin: 2px 0 0;
  color: var(--brown);
  font-size: 1.5rem;
}

.experience-grid {
  display: grid;
  position: relative;
  z-index: 0;
  border-top: 1px solid rgba(247, 243, 230, 0.28);
  border-bottom: 1px solid rgba(143, 104, 60, 0.72);
}

.experience-tile {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  min-height: 200px;
  overflow: hidden;
  background: var(--brown);
  border-top: 1px solid rgba(247, 243, 230, 0.3);
}

.tile-pool,
.tile-guide {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
}

.experience-tile img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.12) sepia(0.16) brightness(0.9);
}

.tile-copy {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: 15px 18px;
  background:
    var(--paint-grain),
    linear-gradient(135deg, rgba(143, 104, 60, 0.12), transparent 42%),
    var(--brown);
  background-size: 17px 17px, 25px 25px, 100% 100%, auto, auto;
  border-left: 1px solid rgba(247, 243, 230, 0.55);
}

.tile-pool .tile-copy,
.tile-guide .tile-copy {
  border-left: 0;
  border-right: 1px solid rgba(247, 243, 230, 0.55);
}

.tile-pool .tile-copy,
.tile-guide .tile-copy {
  background:
    var(--paint-grain),
    linear-gradient(135deg, rgba(143, 104, 60, 0.08), transparent 48%),
    var(--green);
  background-size: 17px 17px, 25px 25px, 100% 100%, auto, auto;
}

.tile-saloon .tile-copy {
  background:
    var(--paint-grain),
    linear-gradient(135deg, rgba(59, 40, 26, 0.18), transparent 48%),
    var(--rust);
  background-size: 17px 17px, 25px 25px, 100% 100%, auto, auto;
}

.tile-pool img,
.tile-guide img {
  order: 2;
}

.tile-copy h3 {
  margin-bottom: 7px;
  font-family: var(--western);
  font-size: 1.54rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-shadow: 0.55px 0 currentColor, 0 1px rgba(0, 0, 0, 0.28);
}

.tile-copy h3::after {
  content: "*";
  display: block;
  margin-top: 4px;
  color: #d5a44d;
  font-family: Georgia, serif;
  font-size: 0.95rem;
  text-shadow: none;
}

.tile-copy p {
  margin: 0 0 10px;
  color: rgba(247, 243, 230, 0.86);
  font-size: 0.82rem;
  line-height: 1.2;
}

.tile-copy a,
.text-link {
  color: #e0bd72;
  font-family: var(--western);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tile-copy a::after,
.text-link::after {
  content: " ->";
}

.experience-motto {
  margin: 0;
  padding: 13px 16px 15px;
  background:
    var(--paint-grain),
    var(--green);
  background-size: 17px 17px, 25px 25px, 100% 100%, auto;
  border-top: 1px solid rgba(143, 104, 60, 0.65);
  color: var(--cream);
  font-family: var(--display);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-align: center;
  text-transform: uppercase;
}

.band-brown {
  background: var(--brown-deep);
  color: var(--cream);
}

.rooms-preview {
  padding: 70px 0;
}

.split-heading {
  display: grid;
  gap: 24px;
}

.split-heading > p {
  margin: 0;
  max-width: 610px;
  color: rgba(247, 243, 230, 0.8);
}

.room-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.room-list article {
  padding: 24px;
  background: rgba(247, 243, 230, 0.08);
  border: 1px solid rgba(247, 243, 230, 0.14);
}

.room-list span {
  color: #d5a44d;
  font-family: var(--display);
}

.room-list h3 {
  margin-top: 10px;
  font-size: 1.55rem;
}

.room-list p {
  margin: 12px 0 0;
  color: rgba(247, 243, 230, 0.78);
}

.guide {
  display: grid;
  background: var(--cream);
}

.guide > img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.guide-copy {
  padding: 46px 24px 58px;
}

.guide-copy h2 {
  color: var(--brown);
}

.guide-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 28px;
  color: var(--muted);
}

.booking {
  display: grid;
  background: var(--brown);
  color: var(--brown);
}

.booking-panel {
  position: relative;
  padding: 84px 20px 64px;
  background:
    var(--paper-grain),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13), transparent 52%, rgba(59, 40, 26, 0.04)),
    var(--cream);
  background-size: 15px 15px, 23px 23px, 19px 19px, 100% 100%, auto, auto;
  color: var(--brown);
}

.booking-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 46px;
  background:
    var(--paint-grain),
    linear-gradient(180deg, var(--green-dark) 0%, var(--green) 100%);
  background-size: 17px 17px, 25px 25px, auto, auto;
  clip-path: polygon(
    0 0, 100% 0,
    100% 100%, 97% calc(100% - 4px), 94% calc(100% - 11px), 91% calc(100% - 2px),
    88% calc(100% - 9px), 85% calc(100% - 13px), 82% calc(100% - 6px), 79% calc(100% - 10px),
    76% calc(100% - 2px), 73% calc(100% - 12px), 70% calc(100% - 5px), 67% calc(100% - 8px),
    64% calc(100% - 14px), 61% calc(100% - 4px), 58% calc(100% - 10px), 55% calc(100% - 7px),
    52% calc(100% - 13px), 49% calc(100% - 2px), 46% calc(100% - 9px), 43% calc(100% - 6px),
    40% calc(100% - 12px), 37% calc(100% - 4px), 34% calc(100% - 10px), 31% calc(100% - 7px),
    28% calc(100% - 13px), 25% calc(100% - 3px), 22% calc(100% - 11px), 19% calc(100% - 6px),
    16% calc(100% - 8px), 13% calc(100% - 14px), 10% calc(100% - 5px), 7% calc(100% - 10px),
    4% calc(100% - 7px), 0 calc(100% - 12px)
  );
}

.booking-panel h2 {
  margin: 0 0 4px;
  text-align: center;
  color: var(--brown);
  font-family: var(--western);
  font-size: 1.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-shadow: 0.55px 0 currentColor;
}

.booking-subtitle {
  margin: 0 auto 18px;
  text-align: center;
  color: var(--brown);
  font-size: 1.55rem;
}

.pre-launch-badge {
  display: block;
  width: max-content;
  margin: 0 auto 12px;
  padding: 6px 14px;
  background: var(--rust);
  color: var(--cream);
  font-family: var(--display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
}

.pre-launch-note {
  margin: 0 auto 24px;
  max-width: 460px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.booking-form-locked {
  position: relative;
  width: min(100%, 720px);
  margin: 0 auto 8px;
}

.booking-form-locked .booking-form {
  opacity: 0.38;
  filter: saturate(0.6);
  pointer-events: none;
  user-select: none;
}

.locked-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
}

.locked-overlay span {
  padding: 6px 14px;
  background: rgba(247, 243, 230, 0.94);
  border: 1px solid rgba(59, 40, 26, 0.28);
  color: var(--brown);
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.locked-icon {
  width: 30px;
  height: 30px;
  color: var(--brown);
  background: rgba(247, 243, 230, 0.94);
  padding: 5px;
  border: 1px solid rgba(59, 40, 26, 0.28);
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.waitlist-form.is-primary {
  position: relative;
  margin-top: 8px;
  padding: 28px 22px 30px;
  background: rgba(134, 70, 56, 0.06);
  border: 1px solid rgba(134, 70, 56, 0.28);
  border-radius: 4px;
}

.waitlist-form.is-primary h3 {
  color: var(--rust);
}

.booking-form,
.waitlist-form {
  display: grid;
  gap: 14px;
  width: min(100%, 720px);
  margin: 0 auto;
}

label span,
.booking-form span {
  display: block;
  margin-bottom: 7px;
  color: var(--brown);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  min-height: 54px;
  padding: 12px;
  color: var(--brown);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(59, 40, 26, 0.35);
  border-radius: 0;
}

input:focus,
select:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(143, 104, 60, 0.45);
  outline-offset: 3px;
}

.full {
  grid-column: 1 / -1;
}

.or-divider {
  position: relative;
  display: grid;
  width: min(100%, 720px);
  place-items: center;
  margin: 26px auto;
  color: var(--cream);
  text-transform: uppercase;
}

.or-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}

.or-divider span {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--brown);
  border-radius: 50%;
  font-family: var(--western);
  font-size: 0.8rem;
}

.waitlist-form {
  text-align: center;
}

.waitlist-form h3 {
  font-size: 1.78rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-shadow: 0.5px 0 currentColor;
}

.waitlist-form p {
  margin: 0 auto;
  max-width: 500px;
  color: var(--muted);
}

.email-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 10px;
}

.form-note {
  min-height: 24px;
  color: var(--rust);
  font-weight: 700;
}

.email-note {
  margin-top: 12px;
  color: rgba(33, 21, 14, 0.72);
  font-size: 0.82rem;
  line-height: 1.45;
}

.booking-panel::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 36px;
  background:
    var(--paint-grain),
    linear-gradient(180deg, rgba(33, 21, 14, 0) 0%, var(--brown) 70%, var(--brown) 100%);
  background-size: 17px 17px, 25px 25px, auto, auto;
  pointer-events: none;
  clip-path: polygon(
    0 12px, 3% 4px, 6% 11px, 9% 2px, 12% 9px, 15% 14px, 18% 6px, 21% 11px,
    24% 2px, 27% 10px, 30% 5px, 33% 13px, 36% 3px, 39% 9px, 42% 6px, 45% 12px,
    48% 2px, 51% 10px, 54% 5px, 57% 13px, 60% 4px, 63% 11px, 66% 7px, 69% 14px,
    72% 3px, 75% 10px, 78% 5px, 81% 12px, 84% 2px, 87% 9px, 90% 14px, 93% 4px,
    96% 11px, 100% 7px,
    100% 100%, 0 100%
  );
}

.story-strip {
  position: relative;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 16px;
  padding: 28px 18px 32px;
  background:
    var(--paint-grain),
    linear-gradient(135deg, rgba(143, 104, 60, 0.16), transparent 48%),
    var(--brown);
  background-size: 17px 17px, 25px 25px, 100% 100%, auto;
  color: var(--cream);
  border-top: 1px solid rgba(143, 104, 60, 0.32);
}

.polaroid {
  display: block;
  max-width: 118px;
  padding: 6px 6px 20px;
  background: #ece2c9;
  box-shadow: 0 14px 22px rgba(0, 0, 0, 0.4);
  transform: rotate(-3deg);
}

.polaroid img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  filter: saturate(0) contrast(1.05) brightness(0.95);
}

.story-strip-copy .script-line.gold {
  margin: 0;
  color: #d5a44d;
  font-size: clamp(1rem, 4.8vw, 1.4rem);
  white-space: nowrap;
}

.star-rule.story-star {
  width: 80%;
  margin: 6px 0 10px;
}

.star-rule.story-star::before,
.star-rule.story-star::after {
  background: rgba(213, 164, 77, 0.45);
}

.star-rule.story-star span {
  width: 9px;
  height: 9px;
  margin: 0 9px;
  background: #d5a44d;
}

.story-strip-body {
  margin: 0 0 12px;
  color: rgba(247, 243, 230, 0.92);
  font-size: 0.86rem;
  line-height: 1.3;
}

.story-strip-caption {
  margin: 0;
  color: #d5a44d;
  font-family: var(--display);
  font-size: clamp(0.52rem, 2.3vw, 0.66rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.booking-proof {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 116px;
  background:
    var(--paint-grain),
    var(--green);
  background-size: 17px 17px, 25px 25px, 100% 100%, auto;
  border-top: 1px solid rgba(143, 104, 60, 0.75);
  color: var(--cream);
}

.booking-proof p,
.booking-proof .proof-sub {
  margin: 5px 0 0;
  display: block;
  color: rgba(247, 243, 230, 0.72);
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-proof strong {
  line-height: 1.18;
}

.chair-icon::before,
.boot-icon::before {
  content: "";
  position: absolute;
  inset: 6px 7px 8px;
  border: 2px solid currentColor;
}

.chair-icon::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 2px;
  height: 10px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.horseshoe-icon::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 24px;
  height: 26px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-top-left-radius: 14px 18px;
  border-top-right-radius: 14px 18px;
}

.horseshoe-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: 1px;
  width: 3px;
  height: 4px;
  background: currentColor;
  box-shadow: 21px 0 0 0 currentColor;
}

.boot-icon::before {
  transform: skew(-8deg);
}

.boot-icon::after {
  content: "";
  position: absolute;
  left: 7px;
  bottom: 3px;
  width: 25px;
  height: 8px;
  border: 2px solid currentColor;
  border-top: 0;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 36px 20px 40px;
  background: var(--brown-deep);
  color: rgba(247, 243, 230, 0.85);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--cream);
  font-family: var(--western);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0.55px 0 currentColor;
}

.site-footer p:not(:first-child) {
  color: #d5a44d;
  font-family: var(--script);
  font-size: 1.15rem;
  line-height: 1.2;
}

@media (min-width: 720px) {
  .site-header {
    justify-content: space-between;
  }

  .brand {
    font-size: 1.35rem;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.8rem, 7vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.6rem, 5vw, 3.4rem);
  }

  h3 {
    font-size: clamp(1.6rem, 2.6vw, 2rem);
  }

  .script-line {
    max-width: none;
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  }

  .experience-heading {
    padding: 86px 20px 36px;
  }

  .experience-heading h2 {
    font-size: clamp(2.4rem, 4vw, 3rem);
  }

  .experience-heading .script-line {
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  }

  .booking-panel h2 {
    font-size: clamp(2.2rem, 3.6vw, 2.8rem);
  }

  .booking-subtitle {
    font-size: clamp(1.6rem, 2.6vw, 2rem);
  }

  .waitlist-form h3 {
    font-size: clamp(1.8rem, 2.8vw, 2.2rem);
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    gap: 28px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav a {
    padding: 0;
    border: 0;
    font-family: var(--body);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .hero-content {
    padding: 96px clamp(36px, 6vw, 96px) 168px;
  }

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

  .promise {
    padding: 96px 0;
  }

  .promise-grid,
  .split-heading {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: end;
  }

  .promise h2,
  .rooms-preview h2,
  .guide-copy h2 {
    max-width: 14ch;
  }

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

  .experience-tile {
    grid-template-columns: 1.4fr 1fr;
    min-height: 360px;
  }

  .tile-pool,
  .tile-guide {
    grid-template-columns: 1fr 1.4fr;
  }

  .tile-pool img,
  .tile-guide img {
    order: 2;
  }

  .tile-copy {
    padding: 28px 28px;
  }

  .tile-copy h3 {
    font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  }

  .tile-copy p {
    font-size: 1rem;
    line-height: 1.35;
  }

  .tile-copy a,
  .text-link {
    font-size: 0.78rem;
  }

  .rooms-preview {
    padding: 96px 0;
  }

  .room-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 44px;
  }

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

  .guide > img {
    min-height: 560px;
    height: 100%;
  }

  .guide-copy {
    display: grid;
    align-content: center;
    padding: clamp(48px, 7vw, 96px);
  }

  .booking {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "panel proof"
      "story story";
  }

  .booking-panel { grid-area: panel; }
  .booking-proof { grid-area: proof; }
  .story-strip {
    grid-area: story;
    grid-template-columns: 0.45fr 1fr;
    gap: 36px;
    padding: 48px clamp(36px, 6vw, 96px);
    align-items: center;
  }

  .story-strip-copy {
    max-width: 620px;
  }

  .story-strip-copy .script-line.gold {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
  }

  .story-strip-body {
    font-size: 1.05rem;
  }

  .story-strip-caption {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
  }

  .polaroid {
    max-width: 200px;
    margin-left: auto;
  }

  .booking-panel {
    padding: clamp(96px, 9vw, 128px) clamp(48px, 6vw, 88px) clamp(64px, 7vw, 96px);
  }

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

  .email-row {
    grid-template-columns: 1fr auto;
    gap: 0;
  }

  .email-row .button {
    min-width: 150px;
  }

  .booking-proof {
    grid-template-columns: 1fr;
    align-content: center;
    min-height: auto;
    padding: 48px 24px;
    border-top: 0;
    border-left: 1px solid rgba(143, 104, 60, 0.75);
  }

  .booking-proof div {
    padding: 24px 12px;
  }

  .booking-proof div + div {
    border-left: 0;
    border-top: 1px solid rgba(143, 104, 60, 0.55);
  }
}

@media (min-width: 1080px) {
  .hero {
    min-height: 92svh;
  }

  .hero-content {
    min-height: 92svh;
    padding-bottom: 180px;
  }

  .promise h2,
  .rooms-preview h2,
  .guide-copy h2 {
    font-size: clamp(2.8rem, 4.4vw, 4rem);
  }
}

@media (max-width: 420px) {
  .hero-actions {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .proof-strip strong,
  .booking-proof strong {
    font-size: 0.62rem;
  }

  .line-icon {
    transform: scale(0.85);
  }
}

@media (max-width: 520px) {
  .hero-content {
    width: 390px;
    max-width: 100%;
  }

  .hero-copy,
  .script-line {
    max-width: 330px;
  }

  .hero-actions {
    width: 330px;
    max-width: 100%;
  }

  .proof-strip {
    width: 390px;
    max-width: 100%;
  }
}
