:root {
  --ink: #261f18;
  --muted: #756b5d;
  --soft: #9b907e;
  --line: #ded1bd;
  --paper: #fffaf1;
  --wash: #f4ead8;
  --button-bg: #f8efd9;
  --button-hover: #efe1c5;
  --button-ink: #241d16;
  --wood: #6f5236;
  --shadow: 0 24px 70px rgba(85, 59, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--wash);
  background-image:
    linear-gradient(90deg, rgba(111, 82, 54, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(111, 82, 54, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 250, 241, 0.92), rgba(244, 234, 216, 0.94));
  background-size: 56px 56px, 56px 56px, auto;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  word-break: keep-all;
}

body::before {
  content: "";
  position: fixed;
  top: 54px;
  right: 0;
  left: 0;
  z-index: 0;
  height: 220px;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0 34px,
      rgba(111, 82, 54, 0.12) 34px 35px,
      transparent 35px 68px
    ),
    repeating-linear-gradient(
      45deg,
      transparent 0 34px,
      rgba(111, 82, 54, 0.08) 34px 35px,
      transparent 35px 68px
    );
  opacity: 0.55;
  mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
}

header,
main,
footer {
  position: relative;
  z-index: 1;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

button,
select {
  font: inherit;
}

.topbar {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0 42px;
  background: rgba(255, 250, 241, 0.86);
  backdrop-filter: saturate(180%) blur(20px);
}

.wordmark {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav,
.language-switcher {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a,
.language-switcher button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.nav a:hover,
.language-switcher button.active {
  color: var(--ink);
}

.language-switcher {
  gap: 8px;
}

.language-switcher button {
  width: 34px;
  border-radius: 999px;
  font-size: 17px;
}

.language-switcher button.active {
  background: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(111, 82, 54, 0.18);
}

.editorial-hero,
.lead-image,
.feature-band,
.collection-block,
.city-block,
.list-page,
.store-title,
.store-image,
.info-strip,
.content-pair,
.menu-simple,
.faq-simple {
  width: min(100% - 64px, 1180px);
  margin: 0 auto;
}

.editorial-hero {
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 112px 0 86px;
  text-align: center;
}

.hero-kicker,
.section-title span,
.page-title span,
.store-title > span,
.content-pair span,
.row-main span,
.row-meta span,
.info-strip span,
.menu-lines article > span,
.wide-item span,
.feature-list span,
.city-list span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}

.editorial-hero h1,
.page-title h1,
.store-title h1 {
  max-width: 980px;
  margin: 16px auto 0;
  font-size: 76px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
}

.editorial-hero p,
.page-title p,
.store-title p {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.36;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.hero-links a,
.filter-bar button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  background: var(--button-bg);
  color: var(--button-ink);
  font-size: 15px;
  font-weight: 600;
  box-shadow:
    inset 0 0 0 1px rgba(111, 82, 54, 0.22),
    0 8px 22px rgba(85, 59, 31, 0.1);
}

.hero-links a:hover,
.filter-bar button:hover {
  background: var(--button-hover);
}

.hero-links a + a {
  background: transparent;
  color: var(--wood);
  box-shadow: inset 0 0 0 1px rgba(111, 82, 54, 0.24);
}

.hero-links a + a:hover {
  background: rgba(248, 239, 217, 0.7);
}

.lead-image {
  margin-top: -22px;
}

.lead-image img,
.store-image img {
  height: 620px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-band,
.collection-block,
.city-block,
.menu-simple,
.faq-simple {
  padding: 104px 0 0;
}

.section-title {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.section-title h2 {
  margin: 10px 0 0;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.08;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.feature-list article,
.city-list a,
.restaurant-row,
.info-strip div,
.menu-lines article,
.faq-simple details {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.92);
  backdrop-filter: blur(4px);
}

.feature-list article {
  min-height: 250px;
  display: grid;
  align-content: space-between;
  gap: 26px;
  padding: 28px;
}

.feature-list h3 {
  margin: 0 0 10px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.16;
}

.feature-list p,
.wide-item p,
.city-list span,
.row-main p,
.content-pair p,
.menu-lines p,
.faq-simple p {
  color: var(--muted);
}

.feature-list p {
  margin: 0;
  font-size: 16px;
}

.wide-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.wide-item {
  min-height: 570px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.94);
  box-shadow: 0 1px 0 rgba(111, 82, 54, 0.08);
}

.wide-item img {
  height: 360px;
  object-fit: cover;
}

.wide-item div {
  padding: 28px;
}

.wide-item h3 {
  margin: 10px 0 12px;
  font-size: 33px;
  font-weight: 700;
  line-height: 1.12;
}

.muted-item {
  color: var(--muted);
}

.city-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.city-list a {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  padding: 0;
}

.city-list img {
  height: 260px;
  object-fit: cover;
}

.city-list a div {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 28px;
}

.city-list strong {
  color: var(--ink);
  font-size: 33px;
  font-weight: 700;
  line-height: 1.08;
}

.city-list span {
  font-size: 15px;
  line-height: 1.55;
}

.list-page {
  padding: 84px 0 118px;
}

.page-title {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.page-title h1 {
  font-size: 64px;
}

.filter-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 120px;
  gap: 12px;
  margin: 42px auto 0;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.94);
  box-shadow: 0 10px 34px rgba(85, 59, 31, 0.1);
}

.filter-bar label {
  display: grid;
  gap: 7px;
  padding: 10px 12px;
}

.filter-bar label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.filter-bar select {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
}

.filter-bar button {
  min-height: 54px;
  align-self: center;
}

.restaurant-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.restaurant-row {
  overflow: hidden;
}

.restaurant-row[hidden] {
  display: none;
}

.restaurant-row a {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 250px;
  gap: 30px;
  align-items: center;
  padding: 18px;
}

.restaurant-row img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.row-main h2 {
  margin: 8px 0 9px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
}

.row-main p {
  max-width: 620px;
  margin: 0;
}

.row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.row-meta span {
  border-radius: 999px;
  padding: 7px 11px;
  background: #f1e4ca;
}

.empty-state {
  margin: 28px 0 0;
  color: var(--muted);
  text-align: center;
}

.store-title {
  padding: 90px 0 58px;
  text-align: center;
}

.store-title h1 {
  font-size: 72px;
}

.store-image {
  margin-bottom: 30px;
}

.store-actions {
  margin-top: 28px;
}

.profile-summary,
.detail-grid {
  width: min(100% - 64px, 1180px);
  margin: 0 auto;
}

.profile-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  margin-top: 30px;
}

.profile-main,
.profile-facts,
.detail-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.92);
  backdrop-filter: blur(4px);
}

