:root {
  --background: #f7faf9;
  --surface: #ffffff;
  --surface-soft: #f0f7f5;
  --ink: #080b0d;
  --muted: #485552;
  --line: #dfe8e5;
  --green: #08723f;
  --green-dark: #045c31;
  --green-soft: #e8f5ef;
  --footer: #071f25;
  --star: #e4a51b;
  --radius: 8px;
  --shadow: 0 20px 45px rgb(20 35 32 / 10%);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

body,
button,
input {
  font: inherit;
}

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

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  min-height: 98px;
  padding: 22px clamp(22px, 5vw, 64px);
  background: rgb(255 255 255 / 96%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  color: var(--green);
  border: 3px solid var(--green);
  border-radius: 50%;
}

.brand__mark svg {
  width: 27px;
}

.brand strong {
  display: block;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(22px, 4vw, 48px);
  font-size: 14px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.button--primary {
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 12px 24px rgb(8 114 63 / 18%);
}

.button--primary:hover {
  background: var(--green-dark);
}

.button--ghost {
  padding-inline: 8px;
  color: var(--ink);
  background: transparent;
}

.button--outline {
  width: 100%;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
}

.button--small {
  width: fit-content;
  min-height: 46px;
  margin-top: 24px;
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 28%, rgb(8 114 63 / 6%), transparent 25%),
    #f7faf9;
  border-bottom: 1px solid var(--line);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 1.08fr);
  min-height: 610px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 84px) clamp(28px, 5vw, 64px);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(52px, 7vw, 80px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 555px;
  margin: 24px 0 0;
  color: #141c1a;
  font-size: clamp(20px, 2.3vw, 25px);
  line-height: 1.55;
}

.hero__benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 640px;
  margin-top: 40px;
}

.hero__benefits span {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  color: #24312f;
  font-size: 15px;
  line-height: 1.25;
}

.hero__benefits svg {
  width: 32px;
  color: var(--green);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}

.hero__media {
  position: relative;
  min-height: 100%;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(0 0 0 / 8%), transparent 38%);
  pointer-events: none;
}

.hero__media img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
}

.sports-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(86px, 1fr));
  padding-inline: clamp(18px, 5vw, 64px);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.sports-strip a {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  min-height: 86px;
  color: #111817;
  font-size: 14px;
  font-weight: 700;
}

.sports-strip span {
  min-height: 28px;
  font-size: 24px;
  line-height: 1;
}

.section,
.seo-intro,
.mundial-cta,
.owner-cta,
.why,
.faq,
.newsletter {
  width: min(100% - 48px, 1320px);
  margin-inline: auto;
}

.section {
  padding-top: 66px;
}

.section--featured {
  padding-top: 74px;
}

.section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section__header .eyebrow {
  margin-bottom: 16px;
}

.section h2,
.section-title,
.seo-intro h2,
.mundial-cta h2,
.owner-cta h2,
.why h2,
.faq h2,
.newsletter h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: 0;
}

.section__header > a {
  text-transform: uppercase;
}

.section__header > a {
  font-size: 14px;
  font-weight: 900;
}

.seo-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  padding-top: 62px;
}

.seo-intro .eyebrow {
  margin-bottom: 16px;
}

.seo-intro p:not(.eyebrow) {
  margin: 0;
  color: #273330;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.featured-card {
  display: grid;
  grid-template-columns: minmax(360px, 0.98fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 64px);
}

.featured-card__image,
.restaurant-card__image,
.zone-card {
  position: relative;
  overflow: hidden;
  background: #dde5e2;
}

