:root {
  /* --orange: #e55a24; */
  --orange: #b86228;
  --cream: #f4efe6;
  /* --ink: #20211e; */
  --ink: #000000;
  --olive: #31362c;
  --line: rgba(32, 33, 30, 0.16);
  --section-y: clamp(4.5rem, 6vw, 6rem);
  --section-y-tight: clamp(3.5rem, 5vw, 4.75rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.94;
  margin: 0;
}

h1 {
  font-size: clamp(4rem, 8.8vw, 9rem);
}

h2 {
  font-size: clamp(3rem, 5.8vw, 6rem);
}

h3 {
  font-size: clamp(2rem, 3vw, 3.4rem);
}

em {
  font-weight: 500;
}

a {
  text-decoration: none;
}

.section-pad {
  padding: var(--section-y) 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.69rem;
  font-weight: 600;
  margin: 0 0 1.35rem;
}

.text-orange {
  color: var(--orange);
}

.page-loader {
  position: fixed;
  inset: 0;
  background: var(--orange);
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: transform 0.8s cubic-bezier(0.75, 0, 0.25, 1);
  transform-origin: top;
}

.page-loader span {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.page-loader.done {
  transform: scaleY(0);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderOut {
  to {
    transform: scaleY(0);
  }
}

.navbar {
  padding: 2.6rem 0 1.3rem;
  border-bottom: 0;
  transition: 0.35s;
}

.navbar > .container,
.navbar > .container-fluid {
  align-items: center;
  gap: clamp(0.9rem, 1.6vw, 1.6rem);
}

.navbar.scrolled {
  padding: 0.6rem 0;
  background: rgba(31, 32, 29, 0.93);
  backdrop-filter: blur(12px);
}

.navbar-brand {
  position: static;
  order: 1;
  flex: 0 0 auto;
  margin: 0 clamp(0.75rem, 1.6vw, 1.5rem) 0 0;
  transform: none;
  z-index: 2;
}

.navbar-brand img {
  width: clamp(118px, 9vw, 150px);
  height: auto;
  object-fit: contain;
  transition: width 0.35s ease;
}

.navbar.scrolled .navbar-brand img {
  width: 112px;
}

.nav-reservation {
  order: 3;
  flex: 0 0 auto;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: opacity 0.25s;
  background: var(--orange);
  padding: 5px 10px;
  border-radius: 2px;
}

.nav-reservation:hover {
  color: #fff;
  opacity: 0.7;
}

.navbar-collapse {
  order: 2;
  flex-grow: 1;
  justify-content: flex-end;
  min-width: 0;
}

.navbar-nav {
  align-items: center;
  flex-wrap: nowrap;
}

.nav-link {
  color: #fff !important;
  font-size: clamp(0.8rem, 0.7vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
  white-space: nowrap;
}

.nav-link:after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 3px;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transition: 0.3s;
}

.nav-link:hover:after {
  transform: scaleX(1);
}

.navbar .dropdown-menu {
  min-width: 168px;
  margin-top: 0.65rem;
  padding: 0.35rem 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.navbar .dropdown-item {
  color: #050505;
  padding: 0.85rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background: var(--orange);
  color: #fff;
}

.navbar .dropdown-toggle:after {
  display: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler span {
  display: block;
  width: 25px;
  height: 2px;
  background: white;
  margin: 0;
}

/* ==========================================================
   MOBILE / TABLET OFFCANVAS NAVIGATION
========================================================== */

#mobileNav {
  --bs-offcanvas-width: min(400px, 100vw);

  background: var(--cream);

  color: var(--ink);
}

/* ----------------------------------------------------------
   HEADER
---------------------------------------------------------- */

#mobileNav .offcanvas-header {
  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  padding: 0.75rem 1rem 0;
}

/* Orange mobile logo */
#mobileNavLabel {
  display: block;

  width: 110px;

  max-width: 42%;

  height: auto;

  object-fit: contain;
}

/* Close icon */
#mobileNav .btn-close {
  flex: 0 0 auto;

  margin: 0.15rem 0.1rem 0 auto;

  padding: 0.5rem;

  box-shadow: none;

  opacity: 0.55;
}

#mobileNav .btn-close:hover,
#mobileNav .btn-close:focus {
  opacity: 0.85;

  box-shadow: none;
}

/* ----------------------------------------------------------
   OFFCANVAS BODY
---------------------------------------------------------- */

#mobileNav .offcanvas-body {
  display: flex;

  flex-direction: column;

  min-height: 0;

  padding: 1rem 1.25rem 1.1rem;

  overflow-y: auto;

  text-align: center;
}

/* ----------------------------------------------------------
   MAIN NAVIGATION
---------------------------------------------------------- */

#mobileNav .mobile-nav-main {
  display: flex;

  flex: 0 0 auto;

  flex-direction: column;

  align-items: stretch;

  width: 100%;

  margin: 0.2rem 0 clamp(1rem, 4vh, 2rem);
}

/* Main links */
#mobileNav .mobile-nav-link {
  display: block;

  width: 100%;

  margin: 0;

  padding: 0.35rem 0.5rem;

  border: 0;

  background: transparent;

  color: var(--ink);

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(1.55rem, 4.8vw, 1.9rem);

  font-weight: 500;

  line-height: 1.15;

  letter-spacing: -0.02em;

  text-align: center;

  text-decoration: none;

  text-transform: none;

  appearance: none;

  box-shadow: none;
}

#mobileNav .mobile-nav-link:hover,
#mobileNav .mobile-nav-link:focus {
  color: var(--orange);

  background: transparent;
}

/* Remove desktop nav underline */
#mobileNav .mobile-nav-link::after {
  display: none;
}

/* ----------------------------------------------------------
   MENU DROPDOWN BUTTON
---------------------------------------------------------- */

#mobileNav .mobile-menu-toggle {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 0.55rem;

  cursor: pointer;
}

/* Tiny downward arrow */
#mobileNav .mobile-menu-arrow {
  width: 0.38rem;

  height: 0.38rem;

  margin-top: -0.2rem;

  border-right: 1px solid currentColor;

  border-bottom: 1px solid currentColor;

  transform: rotate(45deg);

  transition: transform 0.25s ease;
}

/* Arrow points upward when opened */
#mobileNav .mobile-menu-toggle:not(.collapsed) .mobile-menu-arrow {
  transform: rotate(-135deg);
}

/* ----------------------------------------------------------
   SUBMENU
---------------------------------------------------------- */

#mobileNav .mobile-menu-subnav {
  width: 100%;

  padding: 0.35rem 0 0.65rem;
}

#mobileNav .mobile-menu-subnav a {
  display: flex;

  width: 100%;

  min-height: 42px;

  align-items: center;

  justify-content: center;

  padding: 0.4rem 0.5rem;

  color: var(--orange);

  font-family: "Manrope", sans-serif;

  font-size: 0.9rem;

  font-weight: 700;

  line-height: 1.4;

  letter-spacing: 0.12em;

  text-align: center;

  text-decoration: none;

  text-transform: uppercase;
}

#mobileNav .mobile-menu-subnav a + a {
  margin-top: 0.1rem;
}

#mobileNav .mobile-menu-subnav a:hover,
#mobileNav .mobile-menu-subnav a:focus {
  color: var(--ink);
}

/* ----------------------------------------------------------
   ACCESSIBILITY
---------------------------------------------------------- */

#mobileNav .mobile-nav-link:focus-visible,
#mobileNav .mobile-menu-subnav a:focus-visible {
  outline: 2px solid var(--orange);

  outline-offset: 2px;
}

/* ----------------------------------------------------------
   RESERVATION CTA
---------------------------------------------------------- */

#mobileNav .mobile-nav-cta {
  flex: 0 0 auto;

  margin-top: auto;

  margin-bottom: 0.15rem;

  margin-right: 0 !important;

  margin-left: 0 !important;

  width: 100%;

  max-width: none;

  min-height: 52px;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 0.8rem 1.2rem;

  box-sizing: border-box;

  font-size: 0.8rem;

  letter-spacing: 0.08em;

  white-space: nowrap;
}

/* ----------------------------------------------------------
   SMALL MOBILE
---------------------------------------------------------- */

@media (max-width: 575.98px) {
  #mobileNav .offcanvas-header {
    padding: 0.65rem 0.85rem 0;
  }

  #mobileNavLabel {
    width: 100px;
  }

  #mobileNav .offcanvas-body {
    padding: 0.75rem 0.85rem 0.85rem;
  }

  #mobileNav .mobile-nav-link {
    padding: 0.3rem 0.4rem;

    font-size: clamp(1.45rem, 7.5vw, 1.7rem);
  }

  #mobileNav .mobile-menu-subnav a {
    min-height: 40px;

    font-size: 0.84rem;
  }

  #mobileNav .mobile-nav-cta {
    min-height: 50px;

    padding: 0.72rem 1rem;

    font-size: 0.75rem;
  }
}

.btn {
  border-radius: 0;
  padding: 0.95rem 1.55rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.67rem;
  font-weight: 600;
  transition: 0.3s;
}

.btn-sm {
  padding: 0.72rem 1.2rem;
}

.btn-orange {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}

.btn-orange:hover {
  background: #c84416;
  color: white;
  border-color: #c84416;
  transform: translateY(-2px);
}

.btn-cream {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.btn-cream:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

.btn-dark-custom {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: white;
}

.btn-dark-custom:hover {
  /* background: transparent;
    color: var(--ink) */
  background: #161614;
  color: var(--cream);
  letter-spacing: 2px;
}

.text-link {
  color: var(--ink);
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  transition: 0.3s;
}

.text-link span {
  display: inline-block;
  margin-left: 0.6rem;
  transition: 0.3s;
}

.text-link:hover {
  color: var(--orange);
}

.text-link:hover span {
  transform: translate(3px, -2px);
}

.text-link.light {
  color: white;
}

.text-link.light:hover {
  color: var(--orange);
}

.hero {
  height: 100svh;
  min-height: 680px;
  position: relative;
  color: #fff;
  background: #222;
  overflow: hidden;
}

.hero > .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) brightness(0.76);
  animation: kenburns 7s ease-out both;
}

@keyframes kenburns {
  from {
    transform: scale(1.045);
  }

  to {
    transform: scale(1);
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(17, 16, 13, 0.12);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 7.5rem;
  text-align: center;
}

.hero-content h1 {
  max-width: 900px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.9rem, 2.55vw, 3.55rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.32;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.42);
}

.hero .carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero .carousel-inner,
.hero .carousel-item {
  height: 100%;
}

.hero .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) brightness(0.76);
}

.hero .carousel-item.active .hero-image {
  animation: kenburns 5.2s ease-out both;
}

.hero-shade {
  z-index: 1;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 2.2rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.66rem;
  font-weight: 600;
}

.scroll-cue:hover {
  color: #fff;
}

.scroll-cue span {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
}

.scroll-cue span:after {
  content: "";
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  to {
    top: 100%;
  }
}

.story-copy {
  max-width: 500px;
  font-size: 1.05rem;
  line-height: 1.9;
  margin: 2rem 0 2.4rem;
  color: #55564f;
}

.story-images {
  height: 660px;
  position: relative;
}

.story-main {
  width: 88%;
  height: 75%;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
}

.story-float {
  width: 48%;
  height: 37%;
  object-fit: cover;
  position: absolute;
  left: 0;
  bottom: 0;
  border: 10px solid var(--cream);
}

.stamp {
  position: absolute;
  right: 2%;
  bottom: 10%;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.62rem;
  line-height: 1.4;
  transform: rotate(8deg);
}

.stamp em {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  text-transform: none;
  letter-spacing: 0;
}

.menu-section {
  background: #fff;
  color: var(--ink);
}

.dish-card {
  height: 550px;
  position: relative;
  overflow: hidden;
  background: #111;
}

.dish-card-down {
  margin-top: 4rem;
}

.dish-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
  filter: saturate(0.85);
}

.dish-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 15, 12, 0.8), transparent 60%);
}

.dish-card:hover img {
  transform: scale(1.055);
}

.dish-overlay {
  position: absolute;
  z-index: 2;
  bottom: 2.1rem;
  left: 2rem;
  right: 2rem;
}

.dish-overlay span {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: #ddd;
}

