:root {
  --red: #b61822;
  --red-dark: #8e1118;
  --green: #1d581d;
  --green-2: #2f6b2a;
  --green-dark: #143d27;
  --gold: #d3a53a;
  --cream: #fff8e7;
  --cream-2: #fff1c9;
  --ink: #151515;
  --muted: #655f52;
  --card: #ffffff;
  --line: #efe3c8;
  --shadow: 0 24px 70px rgba(0, 0, 0, .16);
  --radius: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden
}

body {
  margin: 0;
  width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fffaf0;
}

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

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

button,
input {
  font: inherit
}

.container {
  width: min(var(--container), calc(100% - 34px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 86px 0
}

.eyebrow {
    display: inline-flex;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 600;
    font-size: .78rem;
    color: var(--red);
}

h2.section-title {
    color: #414141;
}

.section-title {
    font-size: clamp(2rem, 5vw, 4.4rem);
    line-height: .96;
    margin: 10px 0 18px;
    font-weight: 750;
    letter-spacing: -.035em;
    color: #fff6cb;
}

.section-title2 {
    color: #fffef5;
}


.section-lead {
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.65;
  color: var(--muted);
  max-width: 760px;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 22px;
  padding: 15px 22px;
  font-weight: 500;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
}

.btn:hover {
  transform: translateY(-2px)
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), #e12b35);
  color: #fff
}

.btn-outline {
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(255, 255, 255, .76);
  color: #151515;
  backdrop-filter: blur(14px)
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: #eef5df;
  color: var(--green-dark);
  font-weight: 900;
  padding: 9px 14px;
  font-size: .92rem;
}

/* HERO: fără imagini fotografice; logo-ul este singura imagine folosită */

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  background: radial-gradient(circle at 12% 12%, rgba(211, 165, 58, .34), transparent 26%), radial-gradient(circle at 86% 14%, rgba(31, 88, 29, .22), transparent 29%), linear-gradient(135deg, #fffdf4 0%, #fff1c9 45%, #f7fbef 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -220px -90px auto auto;
  width: min(62vw, 760px);
  height: 520px;
  background: linear-gradient(130deg, transparent 0 28%, rgba(31, 88, 29, .92) 28% 36%, transparent 36% 52%, rgba(211, 165, 58, .78) 52% 61%, transparent 61%), radial-gradient(ellipse at 68% 36%, rgba(255, 255, 255, .6), transparent 42%);
  transform: rotate(-9deg);
  opacity: .64;
  z-index: -3;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  z-index: -2;
  pointer-events: none;
}

.paint {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle at 20% 82%, rgba(182, 24, 34, .11), transparent 25%), radial-gradient(circle at 86% 70%, rgba(31, 88, 29, .12), transparent 32%), linear-gradient(108deg, transparent 0 68%, rgba(255, 255, 255, .45) 68% 69%, transparent 69%);
}

.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 18px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(255, 255, 255, .78);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  padding: 10px 12px 10px 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 950;
  line-height: 1;
  font-size: 1.28rem;
}

.logo img {
  width: 118px;
  height: 72px;
  object-fit: contain;
  flex: 0 0 auto
}

.logo span {
  white-space: nowrap
}

.logo small {
  display: block;
  color: #6e6b62;
  font-weight: 800;
  letter-spacing: .02em;
  font-size: .78em
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 900;
  color: #37352f
}

.nav-links a {
  font-size: .95rem
}

.phone-box {
    flex: 0 0 auto;
    color: var(--red);
    font-weight: 800;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  align-items: center;
  gap: 42px;
  min-height: 100svh;
  padding: 145px 0 70px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  background: #111;
  color: #fff;
  padding: 9px 14px;
  border-radius: 22px;
  font-weight: 500;
  box-shadow: 0 14px 26px rgba(0, 0, 0, .16);
}

.hero-badge span {
  background: var(--red);
  padding: 5px 10px;
  border-radius: 999px
}

.hero-copy .question {
  font-size: clamp(1.6rem, 3.2vw, 3rem);
  font-weight: 950;
  margin: 44px 0 0
}

