:root {
  --brown: #645b50;
  --brown-dark: #1f1a16;
  --accent: #fda738;
  --cream: #f7efe5;
  --white: #fff;
  --muted: #d9d0c5;
  --line: rgba(255, 255, 255, .18);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
html {
  scrollbar-color: var(--accent) rgba(31, 26, 22, .86);
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(31, 26, 22, .92);
  border-left: 1px solid rgba(255, 255, 255, .08);
}

::-webkit-scrollbar-thumb {
  border: 3px solid rgba(31, 26, 22, .92);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), #c77c2e);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ffbd65, var(--accent));
}

::-webkit-scrollbar-corner {
  background: rgba(31, 26, 22, .92);
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background: #50483f url('../images/wildtextures_white-stained-wooden-boards copycf4c.jpg') center / cover fixed;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(100, 91, 80, .96);
  border-bottom: 4px solid var(--accent);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .22);
}

.header-inner {
  width: min(100%, var(--max));
  min-height: 88px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-symbol {
  width: 85px;
  height: 85px;
  padding: 7px;
  object-fit: contain;
  flex: 0 0 auto;
  border-radius: 10px;
  background: rgba(100, 91, 80, .96);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
}

.brand-wordmark {
  width: 180px;
  height: auto;
  min-width: 0;
  flex: 0 1 auto;
}

.desktop-nav,
.mobile-nav,
.site-footer nav {
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  letter-spacing: 2.4px;
}

.desktop-nav a,
.mobile-nav a,
.site-footer a {
  text-decoration: none;
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, .9);
  transition: color .22s ease, background-color .22s ease;
}

.desktop-nav a:hover {
  color: var(--accent);
}

.desktop-nav a.active,
.desktop-nav a.active:hover {
  padding: 8px 16px;
  background: #fda738;
  color: #fff;
}

.site-footer a:hover {
  color: var(--accent);
}

.nav-toggle {
  position: relative;
  display: none;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 14px;
  background: linear-gradient(145deg, #ffb44c, var(--accent));
  box-shadow: 0 12px 24px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .28);
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .3);
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 3px;
  margin: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(75, 50, 20, .2);
  transform-origin: center;
  transition: transform .28s ease, opacity .18s ease, width .22s ease;
}

.nav-toggle span:nth-child(1) {
  transform: translate(-50%, -8px);
}

.nav-toggle span:nth-child(2) {
  transform: translate(-50%, 0);
}

.nav-toggle span:nth-child(3) {
  transform: translate(-50%, 8px);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  width: 8px;
  opacity: 0;
  transform: translate(-50%, 0) scaleX(.25);
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translate(-50%, 0) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.home-hero,
.page-hero {
  position: relative;
  min-height: calc(100vh - 92px);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.page-hero {
  min-height: 430px;
  place-items: end start;
}

.page-hero.compact {
  min-height: 360px;
}

.hero-video,
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .54), rgba(0, 0, 0, .14));
}

.home-copy,
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 56px 24px;
}

.home-copy {
  text-align: center;
}

.home-copy p,
.hero-copy p,
.eyebrow {
  margin: 0 0 8px;
  color: var(--cream);
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.home-copy h1,
.hero-copy h1 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(48px, 9vw, 96px);
  line-height: .95;
  text-transform: uppercase;
  text-shadow: 5px 5px 8px rgba(0, 0, 0, .42);
  overflow-wrap: break-word;
}

.hero-copy h1 {
  font-size: clamp(44px, 7vw, 74px);
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(620px, 100%);
  margin: 44px auto 0;
  gap: 34px;
}

.quick-links a {
  min-width: 0;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}

.quick-links img {
  width: 92px;
  margin: 10px auto 0;
  filter: brightness(0) invert(1);
}

.quick-links span {
  display: block;
  margin-top: 10px;
}

.content-section {
  padding: 70px 22px;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.lead {
  max-width: 900px;
  margin: 0 auto 30px;
  font-size: clamp(18px, 2.2vw, 24px);
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  align-items: center;
  gap: 52px;
}

.round-image {
  border-radius: 10px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, .28);
}