.dish-overlay h3 {
  margin-top: 0.7rem;
}

.pasta-night {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  min-height: 680px;
  background: var(--orange);
}

.pasta-photo {
  background: url("../images/Truffle-800x500-1.jpg") center/cover no-repeat;
  min-height: 560px;
}

.pasta-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(3rem, 7vw, 7rem);
  color: #161713;
}

.pasta-copy h2 {
  font-size: clamp(4rem, 7vw, 7rem);
}

.pasta-copy > p:not(.eyebrow) {
  font-size: 1rem;
  margin: 2rem 0;
}

.fancybox__container {
  --fancybox-bg: rgba(20, 17, 14, 0.9);
}

.fancybox__caption {
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.visit {
  min-height: 0;
  display: block;
  padding: var(--section-y) 0;
  position: relative;
}

.visit-map-section {
  overflow: hidden;
  background: #eee9df;
}

.visit-location-panel {
  display: grid;
  grid-template-columns: 52.2% 47.8%;
  min-height: 560px;
  width: 100%;
}

.visit-map {
  position: relative;
  height: 100%;
  min-height: 560px;
  overflow: hidden;
  /* background: #d8d8d4 */
}

.visit-map a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
}

.visit-map-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 100%;
  height: auto;
  min-height: 100%;
  aspect-ratio: 889 / 840;
  transform: translate(-50%, -50%);
}

.visit-map-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visit-map-pin {
  position: absolute;
  left: 50.6%;
  top: 49.2%;
  z-index: 2;
  display: block;
  width: clamp(56px, 6vw, 66px);
  height: auto;
  filter: drop-shadow(0 14px 18px rgba(54, 54, 50, 0.22));
  transform: translate(-50%, -100%);
  animation: mapPinBounce 1.35s ease-in-out infinite;
}

.visit-map-pin img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
}

@keyframes mapPinBounce {
  0%,
  100% {
    transform: translate(-50%, -100%);
  }

  48% {
    transform: translate(-50%, calc(-100% - 13px));
  }

  62% {
    transform: translate(-50%, calc(-100% - 9px));
  }
}

.visit-card {
  position: relative;
  background: radial-gradient(circle at 18% 22%, rgba(176, 155, 139, 0.11) 0 1px, transparent 1.5px), radial-gradient(circle at 74% 36%, rgba(176, 155, 139, 0.1) 0 1px, transparent 1.5px), linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.18)), #f0ece4;
  background-size:
    13px 13px,
    17px 17px,
    auto,
    auto;
  padding: clamp(3.4rem, 6vw, 5.4rem) clamp(2.2rem, 5.5vw, 5.4rem);
  width: 100%;
  min-height: 560px;
  box-shadow: none;
}

.visit-card h2 {
  color: var(--orange);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.25;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
}

.visit-intro {
  max-width: 430px;
  color: #4d4a43;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  font-weight: 600;
  line-height: 1.55;
  margin: 0 0 2.25rem;
}

.visit-details {
  margin: 0;
  border-top: 1px solid rgba(184, 98, 40, 0.44);
}

.visit-details div {
  display: grid;
  grid-template-columns: minmax(120px, 0.72fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid rgba(184, 98, 40, 0.44);
}

.visit-details dt {
  color: rgba(184, 98, 40, 0.58);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  margin: 0;
}

.visit-details dd {
  color: #4b4944;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
  text-align: right;
}

.visit-details a {
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.visit-details a:hover {
  color: var(--orange);
}

.visit-directions {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  color: #4c4a45;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  margin-top: 2.2rem;
  text-transform: uppercase;
}

.visit-directions span {
  color: var(--orange);
  font-size: 0.95rem;
  letter-spacing: 0;
}

.visit-directions:hover {
  color: var(--orange);
}

footer {
  background: #1d1e1b;
  color: white;
  padding: 5rem 0 2.5rem;
}

footer a {
  color: white;
  font-size: 0.82rem;
  line-height: 2;
}

footer a:hover {
  color: var(--orange);
}

.footer-note {
  color: #aaa;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.2rem;
  margin: 0.8rem 0 0;
}

.copyright {
  font-size: 0.65rem;
  color: #777;
  margin: 1rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.2, 0.65, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.14s;
}

.reveal-delay-2 {
  transition-delay: 0.28s;
}

.reference-intro,
.reference-about,
.reference-content,
.promotions,
.faqs {
  background: #fff;
}

.ref-split {
  display: grid;
  grid-template-columns: 44% 56%;
  align-items: stretch;
  min-height: 455px;
}

.ref-split-reverse {
  grid-template-columns: 50% 50%;
  background: #fff;
}

.ref-image {
  margin: 0;
  min-height: 455px;
  overflow: hidden;
}

.ref-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ref-split-reverse .ref-image img {
  object-fit: contain;
  background: #fff;
}

.ref-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 6rem);
  color: #17212b;
}

.ref-copy h2,
.reference-content h2,
.promo-title,
.faqs h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.45rem, 2.25vw, 2.6rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
  margin: 0 0 1rem;
}

.ref-copy p,
.reference-content p,
.promo-slide-copy p,
.gallery-heading p,
.accordion-body,
footer p {
  font-size: 1.05rem;
  line-height: 1.45;
  margin: 0 0 1rem;
}

.reference-content {
  border-top: 1px solid rgba(32, 33, 30, 0.08);
  border-bottom: 1px solid rgba(32, 33, 30, 0.08);
}

.reference-content h2 {
  color: var(--orange);
}

.promotions {
  /* background: var(--cream); */
  overflow: hidden;
}

.promo-slider {
  box-shadow: 0 26px 70px rgba(32, 33, 30, 0.12);
  background: var(--orange);
}

.promo-slide {
  display: grid;
  grid-template-columns: 55% 45%;
  height: 580px;
  background: var(--orange);
}

.promo-slide-image {
  width: 100%;
  height: 580px;
  margin: 0;
  background: #fff;
  overflow: hidden;
}

.promo-slide-image img {
  display: block;
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center;
}

.promo-slide-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
  padding: clamp(3rem, 4vw, 5rem);
  color: #fff;
}

/* .promo-slide-copy:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 2px;
    height: 135px;
    background: rgba(255, 255, 255, .55);
    transform: translateY(-50%)
} */

.promo-slide-copy a {
  color: #fff;
}

.promo-kicker {
  color: #fff;
  font-size: 0.68rem !important;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.2 !important;
  text-transform: uppercase;
  margin-bottom: 2rem !important;
}

.promo-title {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4.4vw, 4rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.9;
  margin-bottom: 2rem;
}

.promo-slide-copy p:not(.promo-kicker) {
  max-width: 470px;
  color: #fff;
}

.promo-slide-copy strong {
  color: #fff;
}

.promo-slide-copy .btn {
  margin-top: 1.15rem;
  color: #fff;
}

.promo-slide-copy .btn:hover,
.promo-slide-copy .btn:focus {
  color: #fff;
}

.promo-slider .carousel-control-prev,
.promo-slider .carousel-control-next {
  top: auto;
  bottom: 1.8rem;
  width: 48px;
  height: 48px;
  opacity: 1;
  background: #151511;
}

.promo-slider .carousel-control-prev {
  left: auto;
  right: calc(1.8rem + 58px);
}

.promo-slider .carousel-control-next {
  right: 1.8rem;
}

.promo-slider .carousel-control-prev-icon,
.promo-slider .carousel-control-next-icon {
  width: 1rem;
  height: 1rem;
}

.promo-slider .carousel-indicators {
  right: auto;
  left: clamp(3rem, 5vw, 6rem);
  bottom: 2.25rem;
  margin: 0;
  gap: 0.55rem;
}

.promo-slider .carousel-indicators [data-bs-target] {
  width: 32px;
  height: 2px;
  margin: 0;
  border: 0;
  background: #151511;
  opacity: 0.32;
}

.promo-slider .carousel-indicators .active {
  opacity: 1;
}

.gallery-heading {
  max-width: 980px;
  margin: 0 auto var(--section-y-tight);
  text-align: center;
}

.gallery-heading .eyebrow {
  margin-bottom: 0.75rem;
}

.faqs {
  background: #fff;
}

.faq-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.faq-accordion .accordion-button {
  padding: 1.25rem 0;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--orange);
}

.faq-accordion .accordion-body {
  padding: 0 0 1.4rem;
  color: #4f514c;
}

.site-footer {
  padding: 0;
  background: #1d1e1b;
  color: #fff;
}

