/* ════════════════════════════════════════════════════════════
   InAction Landing — Bold Editorial Redesign
   Font: Averta Standard (local)
   ════════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'Averta';
  src: url('../fonts/Averta Standard Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Averta';
  src: url('../fonts/Averta Standard Semibold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Averta';
  src: url('../fonts/Averta Standard Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Averta';
  src: url('../fonts/Averta Standard Extra Bold.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}

:root {
  --or:    #f65a05;
  --or-dk: #c44400;
  --bk:    #0d0d0d;
  --bk2:   #171717;
  --wh:    #fff;
  --cream: #f7f5f0;
  --g2:    #2a2a2a;
  --g3:    #555;
  --g4:    #888;
  --g5:    #c8c8c8;
  --ff:    'Averta', sans-serif;
  --dur:   .55s;
  --ease:  cubic-bezier(.16,1,.3,1);
}

/* ── reset ─────────────────────────────────────────────────── */
.ia-page *, .ia-page *::before, .ia-page *::after { box-sizing: border-box; margin: 0; padding: 0; }
body.ia-page {
  font-family: var(--ff); font-size: 16px; line-height: 1.6;
  background: var(--bk); color: var(--wh);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
.ia-page img { display: block; max-width: 100%; }
.ia-page a   { color: inherit; text-decoration: none; }
.ia-page ul, .ia-page ol { list-style: none; }

/* ════════════════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 400;
  transition: background .3s, border-color .3s;
}
.nav.stuck {
  background: rgba(13,13,13,.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav__inner {
  background: var(--bk);
  display: flex; align-items: center;
  padding: 0 56px; height: 72px;
  max-width: 1500px; margin: 0 auto;
}
.nav__logo img { height: 28px; width: auto; }
.nav__right { display: flex; align-items: center; gap: 40px; margin-left: auto; }
.nav__link {
  font-size: 16px; font-weight: 400;
  color: rgba(255,255,255,.55); transition: color .2s;
}
.nav__link:hover { color: var(--wh); }
.nav__cta {
  font-size: 15px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  background: var(--or); color: var(--wh);
  padding: 12px 28px; border-radius: 4px;
  transition: background .2s, transform .15s;
}
.nav__cta:hover { background: var(--or-dk); transform: translateY(-1px); }

/* wp_nav_menu() outputs a <ul> — style it to match the design */
.nav__menu {
  display: flex; align-items: center; gap: 40px;
  list-style: none; margin: 0; padding: 0;
}
.nav__menu li { position: relative; }
.nav__menu li a {
  font-size: 16px; font-weight: 400;
  color: var(--wh); transition: color .2s;
  white-space: nowrap;
}
.nav__menu li a:hover,
.nav__menu li.current-menu-item > a,
.nav__menu li.current_page_item > a { color: var(--wh); }

/* CTA button — assign class "menu-cta" to any menu item in WP Admin → Menus */
.nav__menu li.menu-cta > a {
  font-size: 15px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  background: var(--or); color: var(--wh) !important;
  padding: 12px 28px; border-radius: 4px;
  transition: background .2s, transform .15s;
}
.nav__menu li.menu-cta > a:hover { background: var(--or-dk); transform: translateY(-1px); }

/* Hide lang items Polylang may inject into the WP nav menu — we use our own switcher */
.nav__menu .lang-item,
.nav__drawer-menu .lang-item { display: none !important; }

/* Mobile drawer menu */
.nav__drawer-menu {
  display: flex; flex-direction: column;
  list-style: none; margin: 0; padding: 0;
}
.nav__drawer-menu li a {
  display: block; padding: 16px 24px;
  font-size: 16px; font-weight: 400;
  color: rgba(255,255,255,.6);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .2s;
}
.nav__drawer-menu li a:hover { color: var(--wh); }
.nav__drawer-menu li:last-child a { color: var(--or); font-weight: 700; }

.nav__burger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--wh); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav__burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav__drawer {
  display: none; flex-direction: column;
  background: var(--bk2); max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav__drawer.open { max-height: 320px; }
.nav__drawer a { display: block; padding: 16px 24px; font-size: 16px; font-weight: 400; color: rgba(255,255,255,.6); border-bottom: 1px solid rgba(255,255,255,.05); transition: color .2s; }
.nav__drawer a:hover { color: var(--wh); }
.nav__drawer-cta { color: var(--or) !important; font-weight: 700; }

/* ════════════════════════════════════════════════════════════
   HERO  — split: white left / full-bleed photo right
════════════════════════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
}

/* LEFT — cream/white panel */
.hero__left {
  background: var(--cream);
  display: flex; flex-direction: column;
  padding: 120px 72px 0 80px;
  position: relative; overflow: hidden;
}
.hero__left-inner { flex: 1; display: flex; flex-direction: column; justify-content: center; }

.hero__tag {
  font-size: 12px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--bk); margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.hero__tag::before { content: ''; display: block; width: 28px; height: 2px; background: var(--or); }

.hero__h1 {
  font-size: clamp(56px, 5vw, 108px);
  font-weight: 800;
  line-height: 1; letter-spacing: -.025em;
  color: var(--bk); margin-bottom: 28px;
}
.hero__h1 em { font-style: normal; color: var(--or); }

.hero__sub {
  font-size: 16px; font-weight: 400;
  color: var(--g3); line-height: 1.75;
  max-width: 400px; margin-bottom: 40px;
}
.hero__stores { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__store { opacity: .8; transition: opacity .2s; }
.hero__store:hover { opacity: 1; }
.hero__store img { height: 42px; width: auto; }

/* Activity cards strip */
.hero__acts {
  display: flex; gap: 10px;
  overflow-x: auto; overflow-y: visible;
  padding: 32px 0 0;
  margin-left: -80px; margin-right: -72px;
  padding-left: 80px; padding-right: 72px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.hero__acts::-webkit-scrollbar { display: none; }

.hero__act-card {
  position: relative; flex-shrink: 0;
  width: 120px; height: 150px;
  border-radius: 10px; overflow: hidden;
  cursor: pointer;
}
.hero__act-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.hero__act-card:hover img { transform: scale(1.06); }
.hero__act-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.1) 55%);
  z-index: 1;
}
.hero__act-tag {
  position: absolute; top: 8px; right: 8px; z-index: 2;
  font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  background: var(--or); color: #fff;
  padding: 3px 6px; border-radius: 4px;
}
.hero__act-label {
  position: absolute; bottom: 9px; left: 9px; z-index: 2;
  font-size: 12px; font-weight: 700; color: #fff;
  line-height: 1.2;
}

