button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid #ad7752;
  outline-offset: 5px;
}
.header {
  min-height: 6.625rem;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s;
  padding-inline: var(--page-inset);
  height: auto;
  padding-block: 1rem;
}
.header.scrolled {
  box-shadow: 0 1px 0#332a281a;
}
.desktop-nav {
  display: flex;
  gap: clamp(20px, 2.65vw, 43px);
  margin-left: auto;
  margin-right: 30px;
}
.desktop-nav a {
  font-size: 0.875rem;
  position: relative;
  padding: 11px 0;
  white-space: nowrap;
}
.desktop-nav a:after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.desktop-nav a:hover:after,
.desktop-nav a.active:after {
  transform: scaleX(1);
}
.header-book {
  min-height: 48px;
  padding: 13px 20px;
  gap: 23px;
}
.nav-toggle,
.mobile-nav {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 49% 51%;
  min-height: 665px;
  background: var(--wine);
  color: var(--cream);
}
.hero-copy {
  padding: 85px 35px 31px var(--gutter);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  padding-left: max(var(--gutter), calc((100vw - var(--content-width)) / 2));
}
.hero-copy .eyebrow {
  color: var(--gold);
  margin-bottom: 32px;
}
.hero h1 {
  font-size: clamp(3.8125rem, 6.05vw, 6.0625rem);
  letter-spacing: -0.045em;
  line-height: 0.99;
  white-space: normal;
}
.hero h1 em {
  color: #e1c9ab;
}
.hero-description {
  line-height: 1.8;
  color: #e5d8cc;
  margin-top: 28px;
  font-size: 1rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 35px;
  flex-wrap: wrap;
}
.hero-actions > .text-link {
  font-size: 0.875rem;
}
.hero-foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 68px;
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  color: #cdb8ae;
  align-items: center;
}
.hero-foot a {
  display: none;
  align-items: center;
  gap: 9px;
  font-size: 0.75rem;
}
.scroll-line {
  height: 26px;
  width: 1px;
  background: #a98578;
  position: relative;
  overflow: hidden;
}
.scroll-line:after {
  content: '';
  width: 1px;
  height: 12px;
  background: var(--cream);
  position: absolute;
  animation: scrollCue 2.5s ease-in-out infinite;
}
.hero-photo {
  position: relative;
  overflow: hidden;
  min-height: 665px;
}
.hero-photo > img {
  position: absolute;
  inset: 0;
  object-position: 48%center;
  animation: photoIn 1.7s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}
