:root {
  --bg: #f5f1e9;
  --paper: #fbf8f2;
  --ink: #171614;
  --muted: #77736c;
  --line: #ded8cd;
  --accent: #9b3426;
  --accent-dark: #74251c;

  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}


/* RESET */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
}

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


/* HERO */

.hero {

  min-height: 88vh;

  position: relative;

  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(16,14,11,.76),
      rgba(16,14,11,.38)
    ),
    url("https://images.unsplash.com/photo-1579751626657-72bc17010498?auto=format&fit=crop&w=1800&q=85")
    center / cover;

  color: white;
}


/* NAV */

.nav {

  max-width: 1180px;

  margin: auto;

  padding: 30px 28px;

  display: flex;

  justify-content: space-between;

  align-items: center;
}


.logo {

  font-weight: 700;

  letter-spacing: .13em;

  font-size: 18px;
}


.logo span {

  font-weight: 400;

  opacity: .7;
}


.nav-btn {

  border: 1px solid rgba(255,255,255,.55);

  padding: 11px 18px;

  border-radius: 999px;

  font-size: 13px;
}


/* HERO CONTENT */

.hero-content {

  max-width: 1180px;

  margin: 0 auto;

  padding: 17vh 28px 90px;
}


.eyebrow {

  font-size: 11px;

  letter-spacing: .22em;

  font-weight: 700;

  margin: 0 0 17px;

  opacity: .72;
}


h1,
h2 {

  font-family: var(--serif);

  margin: 0;

  font-weight: 700;

  line-height: 1.02;
}


h1 {

  font-size: clamp(
    54px,
    8vw,
    100px
  );
}


h1 em {

  font-weight: 600;
}


.hero-text {

  max-width: 500px;

  line-height: 1.7;

  color: rgba(255,255,255,.82);

  margin: 25px 0 32px;

  font-size: 16px;
}


/* BUTTONS */

.primary-btn,
.outline-btn {

  display: inline-flex;

  align-items: center;

  gap: 20px;

  border-radius: 999px;

  padding: 15px 21px;

  font-size: 13px;

  font-weight: 700;

  transition: .2s;
}


.primary-btn {

  background: var(--accent);

  color: white;
}


.primary-btn:hover {

  background: var(--accent-dark);

  transform: translateY(-2px);
}


.outline-btn {

  border: 1px solid var(--line);
}


.small {

  padding: 12px 18px;
}


/* INTRO */

.intro {

  max-width: 760px;

  margin: 0 auto;

  padding: 115px 28px 90px;

  text-align: center;
}


.intro .eyebrow,
.menu-section .eyebrow,
.visit .eyebrow,
.feature .eyebrow {

  color: var(--accent);

  opacity: 1;
}


.intro h2,
.section-heading h2,
.feature h2,
.visit h2 {

  font-size: clamp(
    38px,
    5vw,
    62px
  );
}


.intro > p:last-child {

  max-width: 560px;

  margin: 25px auto 0;

  color: var(--muted);

  line-height: 1.8;
}


/* MENU */

.menu-section {

  max-width: 1180px;

  margin: 0 auto;

  padding: 35px 28px 120px;
}


.section-heading {

  display: flex;

  justify-content: space-between;

  align-items: end;

  gap: 20px;

  margin-bottom: 38px;
}


.hint {

  color: var(--muted);

  font-size: 12px;
}


/* TABS */

.tabs {

  display: flex;

  gap: 8px;

  flex-wrap: wrap;

  border-bottom: 1px solid var(--line);

  padding-bottom: 16px;

  margin-bottom: 34px;
}


.tab {

  border: 0;

  background: transparent;

  font: 600 13px var(--sans);

  padding: 10px 16px;

  border-radius: 999px;

  cursor: pointer;

  color: var(--muted);
}


.tab.active {

  background: var(--ink);

  color: white;
}


/* MENU GRID */

.menu-grid {

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 16px;
}


/* MENU ITEM */

.item {

  background: var(--paper);

  border: 1px solid var(--line);

  border-radius: 18px;

  overflow: hidden;

  display: flex;

  min-height: 150px;
}


.item img {

  width: 155px;

  object-fit: cover;
}


.item-body {

  padding: 22px;

  display: flex;

  flex-direction: column;

  flex: 1;
}


.item-top {

  display: flex;

  justify-content: space-between;

  gap: 15px;
}


.item h3 {

  margin: 0;

  font-family: var(--serif);

  font-size: 22px;
}


.price {

  font-weight: 700;

  color: var(--accent);

  white-space: nowrap;
}


.item p {

  margin: 10px 0 0;

  color: var(--muted);

  font-size: 13px;

  line-height: 1.55;
}


/* FEATURE */

.feature {

  background: #1b1916;

  color: white;

  padding:
    90px
    max(28px, calc((100% - 1124px) / 2));

  display: flex;

  justify-content: space-between;

  gap: 70px;

  align-items: end;
}


.feature h2 {

  font-size: clamp(
    38px,
    5vw,
    62px
  );
}


.feature > p {

  max-width: 430px;

  color: rgba(255,255,255,.62);

  line-height: 1.8;

  margin: 0;
}


/* VISIT */

.visit {

  padding: 100px 28px;

  max-width: 900px;

  margin: auto;
}


.visit-card {

  background: var(--paper);

  border: 1px solid var(--line);

  border-radius: 25px;

  padding: 50px;
}


/* DETAILS */

.details {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 25px;

  margin: 42px 0;
}


.details div {

  display: flex;

  flex-direction: column;

  gap: 7px;
}


.details strong {

  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: .12em;
}


.details span {

  color: var(--muted);

  font-size: 13px;

  line-height: 1.5;
}


/* ACTIONS */

.actions {

  display: flex;

  gap: 10px;

  flex-wrap: wrap;
}


/* FOOTER */

footer {

  background: #12110f;

  color: white;

  text-align: center;

  padding: 50px 28px;
}


.footer-logo {

  font-family: var(--serif);

  font-size: 28px;
}


footer p {

  color: rgba(255,255,255,.5);

  font-size: 12px;
}


footer small {

  color: rgba(255,255,255,.3);
}


/* MOBILE */

@media (max-width: 760px) {

  .hero {

    min-height: 80vh;
  }


  .hero-content {

    padding-top: 13vh;
  }


  .nav {

    padding: 22px 20px;
  }


  .nav-btn {

    padding: 9px 14px;
  }


  .hero-text {

    font-size: 14px;
  }


  .intro {

    padding: 85px 22px 65px;
  }


  .menu-section {

    padding:
      20px
      18px
      80px;
  }


  .section-heading {

    display: block;
  }


  .hint {

    margin-top: 15px;
  }


  .menu-grid {

    grid-template-columns: 1fr;
  }


  .item img {

    width: 120px;
  }


  .item-body {

    padding: 17px;
  }


  .item h3 {

    font-size: 19px;
  }


  .feature {

    display: block;

    padding: 75px 25px;
  }


  .feature > p {

    margin-top: 28px;
  }


  .visit {

    padding: 70px 18px;
  }


  .visit-card {

    padding: 30px 24px;
  }


  .details {

    grid-template-columns: 1fr;

    gap: 18px;

    margin: 32px 0;
  }

}