/* Review cards strip */
.hero__reviews {
  display: flex; gap: 10px;
  overflow-x: auto;
  padding: 20px 0 0;
  margin-left: -80px; margin-right: -72px;
  padding-left: 80px; padding-right: 72px;
  scrollbar-width: none;
}
.hero__reviews::-webkit-scrollbar { display: none; }

.hero__review {
  flex-shrink: 0; width: 180px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  padding: 14px 14px 12px;
}
.hero__review-stars {
  font-size: 12px; color: var(--or);
  margin-bottom: 7px; letter-spacing: .04em;
}
.hero__review p {
  font-size: 12px; font-weight: 500;
  color: var(--g2); line-height: 1.5;
  margin: 0;
}

.hero__review-source {
  font-size: 11px; font-weight: 500;
  color: var(--g4); margin: 10px 0 28px;
}

/* RIGHT — full-bleed photo */
.hero__right {
  position: relative; overflow: hidden;
  background: var(--bk);
  display: flex; align-items: center; justify-content: center;
}
.hero__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 20%;
  filter: brightness(.75);
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(13,13,13,.55) 0%, rgba(13,13,13,.3) 50%, rgba(13,13,13,.65) 100%);
}
.hero__app {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.hero__app-img {
  height: 70vh;
  max-height: 660px;
  width: auto;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0,0,0,.55), 0 8px 24px rgba(0,0,0,.3);
  filter: drop-shadow(0 0 1px rgba(255,255,255,.08));
}

/* ════════════════════════════════════════════════════════════
   ACTIVITIES — bold orange background, typographic
════════════════════════════════════════════════════════════ */
.acts { background: var(--wh); }

