:root {
  --ink: #0a0b09;
  --ink-soft: #141510;
  --cream: #f3ebdd;
  --cream-deep: #e8deca;
  --lime: #d6f45b;
  --brass: #b58a4b;
  --brass-bright: #d4a963;
  --white: #fffaf0;
  --line-dark: rgba(10, 11, 9, 0.2);
  --line-light: rgba(243, 235, 221, 0.2);
  --display: "Instrument Serif", Georgia, serif;
  --condensed: "Archivo Narrow", "Arial Narrow", sans-serif;
  --body: "Manrope", sans-serif;
  --header-height: 96px;
  --shell: min(1420px, calc(100vw - 96px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

.section-cream {
  position: relative;
  background:
    radial-gradient(circle at 82% 12%, rgba(181, 138, 75, 0.08), transparent 26%),
    var(--cream);
}

.section-cream::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.section-dark {
  color: var(--cream);
  background:
    radial-gradient(circle at 10% 0%, rgba(181, 138, 75, 0.17), transparent 25%),
    var(--ink);
}

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

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
}

.eyebrow {
  margin: 0;
  font-family: var(--condensed);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--brass);
}

.eyebrow-brass {
  color: var(--brass-bright);
}

.display {
  max-width: 15ch;
  margin: 26px 0 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 6.4vw, 7.75rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.display-light {
  color: var(--cream);
}

.display em,
.hero h1 em,
.local h2 em {
  font-weight: 400;
  color: var(--brass-bright);
}

.button,
.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-family: var(--condensed);
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.button {
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

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

.button-brass {
  color: var(--cream);
  border-color: var(--brass);
  background: rgba(10, 11, 9, 0.32);
}

.button-brass:hover {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.button-ink {
  color: var(--lime);
  background: var(--ink);
}

.button-ink:hover {
  color: var(--cream);
}

.button-outline {
  border-color: var(--brass);
  background: transparent;
}

.button-outline:hover {
  color: var(--cream);
  background: var(--ink);
  border-color: var(--ink);
}

.button-cream {
  width: 100%;
  color: var(--ink);
  background: var(--cream);
}

.button-cream:hover {
  background: var(--lime);
}

.text-link {
  padding: 8px 0 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 260ms ease;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.text-link-light {
  color: var(--cream);
}

.text-link-lime {
  color: var(--lime);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  width: 100%;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding-inline: 48px;
  color: var(--cream);
  border-bottom: 1px solid rgba(243, 235, 221, 0.18);
  transition: height 240ms ease, color 240ms ease, background 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled {
  height: 76px;
  color: var(--cream);
  background: rgba(10, 11, 9, 0.86);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 180px;
}

.brand-mark {
  font-family: var(--display);
  font-size: 3rem;
  line-height: 0.8;
  color: var(--brass-bright);
}

.brand-name {
  padding-left: 14px;
  font-family: var(--condensed);
  font-size: 0.78rem;
  line-height: 1.15;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-left: 1px solid var(--brass);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 58px);
  font-family: var(--condensed);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-book) {
  position: relative;
  padding: 10px 0;
}

.site-nav > a:not(.nav-book)::after {
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav > a:not(.nav-book):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-book {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 22px;
  padding-inline: 18px;
  border: 1px solid var(--brass);
}

.nav-book:hover {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: end start;
  overflow: hidden;
  color: var(--cream);
  background: var(--ink);
}

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

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
  animation: hero-scale 1.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 6, 5, 0.88) 0%, rgba(5, 6, 5, 0.3) 50%, rgba(5, 6, 5, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 6, 5, 0.9) 0%, transparent 55%),
    linear-gradient(180deg, rgba(5, 6, 5, 0.48) 0%, transparent 25%);
}

.hero-grain {
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-content {
  z-index: 2;
  padding-top: 190px;
  padding-bottom: 124px;
}

.hero-eyebrow {
  margin-bottom: 26px;
  color: var(--lime);
  animation: fade-up 0.8s 0.25s both;
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.5rem, 7.9vw, 10rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.055em;
  animation: fade-up 1s 0.15s both;
}

.hero-bottom {
  display: grid;
  max-width: 960px;
  grid-template-columns: minmax(260px, 0.8fr) 1.2fr;
  gap: 76px;
  align-items: end;
  margin-top: 40px;
  animation: fade-up 0.9s 0.45s both;
}

.hero-bottom > p {
  max-width: 38ch;
  margin: 0;
  color: rgba(243, 235, 221, 0.82);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 42px;
}

.hero-rail {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: grid;
  height: 58px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding-inline: 48px;
  font-family: var(--condensed);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-top: 1px solid rgba(243, 235, 221, 0.2);
}

.hero-rail span {
  text-align: center;
  border-right: 1px solid rgba(243, 235, 221, 0.18);
}

.hero-rail span:last-child {
  border-right: 0;
}

.experience {
  display: grid;
  min-height: 900px;
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.92fr);
}

.experience-image {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.experience-image img {
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.photo-note {
  position: absolute;
  right: 24px;
  bottom: 18px;
  margin: 0;
  padding: 8px 12px;
  font-family: var(--condensed);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--cream);
  text-transform: uppercase;
  background: var(--ink);
}

.section-pad {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px clamp(48px, 7vw, 130px);
}

.experience-copy .display {
  max-width: 10ch;
  font-size: clamp(4rem, 5.8vw, 7rem);
}

.lede {
  max-width: 41ch;
  margin: 38px 0 46px;
  font-size: 1.08rem;
}

.service-list {
  max-width: 620px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
  border-bottom: 1px solid var(--line-dark);
}

.service-list span {
  font-family: var(--condensed);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--brass);
}

.location-note {
  max-width: 24ch;
  margin: 0 0 32px;
  padding-left: 20px;
  font-family: var(--display);
  font-style: italic;
  border-left: 1px solid var(--brass);
}

.experience-copy .text-link {
  align-self: flex-start;
}

.drinks {
  overflow: hidden;
  padding: 160px 0 140px;
  border-top: 1px solid var(--line-dark);
}

.drinks-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
}

.drinks-heading .display {
  max-width: 10ch;
}

.drinks-intro {
  max-width: 38ch;
  margin: 0 0 18px auto;
}

.drink-stage {
  display: grid;
  min-height: 680px;
  grid-template-columns: 0.84fr 1.35fr 0.86fr;
  gap: 18px;
  align-items: end;
  margin-top: 74px;
}

.drink-card {
  position: relative;
  z-index: 1;
  min-height: 500px;
  overflow: hidden;
  background: var(--ink);
}

.drink-card img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
  transition: filter 500ms ease, transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.drink-card:hover img {
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.035);
}

.drink-one {
  height: 560px;
  transform: translateY(-36px);
}

.drink-one img {
  object-position: 38% center;
}

.drink-two {
  height: 600px;
}

.drink-two img {
  object-position: 45% center;
}

.drink-three {
  height: 520px;
  transform: translateY(30px);
}

.drink-three img {
  object-position: 35% center;
}

.drink-card::after {
  position: absolute;
  inset: 42% 0 0;
  content: "";
  background: linear-gradient(0deg, rgba(10, 11, 9, 0.9), transparent);
}

.drink-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  color: var(--cream);
}

