:root {
  --paper: #f5f4f1;
  --paper-soft: #efe7df;
  --ink: #1a1a1a;
  --muted: #73716d;
  --line: #ded8cf;
  --red: #ed3a2c;
  --red-dark: #8f2018;
  --navy: #1a1a1a;
  --gold: #b79855;
  --white: #fff;
  --shadow: 0 24px 70px rgba(32, 36, 43, 0.1);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 8% 18%, rgba(159, 61, 67, 0.06), transparent 24%),
    linear-gradient(90deg, rgba(32, 36, 43, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(32, 36, 43, 0.025) 1px, transparent 1px);
  background-size: auto, 92px 92px, 92px 92px;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  width: min(100%, 1360px);
  margin: 0 auto;
  padding: 30px clamp(22px, 4vw, 52px);
  background: rgba(248, 247, 244, 0.86);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.brand span span {
  color: var(--red);
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 7px;
}

.brand-mark::after {
  width: 8px;
  height: 8px;
  content: "";
  background: var(--red);
  border-radius: 50%;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

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

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

.header-actions a:not(.button),
.nav-toggle {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  border: 0;
  background: transparent;
}

.header-actions svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.header-actions .header-cta {
  width: auto;
  height: auto;
  color: var(--white);
  background: var(--red);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  align-items: center;
  min-height: 760px;
  width: min(100%, 1360px);
  margin: 0 auto;
  padding: 130px clamp(26px, 6vw, 110px) 80px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
}

h3 {
  margin-bottom: 7px;
  font-size: 17px;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.hero-lead {
  max-width: 580px;
  margin-bottom: 26px;
  color: #4d4b47;
  font-size: 18px;
  line-height: 1.7;
}

.microcopy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-buttons,
.cta div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  color: var(--red-dark);
  border: 1px solid var(--red);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  color: var(--white);
  background: var(--red);
  transform: translateY(-2px);
}

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

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--red-dark);
}