.acts__intro {
  max-width: 1500px; margin: 0 auto;
  padding: 80px 80px 52px;
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 48px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.acts__h2 {
  font-size: clamp(42px, 5.5vw, 78px);
  font-weight: 800; line-height: .92;
  letter-spacing: -.025em; color: var(--bk);
  flex-shrink: 0;
}
.acts__sub {
  font-size: 16px; font-weight: 400;
  color: var(--g3);
  max-width: 280px; line-height: 1.65;
  padding-bottom: 8px;
}

/* Infinite-scroll image carousel */
.acts__scroll-wrap {
  overflow: hidden;
  height: 360px;
}

@keyframes acts-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.acts__scroll-track {
  display: flex;
  height: 100%;
  width: max-content;
  animation: acts-scroll 44s linear infinite;
}
.acts__scroll-wrap:hover .acts__scroll-track {
  animation-play-state: paused;
}

.acts__scroll-item {
  position: relative;
  flex-shrink: 0;
  width: 320px;
  height: 100%;
  overflow: hidden;
}
.acts__scroll-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.55) saturate(.7);
  transition: filter .5s, transform .7s var(--ease);
}
.acts__scroll-item:hover img {
  filter: brightness(.78) saturate(1);
  transform: scale(1.05);
}
.acts__scroll-label {
  position: absolute; bottom: 20px; left: 20px;
  font-size: 16px; font-weight: 800;
  letter-spacing: -.01em; color: var(--wh);
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
  pointer-events: none;
}

/* Two-column roster list — dark text on white */
.acts__roster {
  max-width: 1500px; margin: 0 auto;
  padding: 0 80px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(0,0,0,.08);
  margin-top: 0;
}
.acts__roster-col { display: flex; flex-direction: column; }
.acts__roster-col:first-child { border-right: 1px solid rgba(0,0,0,.08); }

.acts__entry {
  display: flex; align-items: center; gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,.07);
  transition: padding .2s;
  cursor: default;
}
.acts__roster-col:first-child .acts__entry { padding-right: 56px; }
.acts__roster-col:last-child  .acts__entry { padding-left:  56px; }
.acts__entry:hover { padding-left: 16px; }
.acts__roster-col:first-child .acts__entry:hover { padding-left: 0; padding-right: 48px; }

.acts__entry-n {
  font-size: 12px; font-weight: 700;
  color: rgba(0,0,0,.25); width: 28px; flex-shrink: 0;
  letter-spacing: .04em;
}
.acts__entry-name {
  font-size: clamp(18px, 2.2vw, 30px);
  font-weight: 800; letter-spacing: -.015em;
  color: var(--bk); flex: 1;
  transition: color .2s;
}
.acts__entry:hover .acts__entry-name { color: var(--or); }
.acts__entry-tag {
  font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--g4);
  background: rgba(0,0,0,.05);
  padding: 4px 10px; border-radius: 3px;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   ABOUT — very dark, staggered overlapping photos
════════════════════════════════════════════════════════════ */
.about {
  background: var(--bk2);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 700px;
  overflow: hidden;
}

.about__photos {
  position: relative;
  background: var(--bk);
}
.about__photo {
  position: absolute; overflow: hidden;
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__photo--top {
  top: 0; left: 0; right: 20%; bottom: 35%;
  filter: brightness(.65);
}
.about__photo--bot {
  top: 40%; left: 20%; right: 0; bottom: 0;
  filter: brightness(.55);
  box-shadow: -24px -24px 0 var(--bk2);
}
.about__photo-badge {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--or); color: var(--wh);
  padding: 22px 28px; border-radius: 4px;
  text-align: center; z-index: 3;
  box-shadow: 0 16px 52px rgba(246,90,5,.45);
}
.about__photo-badge span {
  display: block; font-size: 52px; font-weight: 800;
  line-height: 1; letter-spacing: -.03em;
}
.about__photo-badge small {
  font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  opacity: .75; margin-top: 4px; display: block;
}

.about__body {
  padding: 80px 80px 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
}
.about__label {
  font-size: 12px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--or); margin-bottom: 22px;
}
.about__h2 {
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 800; line-height: .95;
  letter-spacing: -.025em; margin-bottom: 28px;
  color: var(--wh);
}
.about__h2 em { font-style: normal; color: var(--or); }
.about__p {
  font-size: 16px; font-weight: 400;
  color: rgba(255,255,255,.5); line-height: 1.75;
  margin-bottom: 14px;
}