.site-footer p {
  color: #bdbdb9;
  font-size: 0.82rem;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.site-footer a {
  color: #fff;
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-logo {
  display: block;
  width: 175px;
  max-width: 100%;
  height: auto;
  margin: 0;
}

.site-footer h4 {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin: 0 0 0.65rem;
  text-transform: uppercase;
}

.site-footer hr {
  border-color: rgba(255, 255, 255, 0.22);
  opacity: 1;
}

.site-footer i {
  margin-right: 0.45rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  line-height: 1;
}

.footer-social i {
  margin: 0;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.25rem;
  row-gap: 0.4rem;
}

.footer-nav a {
  display: inline-flex;
  width: fit-content;
  line-height: 1.35;
  text-decoration: none;
}

.site-footer .career-form {
  border-radius: 0;
  background: #6c757d;
  border-color: #6c757d;
  color: #fff;
  padding: 0.6rem 1.1rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.82rem;
}

.site-footer .career-form:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.career-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding:
    max(1.5rem, env(safe-area-inset-top))
    max(1.5rem, env(safe-area-inset-right))
    max(1.5rem, env(safe-area-inset-bottom))
    max(1.5rem, env(safe-area-inset-left));
  background: rgba(17, 16, 13, 0.78);
  backdrop-filter: blur(4px);
}

.career-modal.open {
  display: grid;
  place-items: center;
}

body.career-modal-open {
  overflow: hidden;
}

.career-modal-dialog {
  position: relative;
  width: min(900px, 100%);
  max-height: calc(100dvh - 3rem);
  overflow-y: auto;
  margin: 0 auto;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  border-top: 4px solid var(--orange);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  scrollbar-gutter: stable;
}

.career-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(32, 33, 30, 0.24);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.career-modal-close:hover,
.career-modal-close:focus-visible {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.career-modal-close:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.career-modal-intro {
  max-width: 760px;
  padding-right: 3.5rem;
  margin-bottom: 1.25rem;
}

.career-modal-kicker {
  margin: 0 0 0.45rem;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.career-modal-intro h2 {
  margin: 0 0 0.65rem;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 500;
  line-height: 0.98;
  text-wrap: balance;
}

.career-modal-intro > p:last-child {
  max-width: 680px;
  margin: 0;
  color: #5b5d57;
  font-size: 0.94rem;
  line-height: 1.6;
  text-wrap: pretty;
}

.career-modal-form {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.career-modal-form .wpcf7-form p,
.career-form-grid > p {
  margin: 0;
}

.career-form-grid > p {
  display: contents;
}

.career-application-form label > br,
.career-application-form .career-field-label > br,
.career-form-grid > br {
  display: none;
}

.career-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.5rem;
  row-gap: 0.8rem;
}

.career-modal-form .career-field-label,
.career-form-grid > label,
.career-radio-group > legend {
  display: block;
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.career-application-form label > .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
}

.career-modal-form sup,
.career-modal-form .required {
  color: var(--orange);
  top: -0.15em;
  line-height: 1;
}

.career-modal-form input:not([type="radio"]):not([type="checkbox"]):not([type="file"]),
.career-modal-form select,
.career-modal-form textarea {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(32, 33, 30, 0.2);
  border-radius: 0;
  background: #f8f5ef;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
  outline: none;
}

.career-modal-form textarea {
  min-height: 145px;
  resize: vertical;
}

.career-modal-form input:focus,
.career-modal-form select:focus,
.career-modal-form textarea:focus {
  border-color: var(--orange);
  background: #fff;
  box-shadow: none;
  outline: 2px solid rgba(184, 98, 40, 0.24);
  outline-offset: 1px;
}

.career-nationality-enhanced {
  position: relative;
}

.career-nationality-enhanced .career-nationality-native {
  position: absolute;
  width: 1px;
  min-height: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.career-nationality-picker {
  position: relative;
  width: 100%;
}

.career-nationality-trigger {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 46px;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(32, 33, 30, 0.2);
  border-radius: 0;
  background: #f8f5ef;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}

.career-nationality-trigger:hover {
  border-color: rgba(32, 33, 30, 0.4);
}

.career-nationality-trigger:focus-visible,
.career-nationality-picker.is-open .career-nationality-trigger {
  border-color: var(--orange);
  background: #fff;
  outline: 2px solid rgba(184, 98, 40, 0.24);
  outline-offset: 1px;
}

.career-nationality-selected-flag {
  flex: 0 0 auto;
  margin-right: 0.65rem;
}

.career-nationality-selected-name {
  flex: 1 1 auto;
  min-width: 0;
}

.career-nationality-arrow {
  flex: 0 0 auto;
  width: 0.5rem;
  height: 0.5rem;
  margin: -0.2rem 0.15rem 0 0.75rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.career-nationality-picker.is-open .career-nationality-arrow {
  margin-top: 0.2rem;
  transform: rotate(225deg);
}

.career-nationality-dropdown {
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  max-height: min(300px, 45vh);
  padding: 0.25rem 0;
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid rgba(32, 33, 30, 0.2);
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.career-nationality-dropdown[hidden] {
  display: none;
}

.career-nationality-option {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0.65rem;
  padding: 0.6rem 0.8rem;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}

.career-nationality-option:hover,
.career-nationality-option:focus-visible,
.career-nationality-option[aria-selected="true"] {
  background: var(--cream);
  color: var(--ink);
  outline: none;
}

.career-nationality-option:focus-visible {
  box-shadow: inset 3px 0 0 var(--orange);
}

.career-nationality-option .iti__flag {
  flex: 0 0 auto;
}

.career-radio-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.career-radio-group legend {
  margin-bottom: 0.45rem;
}

.career-radio-group .wpcf7-form-control {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
}

.career-radio-group .wpcf7-list-item,
.career-consent .wpcf7-list-item {
  margin: 0;
}

.career-radio-group .wpcf7-list-item label,
.career-consent .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 40px;
  margin: 0;
  color: #41433d;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.career-radio-group input,
.career-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--orange);
}

.career-about,
.career-upload,
.career-consent,
.career-submit {
  margin-top: 0.9rem;
}

.career-about,
.career-upload {
  display: grid;
  width: 100%;
  max-width: none;
  gap: 0.4rem;
}

.career-about .wpcf7-form-control-wrap,
.career-upload .wpcf7-form-control-wrap,
.career-about textarea,
.career-upload input[type="file"] {
  display: block;
  width: 100%;
  max-width: none;
}

.career-modal-form input[type="file"] {
  width: 100%;
  min-width: 0;
  padding: 0.7rem;
  border: 1px solid rgba(32, 33, 30, 0.2);
  border-radius: 0;
  background: #f8f5ef;
  color: #41433d;
  font-size: 0.82rem;
}

.career-modal-form input[type="file"]::file-selector-button {
  min-height: 38px;
  margin-right: 0.75rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  cursor: pointer;
}

.career-modal-form input[type="file"]::file-selector-button:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.career-upload small,
.career-upload .form-helper,
.career-upload .field-description {
  display: block;
  margin-top: 0.45rem;
  color: #6b6d67;
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
  text-transform: none;
}

.career-consent .wpcf7-list-item label {
  align-items: flex-start;
}

.career-submit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.career-submit .wpcf7-submit,
.career-modal-form input[type="submit"].wpcf7-submit {
  min-height: 50px;
  padding: 0.8rem 1.4rem;
  border: 1px solid var(--orange);
  border-radius: 0;
  background: var(--orange);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.career-submit .wpcf7-submit:hover,
.career-submit .wpcf7-submit:focus-visible,
.career-modal-form input[type="submit"].wpcf7-submit:hover,
.career-modal-form input[type="submit"].wpcf7-submit:focus-visible {
  border-color: #c84416;
  background: #c84416;
  color: #fff;
}

.career-submit .wpcf7-submit:focus-visible,
.career-modal-form input[type="submit"].wpcf7-submit:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.career-modal-form .wpcf7-spinner {
  margin: 0;
}

.career-modal-form .wpcf7-not-valid-tip {
  margin-top: 0.35rem;
  color: #a53f1d;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.career-modal-form .wpcf7-response-output {
  margin: 1.5rem 0 0;
  padding: 0.9rem 1rem;
  border: 1px solid var(--orange);
  color: var(--ink);
  font-size: 0.85rem;
  line-height: 1.6;
}

.career-modal-status {
  margin: 0;
  padding: 1rem;
  border-left: 3px solid var(--orange);
  background: var(--cream);
  color: var(--ink);
}

.widCOEImg {
  display: block;
  width: 100px;
  height: auto;
}

.footer-award {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-awards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: nowrap;
}

.footer-award-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.footer-award-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 150px;
  max-height: 105px;
  object-fit: contain;
}

.footer-career {
  margin-right: auto;
}

@media (max-width: 1199.98px) {
  .footer-awards {
    gap: 1rem;
  }

  .footer-award-image {
    max-width: 130px;
    max-height: 90px;
  }
}

@media (max-width: 575.98px) {
  .footer-awards {
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .footer-award-image {
    max-width: 115px;
    max-height: 78px;
  }
}

.site-footer .row.pb-3.pt-4 {
  padding: 3rem 0 1.5rem !important;
}

.site-footer .footer-content-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.4fr) minmax(0, 0.95fr);
  column-gap: clamp(1.5rem, 3vw, 3.5rem);
  row-gap: 1.25rem;
  align-items: start;
}

.site-footer .footer-content-row > * {
  width: auto;
  max-width: none;
}

.site-footer .col-md-12.mb-3 {
  grid-column: 1;
  grid-row: 2;
}

.site-footer .footer-logo {
  grid-column: 1 / -1;
  grid-row: 1;
}

.site-footer .col-md-12.mb-3 > p {
  max-width: 100%;
  margin: 0;
}

.site-footer .footer-follow {
  margin-top: 1.25rem;
}

.site-footer .footer-location {
  grid-column: 3;
  grid-row: 2;
}

.site-footer .footer-menu {
  grid-column: 2;
  grid-row: 2;
}

.site-footer .footer-content-row > .col-md-12:not(.mb-3) {
  grid-column: 1 / -1;
  grid-row: 3;
}

.site-footer .footer-content-row > .col-md-12:not(.mb-3) hr {
  display: block;
  margin: 0.4rem 0 0 !important;
  border-color: rgba(255, 255, 255, 0.22);
  opacity: 1;
}

.site-footer .footer-career {
  grid-column: 1 / 3;
  grid-row: 4;
  max-width: 560px;
}

.site-footer .footer-award {
  grid-column: 3;
  grid-row: 4;
  justify-self: end;
}

.site-footer .copyright {
  background: rgba(0, 0, 0, 0.16);
  margin: 0;
  color: #8e8e88;
  text-transform: none;
  letter-spacing: 0;
}

.site-footer .copyright p {
  color: #8e8e88;
  font-size: 0.76rem;
  line-height: 1.65;
}

.footer-intro {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 2rem;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-intro p {
  color: #ddd;
  margin: 0;
  max-width: 720px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-grid h3 {
  font-family: "Manrope", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: #fff;
}

.footer-grid p {
  color: #bdbdb9;
  font-size: 0.9rem;
}

.newsletter {
  display: flex;
  gap: 0.65rem;
  align-items: stretch;
}

.newsletter input {
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0.9rem 1rem;
}

.newsletter input::placeholder {
  color: #aaa;
}

.floating-reservation {
  position: fixed;
  z-index: 20;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  background: #4a4a4a;
  color: #fff;
  padding: 1rem 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
  border-left: 3px solid var(--orange);
}

.floating-reservation:hover {
  color: #fff;
  background: var(--orange);
}

.mobile-fixed-reservation {
  display: none;
}

.back-to-top {
  position: fixed;
  z-index: 20;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #fff;
  font-size: 0.8rem;
}

.back-to-top:hover {
  color: #fff;
  background: #c84416;
}

.reference-intro {
  position: relative;

  background:
    linear-gradient(90deg, #f4efe6 0 72%, transparent 72%),
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
    url("../images/bg-pic.png") center / 220px auto repeat,
    #fff;

  padding: var(--section-y) 0;

  overflow: hidden;
}

.reference-intro .ref-split {
  width: min(1180px, calc(100% - 3rem));
  min-height: 0;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 4rem;
  align-items: center;
}

.reference-intro .ref-image {
  order: 2;
  min-height: 560px;
  box-shadow: 0 28px 70px rgba(32, 33, 30, 0.16);
}

.reference-intro .ref-copy {
  order: 1;
  padding: 0;
  max-width: 720px;
}

.reference-intro .section-subheading {
  margin-bottom: 1.4rem;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reference-intro .ref-copy > .section-subheading:first-child {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--orange);
}

.reference-intro .ref-copy h2,
.promotions h3 {
  font-size: 2.85rem;
  line-height: 1.08;
  margin-bottom: 1.5rem;
}

.reference-intro .ref-copy p {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 690px;
  margin-bottom: 0.8rem;
}

.reference-about {
  background: #1d1e1b;
  /* background-color: var(--orange); */
  color: #fff;
  padding: var(--section-y) 0;
}

.reference-about .ref-split {
  width: min(1180px, calc(100% - 3rem));
  min-height: 0;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 4rem;
  align-items: center;
  background: transparent;
}

.reference-about .ref-copy {
  padding: 0;
  color: #fff;
  max-width: 760px;
}

.reference-about .ref-copy h2 {
  font-size: 2.55rem;
  line-height: 1.12;
  color: #fff;
}

.reference-about .ref-copy p {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.72;
}

.reference-about .ref-image {
  width: 100%;
  height: 630px;
  min-height: 630px;

  background: #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.reference-about .ref-split-reverse .ref-image img {
  object-fit: cover;
  background: #fff;
}

.reference-about .ref-split {
  grid-template-columns: 420px minmax(0, 1fr);
}

.reference-about .ref-image {
  grid-column: 1;
  grid-row: 1;
}

.reference-about .ref-copy {
  grid-column: 2;
  grid-row: 1;
}

.reference-intro .ref-image img,
.reference-about .ref-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reference-intro .ref-image {
  height: 560px;
}

/* .reference-about .ref-image {
    height: 500px
} */

.executive-chef {
  padding: var(--section-y) 0;

  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
    url("../images/bg-pic.png") center / 220px auto repeat,
    #fff;

  border-top: 1px solid var(--orange);
}

.chef-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
}

.chef-image {
  position: relative;
  width: 100%;
  height: 560px;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 28px 70px rgba(32, 33, 30, 0.16);
}

.chef-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chef-copy {
  color: #17212b;
  max-width: 700px;
}

.chef-copy .section-subheading {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 1.35rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--orange);
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.chef-copy h2 {
  color: #17212b;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5.2vw, 3.6rem);
  font-weight: 500;
  line-height: 0.96;
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.chef-nameplate {
  margin: 0 0 1.55rem;
  padding-left: 1.15rem;
  border-left: 3px solid var(--orange);
}

.chef-nameplate h3 {
  color: var(--orange);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.25;
  margin: 0 0 0.25rem;
  text-transform: uppercase;
}

.chef-nameplate p {
  color: #5b5d58;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  margin: 0;
  text-transform: uppercase;
}

.chef-content p {
  color: #2f312c;
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 0.85rem;
}

.chef-content p:last-child {
  margin-bottom: 0;
}

.reference-content {
  position: relative;
  overflow: hidden;
  background: #f8f5ef;
  padding: var(--section-y) 0;
}

.reference-content:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(229, 90, 36, 0.1), transparent 42%, rgba(32, 33, 30, 0.06));
  pointer-events: none;
}

.reference-content .container {
  position: relative;
}

.reference-content .row {
  align-items: stretch;
}

.culinary-panel {
  height: 100%;
  position: relative;
  padding: clamp(2.2rem, 4vw, 4rem);
  background: #fff;
  box-shadow: 0 24px 70px rgba(32, 33, 30, 0.08);
  border-top: 3px solid var(--orange);
}

.culinary-panel:before {
  content: "01";
  display: block;
  margin-bottom: 2.2rem;
  color: rgba(229, 90, 36, 0.34);
  font-family: "Cormorant Garamond", serif;
  font-size: 4.4rem;
  font-weight: 500;
  line-height: 0.7;
}

.reference-content .col-lg-6:nth-child(2) .culinary-panel:before {
  content: "02";
}

.culinary-panel h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
  color: var(--ink);
  margin: 0 0 2rem;
}

.culinary-panel p {
  font-size: 1rem;
  line-height: 1.78;
  color: #3f413c;
  margin-bottom: 1.25rem;
}

.culinary-panel strong {
  color: var(--ink);
}

.blog-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: 9rem 0 5rem;
}

.blog-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84);
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  /* max-width: 940px */
}

.inner-banner .section-subheading {
  /* color: var(--orange); */
  margin-bottom: 1.2rem;
}

.inner-banner h1 {
  font-size: clamp(3rem, 6vw, 4rem);
  line-height: 0.94;
  margin-bottom: 1.35rem;
}

.inner-banner p:not(.section-subheading) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
  line-height: 1.75;
}

