/* =============================================
   BEN VINDO — Editorial Redesign
   Inspired by: Big Dude Tour / caju. estudios / Rio City Tour
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:  #0d0d0d;
  --cream:  #f5f1ea;
  --yellow: #F5C430;
  --green:  #2a7a4f;
  --blue:   #1565c8;
  --white:  #ffffff;
  --muted:  #88887f;
  --border: rgba(255,255,255,0.15);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Utility --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.label--light { color: rgba(255,255,255,0.5); }
.label--yellow { color: var(--yellow); }

/* ===================== NAV ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--blue);
  height: 60px;
  display: flex;
  align-items: center;
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  line-height: 1;
}
.logo-ben   { color: var(--yellow); }
.logo-vindo { color: var(--green); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width var(--transition);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }
.nav__link.active { color: var(--white); }

.nav__wa {
  color: rgba(255,255,255,0.65);
  font-size: 1.2rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.nav__wa:hover { color: #25D366; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s ease;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Page offset for fixed nav */
body { padding-top: 60px; }

/* ===================== HERO — PHOTO ===================== */
.hero-photo {
  position: relative;
  height: calc(100vh - 60px);
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-photo__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}
.hero-photo:hover .hero-photo__bg { transform: scale(1.03); }
.hero-photo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
}
.hero-photo__content {
  position: relative;
  z-index: 1;
  padding: 0 40px 56px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-photo__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 12vw, 11rem);
  color: var(--white);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin: 12px 0 16px;
}
.hero-photo__title .accent { color: var(--yellow); }
.hero-photo__sub {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-photo__rule {
  width: 48px;
  height: 2px;
  background: var(--yellow);
  margin-bottom: 12px;
}

/* ===================== HERO — FLAT (color bg) ===================== */
.hero-flat {
  padding: 100px 0 80px;
  position: relative;
}
.hero-flat--yellow { background: var(--yellow); }
.hero-flat--black  { background: var(--black); color: var(--white); }
.hero-flat--cream  { background: var(--cream); }
.hero-flat__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.hero-flat__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 13vw, 12rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
}
.hero-flat--yellow .hero-flat__title { color: var(--black); }
.hero-flat--black  .hero-flat__title { color: var(--yellow); }
.hero-flat--cream  .hero-flat__title { color: var(--black); }
.hero-flat__sub {
  margin-top: 20px;
  font-size: 1rem;
  color: var(--muted);
  max-width: 400px;
}
.hero-flat--black .hero-flat__sub { color: rgba(255,255,255,0.5); }

