:root {
  --blue: #7f3524;
  --blue-deep: #4d2418;
  --blue-night: #21150f;
  --blue-soft: #f5ecdd;
  --cream: #fff8ec;
  --gold: #c89a48;
  --orange: #b7652e;
  --ink: #2d1d15;
  --muted: #8a7565;
  --line: rgba(255, 248, 236, 0.18);
  --blue-line: rgba(200, 154, 72, 0.32);
  --terracotta: #8b3f2a;
  --lantern: #d6a557;
  --wood: #352017;
  --paper: #f8efe1;
}

@font-face {
  font-family: "Americana";
  src:
    url("fonts/Americana.woff2") format("woff2"),
    url("fonts/Americana.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src:
    url("fonts/Montserrat-Light.woff2") format("woff2"),
    url("fonts/Montserrat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src:
    url("fonts/Montserrat-Regular.woff2") format("woff2"),
    url("fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src:
    url("fonts/Montserrat-SemiBold.woff2") format("woff2"),
    url("fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src:
    url("fonts/Montserrat-Bold.woff2") format("woff2"),
    url("fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(214, 165, 87, 0.16), transparent 34%),
    linear-gradient(135deg, var(--blue-night), var(--blue-deep) 56%, var(--terracotta));
  color: var(--cream);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(33, 21, 15, 0.94), rgba(33, 21, 15, 0));
}

.nav-toggle {
  position: fixed;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.brand {
  width: 106px;
  height: 64px;
  display: grid;
  place-items: center;
}

.brand img,
.site-footer img {
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 46px);
  color: rgba(251, 251, 243, 0.8);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links a:hover,
.book-link:hover {
  color: var(--gold);
}

.book-link {
  border: 1px solid rgba(251, 251, 243, 0.5);
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-button,
.nav-backdrop {
  display: none;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  padding: 130px clamp(20px, 6vw, 82px) 58px;
  overflow: hidden;
}

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

.hero-media {
  background: var(--blue-night);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  filter: saturate(0.86) contrast(1.05);
  transform: scale(1.04);
  animation: heroFadeZoom 24s infinite ease-in-out;
  will-change: opacity, transform;
}

.hero-slide:nth-child(1) {
  animation-delay: 0s;
}

.hero-slide:nth-child(2) {
  animation-delay: 6s;
}

.hero-slide:nth-child(3) {
  animation-delay: 12s;
}

.hero-slide:nth-child(4) {
  animation-delay: 18s;
}

@keyframes heroFadeZoom {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }

  8% {
    opacity: 1;
  }

  30% {
    opacity: 1;
  }

  42% {
    opacity: 0;
    transform: scale(1.14);
  }

  100% {
    opacity: 0;
    transform: scale(1.14);
  }
}

.hero-shade {
  background:
    radial-gradient(circle at 72% 28%, rgba(214, 165, 87, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(33, 21, 15, 0.94) 0%, rgba(77, 36, 24, 0.70) 45%, rgba(139, 63, 42, 0.30) 100%),
    linear-gradient(0deg, rgba(33, 21, 15, 0.96), rgba(33, 21, 15, 0) 62%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Americana", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 8vw, 108px);
  line-height: 0.96;
  text-transform: none;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.hero-text {
  max-width: 610px;
  color: rgba(251, 251, 243, 0.82);
  font-size: clamp(17px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button,
.booking-form button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.28s ease, color 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.button.primary,
.booking-form button {
  background: var(--gold);
  color: var(--blue-night);
}

.button.primary:hover,
.booking-form button:hover {
  background: var(--cream);
  color: var(--blue);
}

.button.ghost:hover {
  border-color: var(--gold);
  background: rgba(204, 170, 100, 0.16);
  color: #fff;
}

.button.ghost {
  border-color: rgba(251, 251, 243, 0.44);
  color: var(--cream);
}

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

.hero-note {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 4vw, 56px);
  bottom: 46px;
  width: min(300px, calc(100% - 40px));
  border-left: 3px solid var(--gold);
  padding: 18px 0 18px 22px;
  color: rgba(251, 251, 243, 0.75);
}

.hero-note span,
.hero-note small {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  margin: 4px 0;
  color: var(--cream);
  font-size: 30px;
  line-height: 1;
}

.section-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.05fr 0.9fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  padding: clamp(76px, 11vw, 138px) clamp(20px, 6vw, 82px);
}

.section-grid h2,
.menu-heading h2,
.booking h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 78px);
  line-height: 0.98;
}

.intro-copy {
  color: rgba(251, 251, 243, 0.76);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.feature-strip article {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: clamp(28px, 4vw, 52px);
  border-right: 1px solid var(--line);
  background: var(--blue-night);
  transition: background 0.35s ease, transform 0.35s ease;
}

.feature-strip article:hover {
  background: var(--blue-deep);
}

.feature-strip article:nth-child(2) {
  background: var(--blue);
}

.feature-strip article:last-child {
  border-right: 0;
}

.feature-strip span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.feature-strip h3 {
  margin: 58px 0 14px;
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1;
}

.feature-strip p {
  max-width: 340px;
  color: rgba(251, 251, 243, 0.72);
}

.menu-section,
.spaces,
.booking {
  padding: clamp(76px, 11vw, 138px) clamp(20px, 6vw, 82px);
}

.menu-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--blue), var(--blue-night));
}

.menu-section::before {
  content: "";
  position: absolute;
  inset: 36px;
  border: 1px solid rgba(204, 170, 100, 0.18);
  pointer-events: none;
}

.menu-heading {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(26px, 5vw, 74px);
  align-items: end;
  margin-bottom: 42px;
}

.menu-heading p:last-child {
  color: rgba(251, 251, 243, 0.72);
  max-width: 560px;
}

.menu-board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(320px, 1fr);
  gap: 0;
  border: 1px solid var(--blue-line);
  background: rgba(11, 21, 75, 0.58);
  box-shadow: 0 34px 90px rgba(6, 12, 48, 0.28);
}

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

.menu-image::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 21, 75, 0) 36%, rgba(11, 21, 75, 0.72));
  pointer-events: none;
}