.blog-list {
  background: var(--cream);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.5rem);
}

.blog-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.82fr) minmax(0, 1fr);
  min-height: 330px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(32, 33, 30, 0.08);
}

.blog-card-image {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background: var(--ink);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
  filter: saturate(0.88);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.055);
}

.blog-card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2.3rem);
}

.blog-meta {
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
}

.blog-card h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  line-height: 1;
  letter-spacing: 0;
}

.blog-card h2 a {
  color: var(--ink);
}

.blog-card h2 a:hover {
  color: var(--orange);
}

.blog-card-copy > p:not(.blog-meta) {
  color: #4a4c46;
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.blog-card .text-link {
  margin-top: auto;
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.blog-pagination a {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.95rem;
  border: 1px solid rgba(32, 33, 30, 0.18);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-pagination a:hover,
.blog-pagination a.active {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.blog-pagination-next {
  min-width: 76px !important;
}

.blog-grid-top {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-grid-top .blog-card {
  grid-template-columns: 1fr;
  min-height: 0;
}

.blog-grid-top .blog-card-image {
  min-height: 0;
}

.blog-grid-top .blog-card-image img {
  display: block;
  min-height: 280px;
  aspect-ratio: 4 / 3;
}

.blog-grid-top .blog-card-copy {
  min-height: 360px;
}

.blog-detail-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: 10rem 0 5rem;
}

.blog-detail {
  background: var(--cream);
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.blog-detail-article {
  background: #fff;
  padding: clamp(1.5rem, 4vw, 4rem);
  box-shadow: 0 24px 70px rgba(32, 33, 30, 0.08);
}

.blog-detail-featured {
  margin: 0 0 2.5rem;
  overflow: hidden;
  background: var(--ink);
}

.blog-detail-featured img {
  display: block;
  width: 100%;
  height: min(52vw, 520px);
  min-height: 320px;
  object-fit: cover;
}

.blog-detail-article h2 {
  margin: 2.5rem 0 1rem;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: 0;
}

.blog-detail-article h3,
.blog-share h3 {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.25;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.blog-detail-article p,
.blog-detail-article li {
  color: #41433d;
  font-size: 1rem;
  line-height: 1.78;
}

.detail-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.detail-menu-grid section,
.detail-contact,
.blog-share,
.blog-detail-sidebar {
  background: #f8f5ef;
  border-top: 3px solid var(--orange);
  padding: clamp(1.25rem, 2vw, 1.75rem);
}

.detail-menu-grid ul {
  margin: 0;
  padding-left: 1.1rem;
}

.detail-menu-grid li + li {
  margin-top: 0.75rem;
}

.detail-contact {
  margin-top: 2rem;
}

.detail-contact p {
  margin-bottom: 0.45rem;
}

.detail-contact a {
  color: var(--ink);
  font-weight: 700;
}

.detail-contact a:hover {
  color: var(--orange);
}

.blog-share {
  margin-top: 2rem;
}

.blog-share .footer-social a {
  color: var(--ink);
  border-color: rgba(32, 33, 30, 0.22);
}

.blog-share .footer-social a:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.blog-detail-sidebar {
  position: sticky;
  top: 120px;
}

.blog-detail-sidebar h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.7rem, 2vw, 2rem);
  line-height: 1;
  letter-spacing: 0;
}

.sidebar-blog {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(32, 33, 30, 0.14);
}

.sidebar-blog + .sidebar-blog {
  margin-top: 1.4rem;
}

.sidebar-blog h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 0.85rem;
}

.sidebar-blog h3 a {
  color: var(--ink);
}

.sidebar-blog h3 a:hover {
  color: var(--orange);
}

.sidebar-blog p:not(.blog-meta) {
  color: #4a4c46;
  font-size: 0.92rem;
  line-height: 1.62;
}

/* .private-events-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: 9rem 0 5rem;
}

.private-events-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86);
}

.private-events-hero .btn {
  margin-top: 0.75rem;
} */

.private-events-intro {
  background: linear-gradient(90deg, #f4efe6 0 70%, #fff 70%);
}

.private-events-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.private-events-layout--no-image {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.private-events-layout--no-image .private-events-copy {
  width: 100%;
  max-width: 760px;
}

.private-events-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.private-events-copy p:not(.section-subheading) {
  max-width: 650px;
  color: #3f413c;
  font-size: 1rem;
  line-height: 1.78;
}

.private-events-photo {
  height: min(52vw, 640px);
  min-height: 460px;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(32, 33, 30, 0.16);
}

.private-events-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.private-events-moments {
  background: #1d1e1b;
  color: #fff;
}

.private-events-moment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.private-event-moment {
  min-height: 320px;
  background: #1d1e1b;
  padding: clamp(2rem, 4vw, 3.5rem);
}

.private-event-moment span {
  display: block;
  color: rgba(229, 90, 36, 0.7);
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  line-height: 0.8;
  margin-bottom: 2rem;
}

.private-event-moment h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 0.98;
  margin-bottom: 1.2rem;
}

.private-event-moment p {
  color: #d9d9d5;
  line-height: 1.7;
  margin: 0;
}

.private-event-moment-content {
  color: #d9d9d5;
}

.private-event-moment-content p {
  color: inherit;
  line-height: 1.7;
  margin: 0;
}

.private-event-moment-content p + p {
  margin-top: 1rem;
}

.private-events-enquiry {
  background: var(--cream);
  padding: var(--section-y-tight) 0 var(--section-y);
}

.private-events-enquiry-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: #fff;
  border-top: 3px solid var(--orange);
  box-shadow: 0 24px 70px rgba(32, 33, 30, 0.08);
}

.private-events-enquiry-inner h2 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.96;
  margin-bottom: 0.9rem;
}

.private-events-enquiry-inner p {
  max-width: 680px;
  color: #4a4c46;
  margin: 0;
}

.not-found-main,
.simple-page-main {
  position: relative;
  background: #fff;
  min-height: 100vh;
  padding-top: 120px;
}

.not-found-main:before,
.simple-page-main:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 120px;
  background: #1d1e1b;
  z-index: 0;
}

.not-found-simple,
.simple-page-heading,
.thank-you-page {
  min-height: calc(100vh - 120px);
  display: grid;
  place-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
}

.not-found-simple .container,
.simple-page-heading .container,
.thank-you-page .container {
  max-width: 680px;
}

.simple-page-heading {
  padding: 1rem 0;
  min-height: auto;
}

.not-found-kicker,
.simple-page-kicker {
  margin: 0 0 0.9rem;
  color: #6d6e69;
  font-size: 0.95rem;
  font-weight: 600;
}

.not-found-simple h1,
.simple-page-heading h1,
.thank-you-page h1 {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  margin-bottom: 1rem;
}

.not-found-simple p:not(.not-found-kicker),
.simple-page-heading p:not(.simple-page-kicker),
.thank-you-page p:not(.simple-page-kicker) {
  max-width: 520px;
  margin: 0 auto 2.2rem;
  color: #5b5d57;
  font-size: 1rem;
  line-height: 1.65;
}

.not-found-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  background: #1f201d;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.not-found-button:hover {
  color: #fff;
  background: var(--orange);
}

.privacy-content {
  padding: var(--section-y) 0;
  background:
    linear-gradient(rgba(244, 239, 230, 0.94), rgba(244, 239, 230, 0.94)),
    url("../images/bg-pic.png") center / 220px auto repeat,
    var(--cream);
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}

.privacy-sidebar {
  position: sticky;
  top: 7rem;
}

.privacy-sidebar-card {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-top: 3px solid var(--orange);
  background: #1d1e1b;
  color: #fff;
  box-shadow: 0 24px 70px rgba(32, 33, 30, 0.16);
}