.featured-card__image {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.featured-card__image img {
  width: 100%;
  aspect-ratio: 1.72;
  object-fit: cover;
}

.featured-carousel {
  isolation: isolate;
}

.featured-carousel__track {
  display: flex;
  transition: transform 260ms ease;
}

.featured-carousel__track img {
  flex: 0 0 100%;
  aspect-ratio: 1.23;
}

.featured-carousel__track img:nth-child(1) {
  object-position: center 54%;
}

.featured-carousel__track img:nth-child(2) {
  object-position: center 48%;
}

.featured-carousel__track img:nth-child(3) {
  object-position: center 52%;
}

.featured-carousel__track img:nth-child(4) {
  object-position: center 72%;
}

.featured-carousel__track img:nth-child(5) {
  object-position: center 52%;
}

.featured-carousel__button {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  border: 0;
  border-radius: 999px;
  background: rgb(255 255 255 / 62%);
  color: rgb(24 35 31 / 72%);
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
  transform: translateY(-50%);
}

.featured-carousel__button:hover {
  background: rgb(255 255 255 / 84%);
  color: #18231f;
}

.featured-carousel__button--prev {
  left: 12px;
}

.featured-carousel__button--next {
  right: 12px;
}

.featured-carousel__dots {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 7px;
  border-radius: 999px;
  background: rgb(0 0 0 / 18%);
}

.featured-carousel__dots button {
  width: 7px;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgb(255 255 255 / 48%);
  cursor: pointer;
}

.featured-carousel__dots button[aria-current="true"] {
  width: 17px;
  border-radius: 999px;
  background: #ffffff;
}

.rank {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  aspect-ratio: 1;
  border-radius: 8px;
  background: var(--green);
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
}

.rank--muted {
  width: 36px;
  border-radius: 7px;
  background: #40515a;
  font-size: 17px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 5px;
  background: #74bd9a;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-card h3 {
  margin: 18px 0 0;
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1;
  letter-spacing: 0;
}

.featured-card__content > p:not(.meta) {
  max-width: 560px;
  margin: 26px 0 0;
  color: #273330;
  font-size: 18px;
  line-height: 1.5;
}

.featured-card__content > .featured-card__seo-copy {
  margin-top: 14px;
  color: var(--green-dark);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.42;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 18px 0 0;
  color: #273330;
  font-size: 15px;
}

.stars {
  color: var(--star);
  letter-spacing: 0;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 5px;
  background: #f1f5f4;
  color: #2e3937;
  font-size: 13px;
  line-height: 1;
}

.section-title {
  margin-bottom: 30px;
  font-size: 22px;
}

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

.restaurant-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 30px rgb(18 34 31 / 8%);
}

.restaurant-card__image img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
}

.restaurant-card__content {
  padding: 20px;
}

.restaurant-card h3 {
  min-height: 48px;
  margin: 0;
  font-size: 21px;
  line-height: 1.16;
  letter-spacing: 0;
}

.restaurant-card__content > p:first-of-type {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.restaurant-card .meta {
  font-size: 13px;
}

.restaurant-card .button {
  margin-top: 22px;
}

.mundial-cta {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-top: 56px;
  padding: 38px 44px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgb(7 31 37 / 94%), rgb(4 92 49 / 88%)),
    #071f25;
  color: #ffffff;
}

.mundial-cta .eyebrow {
  margin-bottom: 14px;
  color: #93e1b8;
}

.mundial-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgb(255 255 255 / 86%);
  font-size: 18px;
  line-height: 1.5;
}

.owner-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  margin-top: 42px;
  padding: 38px 58px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 25%, rgb(8 114 63 / 10%), transparent 22%),
    linear-gradient(90deg, #edf8f3, #f4fbf8);
}

.owner-cta__icon {
  display: grid;
  place-items: center;
  width: 70px;
  aspect-ratio: 1;
  color: var(--green);
}

.owner-cta__icon svg {
  width: 62px;
  stroke-width: 1.6;
}

.owner-cta p {
  max-width: 560px;
  margin: 8px 0 0;
  color: #273330;
  font-size: 18px;
  line-height: 1.45;
}

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

.zone-card {
  min-height: 155px;
  border-radius: var(--radius);
  color: #ffffff;
  box-shadow: 0 12px 24px rgb(18 34 31 / 10%);
}

.zone-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgb(0 0 0 / 78%));
}

.zone-card img {
  width: 100%;
  height: 100%;
  min-height: 155px;
  object-fit: cover;
  transition: transform 180ms ease;
}

.zone-card:hover img {
  transform: scale(1.04);
}

.zone-card span {
  position: absolute;
  left: 20px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 3px;
  font-size: 13px;
}

.zone-card strong {
  font-size: 22px;
  line-height: 1;
}

.why,
.newsletter {
  margin-top: 58px;
  padding: 38px 44px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, #f4f9f7, #f7fbfa);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 46px;
  margin-top: 42px;
}

.why article span {
  display: block;
  color: var(--green);
  font-size: 34px;
  line-height: 1;
}

.why__icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.9;
}

.why h3 {
  margin: 22px 0 0;
  font-size: 20px;
}