.about__feats {
  margin: 32px 0; display: flex; flex-direction: column; gap: 20px;
}
.about__feat {
  display: flex; align-items: flex-start; gap: 16px;
}
.about__feat-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(246,90,5,.12);
  border: 1px solid rgba(246,90,5,.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--or);
}
.about__feat strong {
  display: block; font-size: 14px; font-weight: 700;
  color: var(--wh); margin-bottom: 2px;
}
.about__feat span { font-size: 13px; font-weight: 400; color: var(--g4); }

.about__apps { display: flex; gap: 12px; flex-wrap: wrap; }
.about__apps img { height: 40px; width: auto; opacity: .65; transition: opacity .2s; }
.about__apps a:hover img { opacity: 1; }

.about__tagline {
  font-size: 15px; font-weight: 600;
  color: var(--wh);
  opacity: .55;
  letter-spacing: .01em;
  line-height: 1.5;
  margin-bottom: 24px;
}

/* ════════════════════════════════════════════════════════════
   MARQUEE
════════════════════════════════════════════════════════════ */
.marquee {
  overflow: hidden; background: var(--wh);
  padding: 18px 0;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.marquee__track {
  display: flex; align-items: center;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.marquee__track span {
  font-size: 13px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--bk); padding: 0 18px; white-space: nowrap;
}
.marquee__dot { color: var(--or) !important; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ════════════════════════════════════════════════════════════
   PARTNER — left white/cream, right dark charcoal
════════════════════════════════════════════════════════════ */
.partner {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 760px;
}

.partner__left {
  background: var(--cream); color: var(--bk);
  padding: 100px 72px 80px 80px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
/* Big decorative letter behind content */
.partner__left::before {
  content: 'IN';
  position: absolute; bottom: -40px; right: -20px;
  font-size: 280px; font-weight: 800;
  line-height: 1; letter-spacing: -.05em;
  color: rgba(0,0,0,.04); pointer-events: none;
  user-select: none;
}

.partner__label {
  font-size: 12px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--or); margin-bottom: 20px;
}
.partner__h2 {
  font-size: clamp(56px, 7vw, 104px);
  font-weight: 800; line-height: .87;
  letter-spacing: -.03em; margin-bottom: 24px;
  color: var(--bk);
}
.partner__h2 em { font-style: normal; color: var(--or); display: block; }
.partner__sub {
  font-size: 16px; font-weight: 400;
  color: var(--g3); line-height: 1.7;
  max-width: 340px; margin-bottom: 36px;
}

.partner__perks { display: flex; flex-direction: column; margin-bottom: 52px; counter-reset: pk; }
.partner__perks li {
  display: flex; flex-direction: column;
  padding: 20px 0 20px 48px;
  border-bottom: 1px solid rgba(0,0,0,.1);
  counter-increment: pk; position: relative;
}
.partner__perks li:first-child { border-top: 1px solid rgba(0,0,0,.1); }
.partner__perks li::before {
  content: "0" counter(pk);
  position: absolute; left: 0; top: 22px;
  font-size: 13px; font-weight: 800;
  color: var(--or); letter-spacing: .04em;
}
.partner__perks strong { font-size: 15px; font-weight: 700; color: var(--bk); line-height: 1.3; }
.partner__perks span  { font-size: 13px; font-weight: 400; color: var(--g3); margin-top: 3px; }

.partner__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--or); color: #fff;
  font-size: 15px; font-weight: 700;
  padding: 14px 24px; border-radius: 6px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  margin-bottom: 14px; align-self: flex-start;
}
.partner__cta:hover { background: #d94d00; transform: translateY(-1px); }

.partner__note {
  font-size: 13px; font-weight: 400;
  color: var(--g3); margin-bottom: 40px;
}

.partner__duo { display: flex; gap: 8px; height: 160px; margin-top: auto; }
.partner__duo img { flex: 1; object-fit: cover; border-radius: 4px; filter: brightness(.6) saturate(.7); }

/* Right: dark form panel */
.partner__right {
  background: var(--g2); color: var(--wh);
  padding: 80px 80px 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
}

/* Form */
.form__title {
  font-size: 28px; font-weight: 800;
  letter-spacing: -.02em; margin-bottom: 32px;
  color: var(--wh);
}
.form__field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; position: relative; }
.form__field label {
  font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.form__field label span { text-transform: none; letter-spacing: 0; font-weight: 400; }
.form__field input,
.form__field textarea,
.form__field select {
  width: 100%; background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  color: var(--wh); font-family: var(--ff);
  font-size: 15px; font-weight: 400;
  padding: 13px 16px; border-radius: 4px;
  outline: none; transition: border-color .2s, background .2s;
  -webkit-appearance: none; appearance: none;
}
.form__field input::placeholder,
.form__field textarea::placeholder { color: rgba(255,255,255,.25); }
.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  border-color: var(--or);
  background: rgba(246,90,5,.06);
}
.form__field textarea { resize: vertical; min-height: 90px; }
.form__field--sel select { padding-right: 40px; cursor: pointer; color: rgba(255,255,255,.35); }
.form__chev {
  position: absolute; right: 14px; bottom: 18px;
  pointer-events: none; color: var(--g4);
}
.form__field--sel option { background: #2a2a2a; color: var(--wh); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form__row .form__field { margin-bottom: 0; }

.form__submit {
  width: 100%; margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--or); color: var(--wh);
  font-family: var(--ff); font-size: 15px; font-weight: 700;
  letter-spacing: .02em;
  border: none; border-radius: 4px;
  padding: 17px 24px; cursor: pointer;
  transition: background .2s, transform .15s;
}
.form__submit:hover { background: var(--or-dk); transform: translateY(-1px); }
.form__note { font-size: 13px; font-weight: 400; color: rgba(255,255,255,.25); text-align: center; margin-top: 14px; }