.privacy-sidebar-kicker {
  margin: 0 0 1rem;
  color: var(--orange);
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.privacy-sidebar-card h2 {
  margin: 0 0 1.25rem;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
  text-wrap: balance;
}

.privacy-sidebar-intro > p:not(.privacy-sidebar-kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.privacy-sidebar-meta {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.privacy-sidebar-meta > div {
  display: grid;
  gap: 0.35rem;
}

.privacy-sidebar-meta span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.privacy-sidebar-meta strong,
.privacy-sidebar-meta a {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.privacy-sidebar-meta a:hover,
.privacy-sidebar-meta a:focus {
  color: var(--orange);
}

.privacy-policy-card {
  min-width: 0;
  padding: clamp(2.25rem, 4vw, 4rem);
  border-top: 3px solid var(--orange);
  background: #fff;
  box-shadow: 0 24px 70px rgba(32, 33, 30, 0.1);
}

.privacy-policy-body {
  min-width: 0;
  color: #41433d;
  overflow-wrap: break-word;
}

.privacy-policy-body h2 {
  margin: 3rem 0 1.2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
  text-wrap: balance;
}

.privacy-policy-body h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.privacy-policy-body h3 {
  margin: 2rem 0 0.85rem;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.15;
  text-wrap: balance;
}

.privacy-policy-body p,
.privacy-policy-body ul,
.privacy-policy-body ol {
  margin: 0 0 1.2rem;
  color: #41433d;
  font-size: 0.98rem;
  line-height: 1.8;
  text-wrap: pretty;
}

.privacy-policy-body ul,
.privacy-policy-body ol {
  padding-left: 1.4rem;
}

.privacy-policy-body li + li {
  margin-top: 0.45rem;
}

.privacy-policy-body li::marker {
  color: var(--orange);
}

.privacy-policy-body strong {
  color: var(--ink);
}

.privacy-policy-body a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.privacy-policy-body a:hover,
.privacy-policy-body a:focus {
  color: var(--orange);
}

@media (max-width: 991.98px) {
  .privacy-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .privacy-sidebar {
    position: static;
  }

  .privacy-sidebar-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.7fr);
    column-gap: 2rem;
  }

  .privacy-sidebar-intro {
    grid-column: 1;
  }

  .privacy-sidebar-meta {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
    padding-top: 0;
    padding-left: 2rem;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .privacy-policy-card {
    padding: clamp(2rem, 5vw, 3.25rem);
  }
}

@media (max-width: 575.98px) {
  .privacy-sidebar-card {
    display: block;
    padding: 1.5rem;
  }

  .privacy-sidebar-meta {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .privacy-policy-card {
    padding: 1.5rem 1.25rem;
  }

  .privacy-policy-body h2 {
    margin-top: 2.5rem;
    padding-top: 2rem;
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }

  .privacy-policy-body p,
  .privacy-policy-body ul,
  .privacy-policy-body ol {
    font-size: 0.92rem;
    line-height: 1.75;
  }
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
}

.private-events-form {
  display: grid;
  gap: 1rem;
}

.private-events-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.private-events-form label {
  display: grid;
  gap: 0.45rem;
  margin: 0;
}

/* .private-events-form span {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
} */

.private-events-form .field-label {
  display: block;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* .private-events-form input,
.private-events-form select,
.private-events-form textarea {
  width: 100%;
  border: 1px solid rgba(32, 33, 30, 0.18);
  background: #f8f5ef;
  color: var(--ink);
  border-radius: 0;
  padding: 0.95rem 1rem;
  font: inherit;
  outline: 0;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.private-events-form textarea {
  resize: vertical;
} */

.form-consent {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.25rem;
}

.form-consent p {
  color: #4a4c46;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.form-consent a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-consent a:hover {
  color: var(--orange);
}

/* .private-events-form .form-checkline {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
} */

/* .private-events-form .form-checkline {
  display: block;
}

.private-events-form .form-checkline input {
  width: 16px;
  height: 16px;
  margin-top: 0.2rem;
  accent-color: var(--orange);
}

.private-events-form .form-checkline span {
  color: #2f312c;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
} */

/* .private-events-form input:focus,
.private-events-form select:focus,
.private-events-form textarea:focus {
  border-color: var(--orange);
  background: #fff;
} */

/* .private-events-form button {
  justify-self: start;
  margin-top: 0.5rem;
} */

/* ==========================================================
   PRIVATE EVENTS - CONTACT FORM 7
========================================================== */

/*
 * Contact Form 7 can generate <br> elements from
 * line breaks in the form editor.
 *
 * The original HTML form does not use these,
 * so remove them inside this form only.
 */
.private-events-form br {
  display: none;
}

/*
 * Prevent CF7-generated paragraphs from
 * introducing additional vertical margins.
 */
.private-events-cf7 .wpcf7-form p {
  margin: 0;
}

/* Main Contact Form 7 wrapper */
.private-events-cf7 .wpcf7 {
  margin: 0;
}

/* CF7 inserts this around every form field */
.private-events-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* ==========================================================
   FORM INPUTS
========================================================== */

.private-events-form input[type="text"],
.private-events-form input[type="email"],
.private-events-form input[type="tel"],
.private-events-form input[type="date"],
.private-events-form input[type="number"],
.private-events-form select,
.private-events-form textarea {
  width: 100%;
  max-width: none;

  border: 1px solid rgba(32, 33, 30, 0.18);
  border-radius: 0;

  background: #f8f5ef;
  color: var(--ink);

  padding: 0.95rem 1rem;

  font: inherit;

  outline: none;
  box-shadow: none;

  transition:
    border-color 0.2s,
    background 0.2s;
}

/* Textarea */
/* .private-events-form textarea {
  min-height: 150px;
  resize: vertical;
} */

.private-events-form textarea {
  display: block;
  width: 100%;
  height: 160px;
  min-height: 160px;
  resize: vertical;
}

/* Focus */
.private-events-form input[type="text"]:focus,
.private-events-form input[type="email"]:focus,
.private-events-form input[type="tel"]:focus,
.private-events-form input[type="date"]:focus,
.private-events-form input[type="number"]:focus,
.private-events-form select:focus,
.private-events-form textarea:focus {
  border-color: var(--orange);
  background: #fff;
  box-shadow: none;
}

/* ==========================================================
   CONTACT FORM 7 CHECKBOX / ACCEPTANCE
========================================================== */

/* CF7 generated field wrapper */
.private-events-form .form-checkline .wpcf7-form-control-wrap {
  width: 100%;
}

/* Checkbox group */
.private-events-form .form-checkline .wpcf7-form-control {
  display: block;
}

/* CF7 list item */
.private-events-form .form-checkline .wpcf7-list-item {
  display: block;
  margin: 0;
}

/* Checkbox + wording */
.private-events-form .form-checkline .wpcf7-list-item label {
  display: grid;

  grid-template-columns: 18px minmax(0, 1fr);

  gap: 0.65rem;

  align-items: start;

  margin: 0;
}

/* Actual checkbox */
.private-events-form .form-checkline input[type="checkbox"] {
  width: 16px;
  height: 16px;

  margin: 0.2rem 0 0;

  padding: 0;

  accent-color: var(--orange);
}

/* Checkbox wording */
.private-events-form .form-checkline .wpcf7-list-item-label {
  color: #2f312c;

  font-size: 0.9rem;
  font-weight: 500;

  line-height: 1.55;
  letter-spacing: 0;

  text-transform: none;
}

/* ==========================================================
   CF7 ACCEPTANCE FIELD
========================================================== */

.private-events-form .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.private-events-form .wpcf7-acceptance label {
  display: grid;

  grid-template-columns: 18px minmax(0, 1fr);

  gap: 0.65rem;

  align-items: start;
}

/* ==========================================================
   CONSENT TEXT
========================================================== */

.private-events-form .form-consent {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.25rem;
}

.private-events-form .form-consent p {
  margin: 0;

  color: #4a4c46;

  font-size: 0.88rem;
  line-height: 1.6;
}

/* Privacy Policy link */
.private-events-form .form-consent a {
  color: var(--ink);

  font-weight: 700;

  text-decoration: underline;
  text-underline-offset: 3px;
}

.private-events-form .form-consent a:hover {
  color: var(--orange);
}

/* ==========================================================
   CONTACT FORM 7 VALIDATION
========================================================== */

/* Error below individual fields */
.private-events-form .wpcf7-not-valid-tip {
  display: block;

  margin-top: 0.4rem;

  color: #b84725;

  font-size: 0.76rem;
  font-weight: 500;

  line-height: 1.45;

  letter-spacing: 0;
  text-transform: none;
}

/* Red invalid field */
.private-events-form .wpcf7-not-valid {
  border-color: #b84725 !important;
}

/* Main success/error message */
.private-events-form .wpcf7-response-output {
  margin: 1rem 0 0 !important;

  padding: 0.85rem 1rem !important;

  border-radius: 0;

  font-size: 0.84rem;
  line-height: 1.55;
}

/* ==========================================================
   SUBMIT BUTTON
========================================================== */

.private-events-form input[type="submit"].wpcf7-submit {
  width: auto;

  justify-self: start;

  margin-top: 0.5rem;

  border: 1px solid var(--orange);
  border-radius: 0;

  background: var(--orange);
  color: #fff;

  padding: 0.95rem 1.45rem;

  font-family: "Manrope", sans-serif;

  font-size: 0.68rem;
  font-weight: 600;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  cursor: pointer;

  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s;
}

.private-events-form input[type="submit"].wpcf7-submit:hover,
.private-events-form input[type="submit"].wpcf7-submit:focus {
  background: #c84416;
  border-color: #c84416;
  color: #fff;
}

/* CF7 loading spinner */
.private-events-form .wpcf7-spinner {
  margin: 0 0 0 0.75rem;

  vertical-align: middle;
}

/* .menu-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 9rem 0 4.5rem;
  overflow: hidden;
  color: #fff;
}

.menu-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.menu-page {
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
    url("../images/bg-pic.png") center/220px auto repeat,
    #fff !important;
}

.menu-container {
  /* max-width: 1536px; */
  padding-right: clamp(1.25rem, 2vw, 2rem);
  padding-left: clamp(1.25rem, 2vw, 2rem);
}

.menu-sheet {
  color: #9d6d45;
  font-size: clamp(0.56rem, 0.72vw, 0.68rem);
  font-weight: 400;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0;
}

.menu-section {
  margin-bottom: 1rem;
}

.menu-section h2 {
  color: #9d6d45;
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.62rem, 0.78vw, 0.75rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.menu-section-simple h2 {
  margin: 0 0 0.45rem;
  padding-bottom: 0.38rem;
  border-bottom: 1px solid #0d3d32;
}

.menu-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.75rem, 4vw, 3rem);
}

.menu-list {
  display: grid;
  gap: 0.12rem;
}

.menu-list .menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  column-gap: 1rem;
  align-items: baseline;
  min-height: 1.12rem;
}

.menu-list .menu-item span:first-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.menu-list .menu-item span:not(:first-child) {
  text-align: right;
  white-space: nowrap;
}

.menu-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 6rem 6rem 6rem minmax(0, 1fr) 6rem 6rem 6rem;
  align-items: end;
  gap: 0;
  margin-bottom: 0.45rem;
  padding-bottom: 0.38rem;
  border-bottom: 1px solid #0d3d32;
}

.menu-section-head h2 {
  margin: 0;
}

.menu-section-head span {
  font-size: clamp(0.56rem, 0.72vw, 0.68rem);
  text-align: center;
  white-space: nowrap;
}

.menu-section-head span:nth-of-type(1) {
  grid-column: 2;
}

.menu-section-head span:nth-of-type(2) {
  grid-column: 3;
}

.menu-section-head span:nth-of-type(3) {
  grid-column: 4;
}

.menu-list-priced .menu-item {
  grid-template-columns: minmax(0, 1fr) 6rem 6rem 6rem;
}

.menu-section-two-price .menu-section-head {
  grid-template-columns: minmax(0, 1fr) 7rem 7rem minmax(0, 1fr) 7rem 7rem;
}

.menu-section-two-price .menu-section-head span:nth-of-type(1) {
  grid-column: 2;
}

.menu-section-two-price .menu-section-head span:nth-of-type(2) {
  grid-column: 3;
}

.menu-section-two-price .menu-list-priced .menu-item {
  grid-template-columns: minmax(0, 1fr) 7rem 7rem;
}

.menu2-layout .menu-page-alt {
  background: #f4efe6;
}

/* .menu2-layout .menu-container {
    max-width: 1180px;
} */

.menu2-layout .menu-sheet {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.45;
  text-transform: none;
}

.menu2-layout .menu-section {
  position: relative;
  margin: 0;
  padding: clamp(1.25rem, 2.4vw, 1.9rem);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(184, 98, 40, 0.22);
  box-shadow: 0 18px 42px rgba(32, 33, 30, 0.08);
}

.menu2-layout .menu-section h2,
.menu2-layout .menu-section-head h2 {
  color: var(--orange);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: none;
}

.food-menu-layout .menu-section h2,
.food-menu-layout .menu-section-head h2 {
  font-size: clamp(1.9rem, 2.7vw, 2.65rem);
  line-height: 1.08;
}

.menu2-layout .menu-section-simple h2,
.menu2-layout .menu-section-head {
  margin-bottom: 1.1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(184, 98, 40, 0.35);
}

.menu2-layout .menu-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(3, minmax(3.4rem, max-content));
  column-gap: 0.65rem;
  align-items: end;
}

.menu2-layout .menu-section-two-price .menu-section-head {
  grid-template-columns: minmax(0, 1fr) repeat(2, minmax(3.8rem, max-content));
}

.menu2-layout .menu-section-head h2 {
  grid-column: 1;
}

.menu2-layout .menu-section-head span,
.menu2-layout .menu-section-head span:nth-of-type(1),
.menu2-layout .menu-section-head span:nth-of-type(2),
.menu2-layout .menu-section-head span:nth-of-type(3),
.menu2-layout .menu-section-two-price .menu-section-head span:nth-of-type(1),
.menu2-layout .menu-section-two-price .menu-section-head span:nth-of-type(2) {
  grid-column: auto;
  color: #62584e;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.menu2-layout .menu-two-column {
  grid-template-columns: 1fr;
  gap: 0.2rem;
}

.menu2-layout .menu-list {
  gap: 0.34rem;
}

.menu2-layout .menu-item,
.menu2-layout .menu-list-priced .menu-item,
.menu2-layout .menu-section-two-price .menu-list-priced .menu-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(3, max-content);
  column-gap: 0.65rem;
  align-items: center;
  min-height: 1.7rem;
  color: #20211e;
  border-bottom: 1px solid rgba(184, 98, 40, 0.12);
}

.menu2-layout .menu-section-two-price .menu-list-priced .menu-item {
  grid-template-columns: minmax(0, 1fr) repeat(2, max-content);
}

.menu2-layout .menu-item span {
  position: relative;
  z-index: 1;
}

.menu2-layout .menu-item span:first-child {
  padding-right: 0.55rem;
  color: #272820;
  /* font-weight: 650; */
}

.menu2-layout .menu-item span:not(:first-child) {
  min-width: 3.25rem;
  padding: 0.15rem 0.45rem;
  /* color: #fff;
    background: var(--orange); */
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
}

.menu2-layout .menu-item span:empty {
  visibility: hidden;
}

.food-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: stretch;
}

.food-menu-section-wide {
  grid-column: 1 / -1;
}

.food-menu-section > h2,
.food-menu-subsection > h2,
.water-fresh-category > h2 {
  margin: 0 0 1.1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(184, 98, 40, 0.35);
}