.drink-caption span,
.package-no {
  font-family: var(--display);
  font-size: 2.8rem;
  color: var(--brass-bright);
}

.drink-caption h3 {
  margin: 4px 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.7vw, 3.3rem);
  font-weight: 400;
  line-height: 0.95;
}

.drink-caption p {
  margin: 0;
  font-family: var(--condensed);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.drink-index {
  position: absolute;
  right: -7vw;
  bottom: -200px;
  z-index: 0;
  font-family: var(--display);
  font-size: clamp(20rem, 34vw, 40rem);
  line-height: 0.7;
  color: rgba(181, 138, 75, 0.18);
}

.drinks-foot {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-top: 86px;
}

.drinks-foot p {
  max-width: 48ch;
  margin: 0;
}

.packages {
  padding-top: 130px;
}

.packages-heading {
  padding-bottom: 74px;
}

.packages-heading .display {
  max-width: 13ch;
  margin-bottom: 28px;
}

.packages-heading > p:last-child {
  margin: 0;
  color: rgba(243, 235, 221, 0.7);
}

.package-grid {
  display: grid;
  min-height: 690px;
  grid-template-columns: 1fr 1.08fr 1fr;
  border-top: 1px solid var(--line-light);
}

.package {
  position: relative;
  display: flex;
  min-height: 690px;
  flex-direction: column;
  justify-content: space-between;
  padding: 62px clamp(30px, 4vw, 70px) 54px;
  overflow: hidden;
  border-right: 1px solid var(--line-light);
}

.package:last-child {
  border-right: 0;
}

.package h3 {
  margin: 22px 0 28px;
  font-family: var(--display);
  font-size: clamp(3rem, 4.8vw, 6rem);
  font-weight: 400;
  line-height: 0.88;
}

.package p {
  max-width: 30ch;
}

.package-no {
  align-self: flex-end;
}

.package-lime {
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-18px);
}

