:root {
  --ink: #111611;
  --muted: #5f665f;
  --soft: #f3f6f1;
  --line: #dfe6dd;
  --sage: #244b2a;
  --sage-2: #456b45;
  --tomato: #c93d2b;
  --tomato-dark: #a52e21;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(15, 24, 16, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 86px;
  padding: 0 42px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(17, 22, 17, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  min-width: 230px;
}

.brand span {
  color: var(--sage);
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 700;
  line-height: 0.92;
}

.brand small {
  color: #2f342f;
  font-size: 16px;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  color: #252b25;
  font-size: 15px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--tomato);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  color: var(--white);
  background: var(--tomato);
  border: 1px solid var(--tomato);
  box-shadow: 0 10px 24px rgba(201, 61, 43, 0.18);
  font-size: 15px;
  font-weight: 700;
  transition: background 160ms ease, transform 160ms ease;
}

.header-phone:hover {
  background: var(--tomato-dark);
  transform: translateY(-1px);
}

svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.header-phone svg {
  fill: currentColor;
  stroke: none;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  overflow: hidden;
  color: var(--white);
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 12, 8, 0.78) 0%, rgba(8, 12, 8, 0.56) 38%, rgba(8, 12, 8, 0.18) 72%, rgba(8, 12, 8, 0.1) 100%),
    linear-gradient(0deg, rgba(8, 12, 8, 0.16), rgba(8, 12, 8, 0.16));
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(760px, 88vw);
  min-height: calc(100vh - 86px);
  padding: 72px 0 92px;
  margin-left: clamp(28px, 7vw, 112px);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6.8vw, 94px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero p {
  max-width: 520px;
  margin: 28px 0 0;
  font-size: clamp(20px, 2.1vw, 29px);
  line-height: 1.3;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid currentColor;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--tomato);
  border-color: var(--tomato);
  box-shadow: 0 12px 28px rgba(201, 61, 43, 0.24);
}

.button-primary:hover {
  background: var(--tomato-dark);
  border-color: var(--tomato-dark);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.78);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.button-outline {
  color: var(--sage);
  background: transparent;
  border-color: var(--sage);
}

.button-outline:hover {
  color: var(--white);
  background: var(--sage);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-strip div {
  min-height: 118px;
  padding: 28px clamp(18px, 4vw, 72px);
  background: var(--white);
}

.quick-strip strong {
  display: block;
  color: var(--sage);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.quick-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: 96px clamp(24px, 7vw, 112px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto 44px;
}

.section-heading h2,
.split-copy h2,
.panel-heading h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
}

.section-heading p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.menu-item img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.menu-item h3 {
  margin: 20px 0 8px;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.1;
}

.menu-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.72fr);
  gap: clamp(40px, 7vw, 104px);
  align-items: center;
  background: var(--soft);
}

.split-copy {
  max-width: 690px;
}

.split-copy p {
  margin: 24px 0 0;
  color: #3c453e;
  font-size: 20px;
  line-height: 1.65;
}

.split-image {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.feature-list span {
  padding: 9px 13px;
  color: var(--sage);
  background: var(--white);
  border: 1px solid #cbd8c9;
  font-size: 14px;
  font-weight: 800;
}

.info-band {
  display: grid;
  grid-template-columns: 1.04fr 0.9fr 0.9fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hours-panel,
.location-panel,
.review-panel {
  padding: 58px clamp(26px, 5vw, 72px);
}

.hours-panel,
.location-panel {
  border-right: 1px solid var(--line);
}

.panel-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  color: var(--sage);
}

.panel-heading h2 {
  font-size: 31px;
}

.panel-heading svg {
  width: 28px;
  height: 28px;
}

.hours-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hours-list li {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
}

.hours-list strong {
  color: var(--ink);
  font-weight: 800;
}

.location-panel p {
  margin: 0 0 24px;
  color: #384039;
  font-size: 18px;
  line-height: 1.5;
}

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

.map-card {
  position: relative;
  height: 168px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(36, 75, 42, 0.13) 48% 50%, transparent 50%),
    linear-gradient(38deg, transparent 0 45%, rgba(36, 75, 42, 0.12) 45% 48%, transparent 48%),
    linear-gradient(-24deg, transparent 0 53%, rgba(201, 61, 43, 0.13) 53% 56%, transparent 56%),
    #eef2ed;
  border: 1px solid #d9e2d7;
}