.form__thanks {
  display: none; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 18px; height: 100%; min-height: 400px;
}
.form__thanks svg { color: var(--or); }
.form__thanks strong { font-size: 34px; font-weight: 800; letter-spacing: -.02em; color: var(--wh); }
.form__thanks p { font-size: 16px; font-weight: 400; color: var(--g4); }

/* ── Standalone form section — dark bg (inner pages via [partner_form]) ── */
.partner-form-section {
  background: var(--g2);
  color: var(--wh);
  padding: 80px;
}
.partner-form-section .form {
  max-width: 560px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .partner-form-section { padding: 48px 24px; }
}

/* ── Light-bg form ([partner_form bg="light"] or placed inside .ip-content) ─
   All dark-on-white overrides for labels, inputs, response messages.
   ─────────────────────────────────────────────────────────────────────────── */
.partner-form-section--light {
  padding: 40px 0;
}

.form--light .form__title,
.ip-content .form .form__title {
  color: var(--bk);
}
.form--light .form__field label,
.ip-content .form .form__field label {
  color: rgba(0, 0, 0, .5);
}
.form--light .form__field label span,
.ip-content .form .form__field label span {
  color: rgba(0, 0, 0, .35);
}
.form--light .form__field input,
.form--light .form__field textarea,
.form--light .form__field select,
.ip-content .form .form__field input,
.ip-content .form .form__field textarea,
.ip-content .form .form__field select {
  background: rgba(0, 0, 0, .03);
  border-color: rgba(0, 0, 0, .14);
  color: var(--bk);
}
.form--light .form__field input::placeholder,
.form--light .form__field textarea::placeholder,
.ip-content .form .form__field input::placeholder,
.ip-content .form .form__field textarea::placeholder {
  color: rgba(0, 0, 0, .3);
}
.form--light .form__field input:focus,
.form--light .form__field textarea:focus,
.form--light .form__field select:focus,
.ip-content .form .form__field input:focus,
.ip-content .form .form__field textarea:focus,
.ip-content .form .form__field select:focus {
  border-color: var(--or);
  background: rgba(246, 90, 5, .04);
}
.form--light .form__note,
.ip-content .form .form__note {
  color: rgba(0, 0, 0, .35);
}
.form--light .wpcf7-response-output,
.ip-content .form .wpcf7-response-output {
  border-color: rgba(0, 0, 0, .1);
  color: rgba(0, 0, 0, .5);
}
.form--light .wpcf7-mail-sent-ok,
.ip-content .form .wpcf7-mail-sent-ok {
  border-color: rgba(76, 175, 80, .4);
  color: #2e7d32;
  background: rgba(76, 175, 80, .06);
}
.form--light .wpcf7-mail-sent-ng,
.form--light .wpcf7-aborted,
.form--light .wpcf7-validation-errors,
.ip-content .form .wpcf7-mail-sent-ng,
.ip-content .form .wpcf7-aborted,
.ip-content .form .wpcf7-validation-errors {
  border-color: rgba(239, 83, 80, .4);
  color: #c62828;
  background: rgba(239, 83, 80, .05);
}
.form--light .wpcf7-not-valid-tip,
.ip-content .form .wpcf7-not-valid-tip {
  color: #c62828;
}