.package-lime .package-no {
  color: rgba(10, 11, 9, 0.35);
}

.package-photo {
  color: var(--cream);
}

.package-photo > img,
.package-photo-shade {
  position: absolute;
  inset: 0;
}

.package-photo > img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.package-photo-shade {
  background: linear-gradient(0deg, rgba(10, 11, 9, 0.95), rgba(10, 11, 9, 0.34));
}

.package-photo > *:not(img, .package-photo-shade) {
  position: relative;
  z-index: 2;
}

.package-includes {
  font-family: var(--condensed);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--brass-bright);
  text-transform: uppercase;
}

.gallery {
  padding: 170px 0 90px;
  overflow: hidden;
}

.gallery-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
}

.gallery-heading .display {
  max-width: 13ch;
}

.gallery-heading-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.gallery-heading-side p {
  margin: 0;
  font-family: var(--condensed);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--brass-bright);
  text-transform: uppercase;
}

.gallery-accordion {
  display: flex;
  height: 610px;
  border-top: 1px solid var(--brass);
  border-bottom: 1px solid var(--brass);
}

.gallery-panel {
  position: relative;
  flex: 0.72;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-right: 1px solid var(--brass);
  background: var(--ink);
  cursor: pointer;
  transition: flex 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-panel:last-child {
  border-right: 0;
}

.gallery-panel.is-active,
.gallery-panel:hover,
.gallery-panel:focus-visible {
  flex: 1.85;
}

.gallery-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.82);
  transition: filter 400ms ease, transform 800ms ease;
}

.gallery-panel.is-active img,
.gallery-panel:hover img {
  filter: brightness(0.93) saturate(1);
  transform: scale(1.02);
}

.gallery-panel span {
  position: absolute;
  top: 20px;
  right: 18px;
  z-index: 2;
  padding: 10px 8px;
  font-family: var(--condensed);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--brass-bright);
  text-transform: uppercase;
  background: rgba(10, 11, 9, 0.7);
  writing-mode: vertical-rl;
}

.gallery-progress {
  width: calc(100% - 96px);
  height: 1px;
  margin: 48px auto 0;
  background: rgba(181, 138, 75, 0.4);
}

.gallery-progress span {
  display: block;
  width: 22%;
  height: 3px;
  background: var(--lime);
  transform: translateY(-1px);
}

.process {
  padding: 160px 0 120px;
}

.process-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: start;
}

.process-top .display {
  max-width: 12ch;
}

.process-photo {
  width: min(100%, 430px);
  margin: 0 0 0 auto;
  padding: 8px;
  border: 1px solid var(--brass);
}

.process-photo img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 60%;
}

.process-photo figcaption,
.crew-print figcaption {
  padding: 10px 2px 2px;
  font-family: var(--condensed);
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
  margin-top: 100px;
  padding-top: 56px;
  list-style: none;
  border-top: 1px solid var(--brass);
}

.process-steps::before,
.process-steps::after {
  position: absolute;
  top: -5px;
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: var(--brass);
}

.process-steps::before {
  left: 0;
}

.process-steps::after {
  right: 0;
}

.process-steps li {
  position: relative;
}

.process-steps li:nth-child(2)::before {
  position: absolute;
  top: -61px;
  left: 50%;
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: var(--brass);
}