.about-intro p {
  font-size: 18px;
}

.about-brand-section {
  position: relative;
  padding: 0 22px 44px;
}

.about-brand-card {
  position: relative;
  z-index: 0;
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: clamp(34px, 4.8vw, 52px) clamp(28px, 5vw, 58px);
  display: grid;
  grid-template-columns: minmax(170px, 250px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 56px);
}

.about-brand-card::after {
  content: '';
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: -34px;
  height: 54px;
  z-index: -1;
  background: url('../images/shadow-2.png?crc=355922972') center top / 100% 100% no-repeat;
  pointer-events: none;
}

.about-brand-emblem {
  width: min(226px, 100%);
  justify-self: center;
}

.about-brand-content {
  width: 100%;
  min-width: 0;
}

.about-brand-wordmark {
  width: 100%;
  max-width: 620px;
  margin-bottom: 18px;
}

.about-brand-content p {
  max-width: 720px;
  margin: 0;
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 500;
  line-height: 1.18;
  overflow-wrap: break-word;
}

.about-brand-content p + p {
  margin-top: 4px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.values-grid article,
.contact-info,
.legal-content,
.location-card span,
.modal-card {
  background: rgba(100, 91, 80, .82);
  border: 1px solid var(--line);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .18);
}

.values-grid article {
  padding: 28px;
  text-align: center;
}

.values-grid h2,
.contact-info h2,
.content-section h2,
.legal-content h1,
.legal-content h2 {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.img-center {
  margin: 0 auto;
}

.button {
  min-height: 50px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.button:hover {
  filter: brightness(1.04);
}
.button:disabled {
  opacity: .86;
}

.submit-button.is-loading {
  cursor: wait;
}

.submit-button.is-loading::before {
  content: '';
  width: 16px;
  height: 16px;
  margin-right: 10px;
  border: 2px solid rgba(255, 255, 255, .48);
  border-top-color: #fff;
  border-radius: 50%;
  animation: submit-spin .7s linear infinite;
}

@keyframes submit-spin {
  to {
    transform: rotate(360deg);
  }
}

.download-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 38px;
}

.menu-intro-section {
  position: relative;
  padding: 58px 22px 64px;
}

.menu-intro-section::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -28px;
  width: min(88%, 1080px);
  height: 54px;
  transform: translateX(-50%);
  background: url('../images/shadow-2.png?crc=355922972') center top / 100% 100% no-repeat;
  pointer-events: none;
}

.menu-intro {
  display: grid;
  justify-items: center;
  text-align: center;
}

.menu-intro p {
  max-width: 720px;
  margin: 0;
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 500;
  line-height: 1.18;
  overflow-wrap: break-word;
}

.menu-intro-button {
  margin-top: 30px;
}

.menu-list-section {
  padding-top: 64px;
}

.menu-showcase {
  display: grid;
  gap: 30px;
  margin-top: 42px;
}

.menu-card {
  padding: clamp(18px, 2.5vw, 28px);
  background: rgba(100, 91, 80, .78);
  border: 1px solid var(--line);
  box-shadow: 0 22px 46px rgba(0, 0, 0, .2);
}

.menu-card h2 {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: clamp(18px, 2.2vw, 25px);
  text-align: center;
}

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

.menu-art,
.photo-grid button {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  background: rgba(31, 26, 22, .36);
  cursor: pointer;
}

.menu-art {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 320px;
  transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.menu-art:hover {
  border-color: rgba(253, 167, 56, .75);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .18);
  transform: translateY(-2px);
}

.menu-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.menu-card-feature {
  display: grid;
  justify-items: center;
}

.menu-art-feature {
  width: min(100%, 880px);
  min-height: 0;
  margin: 0 auto;
}

.menu-art-feature img {
  height: auto;
}

.menu-pair-tall .menu-art {
  min-height: clamp(520px, 58vw, 720px);
}

.menu-pair-wide .menu-art {
  min-height: clamp(260px, 30vw, 390px);
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

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

.location-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 4px;
  background: #222;
  text-decoration: none;
}