/* ===================== SERVICES SPLIT ===================== */
.services-split {
  display: grid;
  grid-template-columns: 60fr 40fr;
  height: 520px;
}
.service-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  cursor: pointer;
}
.service-panel__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.service-panel:hover .service-panel__bg { transform: scale(1.04); }
.service-panel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  transition: opacity var(--transition);
}
.service-panel--yellow {
  background: var(--yellow);
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}
.service-panel--yellow:hover { background: #e8b820; }
.service-panel__content {
  position: relative;
  z-index: 1;
  padding: 36px 40px;
  color: var(--white);
}
.service-panel--yellow .service-panel__content { color: var(--black); padding: 0; }
.service-panel__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-panel__arrow {
  font-size: 0.6em;
  transition: transform var(--transition);
}
.service-panel:hover .service-panel__arrow { transform: translateX(6px); }
.service-panel__desc {
  margin-top: 8px;
  font-size: 0.85rem;
  opacity: 0.75;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ===================== COLOR BLOCK STATEMENT ===================== */
.statement {
  background: var(--green);
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
}
.statement__text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  color: var(--yellow);
  line-height: 0.95;
  letter-spacing: 0.03em;
}
.statement__sub {
  margin-top: 16px;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ===================== ABOUT TEASER ===================== */
.about-teaser {
  background: #1a3d2b;
  display: grid;
  grid-template-columns: 340px 1fr;
  min-height: 400px;
}
.about-teaser__photo {
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-size: 5rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  /* REPLACE: set background-image to Ben's photo */
  background-size: cover;
  background-position: center top;
}
.about-teaser__content {
  padding: 64px 64px 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-teaser__content .label { margin-bottom: 20px; }
.about-teaser__quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.about-teaser__body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 32px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  transition: gap var(--transition);
}
.text-link:hover { gap: 14px; }
.text-link--white { color: var(--white); }
.text-link--black { color: var(--black); }

/* ===================== TOUR SECTION ===================== */
.section { padding: 96px 0; }
.section--cream { background: var(--cream); }
.section--black { background: var(--black); color: var(--white); }
.section--white { background: var(--white); }

.section__head {
  max-width: 1200px;
  margin: 0 auto 64px;
  padding: 0 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.section__head-left .label { margin-bottom: 10px; }
.section__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

/* Tour editorial rows */
.tour-row {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.tour-row--reverse { direction: rtl; }
.tour-row--reverse > * { direction: ltr; }

.tour-row__photo {
  position: relative;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.tour-row__photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
}

.tour-row__info {
  background: var(--white);
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section--black .tour-row__info { background: #161616; }

.tour-row__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 16px 0 4px;
}
.tour-row__price-note {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.tour-row__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.tour-row__desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.section--black .tour-row__desc { color: rgba(255,255,255,0.45); }
.tour-row__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.tour-row__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.87rem;
  color: var(--muted);
  border-top: 1px solid rgba(0,0,0,0.07);
  padding-top: 10px;
}
.section--black .tour-row__list li {
  color: rgba(255,255,255,0.45);
  border-top-color: rgba(255,255,255,0.06);
}
.tour-row__list li:first-child { border-top: none; padding-top: 0; }
.tour-row__list li::before { content: '—'; color: var(--yellow); flex-shrink: 0; }

/* ===================== FOOTBALL SECTION ===================== */
.football-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.football-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.football-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
}
.football-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
}
.football-hero__label { margin-bottom: 16px; }
.football-hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 9vw, 8rem);
  color: var(--white);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}
.football-hero__rule {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.football-hero__rule::before,
.football-hero__rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.2);
}
.football-hero__rule-text {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}
.clubs-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.club-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.club-item__badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--white);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 4px;
  display: inline-block;
}
.club-item__name {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ===================== LANGUAGE PAGE ===================== */
.lang-intro {
  background: #1a3d2b;
  padding: 96px 0;
}
.lang-intro__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lang-intro__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.lang-intro__body {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.lang-intro__stat {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: 0.02em;
}
.lang-intro__stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.lang-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.lang-block {
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
}
.lang-block--green { background: var(--green); }
.lang-block--cream { background: var(--cream); }
.lang-block__flag { font-size: 3rem; margin-bottom: 20px; }
.lang-block__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.lang-block--green .lang-block__title { color: var(--yellow); }
.lang-block--cream .lang-block__title { color: var(--black); }
.lang-block__body {
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 32px;
}
.lang-block--green .lang-block__body { color: rgba(255,255,255,0.65); }
.lang-block--cream .lang-block__body { color: var(--muted); }

.lang-features {
  background: var(--cream);
  padding: 80px 0;
}
.lang-features__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.lang-features__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
}
.lang-features__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.lang-features__item {
  padding: 24px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.92rem;
  color: var(--muted);
}
.lang-features__item::before { content: '—'; color: var(--yellow); flex-shrink: 0; font-weight: 700; }

/* ===================== ABOUT PAGE ===================== */
.about-story {
  background: var(--cream);
  padding: 96px 0;
}
.about-story__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: start;
}
.about-story__photo {
  aspect-ratio: 3/4;
  background: #d8d3cb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.2);
  font-size: 5rem;
  /* REPLACE: set background-image to Ben's portrait */
  background-size: cover;
  background-position: center top;
  position: sticky;
  top: 80px;
}
.about-story__content .label { margin-bottom: 20px; }
.about-story__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}
.about-story__body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-story__body:last-of-type { margin-bottom: 40px; }