.photo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #1f161100 50%, #23150b85);
}
.heritage-stamp {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 130px;
  height: 130px;
  border: 1px solid #e5d4b9;
  border-radius: 50%;
  background: #4c1822f0;
  box-shadow: 0 0 0 5px #4c18228a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(9deg);
  color: var(--cream);
}
.heritage-stamp > span {
  letter-spacing: 0.16em;
  line-height: 1.6;
  font-size: 0.5625rem;
}
.heritage-stamp strong {
  font-family: var(--serif);
  font-size: 3.25rem;
  font-weight: 400;
  line-height: 1.08;
  margin: 5px 0;
}
.heritage-stamp strong span {
  font-size: 1.875rem;
  vertical-align: top;
}
.photo-caption {
  position: absolute;
  bottom: 30px;
  left: 32px;
  right: 24px;
  font-family: var(--serif);
  font-size: 1.5625rem;
}
.photo-caption span {
  display: block;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  margin-bottom: 4px;
  color: #e3d5c3;
}
.welcome-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px var(--gutter);
  border-bottom: 1px solid var(--line);
  padding-inline: var(--page-inset);
}
.welcome-strip > span:first-child {
  font-family: var(--serif);
  font-size: 1.4375rem;
}
.welcome-strip em {
  color: var(--wine);
}
.strip-hours {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.strip-hours i {
  height: 14px;
  width: 1px;
  background: var(--line);
}
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
  padding-top: 110px;
  padding-bottom: 115px;
}
.story-heading .eyebrow {
  color: var(--muted);
}
.story-signature {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.875rem;
  font-style: italic;
  color: var(--wine);
  margin-top: 50px;
  transform: rotate(-6deg);
}
.story-copy {
  padding-top: 7px;
  max-width: 610px;
}
.story-copy .lead {
  font-family: var(--serif);
  font-size: 2.0625rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--wine);
  margin-bottom: 26px;
}
.story-copy > p:not(.lead) {
  color: #6a5f59;
  line-height: 1.85;
  font-size: 1rem;
}
.story-copy > .text-link {
  margin-top: 26px;
}
.menus {
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 9%;
  padding-top: 94px;
  padding-bottom: 85px;
}
.menu-intro > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 330px;
  margin-top: 23px;
  font-size: 1rem;
}
.menu-note {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 45px;
  color: var(--wine);
  font-size: 0.8125rem;
}
.menu-note > span:first-child {
  font-size: 1.9375rem;
}
.menu-list {
  border-top: 1px solid #c6baa9;
}
.menu-row {
  display: flex;
  align-items: center;
  gap: 21px;
  padding: 24px 0;
  border-bottom: 1px solid #c6baa9;
  transition:
    padding 0.3s,
    color 0.3s;
}
.menu-row:hover {
  padding-left: 10px;
  color: var(--wine);
}
.menu-number {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: #70635b;
  align-self: flex-start;
  margin-top: 9px;
}
.menu-name {
  flex: 1;
}
.menu-name strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.125rem;
  font-weight: 400;
  line-height: 1.2;
}
.menu-name small {
  font-size: 0.75rem;
  color: var(--muted);
}
.menu-arrow {
  font-size: 1.75rem;
  font-weight: 400;
  margin-left: 2px;
  transition: transform 0.3s;
}
.menu-row:hover .menu-arrow {
  transform: translate(3px, -3px);
}
.allergy-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 18px;
}
.table-section {
  padding-bottom: 110px;
}
.section-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
}
.section-top > p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 5px;
}
.food-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.food-item:nth-child(even) {
  margin-top: 50px;
}
.food-photo {
  overflow: hidden;
  height: 330px;
  background: var(--paper);
}
.food-photo img {
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.3, 1);
  object-position: center;
}
.food-item:hover img {
  transform: scale(1.045);
}
.food-item:first-child img {
  object-position: 53%center;
}
.food-item:last-child img {
  object-position: 50% 72%;
}
.food-item figcaption {
  margin-top: 17px;
}
.food-item figcaption span {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.2;
}
.food-item figcaption small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  margin-top: 9px;
}
.booking {
  background: var(--paper);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 8%;
  padding-top: 90px;
  padding-bottom: 90px;
}
.booking-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-top: 26px;
}
.booking-copy .booking-contact {
  margin-top: 38px !important;
  font-size: 0.875rem;
}
.booking-contact a {
  font-size: 1.5625rem;
  font-family: var(--serif);
  color: var(--wine);
  display: inline-block;
  border-bottom: 1px solid #bca696;
  margin-top: 4px;
  line-height: 1.2;
}
.booking-card {
  padding: 38px;
  background: var(--cream);
  border: 1px solid #d9cfc0;
  box-shadow: 0 12px 32px #38231505;
}
.booking-card-heading {
  margin-bottom: 27px;
}
.booking-card-heading h3 {
  font-size: 1.8125rem;
}
.concept-label {
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  color: var(--muted);
  display: block;
  margin-top: 10px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 15px;
}
.booking-submit {
  width: 100%;
  margin-top: 7px;
}
.form-note {
  color: var(--muted);
  text-align: center;
  line-height: 1.65;
  margin-top: 16px;
  font-size: 0.75rem;
}
.form-error {
  font-size: 0.8125rem;
  color: #952d32;
  margin: 0 0 13px;
}
.booking-result h3 {
  font-size: 2.4375rem;
}
.booking-result > p:not(.eyebrow) {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 18px;
}
.booking-result > p#booking-summary {
  font-family: var(--serif);
  font-size: 1.625rem;
  line-height: 1.3;
  color: var(--wine);
}
.booking-result .button {
  margin-top: 25px;
  width: 100%;
}
.reset-booking {
  background: none;
  border: 0;
  border-bottom: 1px solid var(--wine);
  margin-top: 20px;
  padding: 0 0 4px;
  font-size: 0.8125rem;
}
.booking-result:focus {
  outline: 2px solid var(--wine);
}
.visit {
  background: var(--wine);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 8%;
  padding-top: 90px;
  padding-bottom: 94px;
}
.visit .eyebrow {
  color: var(--gold);
}
.visit h2 {
  font-size: clamp(2.875rem, 4.3vw, 4.25rem);
}
.visit h2 em {
  color: #e1c9ab;
}
.visit-intro > p:not(.eyebrow) {
  color: #d2bfb7;
  line-height: 1.85;
  max-width: 345px;
  margin-top: 25px;
  font-size: 1rem;
}
.visit-intro > .text-link {
  margin-top: 24px;
}
.visit-details {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 38px;
  padding-top: 47px;
}
.visit-details h3 {
  font-size: 1.8125rem;
  margin-bottom: 30px;
}
.visit-details address {
  font-style: normal;
  color: #dbcac0;
  font-size: 0.875rem;
  line-height: 1.9;
  margin-bottom: 20px;
}
.visit-address > a {
  font-size: 0.875rem;
  color: #dbcac0;
  display: block;
  width: fit-content;
  margin-top: 8px;
  overflow-wrap: anywhere;
}
.visit-address > a:hover {
  text-decoration: underline;
}
.visit-hours .days {
  font-size: 0.875rem;
  color: #e9d9cc;
  margin-bottom: 14px;
}
.visit-hours dl {
  margin: 0;
}
.visit-hours dl div {
  padding: 10px 0;
  border-bottom: 1px solid #80535a;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 0.8125rem;
  color: #dbcac0;
}
.visit-hours dd {
  margin: 0;
  white-space: nowrap;
}
.last-orders {
  font-size: 0.75rem;
  color: #c9b3aa;
  margin-top: 19px;
  line-height: 1.9;
}
footer {
  padding: 45px var(--gutter) 23px;
  padding-inline: var(--page-inset);
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 45px;
  padding-bottom: 35px;
}
.footer-wordmark > span {
  font-size: 3.125rem;
}
.footer-wordmark small {
  font-size: 0.75rem;
}
.footer-top > p {
  font-family: var(--serif);
  font-size: 1.4375rem;
  line-height: 1.15;
  color: #6a554b;
}
.back-top {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.75rem;
}
.back-top span {
  border: 1px solid var(--line);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-size: 1.3125rem;
  transition: background 0.25s;
}
.back-top:hover span {
  background: var(--paper);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--muted);
  font-size: 0.75rem;
  flex-wrap: wrap;
}
.footer-bottom > span:last-child {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.hero-foot > a {
  display: none;
}
.booking-copy > p:not(.eyebrow),
.visit-intro > p:not(.eyebrow),
.menu-intro > p:not(.eyebrow) {
  font-size: 1rem;
}
.header .wordmark small {
  font-size: 0.5625rem;
}
.hero-copy,
.story-copy,
.menu-intro,
.menu-list,
.booking-copy,
.booking-card,
.visit-intro,
.visit-details,
.menu-name {
  min-width: 0;
}
.hero-foot > a {
  display: none;
}
.hero-copy {
  justify-content: center;
}
.form-note a {
  text-decoration: underline;
}
.booking-result:focus {
  outline-offset: 6px;
}
.pdf-toolbar {
  flex-wrap: wrap;
}
.hero-description,
.story-copy > p:not(.lead),
.menu-intro > p:not(.eyebrow),
.booking-copy > p:not(.eyebrow),
.visit-intro > p:not(.eyebrow) {
  font-size: 1rem;
}
