:root {
  --paper: #f3ecdf;
  --paper-soft: #fbf7ef;
  --ink: #231916;
  --ink-soft: #4d403a;
  --wine: #5c1723;
  --wine-deep: #381016;
  --wine-light: #8d3443;
  --brass: #c7a26b;
  --brass-pale: #dcc7a4;
  --line: rgba(35, 25, 22, 0.2);
  --line-light: rgba(243, 236, 223, 0.24);
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --gutter: clamp(1.25rem, 5vw, 5.5rem);
  --section-space: clamp(6rem, 12vw, 10rem);
  color-scheme: light;
  font-synthesis: none;
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  background: var(--wine);
  color: var(--paper-soft);
}

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

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

button {
  color: inherit;
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  background: #d8cbbb;
}

figure,
p,
h1,
h2,
h3,
address {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

h1 em,
h2 em {
  color: var(--brass-pale);
  font-weight: 400;
}

address {
  font-style: normal;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  border-radius: 999px;
  background: var(--paper-soft);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 180ms ease;
}

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

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

.eyebrow {
  margin-bottom: 1.6rem;
  color: currentColor;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 2.3rem;
  height: 1px;
  margin-right: 0.8rem;
  vertical-align: 0.28em;
  background: currentColor;
  content: "";
  opacity: 0.65;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.button--light {
  background: var(--paper-soft);
  color: var(--ink);
}

.button--light:hover {
  background: white;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: white;
}

.button--ghost:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

.button--dark {
  background: var(--ink);
  color: var(--paper-soft);
}

.button--dark:hover {
  background: var(--wine);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(0.25rem);
}

.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.65rem var(--gutter);
  color: var(--paper-soft);
}

.wordmark {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  font-family: var(--display);
  line-height: 0.75;
}

.wordmark span:first-child {
  font-size: clamp(2.1rem, 3.2vw, 3.25rem);
  letter-spacing: -0.08em;
}

.wordmark span:last-child {
  padding-bottom: 0.13rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.35rem, 2.7vw, 3rem);
  font-size: 0.73rem;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-call) {
  position: relative;
  padding-block: 0.5rem;
}