.location-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.location-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .7), rgba(0, 0, 0, .08));
}

.location-card:hover img {
  transform: scale(1.04);
}

.location-card span {
  position: absolute;
  z-index: 1;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 16px;
}

.location-card strong,
.location-card small {
  display: block;
}

.location-card strong {
  font-size: 18px;
  text-transform: uppercase;
}

.location-card small {
  margin-top: 4px;
  color: var(--muted);
}

.contact-section {
  padding-top: 58px;
}

.contact-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.contact-heading p {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.contact-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: clamp(24px, 4vw, 46px);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(253, 167, 56, .24);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(31, 26, 22, .72), rgba(100, 91, 80, .5));
  box-shadow: 0 24px 52px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.form-intro {
  max-width: 620px;
  margin: 0 0 4px;
  color: rgba(255, 255, 255, .86);
  font-size: 17px;
  line-height: 1.55;
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 17px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 6px;
  background: rgba(31, 26, 22, .38);
  color: #fff;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 8px 18px rgba(0, 0, 0, .08);
  transition: border-color .22s ease, box-shadow .22s ease, background-color .22s ease, transform .22s ease;
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: rgba(253, 167, 56, .45);
  background: rgba(31, 26, 22, .48);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  background: rgba(31, 26, 22, .58);
  box-shadow: 0 0 0 3px rgba(253, 167, 56, .18), inset 0 1px 0 rgba(255, 255, 255, .1);
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-form ::placeholder {
  color: rgba(255, 255, 255, .58);
  font-style: italic;
}

.contact-form .submit-button {
  width: min(100%, 210px);
  margin-top: 4px;
  border-radius: 6px;
  box-shadow: 0 14px 26px rgba(164, 94, 25, .24);
}

.form-status {
  min-height: 22px;
  margin: 0;
  font-size: 14px;
}

.contact-info {
  padding: 32px 28px;
  border-radius: 8px;
  text-align: center;
}

.contact-info img {
  width: 190px;
  margin: 0 auto 22px;
}

.contact-info p {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-info p + p {
  margin-top: 20px;
}

.contact-info span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-info strong {
  display: block;
  margin-top: 6px;
}

.location-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.location-detail-head h2 {
  margin: 0;
}

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

.photo-grid button {
  height: 240px;
  overflow: hidden;
  border-radius: 4px;
}

.legal-section {
  padding-top: 46px;
}

.legal-content {
  max-width: 950px;
  margin: 0 auto;
  padding: 42px;
  color: #fff;
}

.legal-content h1 {
  margin-top: 0;
  color: var(--accent);
}

.legal-content h2 {
  margin: 28px 0 10px;
  color: var(--accent);
  font-size: 20px;
}

.legal-content p {
  color: #f4f0ea;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(21, 17, 14, .78);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility 0s linear .28s;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.modal-card {
  width: min(440px, 100%);
  padding: 34px;
  border-top: 4px solid var(--accent);
  border-radius: 8px;
  text-align: center;
  transform: translateY(18px) scale(.96);
  opacity: 0;
  transition: transform .32s cubic-bezier(.2, .8, .2, 1), opacity .26s ease;
}

.modal.is-open .modal-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-card img {
  width: 180px;
  margin: 0 auto 18px;
}

.modal-card p:first-of-type {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.modal-card h2 {
  margin: 0 0 12px;
  font-size: clamp(34px, 6vw, 46px);
  line-height: 1;
}

.modal-card p:last-of-type {
  margin: 0 auto 24px;
  max-width: 310px;
  color: rgba(255, 255, 255, .84);
}

.modal-card .button {
  min-width: 150px;
  border-radius: 6px;
}

.site-footer {
  padding: 0 22px 24px;
  background: linear-gradient(135deg, rgba(31, 26, 22, .98), rgba(55, 45, 37, .96));
  border-top: 4px solid var(--accent);
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 40px 0 30px;
  display: grid;
  grid-template-columns: minmax(220px, .9fr) minmax(360px, 1fr) minmax(150px, .45fr);
  align-items: start;
  gap: 52px;
}

.footer-brand a {
  display: inline-block;
  text-decoration: none;
}

.footer-brand img {
  width: 170px;
  height: auto;
}

.footer-brand p {
  max-width: 260px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 42px;
}

.footer-group h2,
.footer-social h2 {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  gap: 10px;
}

.footer-nav a {
  width: fit-content;
  padding: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color .2s ease, transform .2s ease;
}

.footer-nav a:hover {
  color: var(--accent);
  transform: translateX(3px);
}

.footer-social {
  display: grid;
  justify-items: end;
}

.instagram {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  transition: color .2s ease, transform .2s ease;
}

.instagram:hover {
  color: var(--accent);
  transform: translateX(2px);
}

.instagram img {
  width: 18px;
  height: 18px;
}

.footer-copy {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: .6px;
  text-align: center;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, .86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: 92vw;
  max-height: 90vh;
  border-radius: 4px;
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .header-inner {
    min-height: 82px;
  }

  .brand-symbol {
    width: 70px;
    height: 70px;
    padding: 6px;
  }

  .brand-wordmark {
    width: 160px;
  }

  .mobile-nav {
    position: fixed;
    inset: 86px 0 auto 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
    background: rgba(100, 91, 80, .98);
    border-bottom: 4px solid var(--accent);
    box-shadow: 0 18px 34px rgba(0, 0, 0, .24);
    text-align: center;
    letter-spacing: 2px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-16px) scaleY(.96);
    transform-origin: top;
    transition: opacity .28s ease, transform .32s ease, visibility 0s linear .32s;
  }

  .mobile-nav a {
    align-self: center;
    min-width: 132px;
    padding: 10px 16px;
    border-radius: 999px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .24s ease, transform .28s ease, color .2s ease, background-color .22s ease;
  }

  .mobile-nav a.active,
  .mobile-nav a.active:hover {
    background: #fda738;
    color: #fff;
  }

  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scaleY(1);
    transition-delay: 0s;
  }

  .mobile-nav.is-open a {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav.is-open a:nth-child(1) { transition-delay: .04s; }
  .mobile-nav.is-open a:nth-child(2) { transition-delay: .08s; }
  .mobile-nav.is-open a:nth-child(3) { transition-delay: .12s; }
  .mobile-nav.is-open a:nth-child(4) { transition-delay: .16s; }
  .mobile-nav.is-open a:nth-child(5) { transition-delay: .2s; }
  .mobile-nav.is-open a:nth-child(6) { transition-delay: .24s; }
  .mobile-nav.is-open a:nth-child(7) { transition-delay: .28s; }

  .home-hero {
    min-height: calc(100vh - 86px);
  }

  .quick-links {
    gap: 18px;
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-brand-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .about-brand-emblem {
    width: 180px;
  }

  .about-brand-wordmark {
    margin-left: auto;
    margin-right: auto;
  }

  .values-grid,
  .locations-grid,
  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .menu-pair-tall .menu-art {
    min-height: 560px;
  }

  .menu-pair-wide .menu-art {
    min-height: 300px;
  }

  .location-detail-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-links {
    width: min(100%, 520px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }

  .footer-group {
    display: grid;
    justify-items: center;
  }

  .footer-nav {
    justify-items: center;
  }

  .footer-social {
    justify-items: center;
  }
}

@media (min-width: 561px) and (max-width: 900px) {
  .footer-inner {
    grid-template-columns: max-content max-content max-content;
    justify-content: center;
    justify-items: start;
    text-align: left;
    column-gap: clamp(30px, 7vw, 76px);
    row-gap: 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    justify-self: center;
    text-align: center;
  }

  .footer-links {
    grid-column: 1 / span 2;
    width: auto;
    grid-template-columns: max-content max-content;
    align-items: start;
    gap: clamp(30px, 7vw, 76px);
  }

  .footer-group,
  .footer-nav,
  .footer-social {
    justify-items: start;
  }

  .footer-group {
    align-content: start;
    align-items: start;
  }

  .footer-social {
    grid-column: 3;
  }

  .footer-nav a,
  .instagram {
    text-align: left;
  }
}

@media (max-width: 560px) {
  body {
    background-image: url('../images/wildtextures_white-stained-wooden-boards copy1010x783f42d.jpg');
  }

  .header-inner {
    position: relative;
    padding: 12px 76px 12px 16px;
    gap: 12px;
  }

  .brand {
    max-width: calc(100vw - 100px);
    gap: 8px;
  }

  .brand-symbol {
    width: 55px;
    height: 55px;
    padding: 5px;
    border-radius: 9px;
  }

  .brand-wordmark {
    width: clamp(118px, 34vw, 140px);
  }

  .site-header .nav-toggle {
    position: fixed;
    top: 18px;
    right: 16px;
    z-index: 2100;
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 13px;
  }

  .site-header .nav-toggle span {
    width: 22px;
    height: 3px;
  }

  .home-copy,
  .hero-copy {
    max-width: 100vw;
    padding: 42px 20px;
    overflow: hidden;
  }

  .home-copy p,
  .hero-copy p {
    font-size: 15px;
  }

  .home-copy h1 {
    font-size: clamp(36px, 11vw, 42px);
    line-height: 1.02;
  }

  .page-hero,
  .page-hero.compact {
    min-height: 300px;
  }

  .quick-links {
    max-width: 300px;
    gap: 4px;
  }

  .quick-links img {
    width: 56px;
  }

  .quick-links span {
    display: block;
    font-size: 9px;
    line-height: 1.25;
    letter-spacing: .8px;
  }

  .content-section {
    padding: 46px 16px;
  }

  .menu-intro-section {
    padding: 44px 16px 52px;
  }

  .menu-intro p {
    max-width: 326px;
    font-size: 15px;
    line-height: 1.28;
  }

  .menu-intro-button {
    width: auto;
    margin-top: 24px;
  }

  .menu-list-section {
    padding-top: 46px;
  }

  .about-brand-section {
    padding: 0 14px 38px;
  }

  .about-brand-card {
    padding: 28px 18px 30px;
    gap: 20px;
  }

  .about-brand-emblem {
    width: 136px;
  }

  .about-brand-wordmark {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 14px;
  }

  .about-brand-content p {
    max-width: 326px;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
    line-height: 1.28;
  }

  .values-grid,
  .locations-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .menu-showcase {
    gap: 22px;
    margin-top: 30px;
  }

  .menu-card {
    padding: 14px;
  }

  .menu-art {
    padding: 8px;
  }

  .menu-pair-tall .menu-art {
    min-height: 480px;
  }

  .menu-pair-wide .menu-art {
    min-height: 230px;
  }

  .location-card {
    min-height: 230px;
  }

  .photo-grid button {
    height: 220px;
  }

  .legal-content {
    padding: 26px 18px;
  }
  .site-footer {
    padding: 0 16px 22px;
  }

  .footer-inner {
    padding: 34px 0 24px;
    gap: 28px;
  }

  .footer-brand img {
    width: 155px;
    margin: 0 auto;
  }

  .footer-links {
    width: min(100%, 280px);
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-group h2,
  .footer-social h2 {
    margin-bottom: 13px;
  }

  .footer-nav {
    gap: 9px;
  }

  .footer-nav a {
    font-size: 12px;
  }

  .instagram {
    justify-content: center;
  }
.button {
    width: 100%;
  }

  .download-row .button,
  .location-detail-head .button,
  .menu-intro-button {
    width: auto;
  }

  .contact-heading {
    margin-bottom: 26px;
  }

  .contact-form {
    padding: 20px 16px;
  }

  .contact-form .submit-button {
    width: 100%;
  }

  .contact-info {
    padding: 26px 18px;
  }

  .modal {
    padding: 18px;
  }

  .modal-card {
    padding: 30px 20px;
  }

  .modal-card img {
    width: 155px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
  }
}

@media (max-width: 380px) {
  .home-copy h1 {
    font-size: 34px;
  }

  .quick-links {
    max-width: 180px;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .quick-links img {
    width: 60px;
  }
}