:root {
  color-scheme: light;
  --ink: #191818;
  --muted: #6c6760;
  --paper: #fbfaf5;
  --line: #ddd7cb;
  --yellow: #f4c430;
  --coral: #e85f4f;
  --teal: #0d7770;
  --green: #1d4c3f;
  --white: #fffef9;
  --shadow: 0 22px 70px rgba(29, 28, 25, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 245, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(25, 24, 24, .08);
}

.brand,
.desktop-nav,
.header-actions,
.hero-cta,
.quick-facts,
.contact-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 50%;
  font-size: 12px;
  letter-spacing: 0;
}

.desktop-nav {
  gap: 4px;
  padding: 5px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.desktop-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a:hover {
  background: var(--yellow);
  color: var(--ink);
}

.header-actions {
  justify-content: flex-end;
  gap: 8px;
}

.lang-toggle,
.icon-link {
  min-width: 44px;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.icon-link {
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
}

.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 540px);
  gap: clamp(22px, 4vw, 64px);
  align-items: center;
  padding: clamp(28px, 5vw, 72px) clamp(18px, 5vw, 72px) 44px;
}

.hero-media {
  position: relative;
  min-height: 620px;
}

.hero-img {
  position: absolute;
  object-fit: cover;
  border-radius: 0;
  box-shadow: var(--shadow);
}

.hero-img-main {
  inset: 0 18% 0 0;
  width: 82%;
  height: 100%;
}

.hero-img-side {
  right: 0;
  bottom: 8%;
  width: 38%;
  height: 48%;
  border: 10px solid var(--paper);
}

.hero-copy {
  max-width: 620px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: 86px;
  line-height: .92;
  letter-spacing: 0;
  max-width: 9ch;
}

.lead {
  max-width: 58ch;
  color: #403d38;
  font-size: 21px;
}

.hero-cta {
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 18px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.1;
}

.btn.primary {
  background: var(--yellow);
}

.btn.secondary {
  background: var(--white);
}

.btn.text {
  border-color: transparent;
  color: var(--teal);
}

.quick-facts {
  flex-wrap: wrap;
  gap: 8px;
}

.quick-facts span {
  padding: 7px 10px;
  background: rgba(232, 95, 79, .1);
  border: 1px solid rgba(232, 95, 79, .35);
  border-radius: 999px;
  color: #6b2922;
  font-size: 13px;
  font-weight: 800;
}

.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.strip div {
  min-height: 118px;
  padding: 24px clamp(18px, 4vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, .16);
}

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

.strip span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .78);
}

.section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(22px, 8vw, 110px);
  align-items: start;
}

.intro h2,
.section-heading h2,
.visit h2,
.contact h2 {
  margin-bottom: 0;
  font-size: 56px;
  line-height: 1;
  letter-spacing: 0;
}

.intro p:last-child,
.visit-copy p:last-child {
  color: var(--muted);
  font-size: 20px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.menu-grid {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) 1fr;
  gap: 22px;
}

.menu-feature,
.dish-list article,
.visit-panel,
.service-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-feature {
  overflow: hidden;
}

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

.menu-feature div {
  padding: 22px;
}

.menu-feature h3,
.dish-list h3,
.service-grid h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.menu-feature p,
.dish-list p,
.service-grid p {
  color: var(--muted);
}

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

.dish-list article {
  min-height: 220px;
  padding: 22px;
}

.dish-list span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}

.photo-band {
  display: grid;
  grid-template-columns: 1fr 1.2fr .9fr 1fr;
  gap: 8px;
  padding-inline: 8px;
}

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

.photo-band img:nth-child(2) {
  margin-top: 44px;
}

.photo-band img:nth-child(3) {
  margin-top: 86px;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 470px);
  gap: clamp(24px, 6vw, 90px);
  align-items: start;
}

.visit-copy {
  position: sticky;
  top: 110px;
}

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

.visit-panel {
  padding: 8px;
}

.info-row {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.info-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.info-row strong {
  font-size: 18px;
}

.info-row a {
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 4px;
  text-underline-offset: 3px;
}

.map-card {
  display: grid;
  gap: 6px;
  margin-top: 8px;
  min-height: 158px;
  padding: 22px;
  align-content: end;
  background:
    linear-gradient(135deg, rgba(244, 196, 48, .92), rgba(13, 119, 112, .78)),
    repeating-linear-gradient(45deg, rgba(25, 24, 24, .16) 0 1px, transparent 1px 18px);
  color: var(--ink);
  border-radius: 6px;
  text-decoration: none;
}

.map-card span {
  font-weight: 900;
  font-size: 22px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-top: 0;
}

.service-grid article {
  min-height: 190px;
  padding: 22px;
  border-top: 8px solid var(--coral);
}

.service-grid article:nth-child(even) {
  border-top-color: var(--teal);
}

.contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  background: var(--green);
  color: var(--white);
}

.contact .section-kicker {
  color: var(--yellow);
}

.contact-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px) 92px;
  background: var(--ink);
  color: rgba(255, 255, 255, .74);
  font-size: 14px;
}

.footer span:first-child {
  color: var(--yellow);
  font-weight: 900;
}

.mobile-bar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  background: rgba(25, 24, 24, .92);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  backdrop-filter: blur(16px);
}

.mobile-bar a {
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero,
  .intro,
  .menu-grid,
  .visit,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: -1;
    min-height: 420px;
  }

  h1 {
    font-size: 64px;
    max-width: 11ch;
  }

  .intro h2,
  .section-heading h2,
  .visit h2,
  .contact h2 {
    font-size: 46px;
  }

  .strip,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .visit-copy {
    position: static;
  }

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

@media (max-width: 680px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .icon-link {
    display: none;
  }

  .hero {
    padding: 18px 14px 34px;
  }

  .hero-media {
    min-height: 320px;
  }

  .hero-img-main {
    inset: 0;
    width: 100%;
  }

  .hero-img-side {
    width: 42%;
    height: 38%;
    border-width: 6px;
  }

  .hero-cta .btn {
    width: 100%;
  }

  h1 {
    font-size: 44px;
  }

  .lead {
    font-size: 18px;
  }

  .intro h2,
  .section-heading h2,
  .visit h2,
  .contact h2 {
    font-size: 34px;
  }

  .intro p:last-child,
  .visit-copy p:last-child {
    font-size: 18px;
  }

  .strip,
  .dish-list,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .section {
    padding: 54px 14px;
  }

  .photo-band {
    grid-template-columns: 1fr 1fr;
  }

  .photo-band img {
    height: 230px;
  }

  .photo-band img:nth-child(2),
  .photo-band img:nth-child(3) {
    margin-top: 0;
  }

  .contact {
    padding-bottom: 70px;
  }

  .footer {
    display: grid;
    padding-bottom: 104px;
  }

  .mobile-bar {
    display: grid;
  }
}

@media (max-width: 390px) {
  .lang-toggle {
    min-width: 40px;
    padding-inline: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: 40px;
  }
}