.script-title {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(5.4rem, 15vw, 12.6rem);
  line-height: .72;
  color: #c91b28;
  margin: 26px 0 30px;
  text-shadow: 0 8px 0 rgba(255, 255, 255, .92), 0 18px 34px rgba(0, 0, 0, .20);
  font-weight: 700;
  letter-spacing: -.055em;
  transform: rotate(-3deg);
  transform-origin: left center;
}

.script-title span {
  display: block;
  margin-left: .34em
}

.hero-text {
  font-size: clamp(1rem, 1.7vw, 1.24rem);
  line-height: 1.65;
  color: #3d3a34;
  max-width: 650px;
  font-weight: 680
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 24px
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
  max-width: 730px
}

.stat {
  padding: 17px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: 0 14px 38px rgba(0, 0, 0, .08);
  backdrop-filter: blur(16px)
}

.stat b {
  display: block;
  font-size: 1.24rem
}

.stat small {
  color: #6e6b62;
  font-weight: 800
}

.hero-art {
  position: relative;
  min-width: 0;
  width: 100%
}

.field-card {
  position: relative;
  width: min(100%, 560px);
  min-height: 650px;
  margin-left: auto;
  overflow: hidden;
  border-radius: 42px;
  background: url(assets/tribuna.webp);
  border: 1px solid rgba(255, 255, 255, .62);
  box-shadow: var(--shadow);
}

.field-card::before {
  content: "";
  position: absolute;
  left: -18%;
  right: -18%;
  bottom: -8%;
  height: 210px;
}

.field-card::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 92px;
  height: 3px;
  border-radius: 100%;
  box-shadow: 0 54px 0 rgba(255, 255, 255, .34);
  transform: rotate(-2deg);
}

.css-trophy {
  position: absolute;
  left: 34px;
  width: 178px;
  height: 270px;
  z-index: 2;
  filter: drop-shadow(0 28px 28px rgba(78, 45, 0, .26));
}

div.css-trophy::before {
  content: url(assets/cupa.webp);
  margin-left: -44%;
}

.css-ball {
  content: url(assets/minge.webp);
  position: absolute;
  left: 184px;
  top: 400px;
  width: 220px;
  height: 220px;
  z-index: 3;
}

.round-card {
  position: absolute;
  right: 30px;
  top: 156px;
  z-index: 5;
  max-width: 318px;
  background:rgb(20 45 31 / 47%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: var(--shadow);
  border-radius: 34px;
  padding: 24px;
  backdrop-filter: blur(12px);
}

.round-card b {
  font-size: 2.05rem;
  display: block;
  line-height: 1
}

.round-card p {
  margin: 10px 0 0;
  color: #eee;
  line-height: 1.5
}

.round-card .mini {
  color: var(--gold);
  font-weight: 950
}

.tray {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.tray span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .72);
   background: rgb(31 88 29 / 62%);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .13);
}

.info-strip {
  position: relative;
  margin-top: -34px;
  z-index: 8
}

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

.strip-card {
  background: var(--green);
  color: #fff;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .16)
}

.strip-card:nth-child(even) {
  background: var(--red-dark)
}

.strip-card b {
  font-size: 1.1rem;
  display: block
}

.strip-card span {
  display: block;
  color: #fff;
  margin-top: 7px;
  line-height: 1.4
}

.packages {
  background: linear-gradient(180deg, #fffaf0, #fff);
  overflow: hidden
}

.packages::before {
  content: "";
  position: absolute;
  right: -12%;
  top: 10%;
  width: 480px;
  height: 480px;
  border: 44px solid rgba(31, 88, 29, .08);
  border-radius: 50%;
  pointer-events: none
}

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

.price-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 22px 55px rgba(31, 21, 6, .08)
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--red))
}

.price-card.vip {
  background: #151515;
  color: #fff;
  border-color: #151515
}

.price-card.vip .muted,
.price-card.vip li {
  color: #e7e0d2
}

.price-card h3 {
  font-size: 1.8rem;
  margin: 12px 0 6px
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  margin: 18px 0
}

.price strong {
  font-size: 4rem;
  line-height: .9;
  letter-spacing: -.06em
}

.price span {
  font-weight: 950;
  font-size: 1.2rem
}

.muted {
  color: #6b665c;
  line-height: 1.55
}

.price-card ul {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  display: grid;
  gap: 10px
}