/* ── Contact Form 7 ─────────────────────────────────────────
   These rules make CF7's generated markup look identical to
   the hand-coded .form__field / .form__submit design.
──────────────────────────────────────────────────────────── */
/* The <span> CF7 puts around every field becomes a block so it
   sits below the label text with the same gap as the original layout */
.form .wpcf7-form-control-wrap { display: block; }

/* input[type=submit] can't be a flex container — force block */
.form input.form__submit {
  display: block;
  cursor: pointer;
  font-family: var(--ff);
}

/* Hide the default CF7 AJAX spinner */
.form .wpcf7-spinner { display: none; }

/* Inline validation error tip */
.form .wpcf7-not-valid-tip {
  display: block;
  font-size: 11px;
  color: #ef9a9a;
  margin-top: 4px;
}

/* Highlight invalid fields */
.form .wpcf7-not-valid {
  border-color: rgba(239, 83, 80, .7) !important;
  background: rgba(239, 83, 80, .06) !important;
}

/* Response output bar shown after send */
.form .wpcf7-response-output {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 13px;
  border: 1.5px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .55);
}
.form .wpcf7-mail-sent-ok {
  border-color: rgba(76, 175, 80, .5);
  color: #81c784;
  background: rgba(76, 175, 80, .08);
}
.form .wpcf7-mail-sent-ng,
.form .wpcf7-aborted,
.form .wpcf7-validation-errors {
  border-color: rgba(239, 83, 80, .5);
  color: #ef9a9a;
  background: rgba(239, 83, 80, .08);
}

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.footer { background: var(--bk); border-top: 1px solid rgba(255,255,255,.06); }
.footer__main {
  max-width: 1500px; margin: 0 auto;
  padding: 72px 80px 64px;
  display: grid; grid-template-columns: 260px 1fr;
  gap: 72px; align-items: start;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer__brand img.footer__logo { height: 24px; width: auto; margin-bottom: 14px; }
.footer__brand > p { font-size: 14px; font-weight: 400; color: rgba(255,255,255,.3); margin-bottom: 24px; }
.footer__apps { display: flex; flex-direction: column; gap: 10px; }
.footer__apps img { height: 36px; width: auto; opacity: .5; transition: opacity .2s; }
.footer__apps a:hover img { opacity: .9; }

.footer__cols { display: flex; gap: 60px; }
.footer__cols > div { display: flex; flex-direction: column; }
.footer__cols h4 { font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 18px; }
.footer__cols a { font-size: 14px; font-weight: 400; color: rgba(255,255,255,.45); margin-bottom: 10px; transition: color .2s; }
.footer__cols a:hover { color: var(--wh); }

.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
  width: 36px; height: 36px; background: rgba(255,255,255,.06); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); transition: background .2s, color .2s;
}
.footer__social a:hover { background: var(--or); color: var(--wh); }

