:root {
  --ink: #17251f;
  --muted: #5d665f;
  --paper: #fbfaf5;
  --panel: #ffffff;
  --river: #1f5f67;
  --river-dark: #143f45;
  --gold: #b98236;
  --line: rgba(23, 37, 31, 0.14);
  --shadow: 0 18px 55px rgba(18, 30, 25, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: #fff;
  background: linear-gradient(180deg, rgba(12, 22, 18, 0.82), rgba(12, 22, 18, 0));
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 700;
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(9, 18, 15, 0.25), rgba(9, 18, 15, 0.78)),
    linear-gradient(90deg, rgba(9, 18, 15, 0.62), rgba(9, 18, 15, 0.08));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 160px 0 12vh;
  text-align: center;
}

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

.hero .eyebrow {
  color: #f3c782;
}

.hero-brand {
  display: grid;
  gap: 4px;
  margin: 0 0 12px;
  color: #f3c782;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.chef-script {
  color: #fff5df;
  font-family: "Great Vibes", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: none;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px auto 30px;
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.primary-button {
  color: #fff;
  background: var(--river);
}

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

.secondary-button {
  color: var(--river-dark);
  background: #f3e4cd;
}

section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.intro-section,
.services-section,
.menu-section,
.booking-section,
.payment-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  max-width: 1180px;
  margin: 0 auto;
}

.intro-copy,
.payment-copy {
  font-size: 1.05rem;
  color: var(--muted);
}

.intro-copy p:first-child,
.payment-copy p:first-child {
  margin-top: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-grid article,
.menu-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.service-grid p,
.menu-item p {
  margin: 12px 0 0;
  color: var(--muted);
}

.slideshow-section {
  padding-top: 24px;
  padding-bottom: 24px;
  overflow: hidden;
}

.slideshow {
  display: flex;
  width: min(1180px, 100%);
  height: clamp(280px, 48vw, 540px);
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.slideshow img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slideShow 15s infinite;
}

@keyframes slideShow {
  0%,
  26% {
    transform: translateX(0);
  }

  33%,
  59% {
    transform: translateX(-100%);
  }

  66%,
  92% {
    transform: translateX(-200%);
  }

  100% {
    transform: translateX(0);
  }
}

.menu-list {
  display: grid;
  gap: 18px;
}

.event-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.invoice-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea,
.event-form button {
  grid-column: 1 / -1;
}

.invoice-form .secondary-button {
  justify-self: start;
}

.payment-section {
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(20px, 5vw, 72px);
  color: #fff;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  nav {
    gap: 12px;
    font-size: 0.76rem;
  }

  .intro-section,
  .services-section,
  .menu-section,
  .booking-section,
  .payment-section,
  .service-grid,
  .event-form {
    grid-template-columns: 1fr;
  }

  textarea,
  .event-form button {
    grid-column: auto;
  }

  .hero-content {
    padding-top: 180px;
    text-align: left;
  }

  .hero p:not(.eyebrow) {
    margin-left: 0;
  }

  h1 {
    font-size: clamp(3.4rem, 20vw, 5.5rem);
  }

  .site-footer {
    flex-direction: column;
  }
}