.site-nav > a:not(.nav-call)::after {
  position: absolute;
  right: 0;
  bottom: 0.18rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.site-nav > a:not(.nav-call):hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-call {
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.nav-call:hover {
  background: var(--paper-soft);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

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

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transform: scale(1.015);
  animation: hero-settle 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 9, 8, 0.78) 0%, rgba(18, 9, 8, 0.31) 52%, rgba(18, 9, 8, 0.25) 100%),
    linear-gradient(0deg, rgba(18, 9, 8, 0.65) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(81rem, 90vw);
  padding: 10rem 0 clamp(7rem, 13vh, 9.5rem) var(--gutter);
}

.hero-content .eyebrow {
  margin-bottom: clamp(2rem, 4vh, 3.2rem);
  color: var(--brass-pale);
}

.hero-content h1 {
  max-width: 9ch;
  font-size: clamp(5rem, 11.8vw, 10.8rem);
  line-height: 0.76;
  text-shadow: 0 0.06em 0.35em rgba(0, 0, 0, 0.22);
}

.hero-content h1 em {
  display: inline-block;
  padding-left: 0.48em;
  font-size: 0.8em;
  font-style: italic;
}

.hero-lede {
  max-width: 31rem;
  margin: clamp(2.4rem, 5vh, 3.6rem) 0 0 clamp(0rem, 11vw, 10rem);
  font-family: var(--display);
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2.2rem 0 0 clamp(0rem, 11vw, 10rem);
}

.hero-location {
  position: absolute;
  right: var(--gutter);
  bottom: 3rem;
  z-index: 2;
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.6;
  text-align: right;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 3rem;
  left: var(--gutter);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue span:last-child {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(12rem, 0.72fr) minmax(0, 1.5fr);
  gap: clamp(3rem, 8vw, 10rem);
  padding: var(--section-space) var(--gutter);
  background: var(--paper);
}

.intro-kicker {
  padding-top: 0.5rem;
}

.intro-index {
  margin-top: clamp(3rem, 10vw, 8rem);
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  font-style: italic;
  line-height: 1.45;
}

.intro-copy {
  max-width: 58rem;
}

.intro-copy h2,
.section-heading h2,
.gallery-heading h2,
.practical-copy h2 {
  font-size: clamp(3.3rem, 7.4vw, 7.2rem);
}

.intro-copy h2 em {
  color: var(--wine);
}

.intro-copy > p {
  max-width: 43rem;
  margin-left: clamp(0rem, 10vw, 9rem);
}

.intro-copy .intro-lede {
  margin-top: clamp(3rem, 6vw, 5rem);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  line-height: 1.42;
}

.intro-copy .text-link {
  margin: 1.2rem 0 0 clamp(0rem, 10vw, 9rem);
}

.offerings-section {
  padding: var(--section-space) var(--gutter);
  background:
    radial-gradient(circle at 88% 12%, rgba(199, 162, 107, 0.12), transparent 27rem),
    var(--wine);
  color: var(--paper-soft);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.section-heading .eyebrow {
  align-self: flex-start;
}

.section-heading h2 {
  width: min(8ch, 68vw);
}

.offerings-grid {
  display: grid;
  border-top: 1px solid var(--line-light);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.offering-card {
  min-height: 23rem;
  padding: 2rem clamp(1rem, 2vw, 2.2rem) 1.5rem;
  border-right: 1px solid var(--line-light);
}

.offering-card:last-child {
  border-right: 0;
}

.offering-number {
  display: block;
  margin-bottom: clamp(5rem, 10vw, 8rem);
  color: var(--brass-pale);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.offering-card h3 {
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 3vw, 3rem);
}

.offering-card p {
  max-width: 22rem;
  margin-bottom: 0;
  color: rgba(251, 247, 239, 0.75);
  font-size: 0.92rem;
}

.feature-story {
  display: grid;
  min-height: 50rem;
  grid-template-columns: minmax(0, 1.17fr) minmax(22rem, 0.83fr);
  background: var(--brass-pale);
}

.feature-story__image {
  min-height: 43rem;
  overflow: hidden;
}

.feature-story__image img {
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.feature-story__image:hover img {
  transform: scale(1.025);
}

.feature-story__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem) var(--gutter);
}

.feature-story__copy h2 {
  margin-bottom: 2.2rem;
  font-size: clamp(3.5rem, 6vw, 6.5rem);
}

.feature-story__copy p:not(.eyebrow) {
  max-width: 31rem;
  margin-bottom: 2.3rem;
}

.gallery-section {
  padding: var(--section-space) var(--gutter);
  background: var(--paper-soft);
}

.gallery-heading {
  display: grid;
  align-items: end;
  margin-bottom: clamp(4rem, 8vw, 7rem);
  grid-template-columns: minmax(10rem, 0.5fr) minmax(0, 1fr);
}

.gallery-heading h2 {
  max-width: 10ch;
}

.gallery-grid {
  display: grid;
  align-items: start;
  gap: clamp(1rem, 2.2vw, 2rem);
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.gallery-item {
  margin: 0;
  grid-column: span 4;
}

.gallery-item--wide {
  grid-column: span 7;
}

.gallery-item--portrait {
  grid-column: span 3;
}

.gallery-item:nth-child(2) {
  margin-top: clamp(3rem, 8vw, 8rem);
}

.gallery-item:nth-child(3) {
  margin-top: clamp(7rem, 13vw, 12rem);
  grid-column: span 2;
}

.gallery-item:nth-child(4) {
  margin-top: clamp(1rem, 4vw, 4rem);
  grid-column-start: 3;
}

.gallery-item:nth-child(5) {
  margin-top: clamp(6rem, 12vw, 11rem);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-item--portrait img {
  aspect-ratio: 3 / 5;
}

.gallery-item figcaption,
.bar-gallery figcaption {
  margin-top: 0.8rem;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.practical-section {
  display: grid;
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
  padding: var(--section-space) var(--gutter);
  border-top: 1px solid var(--line);
  background: var(--paper);
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
}

.practical-copy > p:last-child {
  max-width: 39rem;
  margin-top: 2.8rem;
}

.amenities-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  grid-template-columns: 1fr 1fr;
}

.amenities-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 4rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.amenities-list span {
  color: var(--wine);
}

.contact-section {
  display: grid;
  gap: clamp(3rem, 6vw, 6rem);
  padding: var(--section-space) var(--gutter) 0;
  background:
    radial-gradient(circle at 0 0, rgba(199, 162, 107, 0.13), transparent 30rem),
    var(--wine-deep);
  color: var(--paper-soft);
  grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
}

.contact-intro {
  max-width: 39rem;
}

.contact-intro .eyebrow {
  color: var(--brass-pale);
}

.contact-intro h2 {
  font-size: clamp(3.6rem, 6.7vw, 7rem);
}

.contact-intro > p:last-child {
  max-width: 32rem;
  margin-top: 2.5rem;
  color: rgba(251, 247, 239, 0.72);
}

.contact-details {
  display: grid;
  border-top: 1px solid var(--line-light);
  grid-template-columns: 1fr 1fr;
}

.contact-card {
  min-height: 13rem;
  padding: 1.8rem 1.3rem 1.5rem;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.contact-card:nth-child(even) {
  border-right: 0;
}

.contact-label {
  margin-bottom: 2.5rem;
  color: var(--brass-pale);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-card address {
  max-width: 18rem;
  margin-bottom: 1rem;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.1vw, 1.9rem);
  line-height: 1.28;
}

.contact-card .text-link {
  font-size: 0.65rem;
}

.contact-big-link {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.1vw, 3rem);
  line-height: 1.1;
  transition: color 180ms ease;
}

.contact-big-link:hover,
.contact-email:hover,
.contact-social a:hover {
  color: var(--brass-pale);
}

.contact-subline {
  margin: 0.65rem 0 0;
  color: rgba(251, 247, 239, 0.56);
  font-size: 0.74rem;
}

.contact-email {
  display: block;
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  transition: color 180ms ease;
}

.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-social a {
  transition: color 180ms ease;
}

.map-frame {
  position: relative;
  min-height: 28rem;
  margin: 0 calc(var(--gutter) * -1);
  grid-column: 1 / -1;
}

.map-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  content: "";
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 31rem;
  filter: sepia(0.14) saturate(0.72) contrast(0.95);
}

.site-footer {
  display: grid;
  gap: 2rem;
  padding: clamp(4rem, 8vw, 7rem) var(--gutter) 2rem;
  background: var(--ink);
  color: var(--paper-soft);
  grid-template-columns: 1fr 1fr 0.6fr;
}

.footer-wordmark {
  font-family: var(--display);
  font-size: clamp(4.5rem, 9vw, 9rem);
  letter-spacing: -0.08em;
  line-height: 0.7;
}

.footer-wordmark span {
  display: block;
  margin: 0.55rem 0 0 0.5rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.footer-copy {
  display: grid;
  align-items: start;
  gap: 2rem;
  color: rgba(251, 247, 239, 0.72);
  font-size: 0.86rem;
  grid-template-columns: 1fr 1fr;
}

.footer-copy a {
  color: var(--paper-soft);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links a {
  padding-bottom: 0.12rem;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  border-color: currentColor;
}

.footer-note {
  margin: 3rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(251, 247, 239, 0.46);
  font-size: 0.66rem;
  grid-column: 1 / -1;
}

/* Bar page */

.bar-hero {
  display: grid;
  min-height: 100svh;
  background: var(--wine-deep);
  color: var(--paper-soft);
  grid-template-columns: minmax(22rem, 0.78fr) minmax(0, 1.22fr);
}

.bar-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 11rem var(--gutter) 6rem;
}

.bar-hero__copy .eyebrow {
  color: var(--brass-pale);
}

.bar-hero__copy h1 {
  font-size: clamp(5.5rem, 9vw, 9.5rem);
}

.bar-hero__copy p:not(.eyebrow) {
  max-width: 25rem;
  margin: 2.8rem 0;
  color: rgba(251, 247, 239, 0.73);
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
}

.bar-hero__image {
  min-height: 100svh;
  overflow: hidden;
}

.bar-hero__image img {
  object-position: 53% center;
}

.bar-intro {
  display: grid;
  gap: clamp(3rem, 9vw, 10rem);
  padding: var(--section-space) var(--gutter);
  background: var(--paper);
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
}

.bar-intro__title h2 {
  font-size: clamp(4rem, 7.8vw, 8rem);
}

.bar-intro__title h2 em {
  color: var(--wine);
}

.bar-intro__copy {
  align-self: end;
  max-width: 36rem;
}

.bar-intro__copy .intro-lede {
  margin-bottom: 2rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.4;
}

.menu-section {
  display: grid;
  gap: clamp(3rem, 7vw, 7rem);
  padding: var(--section-space) var(--gutter);
  background: var(--paper-soft);
  grid-template-columns: minmax(17rem, 0.65fr) minmax(0, 1.35fr);
}

.menu-heading {
  position: sticky;
  top: 2rem;
  align-self: start;
}

.menu-heading h2 {
  font-size: clamp(4rem, 6.5vw, 6.7rem);
}

.menu-heading h2 em {
  color: var(--wine);
}

.menu-heading > p:last-child {
  max-width: 24rem;
  margin-top: 2.5rem;
}

.menu-grid {
  display: grid;
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
}

.menu-family {
  min-height: 19rem;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.menu-family:nth-child(even) {
  border-right: 0;
}

.menu-family .eyebrow {
  color: var(--wine);
}

.menu-family h3 {
  margin: clamp(3rem, 6vw, 5rem) 0 1.2rem;
  font-size: clamp(2.2rem, 3.8vw, 3.7rem);
}

.menu-family > p:last-child {
  max-width: 23rem;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.bar-gallery {
  display: grid;
  align-items: start;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  padding: var(--section-space) var(--gutter);
  background: var(--wine);
  color: var(--paper-soft);
  grid-template-columns: 1.1fr 0.6fr 0.45fr;
}

.bar-gallery figure {
  margin: 0;
}

.bar-gallery__main img {
  aspect-ratio: 4 / 5;
}

.bar-gallery__small {
  margin-top: clamp(6rem, 13vw, 13rem) !important;
}

.bar-gallery__small img {
  aspect-ratio: 1 / 1;
}

.bar-gallery__tall {
  margin-top: clamp(2rem, 6vw, 6rem) !important;
}

.bar-gallery__tall img {
  aspect-ratio: 0.54;
}

.bar-gallery img {
  width: 100%;
  object-fit: cover;
}

.bar-gallery figcaption {
  color: rgba(251, 247, 239, 0.6);
}

.private-section {
  display: grid;
  min-height: 47rem;
  background: var(--brass-pale);
  grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.85fr);
}

.private-section__image {
  min-height: 40rem;
}

.private-section__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: var(--section-space) var(--gutter);
}

.private-section__copy h2 {
  font-size: clamp(4.2rem, 7vw, 7rem);
}

.private-section__copy > p:not(.eyebrow) {
  max-width: 31rem;
  margin: 2.5rem 0;
}

/* 404 */

.page--not-found .site-header {
  color: var(--ink);
}

.page--not-found .nav-call {
  border-color: var(--line);
}

.not-found {
  position: relative;
  display: grid;
  min-height: 78svh;
  align-items: center;
  overflow: hidden;
  padding: 10rem var(--gutter) 7rem;
  background: var(--paper);
  grid-template-columns: 1fr 1fr;
}

.not-found__number {
  position: absolute;
  right: -0.03em;
  bottom: -0.16em;
  color: rgba(92, 23, 35, 0.09);
  font-family: var(--display);
  font-size: min(48vw, 42rem);
  letter-spacing: -0.12em;
  line-height: 0.75;
}

.not-found__copy {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  grid-column: 2;
}

.not-found__copy .eyebrow {
  color: var(--wine);
}

.not-found__copy h1 {
  font-size: clamp(4.5rem, 9vw, 9rem);
}

.not-found__copy > p:not(.eyebrow) {
  max-width: 31rem;
  margin: 2rem 0 2.5rem;
}

.not-found__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

html[data-enhanced="true"] .reveal {
  transform: translateY(1.5rem);
  opacity: 0;
  transition:
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 700ms ease;
}

html[data-enhanced="true"] .reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

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

@media (max-width: 880px) {
  .site-header {
    padding-block: 1.2rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: currentColor;
    font-size: 0.67rem;
    font-weight: 750;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .menu-toggle__lines,
  .menu-toggle__lines::before,
  .menu-toggle__lines::after {
    display: block;
    width: 1.7rem;
    height: 1px;
    background: currentColor;
    content: "";
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .menu-toggle__lines {
    position: relative;
  }

  .menu-toggle__lines::before {
    position: absolute;
    transform: translateY(-0.42rem);
  }

  .menu-toggle__lines::after {
    position: absolute;
    transform: translateY(0.42rem);
  }

  .nav-open .menu-toggle__lines {
    background: transparent;
  }

  .nav-open .menu-toggle__lines::before {
    transform: rotate(45deg);
  }

  .nav-open .menu-toggle__lines::after {
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    transform: translateX(100%);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 7rem var(--gutter);
    background: var(--wine-deep);
    color: var(--paper-soft);
    font-family: var(--display);
    font-size: clamp(2.7rem, 10vw, 5rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 0.95;
    text-transform: none;
    transition: transform 320ms cubic-bezier(0.6, 0, 0.25, 1);
  }

  .nav-open .site-nav {
    transform: translateX(0);
  }

  .site-nav > a:not(.nav-call) {
    padding-block: 0.2rem;
  }

  .site-nav > a:not(.nav-call)::after {
    display: none;
  }

  .nav-call {
    margin-top: 1.5rem;
    padding: 0.8rem 1.2rem;
    border-color: var(--line-light);
    font-family: var(--sans);
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .hero-content {
    width: 100%;
    padding-right: var(--gutter);
  }

  .hero-lede,
  .hero-actions {
    margin-left: 7vw;
  }

  .intro-section,
  .gallery-heading,
  .practical-section,
  .bar-intro,
  .menu-section {
    grid-template-columns: 1fr;
  }

  .intro-index {
    margin-top: 1rem;
  }

  .intro-copy > p,
  .intro-copy .text-link {
    margin-left: 7vw;
  }

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

  .offering-card:nth-child(2) {
    border-right: 0;
  }

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

  .feature-story,
  .private-section {
    grid-template-columns: 1fr;
  }

  .feature-story__image,
  .private-section__image {
    min-height: 70vw;
  }

  .gallery-heading {
    gap: 2rem;
  }

  .gallery-item,
  .gallery-item--wide,
  .gallery-item--portrait,
  .gallery-item:nth-child(3) {
    grid-column: span 6;
  }

  .gallery-item:nth-child(4) {
    grid-column-start: auto;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-details,
  .map-frame {
    grid-column: 1;
  }

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

  .footer-wordmark {
    grid-column: 1 / -1;
  }

  .bar-hero {
    grid-template-columns: 1fr;
  }

  .bar-hero__copy {
    position: relative;
    z-index: 2;
    min-height: 78svh;
    padding-top: 9rem;
    background:
      linear-gradient(90deg, rgba(39, 9, 14, 0.9), rgba(39, 9, 14, 0.45)),
      url("/assets/images/3.webp") center / cover;
  }

  .bar-hero__image {
    display: none;
  }

  .menu-heading {
    position: static;
  }

  .bar-gallery {
    grid-template-columns: 1.1fr 0.7fr;
  }

  .bar-gallery__tall {
    width: 70%;
    margin-top: 0 !important;
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 1.25rem;
    --section-space: 5.5rem;
  }

  .wordmark span:first-child {
    font-size: 2.3rem;
  }

  .hero {
    min-height: 47rem;
  }

  .hero-content {
    padding-top: 8.5rem;
    padding-bottom: 7.5rem;
  }

  .hero-content h1 {
    font-size: clamp(4.65rem, 23vw, 7.2rem);
  }

  .hero-content h1 em {
    padding-left: 0.18em;
  }

  .hero-lede,
  .hero-actions {
    margin-left: 0;
  }

  .hero-lede {
    max-width: 22rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 19rem;
  }

  .hero-location {
    display: none;
  }

  .scroll-cue {
    bottom: 1.7rem;
  }

  .intro-section {
    gap: 2.2rem;
  }

  .intro-copy h2,
  .section-heading h2,
  .gallery-heading h2,
  .practical-copy h2,
  .bar-intro__title h2,
  .menu-heading h2 {
    font-size: clamp(3.15rem, 15vw, 4.8rem);
  }

  .intro-copy > p,
  .intro-copy .text-link {
    margin-left: 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    width: auto;
  }

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

  .offering-card,
  .offering-card:nth-child(2) {
    min-height: auto;
    padding: 1.7rem 0 2.2rem;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .offering-number {
    margin-bottom: 3rem;
  }

  .feature-story__image,
  .private-section__image {
    min-height: 100vw;
  }

  .gallery-grid {
    gap: 1.5rem 0.8rem;
  }

  .gallery-item,
  .gallery-item--wide,
  .gallery-item--portrait,
  .gallery-item:nth-child(3) {
    margin-top: 0;
    grid-column: span 6;
  }

  .gallery-item--wide,
  .gallery-item:nth-child(5) {
    grid-column: 1 / -1;
  }

  .gallery-item figcaption {
    font-size: 0.59rem;
  }

  .practical-section {
    gap: 3.5rem;
  }

  .amenities-list {
    grid-template-columns: 1fr;
  }

  .contact-section {
    gap: 4rem;
  }

  .contact-intro h2 {
    font-size: clamp(3.25rem, 15vw, 4.7rem);
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .contact-card:nth-child(even) {
    min-height: auto;
    padding: 1.6rem 0 2rem;
    border-right: 0;
  }

  .contact-label {
    margin-bottom: 1.8rem;
  }

  .contact-big-link {
    font-size: 2rem;
  }

  .map-frame iframe {
    height: 25rem;
  }

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

  .footer-wordmark,
  .footer-note {
    grid-column: 1;
  }

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

  .bar-hero__copy {
    min-height: 43rem;
  }

  .bar-hero__copy h1 {
    font-size: clamp(5rem, 24vw, 7rem);
  }

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

  .menu-family,
  .menu-family:nth-child(even) {
    min-height: auto;
    padding: 2rem 0 2.5rem;
    border-right: 0;
  }

  .menu-family h3 {
    margin-top: 3rem;
  }

  .bar-gallery {
    gap: 1.2rem;
    grid-template-columns: 1fr 0.75fr;
  }

  .bar-gallery__small {
    margin-top: 5rem !important;
  }

  .bar-gallery__tall {
    width: 62%;
  }

  .not-found {
    min-height: 76svh;
    padding-top: 9rem;
    grid-template-columns: 1fr;
  }

  .not-found__copy {
    grid-column: 1;
  }

  .not-found__copy h1 {
    font-size: 4.7rem;
  }
}

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

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

  html[data-enhanced="true"] .reveal {
    transform: none;
    opacity: 1;
  }
}

@media (prefers-contrast: more) {
  :root {
    --line: rgba(35, 25, 22, 0.48);
    --line-light: rgba(243, 236, 223, 0.55);
  }

  .hero-shade {
    background: rgba(18, 9, 8, 0.72);
  }
}