.map-card::before,
.map-card::after {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  content: "";
}

.map-card::before {
  width: 140px;
  height: 140px;
  right: -50px;
  top: -44px;
}

.map-card::after {
  width: 190px;
  height: 190px;
  left: -76px;
  bottom: -112px;
}

.pin {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 25px;
  height: 25px;
  background: var(--tomato);
  border: 4px solid var(--white);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 10px 22px rgba(201, 61, 43, 0.35);
  transform: translate(-50%, -56%) rotate(-45deg);
}

.pin::after {
  position: absolute;
  inset: 5px;
  background: var(--white);
  border-radius: 50%;
  content: "";
}

.rating-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 14px;
  align-items: center;
  margin-bottom: 22px;
}

.rating-block strong {
  color: var(--sage);
  font-family: var(--serif);
  font-size: 54px;
  line-height: 1;
}

.rating-block span {
  color: #d68d25;
  font-size: 24px;
  line-height: 1;
}

.rating-block small {
  grid-column: 2;
  color: var(--muted);
  font-weight: 800;
}

.review-panel p {
  margin: 0 0 20px;
  color: #3f4740;
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  color: var(--sage);
  font-weight: 900;
  border-bottom: 2px solid rgba(36, 75, 42, 0.24);
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.78fr 1fr;
  gap: 4px;
  padding: 4px;
  background: var(--white);
}

.gallery img {
  width: 100%;
  height: clamp(260px, 34vw, 520px);
  object-fit: cover;
}

.final-cta {
  padding: 86px 24px 92px;
  text-align: center;
  background: var(--sage);
  color: var(--white);
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  max-width: 560px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.final-cta .hero-actions {
  justify-content: center;
}

.final-cta .button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.68);
}

.final-cta .button-outline:hover {
  color: var(--sage);
  background: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 36px;
  padding: 34px clamp(24px, 7vw, 112px);
  color: #687168;
  background: #101510;
  font-size: 13px;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 22px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #d7e7d5;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 76px;
    padding: 0 20px;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    font-size: 28px;
  }

  .brand small {
    font-size: 13px;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink);
  }

  .nav-toggle span {
    position: absolute;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform 160ms ease;
  }

  .nav-toggle span:first-child {
    transform: translateY(-4px);
  }

  .nav-toggle span:last-child {
    transform: translateY(4px);
  }

  body.nav-open .nav-toggle span:first-child {
    transform: rotate(45deg);
  }

  body.nav-open .nav-toggle span:last-child {
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px 20px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: calc(100svh - 76px);
  }

  .hero-content {
    width: min(670px, 88vw);
    margin-left: 24px;
  }

  .quick-strip,
  .menu-grid,
  .info-band,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

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

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 16px;
  }

  .menu-grid {
    gap: 24px;
  }

  .split-section {
    display: grid;
  }

  .hours-panel {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .location-panel {
    border-right: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .hero-shade {
    background:
      linear-gradient(0deg, rgba(8, 12, 8, 0.8) 0%, rgba(8, 12, 8, 0.5) 58%, rgba(8, 12, 8, 0.28) 100%),
      linear-gradient(90deg, rgba(8, 12, 8, 0.42), rgba(8, 12, 8, 0.22));
  }

  .hero-content {
    justify-content: flex-end;
    min-height: calc(100svh - 76px);
    padding-bottom: 52px;
    margin-left: 18px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .hero p {
    font-size: 20px;
  }

  .hero-actions,
  .location-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .quick-strip,
  .menu-grid,
  .info-band,
  .gallery,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .quick-strip div {
    min-height: 94px;
  }

  .section {
    padding: 70px 20px;
  }

  .section-heading h2,
  .split-copy h2,
  .final-cta h2 {
    font-size: 37px;
  }

  .split-section {
    padding-top: 74px;
  }

  .hours-panel,
  .location-panel,
  .review-panel {
    padding: 44px 22px;
    border-right: 0;
  }

  .location-panel {
    border-bottom: 1px solid var(--line);
  }

  .hours-list li {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    font-size: 14px;
  }

  .gallery {
    gap: 0;
    padding: 0;
  }

  .gallery img {
    height: 310px;
  }
}