.menu-preview,
.menu-dish {
  position: absolute;
  inset: 0;
}

.menu-preview {
  z-index: 1;
}

.menu-dish {
  opacity: 0;
  filter: saturate(0.96) contrast(1.04);
  transform: scale(1.035);
  animation: menuDishCycle 20s infinite ease-in-out;
  transition: opacity 0.45s ease, transform 0.7s ease, filter 0.7s ease;
  will-change: opacity, transform;
}

.menu-dish:nth-child(1) {
  animation-delay: 0s;
}

.menu-dish:nth-child(2) {
  animation-delay: 5s;
}

.menu-dish:nth-child(3) {
  animation-delay: 10s;
}

.menu-dish:nth-child(4) {
  animation-delay: 15s;
}

@keyframes menuDishCycle {
  0%,
  100% {
    opacity: 0;
    transform: scale(1.035);
  }

  8%,
  25% {
    opacity: 1;
  }

  33% {
    opacity: 0;
    transform: scale(1.105);
  }
}

.menu-board:has(.menu-list article:hover) .menu-dish {
  animation: none;
  opacity: 0;
}

.menu-board:has(.menu-list article:nth-child(1):hover) .menu-dish:nth-child(1),
.menu-board:has(.menu-list article:nth-child(2):hover) .menu-dish:nth-child(2),
.menu-board:has(.menu-list article:nth-child(3):hover) .menu-dish:nth-child(3),
.menu-board:has(.menu-list article:nth-child(4):hover) .menu-dish:nth-child(4) {
  opacity: 1;
  filter: saturate(1.04) contrast(1.06);
  transform: scale(1.075);
}

.menu-list {
  display: grid;
}

.menu-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: clamp(26px, 4vw, 54px);
  border-bottom: 1px solid rgba(251, 251, 243, 0.14);
  transition: background 0.3s ease, padding-left 0.3s ease;
}

.menu-list article:hover {
  background: rgba(251, 251, 243, 0.055);
  padding-left: clamp(32px, 4.5vw, 62px);
}

.menu-list article:last-child {
  border-bottom: 0;
}

.menu-list h3 {
  margin-bottom: 10px;
  color: var(--cream);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
}

.menu-list p {
  margin: 0;
  color: rgba(251, 251, 243, 0.68);
}

.menu-list strong {
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.spaces {
  background:
    linear-gradient(180deg, var(--blue-soft), var(--cream) 42%, #f6f1df);
  color: var(--blue-night);
}

.spaces .section-grid {
  padding: 0 0 46px;
}

.spaces p {
  color: rgba(16, 25, 79, 0.7);
}

.gallery {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 0.92fr;
  grid-auto-rows: minmax(250px, 25vw);
  gap: 18px;
}

.gallery figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--blue-night);
  isolation: isolate;
  box-shadow: 0 22px 55px rgba(17, 28, 95, 0.2);
}

.gallery .wide {
  grid-row: span 2;
}

.gallery figure:nth-child(4) {
  grid-column: span 2;
}

.gallery figure:nth-child(5) {
  grid-column: span 2;
}

.gallery figure:nth-child(6) {
  min-height: 300px;
}

.gallery figure::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 21, 75, 0) 42%, rgba(11, 21, 75, 0.72) 100%);
  opacity: 0.78;
  transition: opacity 0.45s ease;
}

.gallery figure::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 18px;
  border: 1px solid rgba(251, 251, 243, 0.28);
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.gallery figure img {
  filter: saturate(0.9) contrast(1.02);
  transform: scale(1.01);
  transition: transform 0.75s ease, filter 0.75s ease;
}

.gallery figure:hover img {
  filter: saturate(1.03) contrast(1.08);
  transform: scale(1.075);
}

.gallery figure:hover::before {
  opacity: 0.56;
}

.gallery figure:hover::after {
  opacity: 1;
  transform: scale(1);
}

.gallery figcaption {
  position: absolute;
  z-index: 3;
  left: 18px;
  bottom: 18px;
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(17, 28, 95, 0.78);
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateY(0);
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.gallery figure:hover figcaption {
  background: rgba(204, 170, 100, 0.92);
  color: var(--blue-night);
  transform: translateY(-4px);
}

.space-feature {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.space-feature figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--blue-night);
  box-shadow: 0 22px 55px rgba(17, 28, 95, 0.18);
}

.space-feature-main {
  grid-row: span 2;
  min-height: 620px;
}

.space-feature figure::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 21, 75, 0) 48%, rgba(11, 21, 75, 0.74) 100%);
}

.space-feature figure img {
  filter: saturate(0.94) contrast(1.03);
  transform: scale(1.01);
  transition: transform 0.75s ease, filter 0.75s ease;
}

.space-feature figure:hover img {
  filter: saturate(1.04) contrast(1.07);
  transform: scale(1.06);
}

.space-feature figcaption {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.space-feature-main figcaption {
  max-width: 520px;
}

.space-feature-main figcaption span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
}

.space-feature-main figcaption strong {
  display: block;
  font-family: "Americana", Georgia, serif;
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: none;
}