.button.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 540px;
  place-items: center;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: min(78vw, 560px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.wave-field {
  position: absolute;
  width: min(86vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.78;
  background:
    repeating-radial-gradient(
      ellipse at center,
      transparent 0 17px,
      rgba(159, 61, 67, 0.75) 18px 20px,
      transparent 21px 34px
    );
  mask-image: radial-gradient(circle, transparent 0 42%, #000 43% 100%);
  transform: rotate(8deg);
}

.score-badge,
.wasabi,
.ginger {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(32, 36, 43, 0.18);
}

.score-badge {
  top: 80px;
  right: 54px;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border: 8px solid #f1e9df;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.wasabi {
  top: 205px;
  left: 90px;
  width: 34px;
  height: 34px;
  background: #91a75a;
}

.ginger {
  right: 145px;
  bottom: 88px;
  width: 48px;
  height: 40px;
  background: #cf6044;
  border-radius: 55% 45% 58% 42%;
}

.side-label {
  position: absolute;
  z-index: 4;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  writing-mode: vertical-rl;
}

.side-label-left {
  bottom: 122px;
  left: clamp(16px, 2vw, 38px);
  transform: rotate(180deg);
}

.side-label-right {
  right: clamp(16px, 2vw, 38px);
  bottom: 154px;
}

.hero-progress {
  position: absolute;
  bottom: 88px;
  left: clamp(60px, 9vw, 120px);
  display: flex;
  align-items: center;
  gap: 18px;
  width: 300px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.hero-progress div {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.hero-progress i {
  display: block;
  width: 34%;
  height: 2px;
  background: var(--red);
}

.section {
  position: relative;
  width: min(100%, 1360px);
  margin: 0 auto;
  padding: 105px clamp(26px, 6vw, 110px);
}

.section-label {
  position: absolute;
  top: 120px;
  left: clamp(10px, 1.6vw, 30px);
  color: #b9ad9f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 64px 88px;
  align-items: start;
}

.intro-copy {
  max-width: 620px;
  padding-top: 48px;
}

.intro-copy p:not(.eyebrow) {
  max-width: 560px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.text-link::after {
  content: "→";
}

.photo-card {
  position: relative;
  margin: 0;
}

.photo-card::after,
.testimonial-photo::after {
  position: absolute;
  right: -44px;
  bottom: -44px;
  z-index: -1;
  width: 210px;
  height: 150px;
  content: "";
  opacity: 0.45;
  background: repeating-radial-gradient(
    ellipse at center,
    transparent 0 14px,
    rgba(159, 61, 67, 0.7) 15px 17px,
    transparent 18px 31px
  );
}

.photo-card img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
}

.photo-card-wide {
  align-self: end;
}

.photo-card-wide img {
  min-height: 330px;
}

.qualities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  padding-top: 8px;
}

.qualities article p,
.steps article p,
.offer article p,
.dish-card p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.55;
}

.icon-line {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}

.slider-controls {
  display: flex;
  gap: 12px;
}

.slider-controls button {
  width: 42px;
  height: 42px;
  color: var(--red);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 36px;
  line-height: 1;
}

.menu-layout {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 34px;
}

.menu-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 10px;
}

.menu-categories a {
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
}

.menu-categories a.active,
.menu-categories a:hover {
  color: var(--ink);
}

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

.dish-card {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: 18px;
  border: 1px solid rgba(32, 36, 43, 0.12);
  background: rgba(255, 255, 255, 0.45);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.dish-card:hover {
  border-color: rgba(159, 61, 67, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.dish-card.featured {
  border-color: var(--ink);
  box-shadow: 10px 10px 0 rgba(32, 36, 43, 0.08);
}

.dish-card img {
  width: 100%;
  height: 134px;
  margin-bottom: 20px;
  object-fit: cover;
}

.dish-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
}

.dish-card strong {
  font-size: 16px;
}

.add-button {
  width: 32px;
  height: 32px;
  color: var(--red-dark);
  border: 1px solid var(--red);
  background: transparent;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.add-button.added {
  color: var(--white);
  background: var(--red);
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 72px;
  align-items: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 58px;
  margin-top: 44px;
}

.steps article {
  position: relative;
  min-height: 120px;
  padding-left: 70px;
}

.steps article span {
  position: absolute;
  top: 13px;
  left: 0;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--red);
  border: 1px solid rgba(159, 61, 67, 0.42);
  font-weight: 800;
}

.order-photo {
  position: relative;
  margin: 0;
}

.order-photo img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.banner-photo {
  height: min(50vw, 500px);
  min-height: 320px;
  overflow: hidden;
}

.banner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 88px;
  align-items: center;
}

.testimonial-photo {
  position: relative;
}

.testimonial-photo img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.stars {
  margin: 12px 0 18px;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0.12em;
}

blockquote {
  max-width: 620px;
  margin: 0 0 18px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.7vw, 31px);
  font-style: italic;
  line-height: 1.45;
}

.testimonial-author {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.offer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-right: max(clamp(26px, 6vw, 110px), calc((100vw - var(--max)) / 2 + 110px));
  padding-left: max(clamp(26px, 6vw, 110px), calc((100vw - var(--max)) / 2 + 110px));
  color: var(--white);
  background: var(--navy);
  text-align: center;
}

.offer .eyebrow,
.offer p {
  color: rgba(255, 255, 255, 0.7);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  margin-top: 50px;
}

.offer article span {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  place-items: center;
  color: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.reservation {
  position: relative;
  overflow: hidden;
  padding: 96px clamp(26px, 6vw, 110px);
  color: var(--white);
  background:
    linear-gradient(rgba(84, 44, 44, 0.94), rgba(84, 44, 44, 0.94)),
    url("../images/unsplash-sushi-hero.jpg") center/cover;
  text-align: center;
}

.reservation .eyebrow,
.reservation p {
  color: rgba(255, 255, 255, 0.72);
}

.reservation-inner {
  width: min(100%, 980px);
  margin: 0 auto;
}

.reservation-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 8px;
  margin-top: 38px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.13);
}

.reservation-form label {
  display: grid;
  text-align: left;
}

.reservation-form span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.reservation-form input {
  width: 100%;
  min-height: 45px;
  padding: 0 15px;
  color: var(--ink);
  border: 0;
  background: var(--white);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--white);
}

.gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.newsletter {
  display: grid;
  min-height: 260px;
  align-content: center;
  padding: 38px;
  background: var(--paper);
}

.newsletter h2 {
  max-width: 360px;
  margin-bottom: 24px;
  font-size: 25px;
  line-height: 1.24;
}

.newsletter form {
  display: grid;
  grid-template-columns: 1fr 48px;
  max-width: 360px;
  border: 1px solid var(--line);
}

