:root {
  --ink: #171713;
  --paper: #f7f6f2;
  --red: #b62f25;
  --green: #40604b;
  --line: rgba(23, 23, 19, 0.18);
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

body {
  margin: 0;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.content-nav {
  min-height: 68px;
  padding: 12px max(24px, calc((100vw - var(--content-width)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.content-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.content-brand span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--red);
  font-family: Georgia, serif;
}

.content-nav nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.content-nav nav a {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.content-hero {
  min-height: min(78vh, 760px);
  padding: 64px max(24px, calc((100vw - var(--content-width)) / 2));
  display: flex;
  align-items: flex-end;
  color: white;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 20%, rgba(0, 0, 0, 0.78) 100%),
    var(--hero-image) center / cover no-repeat;
}

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

.content-hero-copy p,
.guide-hero > p,
.section-kicker {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.content-hero h1 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 11vw, 132px);
  font-weight: 500;
  line-height: 0.88;
}

.content-hero-copy strong {
  max-width: 620px;
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 3vw, 34px);
  font-weight: 400;
  line-height: 1.25;
}

.content-layout {
  width: min(calc(100% - 48px), var(--content-width));
  margin: 0 auto;
  padding: 72px 0 100px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 88px;
}

.content-lead {
  margin: 0 0 36px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.42;
}

.flavor-strip {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.flavor-strip span {
  padding: 7px 11px;
  color: white;
  background: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.content-article section {
  margin-top: 72px;
}

.numbered-heading {
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.numbered-heading span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.numbered-heading h2 {
  margin: -6px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
}

.landing-dishes {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.landing-dishes li {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.landing-dishes li > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.landing-dishes h3,
.landing-dishes p {
  margin: 0;
}

.landing-dishes h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.landing-dishes p,
.landing-tip p {
  max-width: 680px;
  font-size: 16px;
  line-height: 1.65;
}

.landing-tip {
  padding: 36px;
  color: white;
  background: var(--ink);
}

.landing-tip .numbered-heading {
  margin-bottom: 12px;
}

.landing-tip p {
  margin: 0 0 0 64px;
}

.content-actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-action,
.secondary-action {
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.primary-action {
  color: white;
  background: var(--red);
  border-color: var(--red);
}

.secondary-action {
  color: var(--ink);
  background: transparent;
}

.related-cities {
  align-self: start;
  position: sticky;
  top: 28px;
}

.related-cities h2 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

.related-cities > a {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  text-decoration: none;
  border-top: 1px solid var(--line);
}

.related-cities > a span,
.related-cities > a small {
  font-size: 11px;
}

.related-cities > a strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.related-cities > a small {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
}

.guide-hero {
  min-height: min(68vh, 650px);
  padding: 86px max(24px, calc((100vw - var(--content-width)) / 2)) 76px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  background:
    linear-gradient(180deg, rgba(23, 23, 19, 0.26), rgba(23, 23, 19, 0.94)),
    var(--guide-image) center / cover no-repeat;
}

.guide-hero h1 {
  max-width: 980px;
  margin: 0 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 500;
  line-height: 0.96;
}

.guide-hero strong {
  max-width: 700px;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.55;
}

.guide-hero .primary-action {
  width: fit-content;
  margin-top: 28px;
  border-color: white;
}

.guide-grid {
  width: min(calc(100% - 48px), var(--content-width));
  margin: 0 auto;
  padding: 64px 0 100px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 28px;
}

.guide-city a {
  display: block;
  text-decoration: none;
}

.guide-city img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  background: #ddd;
}

.guide-city div {
  padding: 18px 0;
}

.guide-city span,
.guide-city small {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.guide-city h2 {
  margin: 7px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 500;
}

.guide-city p {
  min-height: 48px;
  margin: 0 0 12px;
  line-height: 1.5;
}

.content-footer {
  min-height: 180px;
  padding: 48px max(24px, calc((100vw - var(--content-width)) / 2));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  color: white;
  background: var(--red);
}

.content-footer p {
  max-width: 580px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.content-footer a {
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 800px) {
  .content-nav {
    min-height: 58px;
  }

  .content-nav nav a:first-child {
    display: none;
  }

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

  .content-hero h1 {
    font-size: clamp(58px, 22vw, 96px);
  }

  .content-layout {
    width: min(calc(100% - 36px), var(--content-width));
    padding: 48px 0 72px;
    display: block;
  }

  .landing-tip {
    padding: 28px 22px;
  }

  .landing-tip p {
    margin-left: 0;
  }

  .related-cities {
    margin-top: 72px;
    position: static;
  }

  .guide-hero {
    min-height: 64vh;
    padding-top: 64px;
  }

  .guide-grid {
    width: min(calc(100% - 36px), var(--content-width));
    grid-template-columns: 1fr;
  }

  .guide-city p {
    min-height: 0;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