.quote-band {
  display: grid;
  min-height: 420px;
  place-items: center;
  padding: clamp(50px, 8vw, 96px) clamp(20px, 6vw, 82px);
  background:
    linear-gradient(rgba(40, 56, 145, 0.86), rgba(40, 56, 145, 0.86)),
    url("img/quote-dining.jpg") center/cover;
  text-align: center;
}

.quote-band p {
  max-width: 980px;
  margin: 0;
  font-family: "Americana", Georgia, serif;
  font-size: clamp(40px, 6vw, 92px);
  line-height: 1;
}

.booking {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
  background: var(--blue-night);
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0 14px;
  background: rgba(251, 251, 243, 0.08);
  color: var(--cream);
  font: inherit;
}

.booking-form button {
  grid-column: 1 / -1;
  width: 100%;
  border: 0;
}

.site-footer {
  background: var(--blue);
  color: rgba(255, 255, 255, 0.86);
}

.footer-main {
  min-height: 486px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(150px, 0.42fr) minmax(180px, 0.42fr) minmax(260px, 0.62fr);
  gap: clamp(38px, 6vw, 88px);
  align-items: start;
  padding: 72px clamp(42px, 6vw, 84px) 72px;
}

.footer-brand {
  width: 150px;
  display: block;
}

.footer-brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: #fff;
  font-family: "Americana", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.footer-column a,
.footer-column p,
.footer-bottom p,
.footer-legal a {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.55;
}

.footer-column a:hover,
.footer-legal a:hover {
  color: #fff;
}

