:root {
  --blue: #076cb5;
  --blue-bright: #0785d4;
  --navy: #19254f;
  --navy-deep: #101938;
  --orange: #ed6b0b;
  --cream: #f5f1e9;
  --paper: #fffdf8;
  --ink: #172044;
  --muted: #65708b;
  --line: rgba(23, 32, 68, 0.14);
  --shadow: 0 22px 60px rgba(10, 26, 62, 0.12);
  --serif: "Lora", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", Arial, Helvetica, sans-serif;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

body.dialog-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

::selection {
  background: var(--orange);
  color: #fff;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 8px;
  transform: translateY(-150%);
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  color: #fff;
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 10px 40px rgba(10, 28, 63, 0.09);
  color: var(--navy);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 38px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--orange);
  font-size: 18px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  letter-spacing: -0.03em;
}

.brand-copy small {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 9px 0;
}

.main-nav a:not(.nav-pill)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 180ms ease;
}

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

.nav-pill {
  padding: 10px 18px !important;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.site-header.is-scrolled .nav-pill,
.site-header.menu-open .nav-pill {
  border-color: var(--blue);
  color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 80%, rgba(0, 151, 222, 0.62), transparent 33%),
    radial-gradient(circle at 85% 12%, rgba(18, 116, 190, 0.8), transparent 28%),
    linear-gradient(130deg, #0489d8 0%, #076cb5 43%, #143168 100%);
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  width: 710px;
  height: 710px;
  right: -170px;
  bottom: -260px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.hero-pattern::before,
.hero-pattern::after {
  position: absolute;
  inset: 70px;
  border: inherit;
  border-radius: inherit;
  content: "";
}

.hero-pattern::after {
  inset: 150px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 780px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 58px;
  padding-top: 95px;
  padding-bottom: 80px;
}

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

.kicker,
.eyebrow {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.kicker {
  display: flex;
  align-items: center;
  color: #fff;
}

.kicker span {
  width: 37px;
  height: 1px;
  margin-right: 13px;
  background: var(--orange);
}

.edition {
  margin: 0 0 2px 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(62px, 7vw, 102px);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 span {
  text-shadow: 0 5px 0 rgba(7, 58, 110, 0.2);
}

.hero h1 em {
  margin-top: 8px;
  margin-left: 37%;
  color: var(--orange);
  font-weight: 700;
  text-shadow: 0 4px 0 rgba(112, 36, 2, 0.17);
}

.hero-lead {
  max-width: 520px;
  margin: 32px 0 0;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 29px;
  margin-top: 33px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 13px 21px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-light {
  background: #fff;
  box-shadow: 0 11px 28px rgba(4, 31, 72, 0.18);
  color: var(--navy);
}

.button-light span {
  color: var(--orange);
  font-size: 21px;
}

.button-blue {
  background: var(--blue);
  color: #fff;
}

.button-orange {
  background: var(--orange);
  box-shadow: 0 12px 30px rgba(151, 52, 2, 0.22);
  color: #fff;
}

.button-orange:hover,
.button-orange:focus-visible {
  background: #d95e05;
}

.button.is-awaiting-link {
  cursor: default;
  transform: none;
  background: #2a3768;
  box-shadow: none;
  opacity: 0.9;
}

.text-link {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 600;
}

.text-link span {
  margin-left: 8px;
  color: var(--orange);
}

.hero-facts {
  display: flex;
  gap: 0;
  margin: 49px 0 0;
}

.hero-facts div {
  display: grid;
  padding: 0 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 7px;
}

.hero-facts div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-facts dt {
  font-family: var(--serif);
  font-size: 29px;
  font-style: normal;
  font-weight: 700;
}

.hero-facts dd {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.hero-art > img {
  position: relative;
  z-index: 2;
  width: min(100%, 500px);
  max-height: 590px;
  object-fit: contain;
  filter: drop-shadow(0 35px 38px rgba(5, 22, 58, 0.36));
}

.emblem-halo {
  position: absolute;
  z-index: 1;
  width: 470px;
  max-width: 88%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.37);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.02) 58%, transparent 59%);
}

.snow {
  position: absolute;
  z-index: 5;
  color: rgba(255, 255, 255, 0.78);
}

.snow-one {
  top: 17%;
  left: 9%;
  font-size: 26px;
}

.snow-two {
  right: 10%;
  bottom: 31%;
  font-size: 22px;
}

.hero-curve {
  position: absolute;
  z-index: 3;
  right: -5%;
  bottom: -1px;
  left: 36%;
  height: 100px;
  border-radius: 100% 0 0 0;
  background: var(--navy-deep);
}

.intro {
  position: relative;
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(420px, 1.2fr);
  gap: 100px;
}

.section-heading h2,
.vote h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 68px);
  font-style: normal;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.intro-copy {
  max-width: 660px;
  padding-top: 35px;
}

.intro-copy p {
  margin: 0 0 18px;
  color: #555f78;
  font-size: 16px;
  line-height: 1.75;
}

.intro-copy .intro-lead {
  margin-bottom: 24px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
}

.how {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(9, 111, 180, 0.26), transparent 35%),
    var(--navy);
  color: #fff;
}

.how::after {
  position: absolute;
  right: -120px;
  bottom: -250px;
  width: 510px;
  height: 510px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.how-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.section-heading-light .eyebrow {
  color: #65c8ff;
}

.how-top > p {
  max-width: 365px;
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.how-top > p strong {
  color: #fff;
}

.steps {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 66px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
}

.steps li {
  display: grid;
  min-height: 240px;
  padding: 38px 38px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  grid-template-columns: auto 1fr;
  gap: 24px;
}

.steps li:first-child {
  padding-left: 0;
  border-left: 0;
}

.step-number {
  color: var(--orange);
  font-family: var(--serif);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}

.steps h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
}

.steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.7;
}

.quick-guide {
  position: relative;
  z-index: 5;
  background: var(--paper);
}

.quick-guide-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.quick-guide-head > p {
  max-width: 405px;
  margin: 0 0 6px;
  color: var(--muted);
  line-height: 1.7;
}

.quick-steps {
  display: grid;
  margin: 57px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
}

.quick-steps li {
  display: grid;
  min-height: 225px;
  padding: 34px 34px 34px;
  border-left: 1px solid var(--line);
  grid-template-columns: auto 1fr;
  gap: 19px;
}

.quick-steps li:first-child {
  padding-left: 0;
  border-left: 0;
}

.quick-steps li > span {
  color: var(--orange);
  font-family: var(--serif);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}

.quick-steps h3 {
  margin: 0 0 13px;
  font-family: var(--serif);
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.quick-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.quick-guide-actions {
  display: flex;
  justify-content: flex-end;
  gap: 11px;
  margin-top: 26px;
}

.quick-guide-actions .button span:last-child {
  font-size: 17px;
}

.prize {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 22%, rgba(7, 133, 212, 0.32), transparent 31%),
    linear-gradient(128deg, var(--navy-deep), var(--navy) 62%, #123d72);
  color: #fff;
}

.prize::before {
  position: absolute;
  top: -270px;
  left: -230px;
  width: 610px;
  height: 610px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 86px rgba(255, 255, 255, 0.025);
}

.prize::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--orange);
  content: "";
}

