:root {
  --ink: #1e1712;
  --paper: #fffaf1;
  --cream: #f3dfbd;
  --tomato: #b82417;
  --tomato-dark: #7f160f;
  --basil: #1f5b3e;
  --gold: #d49a2a;
  --charcoal: #171311;
  --muted: #735f4d;
  --line: rgba(30, 23, 18, .14);
  --shadow: 0 26px 80px rgba(31, 19, 11, .18);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(212, 154, 42, .14), transparent 24rem),
    linear-gradient(180deg, #fffaf1 0%, #fbefd9 52%, #fffaf1 100%);
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(1120px, calc(100% - 28px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(23, 19, 17, .72);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  transition: padding .25s var(--ease), background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}

.site-header.is-scrolled {
  padding: 8px 10px;
  background: rgba(23, 19, 17, .88);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--charcoal);
  background: var(--gold);
  border-radius: 50%;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.main-nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 800;
}

.main-nav a {
  opacity: .84;
  position: relative;
  transition: color .2s var(--ease), opacity .2s var(--ease);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform .24s var(--ease);
}

.main-nav a:hover,
.header-cta:hover {
  opacity: 1;
  color: var(--gold);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  padding: 12px 16px;
  color: var(--charcoal);
  background: #fff;
  border-radius: 6px;
  font-weight: 900;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--gold);
  color: var(--charcoal);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 150px max(28px, calc((100vw - 1120px) / 2)) 64px;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

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

.hero-media img {
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.08);
  transform: scale(1.04);
  animation: heroDrift 16s var(--ease) infinite alternate;
}

.hero-overlay {
  background:
    radial-gradient(circle at 74% 20%, rgba(212, 154, 42, .25), transparent 30%),
    radial-gradient(circle at 20% 82%, rgba(184, 36, 23, .28), transparent 34%),
    linear-gradient(90deg, rgba(20, 11, 7, .95) 0%, rgba(20, 11, 7, .73) 43%, rgba(20, 11, 7, .18) 100%),
    linear-gradient(0deg, rgba(20, 11, 7, .76), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--tomato);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: .94;
}

h1 {
  max-width: 850px;
  font-size: clamp(56px, 10vw, 132px);
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(36px, 5vw, 72px);
}

h3 {
  font-size: 28px;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 7px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease);
}

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

.button.primary {
  color: #fff;
  background: var(--tomato);
  box-shadow: 0 16px 34px rgba(127, 22, 15, .3);
}

.button.primary:hover {
  background: var(--tomato-dark);
  box-shadow: 0 22px 42px rgba(127, 22, 15, .34);
}

.button.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .08);
}

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

.dark-button {
  width: 100%;
}

.hero-card {
  position: absolute;
  right: max(28px, calc((100vw - 1120px) / 2));
  bottom: 64px;
  z-index: 3;
  width: min(300px, calc(100% - 56px));
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 248, 238, .94);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card span,
.hero-card small {
  display: block;
  color: var(--muted);
}

.hero-card strong {
  display: block;
  margin: 7px 0 5px;
  font-size: 22px;
}

.intro-band,
.signature-grid,
.menu-strip,
.gallery,
.booking,
.visit {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.intro-band {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  padding: 92px 0;
  position: relative;
}

.intro-band::before {
  content: "";
  position: absolute;
  left: 0;
  top: 52px;
  width: 82px;
  height: 5px;
  border-radius: 999px;
  background: var(--tomato);
}

.intro-band p:not(.eyebrow) {
  align-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.signature-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
}

.signature-main {
  min-height: 620px;
  display: grid;
  align-content: end;
  overflow: hidden;
  position: relative;
  padding: 28px;
  color: #fff;
  background: var(--charcoal);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.signature-main img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.signature-main:hover img {
  transform: scale(1.045);
}

.signature-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 11, 8, .86), rgba(15, 11, 8, .08));
}