.footer-bottom {
  min-height: 108px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto minmax(280px, 1fr);
  gap: 28px;
  align-items: center;
  padding: 24px clamp(42px, 6vw, 84px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.footer-social a {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.footer-social a:hover {
  background: #fff;
  border-color: #fff;
  color: var(--blue);
}

.footer-legal {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  text-align: right;
}

.footer-managed {
  display: block;
  margin: 0 clamp(42px, 6vw, 84px);
  padding: 21px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 14px;
    background: rgba(17, 28, 95, 0.94);
  }

  .menu-button {
    justify-self: end;
    width: 44px;
    height: 44px;
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 0 10px;
    border: 1px solid rgba(251, 251, 243, 0.36);
    border-radius: 999px;
    cursor: pointer;
  }

  .menu-button span {
    display: block;
    height: 2px;
    background: var(--cream);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav-links {
    position: fixed;
    z-index: 30;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 86vw);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    padding: 96px 34px 34px;
    background: var(--blue);
    box-shadow: -24px 0 60px rgba(6, 12, 48, 0.42);
    transform: translateX(102%);
    transition: transform 0.28s ease;
  }

  .nav-links a {
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid rgba(251, 251, 243, 0.18);
    color: var(--cream);
    font-size: 18px;
    letter-spacing: 0.08em;
  }

  .nav-backdrop {
    position: fixed;
    z-index: 25;
    inset: 0;
    background: rgba(11, 21, 75, 0.62);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }

  .nav-toggle:checked + .site-header .nav-links {
    transform: translateX(0);
  }

  .nav-toggle:checked + .site-header .nav-backdrop {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle:checked + .site-header .menu-button {
    position: relative;
    z-index: 35;
  }

  .nav-toggle:checked + .site-header .menu-button span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .nav-toggle:checked + .site-header .menu-button span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .book-link {
    justify-self: end;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 38px;
  }

  .section-grid,
  .menu-heading,
  .menu-board,
  .booking {
    grid-template-columns: 1fr;
  }

  .footer-main {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
    padding: 52px 24px;
  }

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

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 26px 24px;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-legal {
    justify-content: flex-start;
    flex-wrap: wrap;
    text-align: left;
  }

  .footer-managed {
    margin-inline: 24px;
    text-align: left;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .feature-strip article {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .menu-image {
    min-height: 420px;
  }

  .gallery,
  .space-feature,
  .booking-form {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery .wide,
  .gallery figure {
    min-height: 430px;
    grid-column: auto;
    grid-row: auto;
  }

  .gallery figure:nth-child(4),
  .gallery figure:nth-child(5) {
    grid-column: auto;
  }

  .space-feature-main,
  .space-feature figure {
    min-height: 430px;
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    width: 82px;
    height: 52px;
  }

  .book-link {
    padding: 9px 13px;
    font-size: 11px;
  }

  .hero {
    padding: 112px 18px 40px;
  }

  h1 {
    font-size: clamp(38px, 11.5vw, 48px);
    line-height: 0.98;
  }

  .button {
    width: 100%;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-column h2 {
    font-size: 25px;
  }

  .footer-column a,
  .footer-column p,
  .footer-bottom p,
  .footer-legal a {
    font-size: 15px;
  }

  .footer-social a {
    width: 46px;
    height: 46px;
  }
}

/* =========================================================
   FINAL WARM HOI AN REFINEMENT
   Removes the cool blue impression and gives the dining page
   a warmer, more premium Little Faifo atmosphere.
========================================================= */

.site-header{
  border-bottom:1px solid rgba(255,248,236,.08);
  backdrop-filter:blur(10px);
}

.brand img{
  filter:brightness(0) saturate(100%) invert(91%) sepia(18%) saturate(568%) hue-rotate(348deg) brightness(105%) contrast(97%);
}

.nav-links{
  color:rgba(255,248,236,.78);
  font-weight:600;
  letter-spacing:.18em;
}

.book-link{
  border-color:rgba(255,248,236,.46);
  color:var(--cream);
  font-weight:600;
}

.hero-slide{
  filter:saturate(.96) contrast(1.04) sepia(.08);
}

.hero-note{
  border-left-color:var(--lantern);
}

.hero-note strong{
  color:#fff4dd;
}

.eyebrow,
.section-kicker,
.feature-strip span,
.booking-form span,
.space-feature-main figcaption span{
  color:var(--lantern);
  font-weight:600;
}

.button,
.booking-form button{
  border-radius:0;
  font-weight:600;
  letter-spacing:.16em;
}

.button.primary,
.booking-form button{
  background:var(--lantern);
  color:var(--wood);
}

.button.primary:hover,
.booking-form button:hover{
  background:#fff4dd;
  color:var(--terracotta);
}

.button.ghost{
  border-color:rgba(255,248,236,.48);
}

.button.ghost:hover{
  border-color:var(--lantern);
  background:rgba(214,165,87,.16);
}

.feature-strip{
  border-block-color:rgba(255,248,236,.16);
}

.feature-strip article{
  background:linear-gradient(180deg,#2d1b13,#21150f);
}

.feature-strip article:nth-child(2){
  background:linear-gradient(180deg,#7f3524,#4d2418);
}

.feature-strip article:hover{
  background:linear-gradient(180deg,#8b3f2a,#4d2418);
}

.menu-section{
  background:
    radial-gradient(circle at 88% 6%,rgba(214,165,87,.14),transparent 30%),
    linear-gradient(180deg,#4d2418,#21150f);
}

.menu-section::before{
  border-color:rgba(214,165,87,.24);
}

.menu-board{
  border-color:rgba(214,165,87,.34);
  background:rgba(33,21,15,.68);
  box-shadow:0 34px 90px rgba(33,21,15,.32);
}

.menu-image::after{
  background:linear-gradient(180deg,rgba(33,21,15,0) 36%,rgba(33,21,15,.72));
}

.menu-list article{
  border-bottom-color:rgba(255,248,236,.14);
}

.menu-list article:hover{
  background:rgba(255,248,236,.055);
}

.menu-list h3{
  color:#fff4dd;
}

.menu-list p,
.menu-heading p:last-child,
.intro-copy,
.feature-strip p{
  color:rgba(255,248,236,.73);
}

.menu-list strong{
  color:var(--lantern);
  font-weight:600;
}

.spaces{
  background:
    radial-gradient(circle at 15% 8%,rgba(214,165,87,.18),transparent 28%),
    linear-gradient(180deg,#f5ecdd,#fff8ec 46%,#efe0ca);
  color:var(--ink);
}

.spaces p{
  color:rgba(45,29,21,.72);
}

.gallery figure,
.space-feature figure{
  background:var(--wood);
  box-shadow:0 22px 55px rgba(53,32,23,.18);
}

.gallery figure::before,
.space-feature figure::before{
  background:linear-gradient(180deg,rgba(33,21,15,0) 44%,rgba(33,21,15,.76) 100%);
}

.gallery figure::after{
  border-color:rgba(255,248,236,.32);
}

.gallery figcaption{
  border-radius:0;
  background:rgba(53,32,23,.82);
  color:var(--cream);
  font-weight:600;
}

.gallery figure:hover figcaption{
  background:rgba(214,165,87,.94);
  color:var(--wood);
}

.quote-band{
  background:
    linear-gradient(rgba(77,36,24,.86),rgba(33,21,15,.88)),
    url("img/quote-dining.jpg") center/cover;
}

.quote-band p{
  color:#fff4dd;
}

.booking{
  background:
    radial-gradient(circle at 80% 12%,rgba(214,165,87,.13),transparent 28%),
    linear-gradient(180deg,#2d1b13,#21150f);
}

.booking-form input,
.booking-form select{
  border-color:rgba(255,248,236,.18);
  background:rgba(255,248,236,.075);
  color:var(--cream);
}

.booking-form input::placeholder{
  color:rgba(255,248,236,.42);
}

.site-footer{
  background:linear-gradient(180deg,#4d2418,#21150f);
}

.footer-brand img{
  filter:brightness(0) invert(1) sepia(.1);
}

.footer-social a:hover{
  background:var(--lantern);
  border-color:var(--lantern);
  color:var(--wood);
}

@media (max-width:980px){
  .site-header{
    background:rgba(33,21,15,.95);
  }

  .menu-button{
    border-color:rgba(255,248,236,.36);
  }

  .nav-links{
    background:linear-gradient(180deg,#4d2418,#21150f);
    box-shadow:-24px 0 60px rgba(33,21,15,.48);
  }

  .nav-backdrop{
    background:rgba(33,21,15,.66);
  }
}

/* =========================================================
   FINAL TYPOGRAPHY + HEADER LOGO REFINEMENT
========================================================= */

.site-header{
  min-height:70px;
  padding-top:10px;
  padding-bottom:10px;
}

.brand{
  width:58px;
  height:48px;
  overflow:hidden;
}

.brand img{
  width:52px;
  height:auto;
  max-width:52px;
  max-height:46px;
  object-fit:contain;
}

h1{
  font-size:clamp(42px,6.6vw,84px);
  line-height:1.02;
  letter-spacing:.005em;
}

.hero-text{
  max-width:560px;
  font-size:clamp(15px,1.45vw,19px);
  line-height:1.82;
}

.section-grid h2,
.menu-heading h2,
.booking h2{
  font-size:clamp(30px,3.7vw,54px);
  line-height:1.08;
}

.feature-strip h3,
.menu-list h3{
  font-size:clamp(23px,2.45vw,34px);
  line-height:1.12;
}

.space-feature-main figcaption strong{
  font-size:clamp(30px,3.5vw,50px);
  line-height:1.06;
}

.quote-band p{
  font-size:clamp(34px,4.9vw,66px);
  line-height:1.05;
}

.footer-column h2{
  font-size:24px;
  line-height:1.08;
}

@media (max-width:980px){
  .site-header{
    min-height:64px;
    padding-top:8px;
    padding-bottom:8px;
  }

  .brand{
    width:52px;
    height:42px;
  }

  .brand img{
    width:46px;
    max-width:46px;
    max-height:40px;
  }
}

@media (max-width:620px){
  .brand{
    width:48px;
    height:38px;
  }

  .brand img{
    width:42px;
    max-width:42px;
    max-height:36px;
  }

  h1{
    font-size:clamp(34px,10vw,44px);
    line-height:1.06;
  }

  .section-grid h2,
  .menu-heading h2,
  .booking h2{
    font-size:clamp(28px,8vw,38px);
  }
}

/* =========================================================
   AIRY FAIFO DINING REFINEMENT
   Lighter editorial rhythm inspired by quiet Hoi An dining.
========================================================= */

:root{
  --faifo-ivory:#fbf5e9;
  --faifo-paper:#f6ecdc;
  --faifo-rice:#fffaf1;
  --faifo-ink:#34251b;
  --faifo-soft-ink:#7e6c5d;
  --faifo-clay:#9d4d32;
  --faifo-clay-dark:#623322;
  --faifo-gold:#b98948;
  --faifo-line:rgba(91,63,44,.16);
}

body{
  background:
    radial-gradient(circle at 12% 0%, rgba(185,137,72,.12), transparent 30%),
    linear-gradient(180deg, var(--faifo-rice), var(--faifo-ivory) 48%, var(--faifo-paper));
  color:var(--faifo-ink);
}

.site-header{
  min-height:66px;
  padding:9px clamp(18px,4vw,54px);
  background:linear-gradient(180deg, rgba(52,37,27,.84), rgba(52,37,27,.28) 76%, rgba(52,37,27,0));
  border-bottom:0;
  backdrop-filter:blur(8px);
}

.brand{
  width:54px;
  height:44px;
}

.brand img{
  width:48px;
  max-width:48px;
  max-height:42px;
}

.nav-links{
  color:rgba(255,250,241,.76);
  font-size:11px;
  font-weight:500;
  letter-spacing:.2em;
}

.book-link{
  border-color:rgba(255,250,241,.38);
  color:rgba(255,250,241,.88);
  font-size:11px;
  font-weight:500;
  padding:10px 17px;
}

.hero{
  min-height:92svh;
  align-items:center;
  padding:126px clamp(24px,7vw,104px) 72px;
}

.hero-slide{
  filter:saturate(.86) contrast(.98) sepia(.08);
}

.hero-shade{
  background:
    linear-gradient(90deg, rgba(52,37,27,.82) 0%, rgba(98,51,34,.52) 44%, rgba(52,37,27,.14) 100%),
    linear-gradient(0deg, rgba(52,37,27,.58), rgba(52,37,27,0) 52%);
}

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

.eyebrow,
.section-kicker{
  color:var(--faifo-gold);
  font-size:11px;
  font-weight:500;
  letter-spacing:.26em;
}

h1{
  max-width:560px;
  font-size:clamp(38px,5.4vw,72px);
  line-height:1.08;
  letter-spacing:0;
}

.hero-text{
  max-width:520px;
  color:rgba(255,250,241,.78);
  font-size:clamp(15px,1.25vw,18px);
  line-height:1.9;
}

.hero-note{
  width:min(260px,calc(100% - 40px));
  border-left:1px solid rgba(255,250,241,.44);
  color:rgba(255,250,241,.68);
}

.hero-note strong{
  color:#fff5df;
  font-size:25px;
  font-weight:400;
}

.button,
.booking-form button{
  min-height:46px;
  border-radius:0;
  padding:13px 24px;
  font-size:11px;
  font-weight:500;
  letter-spacing:.18em;
}

.button.primary,
.booking-form button{
  background:var(--faifo-clay);
  color:#fffaf1;
}

.button.primary:hover,
.booking-form button:hover{
  background:var(--faifo-ink);
  color:#fffaf1;
}

.button.ghost{
  border-color:rgba(255,250,241,.42);
}

.button.ghost:hover{
  border-color:#fffaf1;
  background:rgba(255,250,241,.12);
}

.section-grid,
.menu-section,
.spaces,
.booking{
  padding:clamp(82px,10vw,148px) clamp(24px,8vw,118px);
}

.section-grid{
  grid-template-columns:.42fr 1fr .82fr;
  gap:clamp(30px,6vw,94px);
  background:var(--faifo-rice);
}

.section-grid h2,
.menu-heading h2,
.booking h2{
  color:var(--faifo-ink);
  font-size:clamp(30px,3.6vw,52px);
  line-height:1.16;
  letter-spacing:0;
}

.intro-copy,
.intro-copy p,
.menu-heading p:last-child,
.spaces p{
  color:var(--faifo-soft-ink);
  font-size:15px;
  line-height:1.9;
}

.feature-strip{
  border-block:1px solid var(--faifo-line);
  background:var(--faifo-ivory);
}

.feature-strip article,
.feature-strip article:nth-child(2),
.feature-strip article:hover{
  min-height:280px;
  padding:clamp(34px,5vw,68px);
  border-color:var(--faifo-line);
  background:transparent;
  color:var(--faifo-ink);
}

.feature-strip span{
  color:var(--faifo-gold);
  font-weight:500;
}

.feature-strip h3{
  margin:46px 0 16px;
  color:var(--faifo-ink);
  font-size:clamp(24px,2.5vw,36px);
  line-height:1.18;
}

.feature-strip p{
  color:var(--faifo-soft-ink);
  line-height:1.85;
}

.menu-section{
  background:
    linear-gradient(180deg, var(--faifo-paper), var(--faifo-rice));
  color:var(--faifo-ink);
}

.menu-section::before{
  inset:clamp(22px,4vw,52px);
  border-color:rgba(157,77,50,.11);
}

.menu-heading{
  grid-template-columns:.72fr 1fr;
  gap:clamp(28px,6vw,96px);
  align-items:start;
  margin-bottom:clamp(42px,6vw,78px);
}

.menu-board{
  grid-template-columns:minmax(320px,.95fr) minmax(360px,1fr);
  gap:clamp(26px,4vw,54px);
  border:0;
  background:transparent;
  box-shadow:none;
}

.menu-image{
  min-height:min(680px,58vw);
  box-shadow:0 22px 58px rgba(91,63,44,.13);
}

.menu-image::after{
  background:linear-gradient(180deg, rgba(52,37,27,0) 48%, rgba(52,37,27,.32));
}

.menu-list{
  align-content:center;
  border-top:1px solid var(--faifo-line);
}

.menu-list article{
  gap:24px;
  padding:clamp(24px,3.5vw,42px) 0;
  border-bottom:1px solid var(--faifo-line);
  color:var(--faifo-ink);
}

.menu-list article:hover{
  background:transparent;
  padding-left:14px;
}

.menu-list h3{
  color:var(--faifo-ink);
  font-size:clamp(24px,2.4vw,34px);
  line-height:1.2;
}

.menu-list p{
  color:var(--faifo-soft-ink);
  line-height:1.82;
}

.menu-list strong{
  color:var(--faifo-clay);
  font-size:11px;
  font-weight:500;
  letter-spacing:.18em;
}

.spaces{
  background:var(--faifo-rice);
}

.spaces .section-grid{
  padding:0 0 clamp(42px,5vw,70px);
  background:transparent;
}

.gallery{
  gap:clamp(18px,2.3vw,30px);
}

.gallery figure,
.space-feature figure{
  background:#e8d7bf;
  box-shadow:none;
}

.gallery figure::before,
.space-feature figure::before{
  background:linear-gradient(180deg, rgba(52,37,27,0) 46%, rgba(52,37,27,.52) 100%);
}

.gallery figure::after{
  display:none;
}

/* FINAL HARD OVERRIDE: NO VISIBLE LINES */
.site-header,
.hero-note,
.nav-links a,
.feature-strip,
.feature-strip article,
.menu-section::before,
.menu-board,
.menu-list,
.menu-list article,
.gallery figcaption,
.gallery figure::after,
.booking,
.booking-form input,
.booking-form select,
.book-link,
.button,
.button.ghost,
.footer-bottom,
.footer-managed,
.footer-social a{
  border:0 !important;
  box-shadow:none;
}

.menu-section::before,
.gallery figure::after{
  display:none !important;
}

.booking-form input,
.booking-form select{
  outline:0;
}

.booking-form input[name="website"]{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  opacity:0;
  pointer-events:none;
}

.booking-status{
  display:none;
  grid-column:1 / -1;
  margin:0;
  color:var(--text-dark-grey);
  font-size:14px;
  line-height:1.7;
}

body.reservation-success .booking-status-success,
body.reservation-error .booking-status-error{
  display:block;
}

.hero-note,
.nav-links a,
.menu-section::before,
.gallery figure::after{
  border:0 !important;
}

.menu-section::before,
.gallery figure::after{
  display:none !important;
}

.booking-form input,
.booking-form select{
  outline:0;
}

.gallery figure img,
.space-feature figure img{
  filter:saturate(.92) contrast(.98) sepia(.04);
}

.gallery figure:hover img,
.space-feature figure:hover img{
  filter:saturate(.98) contrast(1.02) sepia(.02);
  transform:scale(1.035);
}

.gallery figcaption{
  left:22px;
  bottom:22px;
  border-radius:0;
  padding:0 0 7px;
  background:transparent;
  border-bottom:1px solid rgba(255,250,241,.7);
  color:#fffaf1;
  font-size:11px;
  font-weight:500;
  letter-spacing:.18em;
}

.gallery figure:hover figcaption{
  background:transparent;
  color:#fffaf1;
  transform:translateY(-3px);
}

.space-feature{
  gap:clamp(18px,2.3vw,30px);
  margin-top:clamp(18px,2.3vw,30px);
}

.space-feature-main{
  min-height:min(620px,62vw);
}

.space-feature figcaption{
  font-weight:500;
}

.space-feature-main figcaption strong{
  max-width:500px;
  color:#fffaf1;
  font-size:clamp(30px,3.1vw,46px);
  line-height:1.12;
}

.quote-band{
  min-height:360px;
  padding:clamp(64px,8vw,112px) clamp(24px,8vw,118px);
  background:
    linear-gradient(rgba(251,245,233,.78), rgba(251,245,233,.78)),
    url("img/quote-dining.jpg") center/cover;
}

.quote-band p{
  max-width:840px;
  color:var(--faifo-clay-dark);
  font-size:clamp(30px,4.2vw,56px);
  line-height:1.18;
}

.booking{
  background:
    linear-gradient(180deg, #f2e4d1, var(--faifo-paper));
  color:var(--faifo-ink);
  border-top:1px solid var(--faifo-line);
}

.booking-form{
  gap:20px;
}

.booking-form span{
  color:var(--faifo-clay);
  font-size:11px;
  font-weight:500;
}

.booking-form input,
.booking-form select{
  border-color:rgba(91,63,44,.2);
  background:rgba(255,250,241,.62);
  color:var(--faifo-ink);
}

.booking-form input::placeholder{
  color:rgba(52,37,27,.42);
}

.site-footer{
  background:linear-gradient(180deg, #5f3021, #34251b);
}

.footer-main{
  padding-top:clamp(62px,7vw,90px);
  padding-bottom:clamp(58px,7vw,86px);
}

@media (max-width:980px){
  .site-header{
    min-height:62px;
    background:rgba(52,37,27,.92);
  }

  .nav-links{
    background:linear-gradient(180deg, #6b3827, #34251b);
  }

  .hero{
    min-height:88svh;
    padding-top:112px;
  }

  .section-grid,
  .menu-heading,
  .menu-board,
  .booking{
    grid-template-columns:1fr;
  }

  .menu-image{
    min-height:460px;
  }
}

@media (max-width:620px){
  .site-header{
    min-height:58px;
    padding:8px 16px;
  }

  .brand{
    width:46px;
    height:36px;
  }

  .brand img{
    width:40px;
    max-width:40px;
    max-height:34px;
  }

  .hero{
    min-height:86svh;
    padding:104px 20px 44px;
  }

  h1{
    font-size:clamp(34px,9vw,42px);
  }

  .section-grid,
  .menu-section,
  .spaces,
  .booking{
    padding:68px 20px;
  }

  .feature-strip article{
    min-height:220px;
  }

  .menu-image,
  .gallery .wide,
  .gallery figure,
  .space-feature-main,
  .space-feature figure{
    min-height:330px;
  }
}

/* =========================================================
   EARTH BROWN HEADER + MUTED SOLID COLOR REFINEMENT
========================================================= */

:root{
  --earth-brown:#684632;
  --earth-brown-deep:#432d22;
  --earth-brown-soft:#8a644b;
  --earth-paper:#efe3d2;
  --earth-paper-light:#f8f0e4;
  --earth-line:rgba(67,45,34,.18);
}

body{
  background:var(--earth-paper);
}

.site-header{
  grid-template-columns:1fr auto 1fr;
  background:rgba(67,45,34,.92);
  border-bottom:1px solid rgba(248,240,228,.14);
}

.brand{
  grid-column:2;
  grid-row:1;
  justify-self:center;
}

.nav-links{
  grid-column:1;
  grid-row:1;
  justify-self:start;
  justify-content:flex-start;
  color:rgba(248,240,228,.76);
}

.header-actions{
  grid-column:3;
  grid-row:1;
  justify-self:end;
  display:flex;
  align-items:center;
  gap:18px;
}

.dining-language-switcher{
  display:flex;
  align-items:center;
  gap:7px;
  color:rgba(248,240,228,.58);
  font-size:11px;
  font-weight:500;
  letter-spacing:.18em;
  line-height:1;
}

.language-option{
  appearance:none;
  border:0;
  border-radius:0;
  padding:0;
  background:transparent;
  color:inherit;
  font:inherit;
  letter-spacing:inherit;
  cursor:pointer;
  transition:color .22s ease;
}

.language-option:hover,
.language-option.is-active{
  color:var(--earth-paper-light);
}

.language-separator{
  color:rgba(248,240,228,.34);
}

.book-link{
  border-color:rgba(248,240,228,.32);
  color:rgba(248,240,228,.86);
}

.hero-shade{
  background:rgba(67,45,34,.42);
}

.hero-note{
  border-left-color:rgba(248,240,228,.42);
}

.section-grid,
.spaces{
  background:var(--earth-paper-light);
}

.feature-strip,
.menu-section,
.booking{
  background:var(--earth-paper);
}

.menu-section::before{
  border-color:var(--earth-line);
}

.section-grid h2,
.menu-heading h2,
.booking h2,
.feature-strip h3,
.menu-list h3{
  color:var(--earth-brown-deep);
}

.eyebrow,
.section-kicker,
.feature-strip span,
.booking-form span,
.menu-list strong{
  color:var(--earth-brown-soft);
}

.button.primary,
.booking-form button{
  background:var(--earth-brown);
  color:var(--earth-paper-light);
}

.button.primary:hover,
.booking-form button:hover{
  background:var(--earth-brown-deep);
}

.feature-strip,
.feature-strip article,
.menu-list,
.menu-list article,
.booking{
  border-color:var(--earth-line);
}

.menu-image,
.gallery figure,
.space-feature figure{
  background:#d7c2aa;
}

.menu-image::after,
.gallery figure::before,
.space-feature figure::before{
  background:rgba(67,45,34,.24);
}

.quote-band{
  background:var(--earth-paper-light);
}

.quote-band p{
  color:var(--earth-brown);
}

.site-footer{
  background:var(--earth-brown-deep);
}

@media (max-width:980px){
  .site-header{
    grid-template-columns:auto 1fr auto;
    background:rgba(67,45,34,.95);
  }

  .menu-button{
    grid-column:1;
    grid-row:1;
  }

  .brand{
    grid-column:2;
    justify-self:center;
  }

  .book-link{
    white-space:nowrap;
  }

  .header-actions{
    grid-column:3;
    grid-row:1;
    gap:12px;
  }

  .nav-links{
    grid-column:auto;
    justify-self:auto;
    background:var(--earth-brown-deep);
  }
}

@media (max-width:620px){
  .header-actions{
    gap:9px;
  }

  .dining-language-switcher{
    gap:5px;
    font-size:10px;
    letter-spacing:.12em;
  }

  .book-link{
    padding:8px 11px;
    font-size:10px;
    letter-spacing:.1em;
  }
}

/* =========================================================
   DINING BANNER IMAGE + READABILITY REFINEMENT
========================================================= */

.hero-media{
  background:var(--earth-brown-deep);
}

.hero-slide{
  filter:saturate(.88) contrast(.96) brightness(.82);
  animation:heroBannerFade 21s infinite ease-in-out;
}

.hero-slide:nth-child(1){
  animation-delay:0s;
}

.hero-slide:nth-child(2){
  animation-delay:7s;
}

.hero-slide:nth-child(3){
  animation-delay:14s;
}

.hero-shade{
  background:rgba(47,32,24,.58);
}

.hero-copy{
  max-width:640px;
  text-shadow:0 2px 18px rgba(0,0,0,.34);
}

.hero-copy .eyebrow{
  color:#f0d5aa;
}

h1{
  color:#fff8ea;
}

.hero-text{
  color:rgba(255,248,234,.9);
}

.hero-note{
  color:rgba(255,248,234,.82);
  text-shadow:0 2px 14px rgba(0,0,0,.28);
}

@keyframes heroBannerFade{
  0%{
    opacity:0;
    transform:scale(1.025);
  }

  8%{
    opacity:1;
  }

  38%{
    opacity:1;
  }

  46%{
    opacity:0;
    transform:scale(1.095);
  }

  100%{
    opacity:0;
    transform:scale(1.095);
  }
}

@media (max-width:620px){
  .hero-shade{
    background:rgba(47,32,24,.66);
  }

  .hero-copy{
    text-shadow:0 2px 16px rgba(0,0,0,.42);
  }
}

/* =========================================================
   MOBILE MENU FULLSCREEN REFINEMENT
========================================================= */

@media (max-width:980px){
  .menu-button{
    width:42px;
    height:42px;
    border:0;
    border-radius:0;
    padding:0 8px;
    background:transparent;
  }

  .nav-links{
    left:0;
    right:0;
    width:100vw;
    min-height:100svh;
    align-items:center;
    padding:108px 28px 42px;
    background:var(--earth-brown-deep);
    box-shadow:none;
  }

  .nav-links a{
    width:min(420px,100%);
    text-align:center;
  }

  .nav-backdrop{
    background:var(--earth-brown-deep);
  }
}

/* =========================================================
   MOBILE HEADER ORDER: MENU / LOGO / LANGUAGE
========================================================= */

.mobile-menu-book{
  display:none;
}

@media (max-width:980px){
  .site-header{
    grid-template-columns:1fr auto 1fr;
  }

  .menu-button{
    grid-column:1;
    grid-row:1;
    justify-self:start;
  }

  .brand{
    grid-column:2;
    grid-row:1;
    justify-self:center;
  }

  .header-actions{
    grid-column:3;
    grid-row:1;
    justify-self:end;
  }

  .header-actions .book-link{
    display:none;
  }

  .mobile-menu-book{
    display:block;
  }
}

/* =========================================================
   CLEAR FOOTER SOCIAL ICONS
========================================================= */

.footer-social a{
  color:#fff8ea;
  font-size:0;
}

.footer-social svg{
  width:21px;
  height:21px;
  display:block;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.footer-social a:first-child svg,
.footer-social a:nth-child(3) svg{
  fill:currentColor;
  stroke:none;
}

.tripadvisor-mark{
  display:block;
  color:currentColor;
  font-size:12px;
  font-weight:600;
  letter-spacing:.06em;
  line-height:1;
}

.footer-social a:hover{
  background:#fff8ea;
  border-color:#fff8ea;
  color:var(--earth-brown-deep);
}

/* =========================================================
   SMALL TEXT DARK GREY REFINEMENT
========================================================= */

:root{
  --text-dark-grey:#4e4e4e;
}

.intro-copy,
.intro-copy p,
.menu-heading p:last-child,
.feature-strip p,
.menu-list p,
.spaces p,
.booking-form input,
.booking-form select{
  color:var(--text-dark-grey);
  font-size:14px;
  line-height:1.82;
}

.section-kicker,
.menu-section .eyebrow,
.booking .eyebrow,
.feature-strip span,
.menu-list strong,
.booking-form span{
  color:var(--text-dark-grey);
  font-size:10px;
}

.hero-copy .eyebrow,
.hero-text{
  color:rgba(255,248,234,.9);
}

/* =========================================================
   REMOVE ALL VISIBLE LINES / FRAMES
========================================================= */

.site-header,
.feature-strip,
.feature-strip article,
.menu-section::before,
.menu-board,
.menu-list,
.menu-list article,
.gallery figcaption,
.booking,
.booking-form input,
.booking-form select,
.book-link,
.button,
.button.ghost,
.footer-bottom,
.footer-managed,
.footer-social a{
  border:0;
}

.gallery figure::after{
  display:none;
}

/* FINAL HARD OVERRIDE: NO VISIBLE LINES */
.site-header,
.hero-note,
.nav-links a,
.feature-strip,
.feature-strip article,
.menu-section::before,
.menu-board,
.menu-list,
.menu-list article,
.gallery figcaption,
.gallery figure::after,
.booking,
.booking-form input,
.booking-form select,
.book-link,
.button,
.button.ghost,
.footer-bottom,
.footer-managed,
.footer-social a{
  border:0 !important;
  box-shadow:none;
}

.menu-section::before,
.gallery figure::after{
  display:none !important;
}

.booking-form input,
.booking-form select{
  outline:0;
}