.prize-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.8fr);
  align-items: center;
  gap: 90px;
}

.prize .eyebrow {
  color: #76d1ff;
}

.prize-copy h2 {
  max-width: 650px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 68px);
  font-style: normal;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.prize-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.prize-copy > p strong {
  color: #fff;
}

.institutional-box {
  position: relative;
  display: flex;
  min-height: 450px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 28px 65px rgba(4, 12, 34, 0.3);
  color: var(--navy);
  flex-direction: column;
  text-align: center;
}

.institutional-box::before {
  position: absolute;
  top: -165px;
  right: -145px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(7, 108, 181, 0.08);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 50px rgba(7, 108, 181, 0.025);
}

.institutional-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 21px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.institutional-logo {
  position: relative;
  z-index: 1;
  width: min(100%, 340px);
  border-radius: 17px;
  box-shadow: 0 14px 35px rgba(11, 64, 129, 0.18);
}

.institutional-message {
  position: relative;
  z-index: 1;
  max-width: 350px;
  margin-top: 25px;
}

.institutional-message span,
.institutional-message strong {
  display: block;
}

.institutional-message span {
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.institutional-message strong {
  font-family: var(--serif);
  font-size: 20px;
  font-style: normal;
  line-height: 1.3;
}

.excellence-seal {
  position: relative;
  z-index: 1;
  display: flex;
  width: 142px;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(7, 108, 181, 0.24);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: inset 0 0 0 8px rgba(7, 108, 181, 0.04);
  color: var(--navy);
  text-align: center;
}

.excellence-seal span {
  color: var(--orange);
  font-size: 20px;
}

.excellence-seal strong {
  margin: 5px 0 3px;
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
}

.excellence-seal small {
  max-width: 84px;
  color: var(--muted);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.institutional-brand {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  padding: 25px;
  border-radius: 19px;
  background: var(--paper);
}

.institutional-brand > span {
  display: block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.institutional-brand img {
  width: min(100%, 310px);
  border-radius: 10px;
}

.institutional-brand p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.restaurants {
  background: var(--cream);
}

.restaurants-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.restaurants-head > p {
  max-width: 350px;
  margin: 0 0 5px;
  color: var(--muted);
  line-height: 1.65;
}

.filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 55px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.search-box {
  display: flex;
  width: min(100%, 480px);
  align-items: center;
  gap: 12px;
  padding: 0 2px 12px;
  border-bottom: 1px solid rgba(23, 32, 68, 0.35);
}

.search-box:focus-within {
  border-color: var(--blue);
}

.search-box svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
}

.search-box input::placeholder {
  color: #7d8497;
}

.filter-chips {
  display: flex;
  gap: 8px;
}

.filter-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-filter select {
  min-height: 39px;
  padding: 0 34px 0 14px;
  border: 1px solid rgba(23, 32, 68, 0.2);
  border-radius: 999px;
  outline: 0;
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.service-filter select:focus-visible {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(7, 108, 181, 0.1);
}

.chip {
  min-width: 76px;
  padding: 10px 17px;
  border: 1px solid rgba(23, 32, 68, 0.2);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: all 160ms ease;
}

.chip:hover,
.chip:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
}

.chip.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.results-bar {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.results-bar p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.clear-filter {
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

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

.restaurant-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 68, 0.08);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 8px 28px rgba(17, 35, 72, 0.04);
}

.card-media {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  aspect-ratio: 1.25;
  background: var(--navy);
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.card-media:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: -3px;
}

.card-media::after {
  position: absolute;
  inset: 50% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(6, 15, 38, 0.45));
  pointer-events: none;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 32% 30%, rgba(27, 135, 202, 0.7), transparent 30%),
    linear-gradient(145deg, #0a78bd, #172450 75%);
  color: rgba(255, 255, 255, 0.74);
  text-align: center;
}

.card-placeholder::before {
  position: absolute;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 35px rgba(255, 255, 255, 0.035);
}

.card-placeholder div {
  position: relative;
  z-index: 1;
}

.card-placeholder span {
  display: block;
  margin-bottom: 9px;
  color: #fff;
  font-size: 31px;
}

.card-placeholder small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.card-badges {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-badge,
.photo-badge {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-badge {
  background: var(--orange);
  color: #fff;
}

.photo-badge {
  margin-left: auto;
  background: rgba(15, 25, 56, 0.9);
  color: #fff;
}

.card-body {
  padding: 24px 24px 22px;
}

.card-restaurant {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-body h3 {
  min-height: 58px;
  margin: 0;
  font-family: var(--serif);
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.23;
}

.card-service {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 12px 0 0;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(7, 108, 181, 0.08);
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card-service > span:first-child {
  color: var(--orange);
  font-size: 12px;
}

.card-service .missing {
  font-style: normal;
}

.card-description {
  display: -webkit-box;
  min-height: 65px;
  margin: 14px 0 16px;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.card-location {
  display: flex;
  min-height: 39px;
  align-items: flex-start;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #59627a;
  font-size: 11px;
  line-height: 1.45;
}

.card-location svg {
  width: 14px;
  min-width: 14px;
  margin-top: 1px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.7;
}

.missing {
  color: #9b6440;
  font-style: italic;
}

.card-action {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  margin-top: 17px;
  padding: 9px 10px 9px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(7, 108, 181, 0.035);
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.card-action span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--orange);
  font-size: 16px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.card-action:hover span,
.card-action:focus-visible span {
  transform: rotate(-12deg);
  background: var(--orange);
  color: #fff;
}

.empty-state {
  padding: 70px 20px 20px;
  text-align: center;
}

.empty-state > span {
  color: var(--blue);
  font-size: 38px;
}

.empty-state h3 {
  margin: 16px 0 7px;
  font-family: var(--serif);
  font-size: 30px;
  font-style: normal;
}

.empty-state p {
  margin: 0 0 23px;
  color: var(--muted);
}

.vote {
  background: var(--paper);
}

.vote-card {
  position: relative;
  display: grid;
  min-height: 470px;
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(circle at 85% 20%, rgba(10, 134, 211, 0.7), transparent 31%),
    linear-gradient(125deg, #17224b, #0b67a7);
  box-shadow: var(--shadow);
  color: #fff;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.vote-card::before,
.vote-card::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.vote-card::before {
  width: 460px;
  height: 460px;
  right: -70px;
  top: -90px;
}

.vote-card::after {
  width: 340px;
  height: 340px;
  right: -10px;
  top: -30px;
}

.vote-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 75px 30px 75px 76px;
}

.vote-copy .eyebrow {
  color: #5ec8ff;
}

.vote-copy > p:not(.eyebrow) {
  max-width: 550px;
  margin: 26px 0 25px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.vote-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.vote-status:hover,
.vote-status:focus-visible {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.vote-status::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.vote-status > span:last-child {
  color: #fff;
  font-size: 17px;
}

.vote-status.is-awaiting-link {
  cursor: default;
  opacity: 0.78;
}

.vote-status.is-awaiting-link:hover,
.vote-status.is-awaiting-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.24);
  background: transparent;
  transform: none;
}

.vote-seal {
  position: relative;
  z-index: 2;
  display: flex;
  width: 280px;
  max-width: 80%;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  transform: rotate(-6deg);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 11px rgba(255, 255, 255, 0.04);
  text-align: center;
}

.vote-seal span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vote-seal strong,
.vote-seal em {
  font-family: var(--serif);
  font-size: 36px;
  font-style: italic;
  line-height: 0.95;
}

.vote-seal em {
  color: var(--orange);
}

.vote-seal i {
  margin-top: 20px;
  color: #70ccff;
  font-style: normal;
}

.mobile-vote-bar {
  display: none;
}

.site-footer {
  padding: 86px 0 26px;
  background: var(--navy-deep);
  color: #fff;
}

.footer-partners {
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-partners-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 55px;
}

.footer-partners-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 56px);
  font-style: normal;
  letter-spacing: -0.035em;
}

.footer-partners-head > p {
  max-width: 390px;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.65;
}

.footer-eyebrow {
  margin: 0 0 14px;
  color: #6fcfff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-partner-grid {
  display: grid;
  margin-top: 43px;
  grid-template-columns: 1.05fr 1.05fr 0.82fr 0.92fr;
  gap: 12px;
}

.footer-partner-card {
  display: flex;
  min-height: 165px;
  align-items: center;
  justify-content: center;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
  background: #fff;
  color: var(--navy);
  flex-direction: column;
  gap: 22px;
}

.footer-partner-primary {
  min-height: 215px;
  border-top: 5px solid var(--orange);
  box-shadow: 0 20px 45px rgba(3, 11, 31, 0.22);
}

.footer-partner-centro {
  border-top-color: #ffe500;
  background: #0c3f80;
  color: #fff;
}

.footer-partner-card span {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-partner-primary span {
  color: var(--blue);
}

.footer-partner-centro span {
  color: #ffe500;
}

.footer-partner-card img {
  width: 100%;
  max-width: 205px;
  max-height: 76px;
  object-fit: contain;
}

.footer-partner-abrasel img {
  max-width: 245px;
}

.footer-partner-centro img {
  max-width: 205px;
  max-height: 126px;
  border-radius: 8px;
}

.footer-partner-card:last-child img {
  max-width: 230px;
}

.footer-main {
  display: grid;
  margin-top: 62px;
  grid-template-columns: 1fr auto;
  gap: 80px;
}

.brand-footer {
  margin-bottom: 22px;
}

.footer-main > div:first-child > p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h2 {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links a {
  font-size: 13px;
}

.footer-links a:hover {
  color: #66caff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 65px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.restaurant-dialog {
  width: min(1080px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 23px;
  background: var(--paper);
  box-shadow: 0 35px 100px rgba(8, 18, 46, 0.4);
  color: var(--ink);
}

.restaurant-dialog::backdrop {
  background: rgba(7, 15, 36, 0.74);
  backdrop-filter: blur(7px);
}

.restaurant-dialog[open] {
  animation: dialog-in 220ms ease both;
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(15px) scale(0.985); }
  to { opacity: 1; transform: none; }
}

.dialog-shell {
  position: relative;
  max-height: calc(100vh - 28px);
  overflow-y: auto;
}

.dialog-close {
  position: sticky;
  z-index: 20;
  top: 16px;
  float: right;
  width: 43px;
  height: 43px;
  margin: 16px 16px -60px 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(15, 25, 55, 0.76);
  color: #fff;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  backdrop-filter: blur(8px);
}

.dialog-grid {
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
}

.dialog-gallery {
  min-width: 0;
  padding: 18px;
  background: #e9e3da;
}

.dialog-main-image {
  position: relative;
  overflow: hidden;
  height: 540px;
  border-radius: 13px;
  background: var(--navy);
}

.dialog-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dialog-main-image .card-placeholder {
  position: absolute;
}

.gallery-thumbs {
  display: grid;
  margin-top: 10px;
  grid-auto-columns: 79px;
  grid-auto-flow: column;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.gallery-thumb {
  width: 79px;
  height: 70px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  background: var(--navy);
  cursor: pointer;
  scroll-snap-align: start;
}

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

.gallery-thumb.is-active {
  border-color: var(--orange);
}

.dialog-info {
  padding: 68px 54px 45px;
}

.dialog-restaurant {
  margin: 0 0 15px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dialog-info h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(37px, 4vw, 55px);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.dialog-price {
  display: inline-flex;
  margin-top: 23px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.dialog-description {
  margin: 28px 0;
  color: #59627a;
  font-size: 14px;
  line-height: 1.78;
}

.dialog-meta {
  display: grid;
  margin: 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 18px;
}

.dialog-meta div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
}

.dialog-meta dt {
  color: #9298a8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dialog-meta dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

.dialog-meta a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.dialog-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
}

.dialog-actions .dialog-direction {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.dialog-actions a:hover,
.dialog-actions a:focus-visible {
  border-color: var(--orange);
}

.dialog-note {
  margin: 24px 0 0;
  color: #8c92a1;
  font-size: 10px;
  line-height: 1.55;
}

@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.72fr);
  }

  .hero h1 {
    font-size: clamp(58px, 8vw, 82px);
  }

  .hero-facts div {
    padding: 0 15px;
  }

  .intro-grid {
    gap: 60px;
  }

  .prize-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .institutional-box {
    width: min(100%, 600px);
  }

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

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

  .dialog-grid {
    grid-template-columns: 1fr 0.9fr;
  }

  .dialog-info {
    padding-inline: 35px;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
    gap: 45px;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: min(100% - 30px, 640px);
  }

  html {
    scroll-behavior: auto;
  }

  input,
  select,
  .search-box input,
  .service-filter select {
    font-size: 16px;
  }

  .site-header.is-scrolled,
  .site-header.menu-open {
    backdrop-filter: none;
  }

  .hero::before,
  .hero-pattern,
  .prize::before,
  .institutional-box::before,
  .vote-card::before,
  .vote-card::after {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .header-inner {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    padding: 13px 20px 24px;
    border-top: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.98);
    color: var(--navy);
    box-shadow: 0 15px 30px rgba(9, 25, 58, 0.1);
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
  }

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

  .main-nav a {
    padding: 12px 10px;
  }

  .nav-pill {
    margin-top: 5px;
    text-align: center;
  }

  .hero {
    min-height: 0;
  }

  .hero-grid {
    min-height: 0;
    padding-top: 133px;
    padding-bottom: 105px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(61px, 16.5vw, 90px);
  }

  .hero h1 em {
    margin-left: 20%;
  }

  .hero-art {
    min-height: 330px;
    margin-top: 0;
  }

  .hero-art > img {
    width: min(100%, 365px);
  }

  .hero-curve {
    left: 12%;
    height: 68px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .intro-copy {
    padding-top: 25px;
  }

  .quick-guide-head,
  .restaurants-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  .quick-steps {
    grid-template-columns: 1fr;
  }

  .quick-steps li,
  .quick-steps li:first-child {
    min-height: 0;
    padding: 27px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .quick-steps li:first-child {
    border-top: 0;
  }

  .how-top,
  .restaurants-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps li,
  .steps li:first-child {
    min-height: 0;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 0;
  }

  .steps li:first-child {
    border-top: 0;
  }

  .filters {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .service-filter select {
    width: 100%;
    border-radius: 9px;
  }

  .search-box {
    width: 100%;
  }

  .dialog-grid {
    grid-template-columns: 1fr;
  }

  .restaurant-dialog::backdrop,
  .dialog-close {
    backdrop-filter: none;
  }

  .dialog-shell {
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .dialog-main-image {
    height: min(62vw, 480px);
  }

  .dialog-info {
    padding: 40px 28px 45px;
  }

  .vote-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .vote-copy {
    padding: 60px 45px 25px;
  }

  .vote-seal {
    width: 240px;
    margin: 20px 0 60px;
  }

  .footer-partners-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer-main {
    grid-template-columns: 1fr 0.6fr;
  }

  .mobile-vote-bar {
    position: fixed;
    z-index: 80;
    right: 13px;
    bottom: max(13px, env(safe-area-inset-bottom));
    left: 13px;
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 11px 13px 11px 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    background: var(--orange);
    box-shadow: 0 10px 28px rgba(8, 22, 53, 0.22);
    color: #fff;
  }

  .mobile-vote-bar > span {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .mobile-vote-bar small {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .mobile-vote-bar strong {
    font-size: 13px;
  }

  .mobile-vote-bar i {
    display: grid;
    width: 38px;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--orange);
    font-size: 19px;
    font-style: normal;
  }

  .mobile-vote-bar.is-awaiting-link {
    background: var(--navy);
  }

  .site-footer {
    padding-bottom: 105px;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .hero-grid {
    padding-top: 115px;
    padding-bottom: 82px;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 72px);
    line-height: 0.92;
  }

  .hero h1 em {
    margin-left: 10%;
  }

  .hero-lead {
    margin-top: 25px;
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    justify-content: space-between;
  }

  .hero-facts div {
    display: block;
    padding: 0 11px;
  }

  .hero-facts dd {
    margin-top: 4px;
  }

  .hero-art {
    display: none;
  }

  .section-heading h2,
  .vote h2 {
    font-size: 42px;
  }

  .prize-copy h2 {
    font-size: 42px;
  }

  .institutional-box {
    min-height: 0;
    padding: 24px;
    border-radius: 24px;
  }

  .excellence-seal {
    width: 120px;
  }

  .institutional-brand {
    padding: 18px;
  }

  .quick-guide-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .quick-guide-actions .button {
    width: 100%;
  }

  .footer-partner-grid {
    grid-template-columns: 1fr;
  }

  .footer-partner-card,
  .footer-partner-primary {
    min-height: 165px;
  }

  .footer-partners {
    padding-bottom: 54px;
  }

  .intro-copy .intro-lead {
    font-size: 22px;
  }

  .restaurant-grid {
    grid-template-columns: 1fr;
  }

  .restaurant-card {
    border-radius: 15px;
  }

  .card-body {
    padding: 20px;
  }

  .card-body h3,
  .card-description {
    min-height: 0;
  }

  .filter-chips {
    width: 100%;
  }

  .chip {
    min-width: 0;
    flex: 1;
  }

  .vote-card {
    border-radius: 25px;
  }

  .vote-copy {
    padding: 48px 25px 20px;
  }

  .vote-seal {
    width: 210px;
  }

  .vote-seal strong,
  .vote-seal em {
    font-size: 30px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .restaurant-dialog {
    height: 100dvh;
    width: 100%;
    max-height: 100dvh;
    margin: 0;
    border-radius: 0;
  }

  .dialog-shell {
    max-height: 100dvh;
  }

  .dialog-close {
    top: max(12px, env(safe-area-inset-top));
  }

  .dialog-gallery {
    padding: 0;
  }

  .dialog-main-image {
    height: 68vw;
    border-radius: 0;
  }

  .gallery-thumbs {
    padding: 0 10px 10px;
  }

  .dialog-info {
    padding: 35px 22px calc(42px + env(safe-area-inset-bottom));
  }

  .dialog-meta div {
    grid-template-columns: 70px 1fr;
  }
}

@media (hover: hover) and (pointer: fine) {
  .restaurant-card {
    transition: transform 220ms ease, box-shadow 220ms ease;
  }

  .restaurant-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
  }

  .card-media img {
    transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .restaurant-card:hover .card-media img {
    transform: scale(1.035);
  }
}

@media (hover: none) {
  .button:hover,
  .button:focus-visible {
    transform: none;
  }

  .card-action:hover span,
  .card-action:focus-visible span {
    transform: none;
    background: transparent;
    color: var(--orange);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
