body {
  background: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #ece8df;
  padding: 0 max(20px, calc((100vw - 1120px) / 2));
  background: rgb(255 255 255 / 94%);
  backdrop-filter: blur(10px);
}

.site-header__nav a {
  color: #24241f;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  width: 118px;
  min-height: 52px;
}

.site-header__brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header__nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.hero {
  min-height: 68vh;
  align-items: center;
}

.hero__overlay {
  background:
    linear-gradient(0deg, rgb(0 0 0 / 48%) 0%, rgb(0 0 0 / 20%) 48%, rgb(0 0 0 / 42%) 100%),
    linear-gradient(90deg, rgb(0 0 0 / 44%) 0%, rgb(0 0 0 / 10%) 55%, rgb(0 0 0 / 28%) 100%);
}

.hero__content {
  text-align: center;
}

.hero__content .eyebrow,
.hero__copy,
h1 {
  margin-right: auto;
  margin-left: auto;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.7rem, 8vw, 5.8rem);
  text-transform: uppercase;
}

.hero__copy {
  max-width: 720px;
}

.hero__cta,
.submit-button,
.action-button {
  border-radius: 4px;
  background: #ffffff;
  color: #20231e;
  text-transform: uppercase;
}

.hero__cta {
  border: 1px solid rgb(255 255 255 / 70%);
}

.booking {
  margin-top: 56px;
  margin-bottom: 86px;
}

.booking__intro,
.booking-form,
.summary {
  border-color: #e5e0d6;
  border-radius: 4px;
  box-shadow: none;
}

.booking__intro {
  background: #f8f6f0;
}

.booking__intro h2,
.summary h2 {
  text-transform: uppercase;
}

.eyebrow {
  color: #2e5d36;
}

.reservation-note,
.fish-order,
.menu-note {
  border-radius: 4px;
}

.fish-order {
  background: #fbfaf5;
}

.submit-button {
  background: #2e5d36;
  color: #fff;
}

.kitchen-hours {
  margin: 8px 0 0;
  color: #6d756c;
  font-size: 0.86rem;
  font-weight: 800;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.photo-strip img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  object-fit: cover;
}

.photo-strip img:first-child {
  object-position: 60% 72%;
}

.photo-strip img:last-child {
  object-position: 58% 54%;
}

.action-button--whatsapp {
  background: #2e5d36;
  color: #fff;
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }

  .site-header__nav {
    gap: 16px;
  }

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

  .hero {
    min-height: 70vh;
  }
}