.why p {
  margin: 14px 0 0;
  color: #34413e;
  font-size: 15px;
  line-height: 1.55;
}

.faq {
  margin-top: 58px;
  padding: 42px 44px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 35px rgb(20 35 32 / 8%);
}

.faq .eyebrow {
  margin-bottom: 14px;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 34px;
}

.faq h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
}

.faq p {
  margin: 14px 0 0;
  color: #34413e;
  font-size: 15px;
  line-height: 1.55;
}

.faq p a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  align-items: center;
  gap: 42px;
  margin-bottom: 0;
}

.newsletter p {
  max-width: 560px;
  margin: 10px 0 0;
  color: #34413e;
  font-size: 16px;
  line-height: 1.5;
}

.newsletter__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
}

.newsletter input {
  min-width: 0;
  min-height: 56px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
  color: var(--ink);
  outline: 0;
}

.newsletter input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgb(8 114 63 / 12%);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(140px, 0.7fr));
  gap: clamp(34px, 7vw, 90px);
  margin-top: 0;
  padding: 42px clamp(24px, 5vw, 64px) 24px;
  background:
    radial-gradient(circle at 20% 10%, rgb(17 92 57 / 26%), transparent 26%),
    var(--footer);
  color: #ffffff;
}

.brand--footer {
  color: #ffffff;
}

.brand--footer .brand__mark {
  color: #ffffff;
  border-color: #ffffff;
}

.site-footer__brand p {
  max-width: 330px;
  margin: 24px 0 0;
  color: rgb(255 255 255 / 78%);
  font-size: 15px;
  line-height: 1.5;
}

.site-footer h2 {
  margin: 0 0 22px;
  font-size: 15px;
  text-transform: uppercase;
}

.site-footer a:not(.brand) {
  display: block;
  width: fit-content;
  margin-top: 14px;
  color: rgb(255 255 255 / 86%);
  font-size: 15px;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 32px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgb(255 255 255 / 13%);
  font-weight: 800;
}

.site-footer__copy {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  color: rgb(255 255 255 / 62%);
  font-size: 12px;
  text-align: center;
}

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

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: start;
    flex-wrap: wrap;
  }

  .site-header__button {
    justify-self: end;
  }

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

  .hero__content {
    min-height: auto;
  }

  .hero__media {
    min-height: 420px;
    clip-path: none;
  }

  .hero__media img {
    min-height: 420px;
  }

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

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

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

@media (max-width: 820px) {
  .site-header {
    position: static;
    gap: 18px;
    min-height: auto;
  }

  .site-header__button {
    display: none;
  }

  .brand strong {
    font-size: 18px;
  }

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

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .button--ghost {
    justify-content: flex-start;
    min-height: 42px;
  }

  .sports-strip {
    grid-template-columns: repeat(4, minmax(80px, 1fr));
    padding-inline: 10px;
  }

  .seo-intro,
  .featured-card,
  .mundial-cta,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .mundial-cta .button {
    width: 100%;
  }

  .owner-cta {
    grid-template-columns: auto 1fr;
    padding: 30px;
  }

  .owner-cta .button {
    grid-column: 1 / -1;
    width: 100%;
  }

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

@media (max-width: 620px) {
  .site-header {
    padding: 18px;
  }

  .brand__mark {
    width: 38px;
  }

  .site-nav {
    gap: 14px 20px;
    font-size: 13px;
  }

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

  .hero__content {
    padding: 42px 18px;
  }

  .hero__lead {
    font-size: 18px;
  }

  .hero__media,
  .hero__media img {
    min-height: 300px;
  }

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

  .section,
  .seo-intro,
  .mundial-cta,
  .owner-cta,
  .why,
  .faq,
  .newsletter {
    width: min(100% - 28px, 1320px);
  }

  .section {
    padding-top: 46px;
  }

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

  .restaurant-grid,
  .zones-grid,
  .why__grid,
  .faq__grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .restaurant-card h3 {
    min-height: auto;
  }

  .owner-cta,
  .why,
  .faq,
  .mundial-cta,
  .newsletter {
    padding: 26px 20px;
  }

  .owner-cta {
    grid-template-columns: 1fr;
  }

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

  .newsletter__form .button {
    width: 100%;
  }

  .site-footer__copy {
    text-align: left;
  }
}