.process-steps span {
  font-family: var(--display);
  font-size: 3.6rem;
  color: var(--brass);
}

.process-steps h3 {
  margin: 10px 0 18px;
  font-family: var(--condensed);
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.process-steps p {
  max-width: 28ch;
  margin: 0;
}

.process-cta {
  display: flex;
  justify-content: flex-end;
  margin-top: 72px;
}

.local {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  color: var(--cream);
  background: var(--ink);
}

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

.local-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.local-shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.96) 0%, rgba(5, 5, 4, 0.82) 35%, rgba(5, 5, 4, 0.15) 76%),
    linear-gradient(0deg, rgba(5, 5, 4, 0.76), transparent 55%);
}

.local-content {
  z-index: 2;
  padding-top: 135px;
  padding-bottom: 130px;
}

.local-content .display {
  max-width: 11ch;
  font-size: clamp(4rem, 6.8vw, 8.2rem);
}

.local-copy {
  max-width: 46ch;
  margin: 42px 0 34px;
  color: rgba(243, 235, 221, 0.82);
}

.crew-print {
  position: absolute;
  right: 6vw;
  bottom: 70px;
  z-index: 3;
  width: min(28vw, 440px);
  margin: 0;
  padding: 9px 9px 6px;
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
  transform: rotate(1deg);
}

.crew-print img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 62%;
}

.place-rail {
  position: absolute;
  top: 50%;
  left: 26px;
  z-index: 4;
  margin: 0;
  font-family: var(--condensed);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--brass-bright);
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left top;
}

.booking {
  display: grid;
  min-height: 800px;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--lime);
}

.booking-intro,
.booking-form {
  padding: clamp(90px, 9vw, 150px) clamp(48px, 7vw, 120px);
}

.booking-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-intro .display {
  max-width: 8ch;
  font-size: clamp(5rem, 7.6vw, 9rem);
}

.booking-intro > p:not(.eyebrow, .booking-types) {
  max-width: 43ch;
  margin: 44px 0;
  font-size: 1.1rem;
}

.booking-types {
  margin: auto 0 0;
  font-family: var(--condensed);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--cream);
  background: var(--ink);
}

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

.field {
  position: relative;
  display: flex;
  min-height: 94px;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 18px;
}

.field label {
  margin-bottom: 5px;
  font-family: var(--condensed);
  font-size: 0.75rem;
  letter-spacing: 0.17em;
  color: rgba(243, 235, 221, 0.72);
  text-transform: uppercase;
}

.field input {
  width: 100%;
  height: 48px;
  padding: 0;
  color: var(--cream);
  border: 0;
  border-bottom: 1px solid rgba(243, 235, 221, 0.5);
  border-radius: 0;
  outline: none;
  background: transparent;
  transition: border-color 200ms ease;
}

.field input:focus {
  border-color: var(--lime);
}

.field input::placeholder {
  color: rgba(243, 235, 221, 0.3);
}

.field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.7;
}

.field.is-invalid input {
  border-color: #ff8a72;
}

.field-error {
  position: absolute;
  bottom: -20px;
  left: 0;
  font-size: 0.68rem;
  color: #ffab96;
}

.form-submit {
  margin-top: 34px;
}

.form-note,
.form-status {
  margin: 24px 0 0;
  font-size: 0.82rem;
  color: rgba(243, 235, 221, 0.68);
}

.form-note a {
  font-weight: 600;
  color: var(--lime);
}

.form-status {
  min-height: 1.5em;
  color: var(--lime);
}

.site-footer {
  display: grid;
  min-height: 150px;
  grid-template-columns: 1.1fr 1.25fr 1fr 0.75fr 0.9fr;
  align-items: center;
  gap: 32px;
  padding: 34px 48px;
  font-family: var(--condensed);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--cream);
  text-transform: uppercase;
  background: var(--ink);
  border-top: 1px solid var(--line-light);
}

.site-footer > * {
  min-height: 50px;
  margin: 0;
  padding-right: 24px;
  border-right: 1px solid rgba(181, 138, 75, 0.6);
}

.site-footer > *:last-child {
  padding-right: 0;
  border-right: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-content: center;
}