.price-card li {
  position: relative;
  color: #49463f;
  font-weight: 760;
  padding-left: 24px
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green)
}

.vip li::before {
  background: var(--gold)
}

.notice {
  margin-top: 22px;
  background: #fff3d1;
  border: 1px solid #f0d596;
  border-radius: 24px;
  padding: 20px 24px;
  font-weight: 850;
  color: #5c4210;
  line-height: 1.55
}

.notice b {
  color: #9a111a
}

.choice {
  background: #fff;
  overflow: hidden
}

.choice::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 94% 22%, rgba(31, 88, 29, .12), transparent 30%), radial-gradient(ellipse at 9% 88%, rgba(211, 165, 58, .14), transparent 28%);
  pointer-events: none
}

.choice::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 100px;
  width: 420px;
  height: 420px;
  border: 2px solid rgba(31, 88, 29, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(211, 165, 58, .04);
  pointer-events: none
}

.split-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px
}

.split-head--spaced {
  margin-top: 58px
}

.count-badge {
    background: #599752;
    color: #ffffff;
    border-radius: 12px;
    border: 1px solid #257f25;
    padding: 13px 18px;
    font-weight: 500;
    white-space: nowrap;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0;
  list-style: none
}

.menu-pill {
    position: relative;
    background: #ebe9e4;
    border: 1px solid #c4bfb4;
    border-radius: 12px;
    padding: 16px 15px 16px 46px;
    box-shadow: 0 12px 30px rgba(31, 21, 6, .06);
    font-weight: 500;
}

.menu-pill::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, var(--gold), var(--green));
  transform: translateY(-50%)
}

.flavour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  position: relative;
  z-index: 1
}

.flavour {
    background: linear-gradient(135deg, #ebebeb, #d6e4d4);
    color: #386f3d;
    border: 1px solid #808683;
    border-radius: 12px;
    padding: 18px 20px;
    font-weight: 500;
    box-shadow: 0 14px 36px rgba(13, 59, 37, .16);
}

.reserve-flow {
  background: #102a1d;
  color: #fff;
  overflow: hidden
}

.reserve-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(211, 165, 58, .36), transparent 23%), radial-gradient(circle at 12% 94%, rgba(182, 24, 34, .28), transparent 26%), linear-gradient(135deg, #0b2518, #17442d 58%, #0b2518)
}

.reserve-flow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(102deg, transparent 0 42%, rgba(255, 255, 255, .06) 42% 42.6%, transparent 43%), repeating-linear-gradient(0deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 28px), repeating-linear-gradient(90deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 42px);
  opacity: .8
}

.reserve-flow .container {
  position: relative;
  z-index: 2
}

.reserve-flow .section-lead {
  color: #f1eadc
}

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

.flow-card {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 26px;
  padding: 24px;
  backdrop-filter: blur(14px)
}

.flow-card b {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: #101010;
  border-radius: 999px;
  margin-bottom: 14px;
  font-size: 1.25rem
}

.flow-card h3 {
  margin: 0 0 8px;
  font-size: 1.34rem
}

.flow-card p {
  margin: 0;
  color: #e6decc;
  line-height: 1.55
}

.schedule {
  background: #fffaf0;
  overflow: hidden
}

.schedule::before {
  content: "";
  position: absolute;
  left: -80px;
  top: 70px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, rgba(31, 88, 29, .18) 0 2px, transparent 2px 13px);
  opacity: .45
}

.schedule-panel {
  margin-top: 36px;
  background: var(--green);
  color: #fff;
  border-radius: 34px;
  padding: 20px;
  box-shadow: var(--shadow);
  overflow: hidden
}

.schedule-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px
}

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.filter-btn {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border-radius: 22px;
    padding: 11px 15px;
    font-weight: 500;
    cursor: pointer;
}

.filter-btn.active {
  background: var(--red);
  border-color: var(--red)
}

.search {
  min-width: 240px;
  flex: 0 0 320px;
  background: #fff;
  color: #111;
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 500;
  outline: none
}

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

.match-card {
  background: linear-gradient(180deg, #fff, #fff5dc);
  color: #111;
  border-radius: 24px;
  padding: 18px;
  min-height: 178px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, .7)
}