.lang-strip {
  background: #1a3d2b;
  padding: 56px 0;
}
.lang-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 0;
  align-items: stretch;
}
.lang-strip__item {
  flex: 1;
  padding: 32px 40px;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lang-strip__item:last-child { border-right: none; }
.lang-strip__flag { font-size: 1.8rem; }
.lang-strip__lang {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.04em;
}
.lang-strip__level {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}

.ig-strip {
  background: var(--cream);
  padding: 72px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.ig-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.ig-strip__handle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: 0.02em;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: color var(--transition);
}
.ig-strip__handle:hover { color: var(--muted); }

/* ===================== CONTACT PAGE ===================== */
.contact-links {
  background: var(--cream);
  padding: 80px 0 96px;
}
.contact-links__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.contact-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  text-decoration: none;
  transition: background var(--transition);
  margin: 0 -40px;
  padding-left: 40px;
  padding-right: 40px;
}
.contact-link-row:last-child { border-bottom: 1px solid rgba(0,0,0,0.1); }
.contact-link-row:hover { background: rgba(0,0,0,0.03); }
.contact-link-row__left { display: flex; flex-direction: column; gap: 4px; }
.contact-link-row__platform {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-link-row__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.02em;
  line-height: 1;
  transition: color var(--transition);
}
.contact-link-row:hover .contact-link-row__title { color: var(--yellow); }
.contact-link-row__arrow {
  font-size: 2rem;
  color: var(--muted);
  transition: transform var(--transition), color var(--transition);
}
.contact-link-row:hover .contact-link-row__arrow { transform: translate(8px, -8px); color: var(--yellow); }

.contact-note {
  background: var(--blue);
  padding: 64px 0;
  text-align: center;
}
.contact-note__text {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ===================== ABOUT HERO SPLIT (new about page top) ===================== */
.about-hero-split {
  display: grid;
  grid-template-columns: 45fr 55fr;
  min-height: 80vh;
}
.about-hero-split__photo {
  background: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,0.35);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background-size: cover;
  background-position: center top;
}
.about-hero-split__photo .photo-placeholder-icon {
  font-size: 4rem;
  opacity: 0.25;
}
.about-hero-split__content {
  background: var(--cream);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-hero-split__label { margin-bottom: 20px; }
.about-hero-split__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 7vw, 7rem);
  color: var(--black);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.about-hero-split__title .accent { color: var(--green); }
.about-hero-split__body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
  max-width: 480px;
}
.about-hero-split__body:last-of-type { margin-bottom: 36px; }

/* ===================== LANGUAGE CTA (green variant) ===================== */
.lang-cta {
  background: var(--green);
  padding: 80px 0;
  text-align: center;
}

/* ===================== FOOTBALL PAGE ===================== */
.football-club-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.football-club-row--reverse { direction: rtl; }
.football-club-row--reverse > * { direction: ltr; }

.football-club-row__photo {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  min-height: 420px;
}
.football-club-row__photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.22);
}
/* REPLACE placeholder panels */
.football-club-row__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.football-club-row__photo--placeholder .placeholder-note {
  font-size: 0.62rem;
  opacity: 0.6;
}

.football-club-row__info {
  background: var(--cream);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.football-club-row__badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 8px;
}
.football-club-row__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--black);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.football-club-row__stadium {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.football-club-row__stadium::before { content: ''; width: 24px; height: 1px; background: var(--yellow); flex-shrink: 0; }
.football-club-row__desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 32px;
  max-width: 400px;
}