.food-menu-subsection {
  margin-top: 1.9rem;
}

.water-fresh-grid,
.hot-beverages-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.food-menu-section-wide .water-fresh-grid .food-menu-list {
  grid-template-columns: 1fr;
}

.food-menu-list {
  display: grid;
}

.food-menu-section-wide .food-menu-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(1.5rem, 3vw, 2.5rem);
}

.food-menu-section-wide .food-menu-list > .food-menu-item-extra {
  grid-column: 1 / -1;
}

.hot-beverages-grid .food-menu-list {
  grid-template-columns: 1fr;
}

.red-wine-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.food-menu-section-wide .red-wine-column {
  grid-template-columns: 1fr;
}

.white-wine-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.food-menu-section-wide .white-wine-column {
  grid-template-columns: 1fr;
}

.food-menu-item {
  min-width: 0;
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(184, 98, 40, 0.14);
}

.food-menu-item:first-child {
  padding-top: 0;
}

.food-menu-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.food-menu-item-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 0.85rem;
  align-items: baseline;
}

.food-menu-item-name {
  min-width: 0;
  margin: 0;
  color: #272820;
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.food-menu-item-price {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.food-menu-item-description,
.food-menu-item-extra {
  margin: 0.24rem 0 0;
  color: #62584e;
  font-size: 0.82rem;
  line-height: 1.55;
}

.food-menu-item-extra {
  color: #8e5a31;
  font-size: 0.76rem;
  font-weight: 600;
}

.food-menu-note {
  display: grid;
  gap: 0.65rem;
  margin-top: clamp(1.25rem, 2vw, 1.75rem);
  padding: 1rem 0;
  color: #62584e;
  border-top: 1px solid rgba(184, 98, 40, 0.35);
  font-size: 0.78rem;
  line-height: 1.55;
}

.food-menu-note p,
.food-menu-legend {
  margin: 0;
}

.food-menu-allergy-prompt {
  color: var(--ink);
  font-weight: 600;
}

.food-menu-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  padding: 0;
  list-style: none;
}

.food-menu-pricing-note {
  font-size: 0.74rem;
}

/* ========================================
   BUSINESS LUNCH MENU
======================================== */

.business-lunch-week + .business-lunch-week {
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.business-lunch-week-title {
  margin: 0 0 clamp(1rem, 2vw, 1.5rem);
  color: var(--orange);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
}

.business-lunch-week .food-menu-section > h3 {
  margin: 0 0 1.1rem;
  padding-bottom: 0.8rem;
  color: var(--orange);
  border-bottom: 1px solid rgba(184, 98, 40, 0.35);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 2.7vw, 2.65rem);
  font-weight: 500;
  line-height: 1.08;
}

.business-lunch-page .food-menu-item-head {
  grid-template-columns: minmax(0, 1fr);
}

@media (max-width: 767.98px) {
  .food-menu-grid,
  .food-menu-section-wide .food-menu-list,
  .hot-beverages-grid,
  .red-wine-columns,
  .white-wine-columns,
  .water-fresh-grid {
    grid-template-columns: 1fr;
  }

  .water-fresh-grid {
    row-gap: 1.75rem;
  }

  .food-menu-section-wide {
    grid-column: 1;
  }

  .food-menu-item-head {
    gap: 0.65rem;
  }

  .business-lunch-week .food-menu-section > h3 {
    font-size: clamp(1.8rem, 8vw, 2.15rem);
  }
}

@media (max-width: 991.98px) {
  .menu2-layout .menu-sheet {
    grid-template-columns: 1fr;
    width: 100%;
    opacity: 1;
    transform: none;
  }

  .menu2-layout .menu-section {
    width: 100%;
  }
}

@media (max-width: 1300px) {
  .nav-link {
    font-size: 0.8rem;
  }

  .nav-reservation {
    font-size: 0.8rem;
  }
}

@media (max-width: 1199.98px) and (min-width: 992px) {
  .navbar {
    padding-top: 2rem;
  }

  .navbar-brand img {
    width: 112px;
  }

  .navbar.scrolled .navbar-brand img {
    width: 96px;
  }

  .navbar .gap-lg-3 {
    gap: 0.28rem !important;
  }

  .nav-link {
    font-size: 0.75rem;
  }

  .nav-reservation {
    font-size: 0.75rem;
    padding-right: 8px;
    padding-left: 8px;
  }
}

@media (max-width: 991.98px) {
  :root {
    --section-y: clamp(3.75rem, 8vw, 5rem);
    --section-y-tight: 2.5rem;
    --mobile-action-bar-height: 54px;
  }

  body {
    padding-bottom: calc(
      var(--mobile-action-bar-height) + env(safe-area-inset-bottom)
    );
  }

  #mobileNav {
    --bs-offcanvas-width: 100vw;

    width: 100vw;
    max-width: none;
    height: 100dvh;
    max-height: none;
  }

  .mobile-fixed-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1020;

    display: grid;
    grid-template-columns:
      minmax(0, 1fr)
      var(--mobile-action-bar-height);

    width: 100%;
    height: calc(
      var(--mobile-action-bar-height) + env(safe-area-inset-bottom)
    );
    padding-bottom: env(safe-area-inset-bottom);

    background: var(--orange);
  }

  .mobile-fixed-reservation,
  .mobile-fixed-actions .back-to-top {
    height: var(--mobile-action-bar-height);
  }

  .mobile-fixed-reservation {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;

    padding: 0 1rem;
    border: 0;

    font-size: 0.8rem;
    text-align: center;
    white-space: nowrap;
  }

  .mobile-fixed-reservation:hover,
  .mobile-fixed-reservation:focus {
    color: #fff;
    transform: none;
  }

  .mobile-fixed-actions .back-to-top {
    position: static;
    z-index: auto;

    width: var(--mobile-action-bar-height);
    border-left: 1px solid var(--cream);
  }

  .mobile-fixed-reservation:focus-visible,
  .mobile-fixed-actions .back-to-top:focus-visible {
    outline: 2px solid var(--cream);
    outline-offset: -4px;
  }

  .grecaptcha-badge {
    bottom: calc(
      var(--mobile-action-bar-height)
      + env(safe-area-inset-bottom)
      + 12px
    ) !important;
  }

  .navbar {
    padding: 1rem 0;
  }

  .navbar-brand {
    position: relative;
    order: 1;
    left: auto;
    top: auto;
    transform: none;
  }

  .navbar-toggler {
    display: inline-flex !important;
    position: absolute;
    right: 1.25rem;
    top: 1rem;
    width: 38px;
    height: 38px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: var(--orange);
    border: 0;
    border-radius: 2px;
    order: 2;
    margin-left: auto;
  }

  .navbar-toggler span {
    flex: 0 0 2px;
  }

  .navbar-collapse {
    order: 3;
  }

  .navbar-brand img {
    width: 150px;
  }

  .navbar.scrolled .navbar-brand img {
    width: 120px;
  }

  .story-images {
    height: 560px;
  }

  .dish-card {
    height: 450px;
  }

  .pasta-night {
    grid-template-columns: 1fr;
  }

  .pasta-copy {
    min-height: 450px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid img {
    min-height: 320px;
  }

  .visit {
    background-attachment: scroll;
  }

  .ref-split,
  .ref-split-reverse,
  .promo-slide,
  .footer-intro,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .ref-copy {
    padding: 3rem 1.5rem;
  }

  .ref-image {
    min-height: 320px;
  }

  .promo-slide {
    height: auto;
    min-height: 0;
  }

  .promo-slide-image,
  .promo-slide-image img {
    height: 360px;
    min-height: 0;
  }

  .promo-slide-copy {
    min-height: 420px;
    padding: 3.2rem 1.5rem 6.75rem;
  }

  .promo-slide-copy:after {
    display: none;
  }

  .promo-slider .carousel-indicators {
    left: 1.5rem;
    bottom: 2rem;
  }

  .promo-slider .carousel-control-prev,
  .promo-slider .carousel-control-next {
    bottom: 1.35rem;
  }

  .promo-title {
    max-width: 100%;
  }

  .footer-intro {
    gap: 1rem;
  }

  .newsletter {
    flex-direction: column;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-card {
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  }

  .blog-detail-layout {
    grid-template-columns: 1fr;
  }

  .blog-detail-sidebar {
    position: static;
  }

  /* .private-events-hero {
    min-height: 560px;
  } */
  .page-banner {
    min-height: 560px;
  }

  .private-events-layout {
    grid-template-columns: 1fr;
  }

  .private-events-intro {
    background: var(--cream);
  }

  .private-events-photo {
    height: 440px;
    min-height: 0;
  }

  .private-events-moment-grid {
    grid-template-columns: 1fr;
  }

  .private-event-moment {
    min-height: 260px;
  }

  .private-events-enquiry-inner {
    grid-template-columns: 1fr;
  }

  /* .menu-hero {
    min-height: 460px;
    padding: 7rem 0 3.5rem;
  } */

  .menu-sheet {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .menu-section {
    margin-bottom: 1.4rem;
  }

  .menu-section h2 {
    font-size: 0.82rem;
  }

  .menu-two-column {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .menu-section-head {
    grid-template-columns: minmax(0, 1fr) 4rem 4rem 4.4rem;
  }

  .menu-section-two-price .menu-section-head {
    grid-template-columns: minmax(0, 1fr) 4.7rem 4.7rem;
  }

  .menu-section-head span:nth-of-type(1),
  .menu-section-two-price .menu-section-head span:nth-of-type(1) {
    grid-column: 2;
  }

  .menu-section-head span:nth-of-type(2),
  .menu-section-two-price .menu-section-head span:nth-of-type(2) {
    grid-column: 3;
  }

  .menu-section-head span:nth-of-type(3) {
    grid-column: 4;
  }

  .menu-list-priced .menu-item {
    grid-template-columns: minmax(0, 1fr) 4rem 4rem 4.4rem;
  }

  .menu-section-two-price .menu-list-priced .menu-item {
    grid-template-columns: minmax(0, 1fr) 4.7rem 4.7rem;
  }

  .site-footer .footer-content-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .site-footer .footer-logo,
  .site-footer .footer-content-row > .col-md-12:not(.mb-3) {
    grid-column: 1 / -1;
    grid-row: 4;
  }

  .site-footer .col-md-12.mb-3 {
    grid-column: 1;
    grid-row: 2;
    max-width: none;
  }

  .site-footer .footer-location {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .site-footer .footer-menu {
    grid-column: 2;
    grid-row: 2;
  }

  .site-footer .footer-career {
    grid-column: 1;
    grid-row: 5;
    max-width: none;
  }

  .site-footer .footer-award {
    grid-column: 2;
    grid-row: 5;
    justify-self: end;
  }

  .floating-reservation {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .reference-intro {
    padding: var(--section-y) 0;
    background: var(--cream);
  }

  .reference-intro .ref-image {
    position: relative;
    isolation: isolate;
  }

  .reference-intro .ref-image::before {
    content: "";

    position: absolute;

    z-index: -1;

    top: calc(-1 * var(--section-y));

    right: calc(50% - 50vw);

    bottom: -1rem;

    left: calc(50% - 50vw);

    background:
      linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
      url("../images/bg-pic.png") center / 220px auto repeat,
      #fff;
  }

  .reference-intro .ref-split,
  .reference-about .ref-split,
  .chef-panel {
    width: min(720px, calc(100% - 2rem));
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .reference-intro .ref-image,
  .reference-about .ref-image,
  .chef-image {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .reference-intro .ref-image img,
  .reference-about .ref-split-reverse .ref-image img,
  .chef-image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .reference-intro .ref-image {
    order: 1;
  }

  .reference-intro .ref-copy {
    order: 2;
  }

  .reference-intro .ref-copy h2,
  .reference-about .ref-copy h2 {
    font-size: 2rem;
  }

  .reference-about {
    padding: var(--section-y) 0;
  }

  .reference-about .ref-image {
    grid-column: 1;
    grid-row: 1;
    transform: none;
  }

  .reference-about .ref-copy {
    grid-column: 1;
    grid-row: 2;
  }

  .chef-copy {
    max-width: none;
  }
}

@media (max-width: 991.98px) {
  .reference-content {
    padding: var(--section-y) 0;
  }

  .culinary-panel {
    padding: 2.2rem;
  }

  .culinary-panel h2 {
    font-size: 3.2rem;
  }
}

@media (max-width: 767.98px) {
  :root {
    --section-y: 3.5rem;
    --section-y-tight: 2rem;
  }

  h1 {
    font-size: clamp(3.05rem, 13.5vw, 4.5rem);
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding: 5rem 1.2rem 0;
  }

  .hero-content h1 {
    font-size: clamp(1.55rem, 6.5vw, 2.1rem);
    line-height: 1.38;
  }

  .scroll-cue {
    bottom: 1.4rem;
  }

  .story-images {
    height: 470px;
  }

  .story-main {
    width: 92%;
    height: 72%;
  }

  .story-float {
    width: 56%;
    height: 38%;
  }

  .stamp {
    width: 96px;
    height: 96px;
  }

  .dish-card,
  .dish-card-down {
    height: 470px;
    margin-top: 0;
  }

  .pasta-night {
    min-height: 0;
  }

  .pasta-photo {
    min-height: 430px;
  }

  .visit {
    display: block;
    padding: var(--section-y) 0;
    min-height: auto;
  }

  .visit-location-panel {
    grid-template-columns: 1fr;
  }

  .visit-map {
    position: relative;
    inset: auto;
    height: 360px;
    min-height: 0;
  }

  .visit-map a {
    min-height: 360px;
  }

  .visit-map-pin {
    width: 44px;
  }

  .visit-card {
    margin: 0;
    width: auto;
    min-height: 0;
    padding: 2.2rem 1.4rem;
  }

  .visit-card h2 {
    font-size: 1.15rem;
  }

  .visit-details div {
    grid-template-columns: minmax(95px, 0.55fr) minmax(0, 1fr);
  }

  footer:not(.site-footer) {
    padding-top: 4rem;
  }

  .site-footer {
    padding-top: 0;
  }

  /* .site-footer .widget_text,
    .site-footer .TA_certificateOfExcellence {
        margin-bottom: 1.5rem
    } */
  .site-footer hr {
    margin: 1.5rem 0 !important;
  }
}

@media (max-width: 767.98px) {
  .reference-intro .ref-copy h2,
  .reference-about .ref-copy h2,
  .chef-copy h2 {
    font-size: 1.7rem;
    line-height: 1.16;
  }

  .reference-intro .ref-copy p,
  .reference-about .ref-copy p {
    font-size: 0.96rem;
    line-height: 1.65;
  }
}

@media (max-width: 767.98px) {
  .reference-content {
    padding: var(--section-y) 0;
  }

  .culinary-panel h2 {
    font-size: 2.55rem;
  }

  .culinary-panel:before {
    font-size: 3.4rem;
    margin-bottom: 1.6rem;
  }

  .culinary-panel p {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .promo-slide-image,
  .promo-slide-image img {
    height: 300px;
  }

  .promo-title {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
    line-height: 0.96;
  }

  .promo-kicker {
    font-size: 0.62rem !important;
    letter-spacing: 0.18em;
  }

  .promo-slide-copy p:not(.promo-kicker) {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .promo-slider .carousel-control-prev,
  .promo-slider .carousel-control-next {
    width: 42px;
    height: 42px;
  }

  .promo-slider .carousel-control-prev {
    right: calc(1rem + 50px);
  }

  .promo-slider .carousel-control-next {
    right: 1rem;
  }
}

@media (max-width: 575.98px) {
  .container {
    --bs-gutter-x: 1.5rem;
  }

  .promo-slide-copy {
    min-height: 390px;
    padding: 2.5rem 1.25rem 6.25rem;
  }

  .promo-kicker {
    margin-bottom: 1.35rem !important;
  }

  .promo-title {
    margin-bottom: 1.45rem;
  }

  .promo-slider .carousel-indicators {
    left: 1.25rem;
    bottom: 1.75rem;
  }

  .promo-slider .carousel-control-prev,
  .promo-slider .carousel-control-next {
    bottom: 1.15rem;
  }

  .visit {
    min-height: auto;
  }

  .visit-card {
    margin: 0;
    padding: 2rem 1.25rem;
  }

  .visit-details {
    margin-top: 0;
    padding-top: 0;
  }

  .visit-details div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    align-items: start;
    padding: 0.65rem 0;
  }

  .visit-details dd {
    text-align: left;
  }

  .visit-directions {
    width: 100%;
    justify-content: space-between;
  }

  .blog-hero {
    min-height: 460px;
    padding: 7rem 0 3.5rem;
  }

  .inner-banner h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .page-banner--private-events h1 {
    width: 100%;
    font-size: clamp(2.1rem, 9vw, 2.7rem);
    line-height: 1.05;
  }

  .blog-detail-hero {
    min-height: 500px;
    padding: 8rem 0 3.5rem;
  }

  /* .private-events-hero {
    min-height: 460px;
    padding: 7rem 0 3.5rem;
  } */

  .page-banner {
    min-height: 460px;
    padding: 7rem 0 3.5rem;
  }

  .inner-banner p:not(.section-subheading) {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .private-events-copy h2 {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
    line-height: 1.1;
  }

  .private-events-enquiry-inner h2 {
    width: 100%;
    font-size: clamp(1.9rem, 8vw, 2.4rem);
    line-height: 1.08;
  }

  .private-events-form .form-row {
    grid-template-columns: 1fr;
  }

  .private-events-photo {
    height: 320px;
  }

  /* .menu-hero {
    min-height: 430px;
    padding: 7rem 0 3rem;
  } */
  .menu-container {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .menu-page {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .menu-sheet {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .menu-section-simple h2,
  .menu-section-head {
    margin-bottom: 0.65rem;
  }

  .menu-list {
    gap: 0.18rem;
  }

  .menu-item {
    column-gap: 0.75rem;
    min-height: 1.45rem;
  }

  .menu-section-head,
  .menu-list-priced .menu-item {
    grid-template-columns: minmax(0, 1fr) repeat(3, minmax(3.2rem, max-content));
  }

  .menu-section-two-price .menu-section-head,
  .menu-section-two-price .menu-list-priced .menu-item {
    grid-template-columns: minmax(0, 1fr) repeat(2, minmax(3.8rem, max-content));
  }

  .menu2-layout .menu-container {
    padding-right: 0.9rem;
    padding-left: 0.9rem;
  }

  .menu2-layout .menu-sheet {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    opacity: 1;
    transform: none;
  }

  .menu2-layout .menu-section {
    width: 100%;
    padding: 1.15rem;
  }

  .menu2-layout .menu-section h2,
  .menu2-layout .menu-section-head h2 {
    font-size: clamp(2rem, 10vw, 2.55rem);
  }

  .food-menu-layout .menu-section h2,
  .food-menu-layout .menu-section-head h2 {
    font-size: clamp(1.8rem, 8vw, 2.15rem);
  }

  .menu2-layout .menu-section-head {
    grid-template-columns: minmax(0, 1fr) repeat(3, 3.15rem);
    column-gap: 0.25rem;
    row-gap: 0.35rem;
  }

  .menu2-layout .menu-section-two-price .menu-section-head {
    grid-template-columns: minmax(0, 1fr) repeat(2, 4.05rem);
  }

  .menu2-layout .menu-section-head span {
    display: block;
    font-size: 0.55rem;
    letter-spacing: 0.06em;
  }

  .menu2-layout .menu-section-head h2 {
    grid-column: 1 / -1;
  }

  .menu2-layout .menu-section-head span:nth-of-type(1),
  .menu2-layout .menu-section-two-price .menu-section-head span:nth-of-type(1) {
    grid-column: 2;
  }

  .menu2-layout .menu-section-head span:nth-of-type(2),
  .menu2-layout .menu-section-two-price .menu-section-head span:nth-of-type(2) {
    grid-column: 3;
  }

  .menu2-layout .menu-section-head span:nth-of-type(3) {
    grid-column: 4;
  }

  .menu2-layout .menu-item {
    grid-template-columns: minmax(0, 1fr) max-content;
    gap: 0.55rem;
  }

  .menu2-layout .menu-list-priced .menu-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) repeat(3, 3.15rem);
    column-gap: 0.25rem;
    align-items: center;
    padding: 0.35rem 0;
  }

  .menu2-layout .menu-section-two-price .menu-list-priced .menu-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) repeat(2, 4.05rem);
    column-gap: 0.25rem;
    align-items: center;
    padding: 0.35rem 0;
  }

  .menu2-layout .menu-list-priced .menu-item span:first-child {
    padding-right: 0.25rem;
  }

  .menu2-layout .menu-item span:not(:first-child) {
    min-width: 0;
    padding: 0.12rem 0;
    font-variant-numeric: tabular-nums;
    text-align: right;
  }

  .private-event-moment {
    min-height: 0;
    padding: 2rem 1.4rem;
  }

  .blog-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .blog-grid-top {
    grid-template-columns: 1fr;
  }

  .blog-card-image img {
    min-height: 260px;
  }

  .blog-grid-top .blog-card-copy {
    min-height: 0;
  }

  .detail-menu-grid {
    grid-template-columns: 1fr;
  }

  .blog-detail-featured img {
    height: 300px;
    min-height: 0;
  }

  .blog-detail-article {
    padding: 1.5rem;
  }

  .blog-card h2 {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .career-modal {
    padding:
      max(0.5rem, env(safe-area-inset-top))
      max(0.5rem, env(safe-area-inset-right))
      max(0.5rem, env(safe-area-inset-bottom))
      max(0.5rem, env(safe-area-inset-left));
  }

  .career-modal-dialog {
    max-height: calc(100dvh - 1rem);
    padding: 1.25rem 0.9rem;
  }

  .career-modal-close {
    top: 0.75rem;
    right: 0.75rem;
  }

  .career-modal-intro {
    padding-right: 3rem;
    margin-bottom: 1rem;
  }

  .career-modal-intro h2 {
    font-size: clamp(2.35rem, 12vw, 3.25rem);
  }

  .career-modal-form {
    padding-top: 1rem;
  }

  .career-form-grid {
    grid-template-columns: 1fr;
    row-gap: 0.7rem;
  }

  .career-modal-form textarea {
    min-height: 130px;
  }

  .career-modal-form input[type="file"] {
    font-size: 0.76rem;
  }

  .career-submit .wpcf7-submit,
  .career-modal-form input[type="submit"].wpcf7-submit {
    width: 100%;
  }

  .career-submit {
    display: block;
  }

  .career-submit .wpcf7-spinner {
    margin-top: 0.75rem;
  }

  .site-footer .row.pb-3.pt-4 {
    padding: 2.25rem 0 1.15rem !important;
  }

  .site-footer .footer-logo {
    width: 160px;
    margin-bottom: 0.25rem;
  }

  .site-footer .footer-content-row {
    grid-template-columns: 1fr;
    row-gap: 1.2rem;
  }

  .site-footer .col-md-12.mb-3,
  .site-footer .footer-location,
  .site-footer .footer-menu,
  .site-footer .footer-content-row > .col-md-12:not(.mb-3),
  .site-footer .footer-career,
  .site-footer .footer-award {
    grid-column: 1;
    grid-row: auto;
  }

  .site-footer .footer-logo {
    grid-column: 1;
    grid-row: auto;
  }

  .site-footer .col-md-12.mb-3 > p {
    grid-column: 1;
    grid-row: auto;
  }

  .site-footer .footer-logo,
  .site-footer .col-md-12.mb-3 > p {
    grid-column: 1;
  }

  .site-footer .footer-award {
    justify-self: start;
  }

  .site-footer .copyright p {
    font-size: 0.76rem;
  }
}

.hero-content h1,
.ref-copy h2,
.reference-content h2,
.promo-title,
.faqs h2,
.gallery-heading h2,
footer h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .page-loader {
    display: none;
  }

  .hero > .hero-image,
  .hero .carousel-item.active .hero-image,
  .scroll-cue span:after,
  .visit-map-pin {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .visit {
    background-attachment: scroll;
  }
}

/* wordpress Styles  */

/* ========================================
   WordPress Footer Navigation
======================================== */

.footer-nav ul,
.footer-nav .footer-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li {
  margin: 0;
  padding: 0;
}

.footer-nav li a {
  display: block;
}

/* ========================================
   WordPress Header Navigation
======================================== */

@media (min-width: 992px) {
  .navbar > .container {
    flex-wrap: nowrap;
  }

  .navbar-collapse {
    flex: 1 1 auto;
    min-width: 0;
  }

  .navbar-nav {
    flex-direction: row;
    flex-wrap: nowrap !important;
    align-items: center;
  }

  .navbar-nav > .nav-item {
    flex: 0 0 auto;
  }
}

/* ========================================
   FOOTER QUICK LINKS
======================================== */

/*
 * Original static HTML used .footer-nav itself as the grid.
 * WordPress adds a UL inside it, so the NAV must no longer
 * be the grid container.
 */
.footer-nav {
  display: block;
}

/* WordPress generated menu */
.footer-nav .footer-menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  column-gap: 1.25rem;
}

/*
 * Match the original static footer link styling.
 */
.footer-nav .footer-menu-list a {
  display: inline-flex;
}

/* Mobile - same behaviour as original HTML */
@media (max-width: 767.98px) {
  .footer-nav .footer-menu-list {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   REUSABLE SECTION IMAGE CAROUSEL
======================================== */

.section-media-carousel,
.section-media-carousel .carousel-inner,
.section-media-carousel .carousel-item {
  width: 100%;
  height: 100%;
}

.section-media-carousel .section-media-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Carousel controls */

.section-media-carousel .carousel-control-prev,
.section-media-carousel .carousel-control-next {
  top: 50%;
  width: 42px;
  height: 42px;
  padding: 0;

  background: rgba(0, 0, 0, 0.38);
  border: 0;

  transform: translateY(-50%);
  opacity: 0.8;
}

.section-media-carousel .carousel-control-prev {
  left: 14px;
}

.section-media-carousel .carousel-control-next {
  right: 14px;
}

.section-media-carousel .carousel-control-prev:hover,
.section-media-carousel .carousel-control-next:hover {
  opacity: 1;
}

.section-media-carousel .carousel-control-prev-icon,
.section-media-carousel .carousel-control-next-icon {
  width: 18px;
  height: 18px;
}

/* Story without any image */

.reference-intro--no-image {
  background: var(--cream);
}

.reference-intro .ref-split--no-image {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.reference-intro .ref-split--no-image .ref-copy {
  max-width: 760px;
  width: 100%;
}

.chef-panel--no-image {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.chef-panel--no-image .chef-copy {
  width: 100%;
  max-width: 760px;
}

.reference-about .ref-split--no-about-image {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.reference-about .ref-split--no-about-image .ref-copy {
  grid-column: 1;
  grid-row: 1;

  width: 100%;
  max-width: 760px;
}

.promotions-heading {
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.85rem;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 0 1.5rem;
}

/* ==========================================================
   HOMEPAGE GALLERY - CMS VERSION
========================================================== */

#gallery {
  overflow: hidden;
  background: var(--cream);
}

/* ----------------------------------------------------------
   CAROUSEL
---------------------------------------------------------- */

#gallery .gallery-carousel {
  position: relative;
  padding-bottom: 0;
}

#gallery .gallery-carousel .carousel-inner {
  overflow: hidden;
}

/* ----------------------------------------------------------
   DESKTOP - 3 IMAGES
---------------------------------------------------------- */

#gallery .gallery-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 0.75rem;
}

#gallery .gallery-grid figure {
  margin: 0;

  overflow: hidden;

  background: var(--cream);
}

#gallery .gallery-grid a {
  display: block;

  width: 100%;
  height: 100%;

  cursor: zoom-in;
}

#gallery .gallery-grid img {
  display: block;

  width: 100%;
  height: auto;

  min-height: 0;

  aspect-ratio: 0.8;

  object-fit: cover;

  transition: transform 0.8s ease;
}

#gallery .gallery-grid figure:hover img {
  transform: scale(1.04);
}

/* ----------------------------------------------------------
   DESKTOP INDICATORS
---------------------------------------------------------- */

#gallery .gallery-indicators {
  position: static;

  display: flex;

  justify-content: center;

  gap: 0.9rem;

  margin: 2.1rem 0 0;
}

#gallery .gallery-indicators [data-bs-target] {
  width: 14px;
  height: 14px;

  margin: 0;

  border: 1px solid #111;
  border-radius: 0;

  background: transparent;

  opacity: 1;
}

#gallery .gallery-indicators .active {
  background: #414141;

  border-color: #414141;
}

/* Desktop doesn't need arrows/counter */
#gallery .gallery-mobile-control,
#gallery .gallery-slide-counter {
  display: none;
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 991.98px) {
  #gallery .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /*
     * 13+ tiny indicator squares would
     * become messy on tablets.
     */
  #gallery .gallery-indicators {
    display: none;
  }

  #gallery .gallery-mobile-control {
    display: flex;

    top: 50%;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;

    background: rgba(21, 21, 17, 0.86);

    opacity: 1;

    transform: translateY(-50%);
  }

  #gallery .gallery-mobile-control.carousel-control-prev {
    left: 0;
  }

  #gallery .gallery-mobile-control.carousel-control-next {
    right: 0;
  }

  #gallery .gallery-mobile-control .carousel-control-prev-icon,
  #gallery .gallery-mobile-control .carousel-control-next-icon {
    width: 1rem;
    height: 1rem;
  }

  #gallery .gallery-slide-counter {
    display: flex;

    justify-content: center;

    gap: 0.2rem;

    margin-top: 1rem;

    color: #444;

    font-size: 0.75rem;

    font-weight: 600;

    letter-spacing: 0.08em;
  }
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767.98px) {
  #gallery .gallery-grid {
    grid-template-columns: 1fr;

    gap: 0;
  }

  #gallery .gallery-grid img {
    width: 100%;

    min-height: 0;

    aspect-ratio: 0.8;

    object-fit: cover;
  }

  #gallery .gallery-mobile-control {
    width: 40px;
    height: 40px;
  }

  /*
     * Give Fancybox more usable
     * screen space on phones.
     */
  .fancybox__caption {
    padding-left: 1rem;
    padding-right: 1rem;

    font-size: 0.75rem;

    line-height: 1.4;
  }
}