.newsletter input {
  min-width: 0;
  min-height: 48px;
  padding: 0 16px;
  border: 0;
  background: var(--white);
}

.newsletter button {
  color: var(--red);
  border: 0;
  border-left: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  font-size: 22px;
}

.contact {
  display: grid;
  grid-template-columns: 0.8fr 0.9fr 1.6fr;
  gap: 46px;
  align-items: center;
}

address,
.hours {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-style: normal;
}

address strong,
.hours strong {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 18px;
}

address a {
  color: var(--red);
}

.map-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(32, 36, 43, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(32, 36, 43, 0.05) 1px, transparent 1px),
    linear-gradient(35deg, transparent 45%, rgba(32, 36, 43, 0.08) 46% 54%, transparent 55%),
    linear-gradient(-25deg, transparent 48%, rgba(32, 36, 43, 0.08) 49% 54%, transparent 55%),
    #f2f0ec;
  background-size: 54px 54px, 54px 54px, 190px 120px, 210px 130px, auto;
}

.map-card::after {
  position: absolute;
  right: -40px;
  bottom: -35px;
  width: 260px;
  height: 190px;
  content: "";
  opacity: 0.42;
  background: repeating-radial-gradient(
    ellipse at center,
    transparent 0 13px,
    rgba(159, 61, 67, 0.8) 14px 16px,
    transparent 17px 29px
  );
}

.pin {
  position: absolute;
  top: 48%;
  left: 52%;
  z-index: 2;
  width: 42px;
  height: 42px;
  background: var(--red);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 12px 28px rgba(159, 61, 67, 0.32);
}

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

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 52px), 1180px);
  margin: 0 auto 90px;
  padding: 52px clamp(28px, 5vw, 78px);
  color: var(--white);
  background: var(--red-dark);
}

.cta h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  width: min(100%, 1360px);
  margin: 0 auto;
  padding: 65px clamp(26px, 6vw, 110px) 75px;
  background:
    radial-gradient(ellipse at 80% 70%, rgba(159, 61, 67, 0.08), transparent 35%),
    var(--paper);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.site-footer nav a {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 12px;
}

.section-intro {
  max-width: 850px;
  margin-bottom: 42px;
  color: #4d4b47;
  font-size: 18px;
}

.problem .section-heading {
  align-items: flex-start;
}

.problem .section-heading > p {
  max-width: 520px;
  margin: 0;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-grid li {
  position: relative;
  min-height: 116px;
  padding: 22px 20px 20px 52px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  background: rgba(255, 255, 255, 0.48);
  color: #383632;
  font-size: 14px;
  font-weight: 700;
}

.check-grid li::before {
  position: absolute;
  top: 22px;
  left: 20px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--white);
  content: "✓";
  background: var(--red);
  border-radius: 50%;
  font-size: 12px;
}

.closing-line {
  margin: 28px 0 0;
  color: var(--ink);
  font-weight: 900;
}

.method-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.method-card,
.ranking-card,
.draft-grid article,
.ad-example,
.quick-form {
  border: 1px solid rgba(26, 26, 26, 0.12);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 50px rgba(26, 26, 26, 0.06);
}

.method-card {
  padding: 34px;
}

.method-card h3 {
  margin-bottom: 22px;
  font-size: 25px;
  font-weight: 500;
}

.score-list {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.score-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.score-list strong {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  color: var(--red);
}

.score-list small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.star-rating {
  --rating: 0%;
  position: relative;
  display: inline-block;
  color: #ded8cf;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
}

.star-rating::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--rating);
  overflow: hidden;
  color: var(--gold);
  content: attr(data-stars);
  white-space: nowrap;
}

.ranking-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ranking-card {
  position: relative;
  min-height: 265px;
  padding: 32px;
  overflow: hidden;
}

.ranking-card::after {
  position: absolute;
  right: -40px;
  bottom: -48px;
  width: 150px;
  height: 150px;
  content: "";
  opacity: 0.12;
  background: var(--red);
  border-radius: 50%;
}

.rank-mark {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.ranking-card h3 {
  font-size: 24px;
  font-weight: 500;
}

.ranking-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0;
}

.stats-grid strong {
  display: grid;
  min-height: 150px;
  align-content: center;
  padding: 24px;
  color: var(--red);
  border-top: 3px solid var(--red);
  background: rgba(255, 255, 255, 0.58);
  font-size: 42px;
  line-height: 1;
}