.match-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px
}

.match-date {
    font-weight: 500;
    color: var(--red);
    font-size: .82rem;
}

.match-time {
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 600;
  color: #111
}

.match-title {
  font-size: 1.14rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.02em
}

.match-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto
}

.tag {
  border-radius: 999px;
  padding: 7px 9px;
  background: #e9ead9;
  color: var(--green-dark);
  font-size: .78rem;
  font-weight: 500
}

.tag.red {
  background: #ffe0df;
  color: #9b0f17
}

.tag.gold {
  background: #f5e2ae;
  color: #5a3d05
}

.schedule-actions {
  display: flex;
  justify-content: center;
  margin-top: 18px
}

.empty {
  display: none;
  text-align: center;
  padding: 26px;
  color: #f5e7d8
}

.source-note {
  margin-top: 16px;
  color: #6b665c;
  font-size: .95rem;
  line-height: 1.55
}

.source-note strong {
  color: #111
}

.location {
  background: #fff
}

.loc-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 24px;
  align-items: stretch
}

.loc-card {
  background: #151515;
  color: #fff;
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden
}

.loc-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  background: url('assets/logo-alwady.webp') center/contain no-repeat;
  opacity: .12
}

.address {
  font-size: 1.75rem;
  line-height: 1.15;
  font-weight: 200;
  margin: 18px 0
}

.loc-card p {
  color: #e7dfd0;
  line-height: 1.6
}

.map {
  min-height: 430px;
  border: 0;
  border-radius: 34px;
  width: 100%;
  box-shadow: 0 22px 54px rgba(0, 0, 0, .12)
}

.footer {
  position: relative;
  background: #0b2518;
  color: #fff;
  padding: 38px 0 96px;
  overflow: hidden
}

.footer::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 94px;
  background: linear-gradient(180deg, rgba(31, 88, 29, .1), rgba(31, 88, 29, .92)), repeating-linear-gradient(102deg, #0f4a2d 0 4px, #1f7a43 4px 7px, #123d27 7px 11px);
  opacity: .62
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 12px
}

.footer img {
  width: 110px
}

.footer p {
  margin: 0;
  color: #dfd7c7;
  line-height: 1.5
}

.sticky-mobile {
  position: fixed;
  z-index: 30;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: none;
  gap: 10px
}

.sticky-mobile a {
  flex: 1;
  text-align: center;
  background: var(--red);
  color: #fff;
  border-radius: 18px;
  padding: 14px 10px;
  font-weight: 500;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25)
}

.sticky-mobile a:first-child {
  background: #111
}

@media (max-width:1060px) {
  .nav-links {
    display: none
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 126px;
    gap: 34px
  }
  .hero-copy {
    text-align: center
  }
  .script-title {
    transform: none;
    transform-origin: center
  }
  .hero-text,
  .hero-stats {
    margin-inline: auto
  }
  .hero-cta {
    justify-content: center
  }
  .field-card {
    margin-inline: auto;
    min-height: 520px;
    max-width: 620px
  }
  .css-trophy {
    left: 42px;
    top: 42px;
    transform: scale(.86);
    transform-origin: left top
  }
  .css-ball {
    left: 178px;
    top: 262px
  }
  .round-card {
    right: 34px;
    top: 150px
  }
  .tray {
    grid-template-columns: repeat(4, minmax(0, 1fr))
  }
  .strip-grid,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
  .menu-list {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }
  .match-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
  .loc-grid {
    grid-template-columns: 1fr
  }
  .schedule-top {
    align-items: stretch;
    flex-direction: column
  }
  .search {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%
  }
}