/* ==========================================================
   REUSABLE INNER PAGE BANNER
========================================================== */

.page-banner {
  position: relative;

  display: flex;

  min-height: 560px;

  align-items: flex-end;

  overflow: hidden;

  padding: 9rem 0 5rem;

  background: var(--ink);

  color: #fff;
}

/* Banner photograph */
.page-banner-image {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  filter: saturate(0.86);
}

/* Keep content above image + shade */
.page-banner-content {
  position: relative;

  z-index: 2;
}

/* ==========================================================
   PRIVATE EVENTS - BANNER VARIANT
========================================================== */

/*
 * Dark directional overlay for photographic banner variants.
 */
.page-banner--private-events .hero-shade,
.page-banner--menu .hero-shade,
.page-banner--privacy-policy .hero-shade {
  z-index: 1;

  background: linear-gradient(21deg, rgba(0, 0, 0, 0.64) 35%, rgba(0, 0, 0, 0.42) 42%, rgba(0, 0, 0, 0.24) 60%, rgba(0, 0, 0, 0.08) 100%, rgba(0, 0, 0, 0) 0%);

  pointer-events: none;
}

/*
 * Slight text shadow helps the copy
 * remain readable over the photograph.
 */
.page-banner--private-events .page-banner-content h1,
.page-banner--private-events .page-banner-content p,
.page-banner--menu .page-banner-content h1,
.page-banner--menu .page-banner-content p,
.page-banner--privacy-policy .page-banner-content h1,
.page-banner--privacy-policy .page-banner-content p {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

/* Optional CTA */
.page-banner .btn {
  margin-top: 0.75rem;
}

/* ----------------------------------------------------------
   MENU / PRIVACY POLICY VARIANTS
---------------------------------------------------------- */

.page-banner--menu,
.page-banner--privacy-policy {
  min-height: 520px;

  padding: 9rem 0 4.5rem;
}

@media (max-width: 991.98px) {
  .page-banner--menu,
  .page-banner--privacy-policy {
    min-height: 460px;
    padding: 7rem 0 3.5rem;
  }
}

@media (max-width: 767.98px) {
  .page-banner--menu,
  .page-banner--privacy-policy {
    min-height: 430px;
    padding: 7rem 0 3rem;
  }
}

/* ==========================================================
   FAQ - WORDPRESS EDITOR CONTENT
========================================================== */

.faq-accordion .accordion-body p {
  margin: 0 0 0.85rem;
}

.faq-accordion .accordion-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .page-banner--private-events .hero-shade {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0.28) 58%, rgba(0, 0, 0, 0.1) 80%, rgba(0, 0, 0, 0) 100%);
  }

  .page-banner--private-events .page-banner-content .section-subheading {
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.32);
  }
}