.stats-grid span {
  margin-top: 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.draft-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.draft-grid article {
  padding: 28px;
}

.draft-grid a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.status-pill {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: var(--red);
  border: 1px solid rgba(237, 58, 44, 0.35);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: center;
}

.ad-example {
  padding: 34px;
  border-color: rgba(237, 58, 44, 0.35);
}

.ad-example span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  color: var(--white);
  background: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.center-buttons {
  justify-content: center;
}

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

.faq details {
  padding: 24px 26px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  background: rgba(255, 255, 255, 0.58);
}

.faq summary {
  color: var(--ink);
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
}

.faq details p {
  margin: 14px 0 0;
}

#indique.contact {
  grid-template-columns: 1fr 0.9fr;
}

.quick-form {
  display: grid;
  gap: 16px;
  padding: 32px;
}

.quick-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.quick-form input,
.quick-form select {
  min-height: 46px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--white);
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.checkbox-label {
  grid-template-columns: 18px 1fr;
  align-items: start;
  font-weight: 600;
}

.checkbox-label input {
  min-height: auto;
  margin-top: 4px;
}

.checkbox-label span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.cta {
  align-items: flex-start;
}

.cta > div:first-child {
  max-width: 660px;
}

.cta p {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(150px, 0.7fr));
  align-items: start;
  background: var(--ink);
  color: var(--white);
}

.site-footer .brand-mark {
  border-color: var(--white);
}

.footer-about {
  display: grid;
  gap: 18px;
  max-width: 430px;
}

.footer-about p,
.copyright {
  color: rgba(255, 255, 255, 0.64);
}

.footer-about a:not(.brand) {
  color: var(--red);
  font-weight: 900;
}

.site-footer nav {
  display: grid;
  justify-content: start;
  gap: 10px;
}

.site-footer nav strong {
  margin-bottom: 8px;
  color: var(--white);
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--red);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.subpage {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 130px clamp(22px, 5vw, 72px) 90px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--red);
}

.breadcrumb a::after {
  margin-left: 10px;
  color: var(--muted);
  content: "/";
}

.subpage-hero {
  max-width: 860px;
  margin-bottom: 70px;
}

.subpage-hero h1 {
  max-width: 900px;
}

.subpage-hero p {
  max-width: 740px;
  font-size: 18px;
}

.subpage-section {
  margin: 0 0 46px;
  padding: 42px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  background: rgba(255, 255, 255, 0.5);
}

.subpage-section h2 {
  font-size: clamp(28px, 3vw, 40px);
}

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

.compact-list li {
  min-height: auto;
}

.subpage-form {
  max-width: 760px;
  margin-bottom: 50px;
}

.quick-form textarea {
  min-height: 130px;
  resize: vertical;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--white);
}

.form-message {
  margin: 0;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(237, 58, 44, 0.09);
  font-size: 13px;
  font-weight: 800;
}

.subpage-hero + .form-message {
  max-width: 1180px;
  margin: -46px 0 46px;
}

.form-message-ok {
  color: #174f2a;
  background: rgba(43, 142, 78, 0.12);
}

.form-message-campos,
.form-message-erro {
  color: var(--red-dark);
  background: rgba(237, 58, 44, 0.12);
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
}

.info-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.info-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.info-list dd {
  margin: 0;
  color: var(--ink);
}

.restaurant-cover {
  position: relative;
  max-width: 1180px;
  margin: 0 auto 34px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.12);
  background: rgba(255, 255, 255, 0.62);
}

.restaurant-cover img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.restaurant-cover figcaption {
  padding: 14px 18px;
  color: var(--muted);
  font-size: 13px;
}

.review-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.review-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-page .subpage-section {
  max-width: 860px;
}

.article-page h1 {
  font-size: clamp(38px, 5vw, 62px);
}

.article-date {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.article-page article p:not(.eyebrow):not(.article-date) {
  color: #3f3c38;
  font-size: 18px;
  line-height: 1.85;
}

.mini-footer {
  grid-template-columns: 1fr 260px;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 14px;
  margin: 0 0 28px;
  padding: 22px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  background: rgba(255, 255, 255, 0.62);
}

.catalog-toolbar label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-toolbar select {
  min-height: 44px;
  padding: 0 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--white);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 34px;
}

