.booking-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(320px, 1.2fr);
  gap: 70px;
  padding: 90px clamp(20px, 10vw, 160px);
  background: var(--cream);
}
.booking-section h2 {
  font: 400 clamp(38px, 4.5vw, 62px)/1 var(--display);
  margin: 0 0 22px;
}
.booking-section > div > p:last-child {
  color: #76665c;
  max-width: 420px;
}
.booking-form {
  display: grid;
  gap: 16px;
  background: var(--paper);
  padding: 34px;
  box-shadow: 12px 12px 0 var(--saffron);
}
.booking-form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: bold;
}
.booking-form input,
.booking-form select {
  width: 100%;
  font: 15px var(--body);
  padding: 11px;
  border: 1px solid var(--line);
  background: #fff;
}
.booking-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.booking-form .button {
  justify-self: start;
  margin-top: 5px;
}
.booking-status {
  color: var(--olive);
  font-size: 13px;
  font-weight: bold;
  margin: 0;
  min-height: 1.6em;
}
@media (max-width: 720px) {
  .booking-section {
    grid-template-columns: 1fr;
    padding: 65px 20px;
    gap: 30px;
  }
  .booking-form {
    padding: 24px;
    box-shadow: 7px 7px 0 var(--saffron);
  }
  .booking-fields {
    grid-template-columns: 1fr;
  }
}
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 clamp(20px, 6vw, 96px) 90px;
  background: var(--paper);
}
.photo-strip img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.photo-strip img:first-child {
  height: 290px;
}
.photo-strip img:last-child {
  height: 250px;
}
@media (max-width: 720px) {
  .photo-strip {
    grid-template-columns: 1fr;
    padding: 0 20px 60px;
  }
  .photo-strip img,
  .photo-strip img:first-child,
  .photo-strip img:last-child {
    height: 220px;
  }
}
:root {
  --ink: #30201b;
  --brick: #a84332;
  --tomato: #d65e3e;
  --saffron: #dfae4a;
  --cream: #f8f0e2;
  --paper: #fffdf9;
  --olive: #536451;
  --line: #e3d7c5;
  --display: Georgia, "Times New Roman", serif;
  --body: "Trebuchet MS", Verdana, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.6 var(--body);
}
a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(20px, 6vw, 96px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 5;
}
.brand {
  font: 700 22px var(--display);
  letter-spacing: 1px;
}
.brand i {
  color: var(--tomato);
  font-style: normal;
}
.site-nav {
  display: flex;
  gap: 25px;
  margin-left: auto;
}
.site-nav a {
  font-size: 13px;
  font-weight: bold;
  padding: 26px 0 23px;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover,
.site-nav a.active {
  border-color: var(--tomato);
}
.lang,
.menu {
  font: 700 12px var(--body);
  border: 1px solid var(--ink);
  background: transparent;
  padding: 7px 9px;
  cursor: pointer;
}
.menu {
  display: none;
  border: 0;
  font-size: 20px;
  padding: 4px;
}
.hero {
  min-height: 650px;
  padding: 100px clamp(20px, 10vw, 160px);
  display: flex;
  align-items: end;
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(45, 26, 19, 0.82),
    rgba(45, 26, 19, 0.08)
  );
}
.hero > div {
  position: relative;
  max-width: 680px;
}
.home-hero {
  background-image: url("https://images.unsplash.com/photo-1515003197210-e0cd71810b5f?auto=format&fit=crop&w=1900&q=85");
}
.about-hero {
  background-image: url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1900&q=85");
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 11px;
  font-weight: bold;
  color: var(--saffron);
  margin: 0 0 15px;
}
.hero h1,
.page-title h1 {
  font: 400 clamp(49px, 6.5vw, 92px)/0.93 var(--display);
  letter-spacing: -1.2px;
  margin: 0;
}
.hero p:last-of-type {
  font-size: 18px;
  max-width: 520px;
  margin: 24px 0;
}
.button {
  display: inline-block;
  padding: 13px 21px;
  background: var(--tomato);
  color: #fff;
  border: 1px solid var(--tomato);
  font-size: 13px;
  font-weight: bold;
  margin: 10px 10px 0 0;
}
.button:hover {
  background: var(--brick);
  border-color: var(--brick);
}
.button-alt {
  background: transparent;
  border-color: #fff;
}
.button-alt:hover {
  background: #fff;
  color: var(--ink);
}
.section {
  padding: 95px clamp(20px, 10vw, 160px);
}
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  background: var(--cream);
}
.section h2 {
  font: 400 clamp(35px, 4vw, 59px)/1.03 var(--display);
  letter-spacing: -0.7px;
  margin: 0;
}
.intro p,
.copy {
  font-size: 18px;
  color: #66554b;
  margin: 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 45px;
}
.feature {
  padding: 25px 30px 12px 0;
  margin-right: 30px;
  border-right: 1px solid var(--line);
}
.feature:last-child {
  border: 0;
}
.feature b,
.menu-item span {
  font-size: 12px;
  color: var(--tomato);
}
.feature h3 {
  font: 400 29px var(--display);
  margin: 33px 0 9px;
}
.feature p {
  color: #66554b;
  margin: 0;
}
.delivery-band {
  padding: 65px clamp(20px, 10vw, 160px);
  background: var(--olive);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.delivery-band h2 {
  font: 400 clamp(33px, 4vw, 55px)/1 var(--display);
  margin: 0;
  max-width: 650px;
}
.delivery-band .button {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--ink);
  white-space: nowrap;
}
.delivery-band .button:hover {
  background: #f0c568;
}
.page-title {
  padding: 104px clamp(20px, 12vw, 190px) 90px;
  background: var(--cream);
}
.page-title h1 {
  max-width: 820px;
}
.page-title > p:last-child {
  color: #66554b;
  font-size: 18px;
  max-width: 610px;
  margin: 25px 0 0;
}
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.story .copy p + p {
  margin-top: 22px;
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 65px clamp(20px, 10vw, 160px);
  background: var(--brick);
  color: #fff;
}
.values article {
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  padding-top: 16px;
}
.values b {
  font-size: 12px;
  color: var(--saffron);
}
.values h3 {
  font: 400 29px var(--display);
  margin: 27px 0 9px;
}
.values p {
  margin: 0;
  color: #f4d9cb;
}
.menu-section {
  padding-top: 35px;
}
.menu-group {
  margin-bottom: 62px;
}
.menu-group h2 {
  margin-bottom: 24px;
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 25px;
  padding: 19px 0;
  border-top: 1px solid var(--line);
}
.menu-item h3 {
  font: 400 25px var(--display);
  margin: 0;
}
.menu-item p {
  margin: 4px 0 0;
  color: #66554b;
}
.menu-item span {
  font-weight: bold;
  padding-top: 5px;
}
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  background: var(--cream);
}
.contact p {
  font-size: 18px;
  color: #66554b;
  max-width: 510px;
}
.contact-info {
  margin-top: 42px;
  display: grid;
  gap: 17px;
}
.contact-info b {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--tomato);
}
.contact-info a {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.form {
  background: var(--paper);
  padding: 34px;
  box-shadow: 11px 11px 0 var(--saffron);
  display: grid;
  gap: 18px;
}
.form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: bold;
}
.form input,
.form select,
.form textarea {
  background: #fff;
  border: 1px solid var(--line);
  padding: 11px;
  font: 16px var(--body);
}
.form textarea {
  resize: vertical;
}
.form .button {
  justify-self: start;
  margin-top: 4px;
}
.site-footer {
  padding: 30px clamp(20px, 6vw, 96px);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.site-footer a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (max-width: 720px) {
  .site-header {
    height: 64px;
    padding: 0 20px;
  }
  .menu {
    display: block;
    margin-left: auto;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 63px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 10px 20px;
    flex-direction: column;
    gap: 0;
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav a {
    padding: 10px 0;
    border: 0;
  }
  .hero {
    min-height: 570px;
    padding: 75px 20px 55px;
  }
  .section,
  .page-title {
    padding: 70px 20px;
  }
  .intro,
  .story,
  .contact {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .feature-grid,
  .values {
    grid-template-columns: 1fr;
  }
  .feature {
    margin: 0;
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .feature:last-child {
    border-bottom: 0;
  }
  .delivery-band {
    padding: 45px 20px;
    align-items: flex-start;
    flex-direction: column;
  }
  .values {
    padding: 55px 20px;
  }
  .form {
    padding: 25px;
    box-shadow: 7px 7px 0 var(--saffron);
  }
  .site-footer {
    padding: 25px 20px;
    flex-direction: column;
  }
}