.site-footer a:not(.brand):hover {
  color: var(--lime);
}

.footer-brand {
  min-width: 0;
}

.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  font-family: var(--condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-transform: uppercase;
  background: var(--lime);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.whatsapp-fab:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
}

.whatsapp-fab svg {
  width: 22px;
  fill: currentColor;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  color: var(--cream);
  border: 0;
  background: rgba(5, 5, 4, 0.96);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
}

.lightbox[open] {
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  place-items: center;
}

.lightbox figure {
  display: flex;
  width: min(82vw, 1320px);
  height: min(82vh, 820px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.lightbox figure img {
  width: 100%;
  height: calc(100% - 50px);
  object-fit: contain;
}

.lightbox figcaption {
  min-height: 40px;
  padding-top: 14px;
  font-family: var(--condensed);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--brass-bright);
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-nav {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 2;
  font-family: var(--condensed);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lightbox-nav {
  font-family: var(--display);
  font-size: 2.5rem;
  color: var(--brass-bright);
}

.reveal,
.reveal-image {
  opacity: 0;
  transition: opacity 800ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal {
  transform: translateY(34px);
}

.reveal-image {
  transform: translateY(36px) scale(0.985);
}

.reveal.is-visible,
.reveal-image.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-scale {
  from { transform: scale(1.08); opacity: 0.7; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 52px, 960px);
  }

  .site-header {
    padding-inline: 26px;
  }

  .site-nav {
    gap: 24px;
  }

  .site-nav a:not(.nav-book) {
    display: none;
  }

  .hero-content {
    padding-bottom: 140px;
  }

  .experience {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .section-pad {
    padding: 90px 50px;
  }

  .drink-stage {
    min-height: 560px;
  }

  .drink-card,
  .drink-one,
  .drink-two,
  .drink-three {
    height: 500px;
    min-height: 500px;
  }

  .package-grid {
    min-height: 620px;
  }

  .package {
    min-height: 620px;
  }

  .package h3 {
    font-size: 4rem;
  }

  .gallery-accordion {
    height: 520px;
  }

  .local {
    min-height: 820px;
  }

  .booking-intro,
  .booking-form {
    padding: 90px 54px;
  }

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

  .site-footer > * {
    border-right: 0;
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 76px;
    --shell: calc(100% - 36px);
  }

  body {
    font-size: 15px;
  }

  .display {
    font-size: clamp(3.6rem, 16vw, 5.8rem);
  }

  .site-header,
  .site-header.is-scrolled {
    height: 76px;
    padding-inline: 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    font-size: 2.55rem;
  }

  .brand-name {
    font-size: 0.67rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 48px;
    height: 48px;
    place-content: center;
    gap: 8px;
    padding: 0;
    color: var(--cream);
    border: 1px solid rgba(243, 235, 221, 0.35);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    padding: 116px 28px 50px;
    color: var(--cream);
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity 260ms ease, transform 260ms ease, visibility 0s 260ms;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: none;
    transition-delay: 0s;
  }

  .site-nav a:not(.nav-book) {
    display: block;
  }

  .site-nav > a {
    padding: 18px 0 !important;
    font-family: var(--display);
    font-size: clamp(2.6rem, 11vw, 4.4rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    text-transform: none;
    border-bottom: 1px solid var(--line-light);
  }

  .nav-book {
    min-height: 64px;
    justify-content: space-between;
    margin-top: 28px;
    padding-inline: 18px !important;
    font-family: var(--condensed) !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
  }

  .hero {
    min-height: 920px;
  }

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

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(5, 6, 5, 0.97) 0%, rgba(5, 6, 5, 0.4) 70%, rgba(5, 6, 5, 0.22) 100%),
      linear-gradient(90deg, rgba(5, 6, 5, 0.45), transparent);
  }

  .hero-content {
    padding: 180px 0 158px;
  }

  .hero h1 {
    max-width: 8ch;
    font-size: clamp(4.6rem, 20vw, 7.2rem);
    line-height: 0.82;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 34px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .hero-rail {
    height: 90px;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 0;
    padding: 14px 18px;
  }

  .hero-rail span:nth-child(2) {
    border-right: 0;
  }

  .experience {
    display: block;
  }

  .experience-image {
    min-height: 620px;
  }

  .section-pad {
    padding: 100px 18px;
  }

  .experience-copy .display {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .drinks {
    padding: 110px 0 100px;
  }

  .drinks-heading {
    display: block;
  }

  .drinks-intro {
    margin: 32px 0 0;
  }

  .drink-stage {
    display: flex;
    min-height: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .drink-card,
  .drink-one,
  .drink-two,
  .drink-three {
    width: 100%;
    height: 520px;
    min-height: 520px;
    transform: none;
  }

  .drink-two {
    margin-left: 0;
  }

  .drink-index {
    right: -15vw;
    bottom: -100px;
    font-size: 20rem;
  }

  .drinks-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
    margin-top: 62px;
  }

  .packages {
    padding-top: 100px;
  }

  .package-grid {
    display: block;
  }

  .package {
    min-height: 590px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .package-lime {
    transform: none;
  }

  .gallery {
    padding: 110px 0 76px;
  }

  .gallery-heading {
    display: block;
    margin-bottom: 52px;
  }

  .gallery-heading-side {
    align-items: flex-start;
    margin-top: 30px;
  }

  .gallery-accordion {
    height: auto;
    flex-direction: column;
  }

  .gallery-panel,
  .gallery-panel.is-active,
  .gallery-panel:hover {
    width: 100%;
    height: 150px;
    flex: none;
    border-right: 0;
    border-bottom: 1px solid var(--brass);
    transition: height 500ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .gallery-panel.is-active,
  .gallery-panel:hover {
    height: 440px;
  }

  .gallery-panel span {
    writing-mode: horizontal-tb;
  }

  .gallery-progress {
    width: calc(100% - 36px);
  }

  .process {
    padding: 110px 0 90px;
  }

  .process-top {
    display: block;
  }

  .process-photo {
    width: 100%;
    margin-top: 50px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 74px;
    padding-top: 0;
    border-top: 0;
    border-left: 1px solid var(--brass);
  }

  .process-steps::before,
  .process-steps::after,
  .process-steps li:nth-child(2)::before {
    display: none;
  }

  .process-steps li {
    padding: 4px 0 46px 34px;
  }

  .process-steps li::before {
    position: absolute;
    top: 23px;
    left: -5px;
    width: 9px;
    height: 9px;
    content: "";
    border-radius: 50%;
    background: var(--brass);
  }

  .process-cta {
    justify-content: flex-start;
    margin-top: 24px;
  }

  .local {
    min-height: 960px;
  }

  .local-shade {
    background:
      linear-gradient(0deg, rgba(5, 5, 4, 0.98) 0%, rgba(5, 5, 4, 0.65) 68%, rgba(5, 5, 4, 0.1) 100%),
      linear-gradient(90deg, rgba(5, 5, 4, 0.6), transparent);
  }

  .local-content {
    padding-top: 100px;
  }

  .local-content .display {
    max-width: 8ch;
    font-size: clamp(3.9rem, 17vw, 6.2rem);
  }

  .crew-print {
    right: 18px;
    bottom: 42px;
    width: calc(100% - 92px);
  }

  .place-rail {
    display: none;
  }

  .booking {
    display: block;
  }

  .booking-intro,
  .booking-form {
    padding: 100px 18px;
  }

  .booking-intro {
    min-height: 720px;
  }

  .booking-intro .display {
    font-size: clamp(4.7rem, 20vw, 7.2rem);
  }

  .booking-types {
    margin-top: 70px;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 42px 18px 110px;
  }

  .site-footer > * {
    min-height: auto;
    padding: 18px 0;
    border-bottom: 1px solid var(--line-light);
  }

  .site-footer > *:last-child {
    border-bottom: 0;
  }

  .whatsapp-fab {
    right: 14px;
    bottom: 14px;
  }

  .lightbox[open] {
    grid-template-columns: 44px 1fr 44px;
  }

  .lightbox figure {
    width: calc(100vw - 96px);
  }
}

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

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

  .reveal,
  .reveal-image {
    opacity: 1;
    transform: none;
  }
}