.profile-main {
  padding: 34px;
}

.profile-main span,
.detail-card span,
.profile-facts dt {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.profile-main h2 {
  max-width: 740px;
  margin: 12px 0 16px;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.12;
}

.profile-main p,
.detail-card p,
.profile-facts dd {
  color: var(--muted);
}

.profile-main p {
  max-width: 760px;
  margin: 0;
  font-size: 19px;
  font-weight: 500;
}

.profile-facts {
  padding: 28px;
}

.profile-facts dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.profile-facts div {
  display: grid;
  gap: 6px;
  border-bottom: 1px solid rgba(111, 82, 54, 0.16);
  padding-bottom: 18px;
}

.profile-facts div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.profile-facts dt,
.profile-facts dd {
  margin: 0;
}

.profile-facts dd {
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
}

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

.detail-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 28px;
}

.detail-card h3 {
  margin: 10px 0 12px;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.14;
}

.detail-card p {
  margin: 0;
}

.map-card a {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--button-bg);
  color: var(--button-ink);
  font-size: 14px;
  font-weight: 700;
  box-shadow:
    inset 0 0 0 1px rgba(111, 82, 54, 0.22),
    0 8px 22px rgba(85, 59, 31, 0.1);
}

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

.info-strip div {
  min-height: 134px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 22px;
}