.restaurant-card {
  display: grid;
  gap: 16px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  background: rgba(255, 255, 255, 0.62);
}

.restaurant-card[hidden],
.restaurant-card.is-filtered-out {
  display: none;
}

.restaurant-card-media {
  position: relative;
  margin: -28px -28px 0;
  min-height: 210px;
  overflow: hidden;
  background: var(--paper);
}

.restaurant-card-media img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.image-origin-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(26, 26, 26, 0.82);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.restaurant-card h2 {
  margin: 0;
  font-size: 28px;
}

.rating-line {
  margin: 0;
  color: var(--red);
  font-size: 24px;
  font-weight: 900;
}

.rating-line .star-rating {
  display: block;
  margin-top: 8px;
  color: #ded8cf;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.restaurant-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.restaurant-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.restaurant-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.restaurant-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.empty-state {
  display: grid;
  justify-items: start;
  gap: 16px;
  margin: 34px 0 50px;
  padding: 42px;
  border: 1px dashed rgba(237, 58, 44, 0.45);
  background: rgba(237, 58, 44, 0.06);
}

.empty-state[hidden] {
  display: none;
}

.empty-state span {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1;
}

.empty-state h2 {
  margin-bottom: 0;
}

.city-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0 0 50px;
}

.city-grid a,
.city-grid article,
.article-grid article {
  display: grid;
  gap: 12px;
  min-height: 210px;
  padding: 30px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  background: rgba(255, 255, 255, 0.62);
}

.city-grid span {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1;
}

.city-grid strong,
.article-grid h2 {
  color: var(--ink);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

.subpage-cards {
  margin-bottom: 46px;
}

.city-grid small,
.article-grid span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.article-grid article {
  min-height: 250px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(237, 58, 44, 0.38);
  outline-offset: 3px;
}

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

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

  .main-nav {
    position: fixed;
    top: 82px;
    right: 18px;
    display: none;
    width: min(320px, calc(100vw - 36px));
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    background: var(--navy);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    color: var(--white);
  }

  .nav-toggle {
    display: grid;
    justify-self: end;
  }

  .header-actions {
    display: none;
  }

  .hero,
  .intro-grid,
  .order-grid,
  .testimonials,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 30px;
    min-height: auto;
    padding-top: 120px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .intro-copy {
    padding-top: 0;
  }

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

  .menu-categories {
    flex-flow: row wrap;
  }

  .menu-cards,
  .offer-grid,
  .check-grid,
  .ranking-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-cards,
  .editorial-grid,
  #indique.contact,
  .mini-footer,
  .catalog-toolbar,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

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

  .newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding: 20px;
  }

  .brand {
    font-size: 15px;
  }

  .hero,
  .section {
    padding-right: 22px;
    padding-left: 22px;
  }

  .hero {
    padding-bottom: 54px;
  }

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

  .hero-visual img {
    width: min(86vw, 360px);
  }

  .wave-field {
    width: min(92vw, 410px);
  }

  .soy {
    top: 28px;
    right: 10px;
    width: 58px;
    height: 58px;
    border-width: 8px;
  }

  .score-badge {
    top: 28px;
    right: 10px;
    width: 70px;
    height: 70px;
    border-width: 7px;
    font-size: 10px;
  }

  .wasabi {
    left: 18px;
  }

  .ginger {
    right: 60px;
    bottom: 24px;
  }

  .side-label,
  .section-label,
  .hero-progress {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .section-heading,
  .cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-cards,
  .qualities,
  .steps,
  .offer-grid,
  .reservation-form,
  .gallery,
  .check-grid,
  .ranking-grid,
  .stats-grid,
  .draft-grid,
  .faq-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .dish-card {
    min-height: 320px;
  }

  .steps article {
    padding-left: 62px;
  }

  .reservation {
    padding: 74px 22px;
  }

  .contact {
    gap: 30px;
  }

  .map-card {
    min-height: 300px;
  }

  .cta {
    width: calc(100% - 40px);
    margin-bottom: 50px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .subpage {
    padding-top: 110px;
  }

  .subpage-section {
    padding: 26px;
  }

  .compact-list {
    grid-template-columns: 1fr;
  }

  .catalog-grid,
  .city-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .info-list div,
  .review-gallery {
    grid-template-columns: 1fr;
  }
}