@media (max-width:680px) {
  .container {
    width: min(100% - 24px, var(--container))
  }
  .section {
    padding: 66px 0
  }
  .nav {
    padding: 10px 0
  }
  .nav-inner {
    border-radius: 22px;
    padding: 8px 9px
  }
  .logo {
    gap: 8px
  }
  .logo img {
    width: 88px;
    height: 52px
  }
  .logo span {
    display: none
  }
  .phone-box {
    white-space: nowrap
  }
  .hero {
    min-height: auto
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    padding: 94px 0 42px;
    gap: 24px;
    min-height: auto
  }
  .hero-copy {
    width: 100%;
    text-align: center;
    order: 1
  }
  .hero-art {
    order: 2;
    width: 100%
  }
  .hero-badge {
    font-size: .76rem;
    padding: 7px 10px;
    gap: 7px;
    white-space: normal;
    justify-content: center
  }
  .hero-badge span {
    padding: 4px 8px
  }
  .hero-copy .question {
    font-size: 1.62rem;
    margin: 28px 0 0
  }
  .script-title {
    font-size: clamp(4.7rem, 22vw, 6.2rem);
    line-height: .74;
    margin: 14px 0 24px;
    text-shadow: 0 5px 0 rgba(255, 255, 255, .92), 0 13px 22px rgba(0, 0, 0, .18)
  }
  .hero-text {
    font-size: 1rem
  }
  .hero-cta {
    margin: 24px 0 18px
  }
  .hero-cta .btn {
    width: 100%
  }
  .hero-stats {
    grid-template-columns: 1fr
  }
  .stat {
    text-align: left
  }
  .round-card .mini {
    color: #f3dba5;
    font-weight: 600;
    font-size: .8rem;
}
  .field-card {
    width: 100%;
    min-height: 360px;
    border-radius: 26px;
    margin-top: 4px
  }
  .field-card::before {
    height: 118px
  }
  .field-card::after {
    bottom: 66px
  }
.css-trophy {
    top: 0;
    transform: scale(.58);
}
  div.css-trophy::before {
    content: url(assets/cupa.webp);
    margin-left: -44%;
}
.css-ball {
    left: 124px;
    top: 202px;
    width: 152px;
    height: 152px;
    border-width: 5px;
}
.round-card {
    left: auto;
    right: 14px;
    top: 22px;
    width: calc(100% - 120px);
    max-width: 140px;
    border-radius: 22px;
    padding: 16px;
}
.round-card b {
    font-size: 1.3rem;
    padding-top: 8px;
}
.round-card p {
    font-size: .76rem;
    font-weight: 200;
    color: white !important;
}
  .tray {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px
  }
  .tray span {
    min-height: 48px;
    border-radius: 13px;
    font-size: .84rem;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .13);
    background: rgb(31 88 29 / 82%);
    color: #fff;
    font-weight: 600;
  }

  .strip-grid,
  .price-grid,
  .menu-list,
  .flavour-grid,
  .match-grid,
  .flow-grid {
    grid-template-columns: 1fr
  }
  .info-strip {
    margin-top: 0
  }
  .split-head {
    display: block
  }
  .split-head--spaced {
    margin-top: 44px
  }
  .count-badge {
    display: inline-flex;
    margin-top: 16px;
    white-space: normal
  }
  .menu-pill {
    padding: 15px 14px 15px 42px
  }
  .schedule-panel {
    border-radius: 26px;
    padding: 14px
  }
  .filters {
    gap: 8px
  }
  .filter-btn {
    padding: 10px 12px;
    font-size: .86rem
  }
  .match-card {
    min-height: auto
  }
  .match-time {
    font-size: 1.55rem
  }
  .loc-card {
    padding: 26px;
    border-radius: 26px
  }
  .address {
    font-size: 1.42rem
  }
  .map {
    border-radius: 26px;
    min-height: 360px
  }
  .footer-inner {
    display: block;
    text-align: center
  }
  .footer img {
    margin: 0 auto 14px
  }
  .footer .btn {
    margin-top: 18px
  }
  .sticky-mobile {
    display: flex;
    max-width: 380px;
    margin-inline: auto
  }
  .packages::before,
  .choice::after {
    display: none
  }
}

@media (max-width:390px) {
.phone-box {
    font-size: .88rem;
    padding-right: 12px;
}
  .hero-badge {
    font-size: .7rem
  }
  .field-card {
    min-height: 350px
  }
  .round-card {
    width: calc(100% - 148px);
    right: 10px
  }
  .round-card b {
    font-size: 1.32rem
  }
  .round-card p {
    display: none
  }
  .css-trophy {
    left: 12px
  }
  .css-ball {
    left: 90px
  }
  .script-title {
    font-size: 4.45rem
  }
  .btn {
    padding: 14px 18px
  }
}