/* ===================== EXPERIENCES GRID ===================== */
.experiences-section {
  background: var(--white);
  padding: 96px 0;
}
.experiences-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.experiences-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
}
.experiences-section__head-left .label { margin-bottom: 10px; }
.experiences-section__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}
.experiences-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.experience-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
}
.experience-card__photo {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.experience-card__photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
}
.experience-card__info {
  padding: 32px 36px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.experience-card__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.experience-card__price-note {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.experience-card__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.experience-card__desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 24px;
  flex: 1;
}

/* ===================== BUNDLES SECTION ===================== */
.bundles-section {
  background: #1a3d2b;
  padding: 96px 0;
}
.bundles-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.bundles-section__head {
  margin-bottom: 64px;
}
.bundles-section__head .label { margin-bottom: 10px; }
.bundles-section__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 0.02em;
}
.bundles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.bundle-card {
  background: rgba(255,255,255,0.04);
  padding: 48px 44px;
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
}
.bundle-card__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}
.bundle-card__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.bundle-card__list {
  margin-bottom: 36px;
  flex: 1;
}
.bundle-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bundle-card__list li:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.bundle-card__list li::before { content: '—'; color: var(--yellow); flex-shrink: 0; }
.bundle-card__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.bundle-card__price-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

/* ===================== FOOTBALL PRICE BADGE ===================== */
.football-club-row__price-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--black);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.football-club-row__price-per {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--blue);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 40px 0;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
}
.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .nav__inner { padding: 0 24px; }

  .nav__links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: var(--blue);
    padding: 16px 24px 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  }
  .nav__links.open { display: flex; }
  .nav__link {
    width: 100%;
    padding: 14px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav__link::after { display: none; }
  .nav__wa { display: none; }
  .nav__hamburger { display: flex; }

  .services-split { grid-template-columns: 1fr; height: auto; }
  .service-panel { min-height: 320px; }
  .service-panel--yellow { min-height: 240px; }

  .about-teaser { grid-template-columns: 1fr; }
  .about-teaser__photo { min-height: 300px; }
  .about-teaser__content { padding: 48px 24px; }

  .tour-row { grid-template-columns: 1fr; }
  .tour-row--reverse { direction: ltr; }
  .tour-row__photo { min-height: 280px; }
  .tour-row__info { padding: 40px 24px; }

  .lang-intro__inner { grid-template-columns: 1fr; gap: 40px; }
  .lang-blocks { grid-template-columns: 1fr; }
  .lang-block { padding: 56px 24px; }

  .lang-features__list { grid-template-columns: 1fr; }

  .about-story__inner { grid-template-columns: 1fr; }
  .about-story__photo { aspect-ratio: 4/3; position: static; }

  .about-hero-split { grid-template-columns: 1fr; }
  .about-hero-split__photo { min-height: 300px; }
  .about-hero-split__content { padding: 56px 24px; }

  .football-club-row { grid-template-columns: 1fr; }
  .football-club-row--reverse { direction: ltr; }
  .football-club-row__photo { min-height: 260px; }
  .football-club-row__info { padding: 40px 24px; }

  .lang-strip__inner { flex-direction: column; gap: 0; }
  .lang-strip__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .lang-strip__item:last-child { border-bottom: none; }

  .ig-strip__inner { flex-direction: column; align-items: flex-start; }
  .ig-strip__handle { font-size: 3rem; }

  .section__head { flex-direction: column; align-items: flex-start; margin-bottom: 40px; padding: 0 24px; }
  .hero-photo__content { padding: 0 24px 48px; }
  .hero-flat__inner { padding: 0 24px; }
  .football-hero__content { padding: 64px 24px; }

  .contact-links__inner { padding: 0 24px; }
  .contact-link-row { margin: 0 -24px; padding-left: 24px; padding-right: 24px; }

  .about-story__inner { padding: 0 24px; }
  .lang-strip__inner { padding: 0 24px; }
  .ig-strip__inner { padding: 0 24px; }
  .footer__inner { padding: 0 24px; }
  .section__head { padding: 0 24px; }

  .experiences-grid { grid-template-columns: 1fr; }
  .bundles-grid { grid-template-columns: 1fr; }
  .experiences-section__inner { padding: 0 24px; }
  .bundles-section__inner { padding: 0 24px; }
  .bundle-card { padding: 40px 24px; }
  .experience-card__info { padding: 28px 24px 36px; }
  .experiences-section__head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .hero-photo { height: 85vh; }
  .clubs-row { gap: 20px; }
  .lang-intro__stat { font-size: 4rem; }
}