/* ========================================
   404 PAGE
======================================== */

.error-404 {
  position: relative;
  display: flex;
  align-items: center;

  min-height: 100vh;

  padding: clamp(8rem, 12vw, 11rem) 0 clamp(5rem, 8vw, 7rem);

  overflow: hidden;

  background:
    linear-gradient(rgba(244, 239, 230, 0.96), rgba(244, 239, 230, 0.96)),
    url("../images/bg-pic.png") center / 220px auto repeat,
    var(--cream);

  color: var(--ink);
}

.error-404 .container {
  position: relative;
  z-index: 2;
}

.error-404-content {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.error-404-kicker {
  margin: 0 0 1rem;

  color: var(--orange);

  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.error-404-content h1 {
  margin: 0 0 1.25rem;

  color: var(--ink);

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  font-weight: 500;
  line-height: 0.95;
}

.error-404-description {
  max-width: 560px;

  margin: 0 auto 2rem;

  color: #4a4c46;

  font-size: 1rem;
  line-height: 1.7;
}

.error-404 .btn {
  margin-top: 0.25rem;
}

/* Large decorative 404 */

.error-404-decoration {
  position: absolute;

  inset: 50% auto auto 50%;

  z-index: 0;

  transform: translate(-50%, -50%);

  pointer-events: none;
  user-select: none;
}

.error-404-number {
  display: block;

  color: rgba(229, 90, 36, 0.08);

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(15rem, 34vw, 34rem);

  font-weight: 600;

  line-height: 0.7;

  white-space: nowrap;
}

/* ========================================
   404 RESPONSIVE
======================================== */

@media (max-width: 767.98px) {
  .error-404 {
    padding: 7rem 0 4rem;
  }

  .error-404-content h1 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .error-404-description {
    max-width: 440px;

    font-size: 0.96rem;
  }

  .error-404-number {
    font-size: clamp(12rem, 48vw, 20rem);
  }
}

@media (max-width: 575.98px) {
  .error-404 {
    min-height: 100svh;

    padding: 6.5rem 0 3.5rem;
  }

  .error-404-content h1 {
    font-size: clamp(2.5rem, 12vw, 3.5rem);

    line-height: 1;
  }

  .error-404-description {
    line-height: 1.65;
  }

  .error-404 .btn {
    width: 100%;

    max-width: 240px;
  }
}

/* ========================================
   404 PAGE - SOLID HEADER
======================================== */

body.error404 .navbar,
body.error404 .navbar.scrolled {
  background: #1d1e1b !important;
  box-shadow: none;
}



/* ========================================
   PRIVATE EVENTS - INTL PHONE
======================================== */

.private-events-form .iti {
    width: 100%;
}

.private-events-form .iti input {
    width: 100%;
}

.private-events-form .iti__country-list {
    z-index: 9999;
}

/* ========================================
   HOMEPAGE HERO - RESPONSIVE TYPOGRAPHY
======================================== */

@media (max-width: 575.98px) {
  body.home .hero-content h1 {
    max-width: 96%;
    font-size: clamp(1.15rem, 5vw, 1.3rem);
    line-height: 1.35;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  body.home .hero-content h1 {
    font-size: clamp(1.3rem, 3.2vw, 1.45rem);
    line-height: 1.35;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  body.home .hero-content h1 {
    font-size: clamp(1.5rem, 2.8vw, 1.7rem);
    line-height: 1.32;
  }
}
