:root {
  --green-dark: #3d4f2e;
  --green-mid: #94b45f;
  --cream: #e8dfc6;
  --accent: #d66b45;
  --ink: #182012;
  --white: #fffdf7;
  --line: rgba(232, 223, 198, 0.22);
  --shadow: 0 22px 60px rgba(12, 17, 9, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--green-dark);
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body::selection {
  background: var(--accent);
  color: var(--white);
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--cream);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(61, 79, 46, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 172px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 700;
}

.primary-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 6px;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  background: rgba(232, 223, 198, 0.12);
  outline: none;
}

.nav-social {
  background: rgba(232, 223, 198, 0.1);
  border: 1px solid var(--line);
}

.nav-social img {
  width: 22px;
  height: 22px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 118px clamp(18px, 5vw, 72px) 64px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(23, 32, 18, 0.92) 0%, rgba(23, 32, 18, 0.68) 42%, rgba(23, 32, 18, 0.14) 100%),
    linear-gradient(0deg, rgba(61, 79, 46, 0.42), rgba(61, 79, 46, 0));
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
  padding-bottom: 2vh;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-mid);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  max-width: 8.5em;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--cream);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button.primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(214, 107, 69, 0.26);
}

.button.secondary {
  background: rgba(232, 223, 198, 0.1);
  border-color: var(--line);
  color: var(--cream);
}

.intro {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--cream);
  color: var(--green-dark);
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
}

.intro p {
  margin: 0;
}

.intro span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.offerings,
.experience,
.location {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  gap: 8px;
  max-width: 720px;
  margin-bottom: 30px;
}

.section-heading h2,
.experience h2,
.location h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p:last-child,
.experience-copy p:last-child,
.location address {
  margin: 0;
  color: rgba(232, 223, 198, 0.86);
  font-size: 1.08rem;
}

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

.menu-item {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  background: rgba(232, 223, 198, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.menu-item:nth-child(even) {
  background: rgba(148, 180, 95, 0.13);
}

.icon-wrap {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(214, 107, 69, 0.14);
}

.icon-wrap svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--cream);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-item h3 {
  margin: auto 0 0;
  color: var(--white);
  font-size: 1.6rem;
}

.menu-item p {
  margin: 0;
  color: rgba(232, 223, 198, 0.82);
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: clamp(32px, 7vw, 96px);
  background: var(--ink);
}

.experience-copy {
  align-self: center;
  max-width: 760px;
}

.experience-copy p:last-child {
  margin-top: 22px;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list div {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-left: 4px solid var(--accent);
  background: rgba(232, 223, 198, 0.07);
  border-radius: 0 8px 8px 0;
}

.feature-list strong {
  color: var(--green-mid);
  font-size: 1.1rem;
}

.feature-list span {
  color: rgba(232, 223, 198, 0.84);
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, var(--green-dark), #27361f);
}

.location address {
  margin-top: 18px;
  max-width: 620px;
  font-style: normal;
}

.location-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: rgba(232, 223, 198, 0.82);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

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

.site-footer p {
  margin: 0;
}

.copyright {
  font-size: 0.88rem;
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px clamp(18px, 5vw, 72px) 72px;
  background: linear-gradient(135deg, var(--green-dark), var(--ink));
}

.not-found-content {
  width: min(760px, 100%);
}

.not-found-content img {
  width: 220px;
  height: auto;
  margin-bottom: 36px;
}

.not-found-content h1 {
  max-width: 9em;
}

.not-found-content p {
  max-width: 620px;
  color: rgba(232, 223, 198, 0.84);
  font-size: 1.15rem;
}

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

  .primary-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 170px;
  }

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

  .experience,
  .location,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .location-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 150px;
  }

  .primary-nav {
    font-size: 0.86rem;
  }

  .primary-nav a {
    padding: 8px 10px;
    white-space: nowrap;
  }

  .nav-social span {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding-bottom: 42px;
  }

  .hero::before {
    background: linear-gradient(0deg, rgba(23, 32, 18, 0.9) 0%, rgba(23, 32, 18, 0.6) 68%, rgba(23, 32, 18, 0.28) 100%);
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.6rem);
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-block: 24px;
  }

  .intro span {
    justify-self: center;
  }

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

  .menu-item {
    min-height: 230px;
  }

  .site-footer {
    gap: 12px;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }
}