.signature-main div {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.signature-main p:last-child {
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.65;
}

.plates {
  display: grid;
  gap: 20px;
}

.plates article {
  min-height: 190px;
  padding: 26px;
  color: #fff;
  background: var(--basil);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease);
}

.plates article::after {
  content: "";
  position: absolute;
  inset: auto -18% -42% 42%;
  height: 150px;
  transform: rotate(-12deg);
  background: rgba(255, 255, 255, .12);
}

.plates article:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(31, 19, 11, .16);
}

.plates article:nth-child(2) {
  background: var(--tomato);
}

.plates article:nth-child(3) {
  color: var(--ink);
  background: var(--cream);
}

.plates span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold);
  font-weight: 900;
}

.plates p {
  color: inherit;
  opacity: .78;
  line-height: 1.55;
}

.menu-strip {
  padding: 92px 0 58px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.menu-list article {
  display: grid;
  align-content: start;
  min-height: 210px;
  gap: 12px;
  padding: 24px;
  background: rgba(255, 255, 255, .62);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(31, 19, 11, .08);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
}

.menu-list article:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 36, 23, .28);
  box-shadow: 0 24px 58px rgba(31, 19, 11, .13);
}

.menu-kicker {
  width: max-content;
  padding: 7px 10px;
  color: var(--tomato);
  background: rgba(184, 36, 23, .08);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.menu-list strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
  line-height: 1.05;
}

.menu-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.gallery {
  padding: 26px 0 92px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 16px 50px rgba(31, 19, 11, .1);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease);
}

.gallery figure:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 70px rgba(31, 19, 11, .16);
}

.gallery img {
  height: 430px;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.gallery figure:hover img {
  transform: scale(1.04);
}

.gallery .wide img {
  height: 540px;
}

figcaption {
  padding: 16px 18px 18px;
  color: var(--muted);
  font-weight: 800;
}

.booking {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 54px;
  color: #fff;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, .16), transparent 24rem),
    linear-gradient(135deg, rgba(184, 36, 23, .92), rgba(31, 91, 62, .92)),
    var(--tomato);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.7;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  font-weight: 900;
}

.booking-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 14px;
  color: var(--ink);
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: rgba(184, 36, 23, .55);
  box-shadow: 0 0 0 4px rgba(184, 36, 23, .1);
}

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

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--basil);
  font-weight: 900;
}

.visit {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 76px 0;
}

.visit p {
  color: var(--muted);
}

.map-link {
  min-width: max-content;
  padding: 16px 20px;
  color: #fff;
  background: var(--charcoal);
  border-radius: 7px;
  font-weight: 900;
  transition: transform .22s var(--ease), background .22s var(--ease);
}

.map-link:hover {
  transform: translateY(-3px);
  background: var(--tomato);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px max(20px, calc((100vw - 1120px) / 2));
  color: rgba(255, 255, 255, .72);
  background: var(--charcoal);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

body.has-js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

body.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.09) translate3d(-1.6%, -1%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  body.has-js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    top: 10px;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    padding: 11px 12px;
    font-size: 13px;
  }

  .hero {
    padding-top: 128px;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 34px;
  }

  .intro-band,
  .signature-grid,
  .gallery-grid,
  .booking {
    grid-template-columns: 1fr;
  }

  .intro-band {
    padding: 70px 0;
  }

  .signature-main {
    min-height: 520px;
  }

  .section-heading,
  .visit,
  .site-footer {
    display: grid;
  }

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

  .booking {
    padding: 28px;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: calc(100% - 20px);
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-inline: 18px;
    padding-bottom: 34px;
  }

  h1 {
    max-width: 8.4ch;
    font-size: 43px;
    line-height: .98;
  }

  .hero-copy {
    max-width: 32ch;
  }

  h2 {
    font-size: 38px;
  }

  .hero-actions,
  .button,
  .form-row {
    width: 100%;
  }

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

  .gallery img,
  .gallery .wide img {
    height: 360px;
  }

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

  .menu-list article {
    min-height: 0;
  }
}