.info-strip strong {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.34;
}

.content-pair {
  display: grid;
  grid-template-columns: 430px minmax(0, 1fr);
  gap: 72px;
  padding: 104px 0 0;
}

.content-pair h2 {
  margin: 12px 0 0;
  font-size: 43px;
  font-weight: 700;
  line-height: 1.1;
}

.content-pair p {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}

.menu-lines {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.menu-lines article {
  display: grid;
  grid-template-columns: 170px minmax(0, 320px) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 24px;
}

.menu-lines h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.menu-lines p {
  margin: 0;
}

.faq-simple details {
  margin-top: 12px;
  padding: 22px 24px;
}

.faq-simple summary {
  cursor: pointer;
  font-size: 21px;
  font-weight: 700;
}

.faq-simple p {
  max-width: 780px;
  margin: 14px 0 0;
}

.footer {
  width: min(100% - 64px, 1180px);
  min-height: 124px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 110px auto 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
}

.feature-band,
.collection-block,
.city-block {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

@media (max-width: 980px) {
  .topbar {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 15px 18px;
  }

  .topbar-actions {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    margin-left: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .topbar-actions::-webkit-scrollbar {
    display: none;
  }

  .nav,
  .language-switcher {
    flex: 0 0 auto;
    gap: 12px;
  }

  .editorial-hero,
  .lead-image,
  .feature-band,
  .collection-block,
  .city-block,
  .list-page,
  .store-title,
  .store-image,
  .profile-summary,
  .detail-grid,
  .info-strip,
  .content-pair,
  .menu-simple,
  .faq-simple,
  .footer {
    width: min(100% - 36px, 1180px);
  }

  .editorial-hero {
    min-height: auto;
    padding: 76px 0 48px;
  }

  .editorial-hero h1,
  .page-title h1,
  .store-title h1 {
    font-size: 48px;
  }

  .editorial-hero p,
  .page-title p,
  .store-title p,
  .content-pair p {
    font-size: 18px;
  }

  .lead-image img,
  .store-image img {
    height: 360px;
  }

  .section-title h2,
  .content-pair h2 {
    font-size: 36px;
  }

  .feature-list,
  .wide-list,
  .city-list,
  .info-strip,
  .content-pair,
  .profile-summary,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .wide-item {
    min-height: auto;
  }

  .restaurant-row a,
  .menu-lines article {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .row-meta {
    justify-content: flex-start;
  }

  .filter-bar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .editorial-hero,
  .lead-image,
  .feature-band,
  .collection-block,
  .city-block,
  .list-page,
  .store-title,
  .store-image,
  .profile-summary,
  .detail-grid,
  .info-strip,
  .content-pair,
  .menu-simple,
  .faq-simple,
  .footer {
    width: min(100% - 28px, 1180px);
  }

  .nav a,
  .language-switcher button {
    min-height: 30px;
    font-size: 13px;
  }

  .language-switcher button {
    width: 32px;
    font-size: 17px;
  }

  .editorial-hero {
    padding: 58px 0 38px;
  }

  .editorial-hero h1,
  .page-title h1,
  .store-title h1 {
    font-size: 40px;
  }

  .section-title h2,
  .content-pair h2 {
    font-size: 31px;
  }

  .feature-band,
  .collection-block,
  .city-block,
  .menu-simple,
  .faq-simple,
  .content-pair {
    padding-top: 76px;
  }

  .lead-image img,
  .store-image img {
    height: 290px;
  }

  .wide-item img {
    height: 260px;
  }

  .restaurant-row img {
    aspect-ratio: 16 / 11;
  }

  .footer {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 0;
  }
}