.footer__bar {
  max-width: 1500px; margin: 0 auto; padding: 20px 80px;
  display: flex; justify-content: space-between;
  font-size: 13px; font-weight: 400; color: rgba(255,255,255,.22);
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .nav__inner { padding: 0 40px; }
  .hero__left { padding: 100px 48px 0 48px; }
  .hero__acts  { margin-left: -48px; margin-right: -48px; padding-left: 48px; padding-right: 48px; }
  .hero__reviews { margin-left: -48px; margin-right: -48px; padding-left: 48px; padding-right: 48px; }
  .acts__intro, .acts__roster { padding-left: 48px; padding-right: 48px; }
  .about__body { padding: 64px 48px; }
  .partner__left { padding: 80px 48px; }
  .partner__right { padding: 64px 48px; }
  .footer__main, .footer__bar { padding-left: 48px; padding-right: 48px; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__left { padding: 100px 40px 0; }
  .hero__acts  { margin-left: -40px; margin-right: -40px; padding-left: 40px; padding-right: 40px; }
  .hero__reviews { margin-left: -40px; margin-right: -40px; padding-left: 40px; padding-right: 40px; }
  .hero__right { height: 55vw; min-height: 280px; }
  .hero__accent { bottom: 24px; left: -16px; }
  .about { grid-template-columns: 1fr; }
  .about__photos { min-height: 420px; }
  .about__body { padding: 60px 40px; }
  .partner { grid-template-columns: 1fr; }
  .partner__left { padding: 72px 40px; }
  .partner__right { padding: 56px 40px; }
  .acts__scroll-wrap { height: 280px; }
  .acts__scroll-item  { width: 240px; }
  .footer__main { grid-template-columns: 1fr; gap: 48px; }
  .footer__cols { flex-wrap: wrap; gap: 40px; }
}

/* ════════════════════════════════════════════════════════════
   POLYLANG LANGUAGE SWITCHER
════════════════════════════════════════════════════════════ */

/* Desktop switcher — sits inside .nav__right */
.nav__lang {
  display: flex; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
/* Works whether Polylang wraps in <ul> or outputs bare <li> */
.nav__lang ul.pll-parent-menu-item {
  display: flex; align-items: center; gap: 2px;
  list-style: none; margin: 0; padding: 0;
}
.nav__lang .lang-item {
  list-style: none; display: flex; align-items: center;
}
.nav__lang .lang-item a {
  display: flex; align-items: center;
  padding: 5px 6px; border-radius: 6px;
  transition: background .2s;
  line-height: 1;
}
.nav__lang .lang-item a:hover { background: rgba(255,255,255,.1); }
.nav__lang .lang-item.current-lang a { opacity: .4; cursor: default; pointer-events: none; }

/* Flag image */
.nav__lang .lang-item a img {
  display: block;
  width: 24px !important; height: auto !important;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.2);
}
/* Hide the name span even if Polylang outputs it */
.nav__lang .lang-item a span { display: none; }

/* Mobile drawer switcher */
.nav__lang--drawer {
  padding: 6px 16px 14px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; gap: 6px;
}
.nav__lang--drawer ul.pll-parent-menu-item { gap: 6px; }
.nav__lang--drawer .lang-item a { padding: 8px 10px; }
.nav__lang--drawer .lang-item a img { width: 26px !important; }
.nav__lang--drawer .lang-item.current-lang a { opacity: .35; pointer-events: none; }

@media (max-width: 680px) {
  .nav__right { display: none; }
  .nav__burger { display: flex; }
  .nav__drawer { display: flex; }
  .nav__inner { padding: 0 24px; height: 64px; }
  .hero__left { padding: 88px 24px 0; }
  .hero__acts  { margin-left: -24px; margin-right: -24px; padding-left: 24px; padding-right: 24px; }
  .hero__reviews { margin-left: -24px; margin-right: -24px; padding-left: 24px; padding-right: 24px; }
  .hero__h1 { font-size: clamp(48px, 13vw, 80px); }
  .acts__intro { padding: 60px 24px 40px; flex-direction: column; align-items: flex-start; }
  .acts__roster { padding: 0 24px 60px; grid-template-columns: 1fr; }
  .acts__roster-col { border-right: none !important; }
  .acts__roster-col:last-child .acts__entry { padding-left: 0; }
  .acts__scroll-wrap { height: 220px; }
  .acts__scroll-item  { width: 180px; }
  .about__photos { min-height: 360px; }
  .about__body { padding: 52px 24px; }
  .partner__left { padding: 60px 24px; }
  .partner__left::before { display: none; }
  .partner__right { padding: 44px 24px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .form__row .form__field { margin-bottom: 16px; }
  .footer__main { padding: 52px 24px 40px; }
  .footer__cols { flex-direction: column; gap: 32px; }
  .footer__bar { padding: 18px 24px; flex-direction: column; gap: 6px; }
}
