:root {
  --bg-main: #0f1117;
  --bg-panel: #161923;
  --bg-soft: #1d2130;
  --surface: #ffffff;
  --surface-soft: #f5f4f7;

  --text-main: #f5f7fb;
  --text-soft: #c3c9d6;
  --text-dark: #161923;
  --text-dark-soft: #5d6473;

  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.16);
  --line-light: #e8e6ec;

  --brand-main: #d81b60;
  --brand-dark: #b1144c;
  --brand-soft: #ffd2e3;

  --accent-kids: #d81b60;
  --accent-youth: #d81b60;
  --accent-adults: #d81b60;
  --accent-couples: #d81b60;

  --success: #24a148;
  --error: #da1e28;

  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.18);
  --shadow-strong: 0 24px 80px rgba(0, 0, 0, 0.32);

  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;

  --container: 1240px;
  --tap: 48px;
  --max-text: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.narrow {
  width: min(880px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-light {
  background: var(--surface);
  color: var(--text-dark);
}

.section-light .section-heading p,
.section-light .card p,
.section-light .feature-card p,
.section-light .offer-card p,
.section-light .service-card p,
.section-light .testimonial-card p,
.section-light .value-card li,
.section-light .step-card p {
  color: var(--text-dark-soft);
}

.section-panel {
  background: var(--bg-panel);
}

.section-soft {
  background: var(--bg-soft);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--brand-main);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading.center {
  text-align: center;
}

.section-heading h1,
.section-heading h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.section-heading p {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: var(--max-text);
}

.section-heading.center p {
  margin-left: auto;
  margin-right: auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(15, 17, 23, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  width: min(1340px, calc(100% - 24px));
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  font-weight: 900;
  color: #fff;
  background: var(--brand-main);
}

.logo-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-copy strong {
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.logo-copy span {
  color: var(--text-soft);
  font-size: 0.75rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
}

.main-nav a {
  min-height: var(--tap);
  display: inline-flex;
  align-items: center;
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
}

.nav-pill {
  padding: 0 16px;
  border-radius: 999px;
  background: var(--brand-main);
  color: #fff !important;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: #fff;
  border-radius: 999px;
}

/* BUTTONS */
.btn {
  min-height: var(--tap);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--brand-main);
  color: #fff;
  border: 1px solid var(--brand-main);
}

.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid var(--line-soft);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.32);
}

.section-light .btn-secondary {
  background: #fff;
  color: var(--text-dark);
  border: 1px solid var(--line-light);
}

.section-light .btn-secondary:hover {
  border-color: var(--brand-main);
  color: var(--brand-main);
}

.btn-light {
  background: #fff;
  color: var(--text-dark);
  border: 1px solid #fff;
}

/* HERO */
.hero {
  position: relative;
}

.hero-immersive {
  min-height: 92vh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img.hero-media-youth {
  object-position: 68% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8, 10, 14, 0.82) 0%, rgba(8, 10, 14, 0.56) 42%, rgba(8, 10, 14, 0.32) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 72px;
}

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

.hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  max-width: 860px;
}

.hero-copy p {
  margin: 24px 0 0;
  font-size: 1.14rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-meta span,
.hero-meta a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.hero-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

/* STORY PANELS */
.story-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(12, 1fr);
}

.story-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-panel);
  box-shadow: var(--shadow-soft);
}

.story-card.light {
  background: var(--surface);
  border-color: var(--line-light);
  color: var(--text-dark);
}

.story-card.light p,
.story-card.light li {
  color: var(--text-dark-soft);
}

.story-card.full {
  grid-column: span 12;
}

.story-card.half {
  grid-column: span 6;
}

.story-card.third {
  grid-column: span 4;
}

.story-media {
  min-height: 320px;
  background: #0b0d12;
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  padding: 24px;
}

.story-card.light .story-media {
  background: var(--surface-soft);
  color: var(--text-dark-soft);
}

.story-copy {
  padding: 32px;
}

.story-copy h2,
.story-copy h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.story-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.story-copy h3 {
  font-size: 1.6rem;
}

.story-copy p {
  margin: 16px 0 0;
  color: var(--text-soft);
}

.story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

/* SEGMENT CARDS */
.segment-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}

.segment-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.segment-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, rgba(216, 27, 96, 0.92) 0%, rgba(216, 27, 96, 0.48) 100%);
}

.segment-card.kids::before {
  background: linear-gradient(90deg, rgba(216, 27, 96, 0.92) 0%, rgba(216, 27, 96, 0.48) 100%);
}

.segment-card.youth::before {
  background: linear-gradient(90deg, rgba(216, 27, 96, 0.92) 0%, rgba(216, 27, 96, 0.48) 100%);
}

.segment-card.adults::before {
  background: linear-gradient(90deg, rgba(216, 27, 96, 0.92) 0%, rgba(216, 27, 96, 0.48) 100%);
}

.segment-card.dark::before {
  background: linear-gradient(90deg, rgba(216, 27, 96, 0.92) 0%, rgba(216, 27, 96, 0.48) 100%);
}

.segment-card h3 {
  margin: 18px 0 10px;
  font-size: 1.45rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.segment-card p {
  margin: 0;
  color: var(--text-soft);
}

.segment-link {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap);
  margin-top: 14px;
  color: #fff;
  font-weight: 800;
}

.section-light .segment-card {
  background: #fff;
  border-color: var(--line-light);
}

.section-light .segment-card p {
  color: var(--text-dark-soft);
}

.section-light .segment-link {
  color: var(--brand-main);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-light .tag {
  background: var(--surface-soft);
  color: var(--text-dark-soft);
}

/* CARDS */
.card-grid {
  display: grid;
  gap: 24px;
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.feature-card,
.offer-card,
.testimonial-card,
.step-card,
.service-card,
.value-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.section-light .card,
.section-light .feature-card,
.section-light .offer-card,
.section-light .testimonial-card,
.section-light .step-card,
.section-light .service-card,
.section-light .value-card {
  background: #fff;
  border-color: var(--line-light);
}

.card h3,
.feature-card h3,
.offer-card h3,
.testimonial-card h3,
.step-card h3,
.service-card h3,
.value-card h3 {
  margin: 18px 0 10px;
  font-size: 1.45rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.card p,
.feature-card p,
.offer-card p,
.testimonial-card p,
.step-card p,
.service-card p,
.value-card p {
  margin: 0;
  color: var(--text-soft);
}

.section-light .card p,
.section-light .feature-card p,
.section-light .offer-card p,
.section-light .testimonial-card p,
.section-light .step-card p,
.section-light .service-card p,
.section-light .value-card p {
  color: var(--text-dark-soft);
}

.offer-card ul,
.service-card ul,
.value-card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.offer-card li,
.service-card li,
.value-card li {
  margin: 10px 0;
  padding-left: 18px;
  position: relative;
  color: var(--text-soft);
}

.section-light .offer-card li,
.section-light .service-card li,
.section-light .value-card li {
  color: var(--text-dark-soft);
}

.offer-card li::before,
.service-card li::before,
.value-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-main);
}

/* TEAM */
.team-wrap {
  position: relative;
}

.team-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.team-controls {
  display: flex;
  gap: 10px;
}

.team-btn {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.team-btn:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.section-light .team-btn {
  background: #fff;
  border-color: var(--line-light);
  color: var(--text-dark);
}

.team-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 320px);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
}

.team-slider::-webkit-scrollbar {
  height: 10px;
}

.team-slider::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.section-light .team-slider::-webkit-scrollbar-thumb {
  background: #d8d1dc;
}

.team-card {
  scroll-snap-align: start;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.section-light .team-card {
  background: #fff;
  border-color: var(--line-light);
}

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #0b0d12;
}

.section-light .team-photo {
  background: var(--surface-soft);
}

.team-body {
  padding: 20px;
}

.team-body h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.1;
}

.team-style {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.95rem;
}

.section-light .team-style {
  color: var(--text-dark-soft);
}

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

.team-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(216, 27, 96, 0.18);
  background: #ffffff;
  color: var(--brand-main);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-light .team-tag {
  border-color: rgba(216, 27, 96, 0.18);
  background: #ffffff;
  color: var(--brand-main);
}

.team-card .team-tag,
.team-dialog .team-tag {
  background: transparent;
  border-color: rgba(216, 27, 96, 0.3);
}

.team-card .team-tag {
  color: var(--brand-soft);
}

.section-light .team-card .team-tag,
.team-dialog .team-tag {
  color: var(--brand-main);
}

.news-category,
.news-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(216, 27, 96, 0.18);
  background: #ffffff;
  color: var(--brand-main);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.news-category.is-highlight,
.news-badge {
  border-color: rgba(216, 27, 96, 0.18);
  background: rgba(216, 27, 96, 0.1);
  color: var(--brand-main);
}

.team-more {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: 14px;
  color: #fff;
  font-weight: 800;
  background: transparent;
  border: 0;
  padding: 0;
}

.section-light .team-more {
  color: var(--text-dark);
}

.team-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.team-modal.active {
  display: block;
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 14, 0.7);
  backdrop-filter: blur(4px);
}

.team-dialog {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 32px));
  max-height: calc(100vh - 48px);
  margin: 24px auto;
  overflow-y: auto;
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow-strong);
}

.team-dialog-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

.team-dialog-media {
  background: var(--surface-soft);
}

.team-dialog-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.team-dialog-copy {
  padding: 42px 36px;
  color: var(--text-dark);
}

.team-dialog-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.team-dialog-label {
  margin: 0 0 10px;
  color: var(--brand-main);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.team-dialog-style {
  margin: 16px 0 0;
  color: var(--brand-main);
  font-weight: 800;
}

.team-dialog-tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.team-dialog-text {
  margin: 24px 0 0;
  color: var(--text-dark-soft);
}

.team-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(22, 25, 35, 0.08);
  font-size: 1.8rem;
  color: var(--text-dark);
}

/* STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card .step-no {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--brand-main);
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
}

/* TESTIMONIALS */
.testimonial-card strong {
  display: block;
  margin-top: 18px;
  color: var(--brand-main);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.faq-item {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.section-light .faq-item {
  background: #fff;
  border-color: var(--line-light);
}

.faq-question {
  width: 100%;
  min-height: var(--tap);
  padding: 18px 20px;
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 800;
  color: inherit;
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--text-soft);
}

.section-light .faq-answer {
  color: var(--text-dark-soft);
}

.faq-item.open .faq-answer {
  display: block;
}

/* FORMS */
.form-panel {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  padding: 34px;
}

.section-light .form-panel {
  background: #fff;
  border-color: var(--line-light);
}

.form-grid {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-size: 0.92rem;
  font-weight: 800;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  min-height: var(--tap);
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
}

.section-light .form-row input,
.section-light .form-row textarea,
.section-light .form-row select {
  background: #fff;
  color: var(--text-dark);
  border-color: var(--line-light);
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: 2px solid transparent;
  border-color: var(--brand-main);
  box-shadow: 0 0 0 3px rgba(216, 27, 96, 0.16);
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.form-error {
  color: #ff8a8a;
  font-size: 0.85rem;
  display: none;
}

.section-light .form-error {
  color: var(--error);
}

.form-row.invalid .form-error {
  display: block;
}

.form-row.invalid input,
.form-row.invalid textarea,
.form-row.invalid select {
  border-color: var(--error);
}

/* FOOTER */
.site-footer {
  background: #0b0d12;
  color: #fff;
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.05fr 1.2fr 0.9fr 0.9fr 1fr;
  align-items: start;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-logo-image {
  height: 42px;
  width: auto;
  display: block;
}

.footer-brand p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.footer-brand-socials {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.footer-brand-socials-title {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.1;
}

.footer-brand-socials-label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
  line-height: 1.35;
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 0.95rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin: 10px 0;
}

.site-footer a,
.site-footer p,
.site-footer span {
  color: rgba(255, 255, 255, 0.76);
  transition: 0.2s ease;
}

.site-footer a:hover {
  color: #fff;
}

.footer-locations {
  display: grid;
  gap: 14px;
}

.footer-location {
  display: grid;
  gap: 4px;
}

.footer-location strong {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.1;
}

.footer-location span,
.footer-location a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.45;
}

.footer-location a:hover {
  color: #fff;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.footer-social-link:hover {
  color: #fff;
  border-color: rgba(216, 27, 96, 0.4);
  background: rgba(216, 27, 96, 0.12);
}

.footer-bottom {
  margin-top: 34px;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.footer-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.footer-bottom-links a:hover {
  color: #fff;
}

.footer-link-button:hover {
  color: #fff;
}

/* COOKIE CONSENT */
.cookie-banner {
  position: fixed;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  transform: translateX(-50%);
  bottom: 24px;
  z-index: 10020;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(216, 27, 96, 0.18), transparent 34%),
    rgba(11, 13, 18, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.cookie-banner-copy h2,
.cookie-modal-header h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.cookie-banner-copy p,
.cookie-modal-header p,
.cookie-option-copy small,
.cookie-modal-note {
  color: rgba(255, 255, 255, 0.78);
}

.cookie-banner-copy p {
  margin: 10px 0 0;
  max-width: 700px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-banner-note a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner-actions,
.cookie-modal-actions {
  display: grid;
  gap: 12px;
}

.cookie-banner-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-self: end;
  min-width: 520px;
}

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

.cookie-btn-equal {
  width: 100%;
}

.cookie-manage-trigger {
  position: fixed;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  left: 24px;
  bottom: 24px;
  z-index: 10018;
  min-height: 46px;
  min-width: 90px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(11, 13, 18, 0.92);
  color: #fff;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.cookie-manage-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cookie-manage-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.cookie-manage-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10021;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(6px);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10022;
  display: grid;
  place-items: center;
  padding: 24px;
}

.cookie-modal-panel {
  width: min(760px, 100%);
  max-height: min(86vh, 860px);
  overflow: auto;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top right, rgba(216, 27, 96, 0.16), transparent 32%),
    rgba(15, 17, 23, 0.98);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.cookie-close {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-weight: 800;
}

.cookie-form {
  display: grid;
  gap: 14px;
  margin: 18px 0 16px;
}

.cookie-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}

.cookie-option.is-locked {
  background: rgba(255, 255, 255, 0.05);
  cursor: default;
}

.cookie-option:focus-visible,
.cookie-option:focus-within {
  outline: 2px solid rgba(216, 27, 96, 0.7);
  outline-offset: 3px;
}

.cookie-option-copy {
  display: grid;
  gap: 6px;
}

.cookie-option-copy strong {
  color: #fff;
  font-size: 1rem;
}

.cookie-option-copy small {
  display: block;
  font-size: 0.88rem;
  line-height: 1.45;
}

.cookie-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 56px;
  min-height: 32px;
}

.cookie-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}

.cookie-toggle span {
  width: 56px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  transition: background 0.2s ease;
  pointer-events: none;
}

.cookie-toggle span::after {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}

.cookie-toggle input:checked + span {
  background: rgba(216, 27, 96, 0.9);
}

.cookie-toggle input:checked + span::after {
  transform: translateX(24px);
}

.cookie-modal-note {
  margin: 16px 0 0;
  font-size: 0.9rem;
}

.cookie-banner[hidden],
.cookie-modal[hidden],
.cookie-modal-backdrop[hidden],
.cookie-manage-trigger[hidden] {
  display: none !important;
}

body.cookie-modal-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    max-width: 100%;
  }
}

@media (max-width: 840px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
  }

  .footer-brand,
  .footer-col-locations {
    grid-column: 1 / -1;
  }

  .footer-locations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
  }
}

@media (max-width: 560px) {
  .site-footer {
    padding-top: 42px;
  }

  .footer-logo-image {
    height: 34px;
  }

  .footer-grid {
    gap: 18px 14px;
  }

  .footer-brand p {
    margin-top: 12px;
    font-size: 0.9rem;
  }

  .footer-col h4 {
    margin-bottom: 10px;
    font-size: 0.9rem;
  }

  .site-footer li {
    margin: 7px 0;
  }

  .site-footer a,
  .site-footer p,
  .site-footer span,
  .footer-location a,
  .footer-location span {
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .footer-location strong {
    font-size: 0.9rem;
  }

  .footer-bottom {
    margin-top: 24px;
    padding: 16px 0 20px;
  }

  .footer-bottom-links {
    flex-direction: row;
    gap: 10px 14px;
  }

  .cookie-manage-trigger {
    left: 16px;
    bottom: 16px;
  }
}

/* RESPONSIVE */
@media (max-width: 1080px) {
  .story-grid,
  .team-dialog-inner {
    grid-template-columns: 1fr;
  }

  .story-card.half,
  .story-card.third,
  .story-card.full {
    grid-column: span 12;
  }

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

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

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

@media (max-width: 840px) {
  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .cookie-manage-trigger,
  body.menu-open [data-cookie-manage],
  body.menu-open .scubany-widget {
    opacity: 0;
    pointer-events: none;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 141;
    flex-shrink: 0;
  }

  .menu-toggle span {
    position: absolute;
    width: 22px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: #fff;
    transform-origin: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-toggle span:nth-child(1) {
    transform: translateY(-6px);
  }

  .menu-toggle span:nth-child(2) {
    transform: translateY(0);
  }

  .menu-toggle span:nth-child(3) {
    transform: translateY(6px);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
  }

  .main-nav {
    display: none;
    position: fixed;
    top: 86px;
    left: 12px;
    right: 12px;
    background: rgba(15, 17, 23, 0.98);
    border: 1px solid var(--line-soft);
    border-radius: 24px;
    padding: 16px;
    box-shadow: var(--shadow-strong);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
    max-height: calc(100dvh - 98px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    z-index: 140;
  }

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

  .main-nav > a:not(.nav-login):not(.nav-pill),
  .nav-dropdown-link,
  .nav-dropdown-toggle {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    justify-content: flex-start;
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .segment-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 10vw, 4.3rem);
  }
}

@media (max-width: 560px) {
  .section {
    padding: 72px 0;
  }

  .hero-content {
    padding: 104px 0 42px;
  }

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

  .btn {
    width: 100%;
  }

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

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

  .team-dialog-copy {
    padding: 28px 22px;
  }

  .team-dialog-media img {
    min-height: 280px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
/* LOGO */
.logo {
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.logo-image {
  height: 48px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.logo-city {
  display: flex;
  align-items: flex-end;
  padding-bottom: 3px;
}

.logo-city span {
  color: var(--text-soft);
  font-size: 0.58rem;
  line-height: 1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.78;
}

/* SEGMENT CARDS WITH IMAGE */
.segment-card-media {
  padding: 0;
  overflow: hidden;
}

.segment-card-image {
  aspect-ratio: 16 / 10;
  background: #0b0d12;
}

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

.segment-card-content {
  padding: 24px 24px 26px;
}

.segment-card-content h3 {
  margin: 16px 0 10px;
  font-size: 1.45rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.segment-card-content p {
  margin: 0;
}

/* NEWS */
.news-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.news-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.news-card-image {
  aspect-ratio: 16 / 10;
  background: var(--surface-soft);
}

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

.news-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-meta {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  margin-bottom: 10px;
}

.news-date {
  margin-left: auto;
  color: var(--text-dark-soft);
  font-size: 0.94rem;
  font-weight: 600;
  white-space: nowrap;
  text-align: right;
}

.news-category {
  order: 1;
}

.news-badge {
  order: 2;
}

.news-date {
  order: 3;
}

.news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 28px;
  margin-bottom: 16px;
}

.news-card-body h3 {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.3rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  min-height: 2.2em;
}

.news-card-body p {
  margin: 14px 0 0;
  color: var(--text-dark-soft);
}

.news-more {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: auto;
  padding-top: 16px;
  color: var(--brand-main);
  font-weight: 800;
}

.news-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  padding: 20px 24px;
  border: 1px solid var(--line-light);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.news-pagination-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.news-pagination-copy strong {
  color: var(--text-dark);
  font-size: 1.02rem;
}

.news-pagination-copy span {
  color: var(--text-dark-soft);
  font-size: 0.96rem;
}

.news-pagination-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* LOGO MOBILE */
@media (max-width: 840px) {
  .logo {
    gap: 10px;
  }

  .logo-image {
    height: 40px;
  }

  .logo-city {
    padding-bottom: 3px;
  }

  .logo-city span {
    font-size: 0.56rem;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 840px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-meta {
    flex-wrap: wrap;
  }

  .news-date {
    width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .news-pagination {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px;
  }

  .news-pagination-actions {
    width: 100%;
  }
}
/* GLOBAL HOVER LIFT */
.segment-card,
.news-card,
.team-card,
.feature-card,
.offer-card,
.service-card,
.value-card,
.step-card,
.schedule-card,
.story-card,
.card,
.testimonial-card,
.faq-item,
.form-panel {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.segment-card:hover,
.news-card:hover,
.team-card:hover,
.feature-card:hover,
.offer-card:hover,
.service-card:hover,
.value-card:hover,
.step-card:hover,
.schedule-card:hover,
.story-card:hover,
.card:hover,
.testimonial-card:hover,
.faq-item:hover,
.form-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

/* jaśniejsze boxy */
.section-light .segment-card:hover,
.section-light .news-card:hover,
.section-light .team-card:hover,
.section-light .feature-card:hover,
.section-light .offer-card:hover,
.section-light .service-card:hover,
.section-light .value-card:hover,
.section-light .step-card:hover,
.section-light .story-card:hover,
.section-light .card:hover,
.section-light .testimonial-card:hover,
.section-light .faq-item:hover,
.section-light .form-panel:hover {
  box-shadow: 0 22px 50px rgba(22, 25, 35, 0.12);
}

/* link na całej karcie aktualności */
.news-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* delikatnie mocniejszy efekt dla klikanych kart */
.segment-card:hover,
.news-card:hover,
.schedule-card:hover {
  border-color: rgba(216, 27, 96, 0.24);
}

.team-card:hover {
  border-color: rgba(216, 27, 96, 0.22);
}

/* mobile: bez hover-lift */
@media (max-width: 840px) {
  .segment-card:hover,
  .news-card:hover,
  .team-card:hover,
  .feature-card:hover,
  .offer-card:hover,
  .service-card:hover,
  .value-card:hover,
  .step-card:hover,
  .schedule-card:hover,
  .story-card:hover,
  .card:hover,
  .testimonial-card:hover,
  .faq-item:hover,
  .form-panel:hover {
    transform: none;
  }
}
/* DODATKOWE WYDARZENIA I USŁUGI */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.extras-card {
  position: relative;
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.extras-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
  border-color: rgba(216, 27, 96, 0.24);
}

.extras-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(10, 12, 18, 0.18) 0%,
      rgba(10, 12, 18, 0.5) 45%,
      rgba(10, 12, 18, 0.82) 100%
    );
}

.extras-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
}

.extras-content .tag {
  align-self: flex-start;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.extras-content h3 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.extras-content p {
  margin: 14px 0 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.86);
}

.extras-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 18px;
  color: #fff;
  font-weight: 800;
}

.extras-link:hover {
  color: var(--brand-soft);
}

/* RESPONSIVE */
@media (max-width: 1080px) {
  .extras-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 560px) {
  .extras-card {
    min-height: 320px;
  }

  .extras-content {
    padding: 22px;
  }

  .extras-content h3 {
    font-size: 1.45rem;
  }
}
/* SCHEDULE */
.schedule-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.schedule-filter {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line-light);
  background: #fff;
  color: var(--text-dark);
  font-weight: 800;
  transition: 0.2s ease;
}

.schedule-filter.active,
.schedule-filter:hover {
  background: var(--brand-main);
  border-color: var(--brand-main);
  color: #fff;
}

.schedule-embed-wrap {
  background: #11141c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.schedule-embed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px 28px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.schedule-embed-label {
  margin: 0 0 8px;
  color: var(--brand-main);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.schedule-embed-header h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.schedule-embed-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.schedule-embed-frame-wrap {
  position: relative;
  background: #0b0e14;
  min-height: 2800px;
}

.schedule-embed-frame-wrap[data-consent-embed] {
  display: grid;
}

.schedule-embed-consent {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(216, 27, 96, 0.16), transparent 38%),
    rgba(11, 14, 20, 0.94);
}

.schedule-embed-consent-card {
  width: min(720px, 100%);
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-strong);
}

.schedule-embed-consent-card h4 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.schedule-embed-consent-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.schedule-embed-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.schedule-embed-frame {
  display: block;
  width: 100%;
  min-height: 2800px;
  border: 0;
  background: #0b0e14;
}

.schedule-embed-frame-wrap[data-consent-embed]:not(.is-active) .schedule-embed-frame {
  visibility: hidden;
}

.schedule-embed-frame-wrap[data-consent-embed].is-active .schedule-embed-consent {
  display: none;
}

.schedule-embed-footer {
  padding: 18px 28px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.schedule-embed-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

/* RESPONSIVE SCHEDULE */
@media (max-width: 840px) {
  .schedule-embed-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .schedule-embed-actions {
    width: 100%;
  }

  .schedule-embed-actions .btn {
    width: 100%;
  }

  .schedule-embed-frame-wrap,
  .schedule-embed-frame {
    min-height: 2600px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    bottom: 16px;
    gap: 14px;
    padding: 16px 18px;
  }

  .cookie-modal {
    padding: 16px;
  }

  .cookie-modal-header {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .cookie-manage-trigger {
    left: 16px;
    bottom: calc(20px + env(safe-area-inset-bottom));
    width: 52px;
    min-width: 52px;
    min-height: 52px;
    padding: 0;
    border-radius: 18px;
  }

  .cookie-manage-label {
    display: none;
  }

  .scubany-widget {
    bottom: calc(20px + env(safe-area-inset-bottom)) !important;
  }

  .schedule-embed-wrap {
    border-radius: 24px;
  }

  .schedule-embed-header {
    padding: 22px 20px 18px;
  }

  .schedule-embed-footer {
    padding: 16px 20px 20px;
  }

  .schedule-embed-frame-wrap,
  .schedule-embed-frame {
    min-height: 2200px;
  }

  .schedule-embed-consent {
    padding: 20px;
  }

  .schedule-embed-consent-card {
    padding: 22px;
    border-radius: 22px;
  }

  .schedule-embed-consent-actions {
    flex-direction: column;
  }

  .schedule-embed-consent-actions .btn {
    width: 100%;
  }

  .cookie-banner-actions,
  .cookie-modal-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 820px) {
  .cookie-banner {
    bottom: 16px;
    gap: 14px;
    padding: 16px 18px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .cookie-banner-copy h2 {
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  }

  .cookie-banner-copy p {
    margin-top: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .cookie-banner-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-width: 500px;
  }

  .cookie-modal-panel {
    max-height: calc(100dvh - 32px);
    padding: 18px;
  }

  .cookie-form {
    gap: 10px;
    margin: 14px 0 12px;
  }

  .cookie-option {
    padding: 12px 14px;
    gap: 14px;
    border-radius: 18px;
  }

  .cookie-modal-note {
    display: none;
  }
}

@media (max-height: 820px) and (max-width: 640px) {
  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-banner-actions {
    grid-template-columns: 1fr;
    min-width: 0;
  }
}

.offer-media-card {
  padding: 0;
  overflow: hidden;
}

.offer-media-card-image {
  aspect-ratio: 16 / 10;
  background: #0b0d12;
}

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

.offer-media-card-body {
  padding: 24px 24px 26px;
}

.offer-media-card-body h3 {
  margin: 0 0 10px;
}

.offer-media-card-body p {
  margin: 0;
}

.offer-media-card-body .btn {
  margin-top: 18px;
}

.summer-card {
  height: 100%;
}

.summer-card .offer-media-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.summer-card .offer-media-card-body h3,
.summer-card .offer-media-card-body p {
  margin: 0;
}

.summer-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.summer-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 700;
}

.section-light .summer-card-meta span {
  background: rgba(216, 27, 96, 0.06);
  border-color: rgba(216, 27, 96, 0.12);
  color: var(--text-dark-soft);
}

.summer-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 4px;
}

.summer-card-actions .btn {
  margin-top: 0;
}

.camp-video-intro {
  max-width: 860px;
  margin: 0 auto 24px;
}

.camp-video-intro h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.camp-video-intro p {
  margin: 16px 0 0;
}

.camp-video-meta {
  justify-content: center;
  margin-top: 18px;
}

.igIcon {
  width: 18px;
  height: 18px;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5zm10 2H7a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3zm-5 4.5A5.5 5.5 0 1 1 6.5 14 5.5 5.5 0 0 1 12 8.5zm0 2A3.5 3.5 0 1 0 15.5 14 3.5 3.5 0 0 0 12 10.5zM18 6.75a1.25 1.25 0 1 1-1.25 1.25A1.25 1.25 0 0 1 18 6.75z"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5zm10 2H7a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3zm-5 4.5A5.5 5.5 0 1 1 6.5 14 5.5 5.5 0 0 1 12 8.5zm0 2A3.5 3.5 0 1 0 15.5 14 3.5 3.5 0 0 0 12 10.5zM18 6.75a1.25 1.25 0 1 1-1.25 1.25A1.25 1.25 0 0 1 18 6.75z"/></svg>') center / contain no-repeat;
}

.igBtn {
  gap: 8px;
}

.ctaStrip {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(239, 68, 68, 0.1));
  border-radius: 22px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.ctaStrip__text b {
  display: block;
  font-size: 1.05rem;
}

.ctaStrip__text p {
  margin: 6px 0 0;
  color: var(--text-soft);
  line-height: 1.5;
}

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

.ctaStrip__actions .btn {
  margin-top: 0;
}

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

.videoCard {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}

.videoWrap {
  position: relative;
}

.video {
  width: 100% !important;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  background: #000;
}

.videoLabel {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 12px;
  backdrop-filter: blur(6px);
}

.ctaStrip--ig {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(239, 68, 68, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.ctaStrip--ig .btn-primary {
  background: linear-gradient(135deg, #8b5cf6, #ef4444);
  border-color: transparent;
}

.camp-video-cta {
  margin-top: 24px;
}

.camp-video-cta .ctaStrip__actions {
  width: min(100%, 690px);
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
}

.camp-video-cta .ctaStrip__text {
  flex: 1 1 0;
  min-width: 0;
}

.camp-video-cta .ctaStrip__actions .btn {
  width: 100%;
  justify-content: center;
  min-height: 62px;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .videoGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .camp-video-cta .ctaStrip__actions {
    width: 100%;
    margin-left: 0;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .videoGrid {
    grid-template-columns: unset;
  }
}
/* OFERTA PAGE */
.offer-sections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.offer-block {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.offer-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
  border-color: rgba(216, 27, 96, 0.24);
}

.offer-block-head {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.offer-block-head .team-tag {
  justify-self: start;
  align-self: start;
  background: transparent;
  color: var(--brand-soft);
  border-color: rgba(216, 27, 96, 0.32);
}

.offer-block-head h3 {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.offer-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.offer-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-main);
}

/* TEAM PAGE */
.team-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-page-grid .team-card {
  display: block;
}

.team-page-grid .team-photo {
  aspect-ratio: 4 / 5;
}

.reception-showcase {
  margin-top: 28px;
  padding: 32px;
  border-radius: 28px;
}

.reception-heading {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.reception-heading h3 {
  margin: 10px 0 12px;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.reception-heading p {
  margin: 0;
  color: var(--text-dark-soft);
}

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

.reception-showcase-dark {
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(216, 27, 96, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(19, 22, 31, 0.98) 0%, rgba(12, 14, 20, 0.98) 100%);
  box-shadow: 0 28px 60px rgba(7, 9, 14, 0.24);
}

.reception-showcase-dark .reception-heading h3,
.reception-showcase-dark .reception-name {
  color: var(--text-main);
}

.reception-showcase-dark .reception-heading p {
  color: var(--text-soft);
}

.reception-showcase-dark .reception-card {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
}

.reception-showcase-light {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 245, 247, 0.96) 100%);
  box-shadow: var(--shadow-soft);
}

.reception-card {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line-light);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.reception-media {
  position: relative;
}

.reception-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.reception-body {
  padding: 16px 18px 18px;
}

.reception-role {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(14, 16, 24, 0.78) 0%, rgba(14, 16, 24, 0.56) 100%);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reception-name {
  color: var(--text-dark);
  font-size: 1.02rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
}

/* RESPONSIVE */
@media (max-width: 1080px) {
  .offer-sections,
  .team-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 840px) {
  .offer-sections,
  .team-page-grid {
    grid-template-columns: 1fr;
  }

  .reception-showcase {
    padding: 24px 18px;
  }

  .reception-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 76vw);
    overflow-x: auto;
    padding: 2px 4px 10px;
    margin: 0 -4px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .reception-grid::-webkit-scrollbar {
    display: none;
  }

  .reception-card {
    scroll-snap-align: start;
  }
}
/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 320px));
  justify-content: center;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(22, 25, 35, 0.12);
  border-color: rgba(216, 27, 96, 0.2);
}

.contact-card h3 {
  margin: 10px 0 8px;
  font-size: 1.35rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.contact-card p {
  margin: 0;
  color: var(--text-dark-soft);
}

/* GENERIC PAGE RESPONSIVE */
@media (max-width: 1080px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 320px));
    justify-content: center;
  }
}

@media (max-width: 840px) {
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

/* MOBILE HORIZONTAL SCROLL SECTIONS */
@media (max-width: 840px) {
  .mobile-rail,
  .story-grid.rail-on-mobile,
  .segment-grid,
  .news-grid,
  .offer-sections,
  .team-page-grid,
  .extras-grid,
  .steps,
  .pricing-cards,
  .contact-grid,
  .videoGrid {
    display: grid !important;
    grid-auto-flow: column;
    grid-auto-columns: min(86vw, 320px);
    grid-template-columns: unset !important;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(216, 27, 96, 0.45) transparent;
  }

  .mobile-rail > *,
  .story-grid.rail-on-mobile > *,
  .segment-grid > *,
  .news-grid > *,
  .offer-sections > *,
  .team-page-grid > *,
  .extras-grid > *,
  .steps > *,
  .pricing-cards > *,
  .contact-grid > *,
  .videoGrid > * {
    min-width: 0;
    scroll-snap-align: start;
  }

  .story-grid.rail-on-mobile {
    grid-auto-columns: min(88vw, 360px);
  }

  .story-grid.rail-on-mobile .story-card {
    grid-column: auto !important;
  }

  .mobile-rail.locations-grid {
    grid-auto-columns: min(88vw, 340px);
    max-width: none !important;
    margin-inline: 0 !important;
  }

  .mobile-rail.community-grid {
    grid-auto-columns: min(86vw, 330px);
  }

  .videoGrid {
    grid-auto-columns: min(76vw, 300px);
    margin-top: 14px;
  }

  /* delikatny oddech po bokach */
  .mobile-rail::after,
  .story-grid.rail-on-mobile::after,
  .segment-grid::after,
  .news-grid::after,
  .offer-sections::after,
  .team-page-grid::after,
  .extras-grid::after,
  .steps::after,
  .pricing-cards::after,
  .contact-grid::after,
  .videoGrid::after {
    content: "";
    width: 2px;
  }

  /* lepsza wysokość kart w mobile */
  .extras-card {
    min-height: 300px;
  }

  .team-page-grid .team-card,
  .news-card,
  .offer-block,
  .pricing-card,
  .contact-card,
  .offer-card,
  .feature-card,
  .value-card,
  .location-card,
  .community-card,
  .service-card,
  .step-card,
  .testimonial-card,
  .segment-card {
    height: 100%;
  }
}

/* Safari / Chrome scrollbar */
@media (max-width: 840px) {
  .mobile-rail::-webkit-scrollbar,
  .story-grid.rail-on-mobile::-webkit-scrollbar,
  .segment-grid::-webkit-scrollbar,
  .news-grid::-webkit-scrollbar,
  .offer-sections::-webkit-scrollbar,
  .team-page-grid::-webkit-scrollbar,
  .extras-grid::-webkit-scrollbar,
  .steps::-webkit-scrollbar,
  .pricing-cards::-webkit-scrollbar,
  .contact-grid::-webkit-scrollbar,
  .videoGrid::-webkit-scrollbar,
  .schedule-filters::-webkit-scrollbar,
  .pricing-tabs::-webkit-scrollbar {
    height: 8px;
  }

  .mobile-rail::-webkit-scrollbar-track,
  .story-grid.rail-on-mobile::-webkit-scrollbar-track,
  .segment-grid::-webkit-scrollbar-track,
  .news-grid::-webkit-scrollbar-track,
  .offer-sections::-webkit-scrollbar-track,
  .team-page-grid::-webkit-scrollbar-track,
  .extras-grid::-webkit-scrollbar-track,
  .steps::-webkit-scrollbar-track,
  .pricing-cards::-webkit-scrollbar-track,
  .contact-grid::-webkit-scrollbar-track,
  .videoGrid::-webkit-scrollbar-track,
  .schedule-filters::-webkit-scrollbar-track,
  .pricing-tabs::-webkit-scrollbar-track {
    background: transparent;
  }

  .mobile-rail::-webkit-scrollbar-thumb,
  .story-grid.rail-on-mobile::-webkit-scrollbar-thumb,
  .segment-grid::-webkit-scrollbar-thumb,
  .news-grid::-webkit-scrollbar-thumb,
  .offer-sections::-webkit-scrollbar-thumb,
  .team-page-grid::-webkit-scrollbar-thumb,
  .extras-grid::-webkit-scrollbar-thumb,
  .steps::-webkit-scrollbar-thumb,
  .pricing-cards::-webkit-scrollbar-thumb,
  .contact-grid::-webkit-scrollbar-thumb,
  .videoGrid::-webkit-scrollbar-thumb,
  .schedule-filters::-webkit-scrollbar-thumb,
  .pricing-tabs::-webkit-scrollbar-thumb {
    background: rgba(216, 27, 96, 0.38);
    border-radius: 999px;
  }
}

@media (max-width: 840px) {
  .schedule-filters,
  .pricing-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(216, 27, 96, 0.45) transparent;
  }

  .schedule-filter,
  .pricing-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .contact-grid {
    max-width: none;
    justify-content: initial;
  }

  .pricing-cards {
    gap: 16px;
  }

  .pricing-card,
  .contact-card {
    height: 100%;
  }
}
@media (max-width: 840px) {
  .form-panel .card-grid {
    display: grid !important;
    grid-auto-flow: row !important;
    grid-auto-columns: unset !important;
    grid-template-columns: 1fr !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
    scroll-snap-type: none !important;
    padding-bottom: 0 !important;
  }

  .form-panel .card-grid > * {
    scroll-snap-align: unset !important;
    min-width: 0 !important;
  }

  .form-panel .card-grid::after {
    content: none !important;
  }
}
/* NAV DROPDOWN */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
}

.nav-dropdown {
  position: relative;
  flex-shrink: 0;
}

.nav-dropdown-toggle {
  min-height: var(--tap);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  transition: 0.2s ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  color: #fff;
}

.nav-dropdown-mobile-toggle {
  display: none;
}

.nav-caret {
  font-size: 0.8rem;
  line-height: 1;
  transform: translateY(-1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  padding: 10px;
  border-radius: 20px;
  background: rgba(15, 17, 23, 0.98);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-strong);
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 120;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-menu a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 14px;
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 700;
  transition: 0.2s ease;
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

@media (max-width: 1280px) and (min-width: 841px) {
  .site-header .container {
    width: min(1400px, calc(100% - 20px));
  }

  .header-inner {
    gap: 12px;
  }

  .main-nav {
    gap: 11px;
  }

  .main-nav a,
  .nav-dropdown-toggle {
    font-size: 0.87rem;
  }

  .nav-login {
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .nav-pill {
    padding: 0 14px;
  }
}

/* LOGIN BUTTON */
.nav-login {
  min-height: var(--tap);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.04);
  color: #fff !important;
  font-size: 0.89rem;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
  transition: 0.2s ease;
}

.nav-login:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.landing-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.landing-proof-card .story-media {
  min-height: 0;
  padding: 0;
  aspect-ratio: 16 / 10;
}

.landing-proof-card .story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* MOBILE NAV */
@media (max-width: 840px) {
  .main-nav {
    display: none;
    position: fixed;
    top: 86px;
    left: 12px;
    right: 12px;
    background: rgba(15, 17, 23, 0.98);
    border: 1px solid var(--line-soft);
    border-radius: 24px;
    padding: 16px;
    box-shadow: var(--shadow-strong);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
    max-height: calc(100dvh - 98px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    z-index: 140;
  }

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

  .nav-dropdown {
    width: 100%;
  }

  .main-nav > a:not(.nav-login):not(.nav-pill),
  .nav-dropdown-link,
  .nav-dropdown-toggle {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 100%;
    margin-top: 10px;
    padding: 8px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: none;
  }

  .nav-dropdown-menu a {
    width: 100%;
  }

  .nav-login,
  .nav-pill {
    width: 100%;
    justify-content: center;
  }

  .landing-header .header-inner {
    min-height: auto;
    padding: 14px 0;
    flex-direction: column;
    align-items: stretch;
  }

  .landing-header-actions {
    margin-left: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .landing-proof-card .story-media {
    aspect-ratio: 4 / 3;
  }
}

/* CENNIK */
.pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  margin-bottom: 30px;
}

.pricing-tab {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line-light);
  background: #fff;
  color: var(--text-dark);
  font-weight: 800;
  transition: 0.2s ease;
}

.pricing-tab.active,
.pricing-tab:hover {
  background: var(--brand-main);
  border-color: var(--brand-main);
  color: #fff;
}

.pricing-panel {
  display: none;
}

.pricing-panel.active {
  display: block;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(22, 25, 35, 0.12);
  border-color: rgba(216, 27, 96, 0.22);
}

.pricing-card-featured {
  border: 2px solid var(--brand-main);
}

.pricing-card-label {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(216, 27, 96, 0.12);
  color: var(--brand-main);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-card-top {
  display: grid;
  gap: 10px;
}

.pricing-card-badge {
  color: var(--brand-main);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pricing-card h3 {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.8rem;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.pricing-price-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.pricing-price-row strong {
  color: var(--text-dark);
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.pricing-price-row span {
  color: var(--text-dark-soft);
  font-size: 1rem;
  padding-bottom: 7px;
}

.pricing-divider {
  height: 1px;
  margin: 24px 0 20px;
  background: var(--line-light);
}

.pricing-meta-title {
  margin-bottom: 14px;
  color: var(--text-dark-soft);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pricing-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing-list li {
  position: relative;
  margin: 14px 0;
  padding-left: 22px;
  color: var(--text-dark-soft);
}

.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-main);
  font-weight: 900;
}

.pricing-actions {
  margin-top: 26px;
}

.pricing-actions .btn {
  width: 100%;
}

/* ZNIŻKI */
.discount-list {
  display: grid;
  gap: 14px;
}

.discount-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  border-radius: 24px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.discount-value {
  color: var(--brand-main);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.discount-copy h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  line-height: 1.08;
}

.discount-copy p {
  margin: 0;
  color: var(--text-soft);
}

.pricing-card,
.discount-row,
.sport-card-chip,
.pricing-fact-card {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.pricing-card:hover,
.discount-row:hover,
.sport-card-chip:hover,
.pricing-fact-card:hover {
  transform: translateY(-6px);
}

.pricing-card:hover {
  box-shadow: 0 22px 50px rgba(22, 25, 35, 0.12);
}

.discount-row:hover {
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
  border-color: rgba(216, 27, 96, 0.24);
}

.sport-card-chip:hover {
  box-shadow: 0 18px 36px rgba(22, 25, 35, 0.12);
  border-color: rgba(216, 27, 96, 0.24);
}

.pricing-fact-card:hover {
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
  border-color: rgba(216, 27, 96, 0.24);
}

@media (max-width: 840px) {
  .pricing-card:hover,
  .discount-row:hover,
  .sport-card-chip:hover,
  .pricing-fact-card:hover {
    transform: none;
  }
}

/* KARTY SPORTOWE */
.pricing-cards-section {
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.pricing-sport-cards-head {
  text-align: center;
  margin-bottom: 26px;
}

.pricing-sport-cards-head h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.sport-cards-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.sport-card-chip {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line-light);
  color: var(--text-dark);
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(22, 25, 35, 0.06);
}

.sport-cards-note {
  margin: 22px 0 0;
  text-align: center;
  color: var(--text-dark-soft);
}

.sport-cards-note a {
  color: var(--brand-main);
  font-weight: 800;
}

/* ABOUT PAGE */
.about-hero .hero-copy h1 span {
  display: block;
  color: var(--brand-main);
  font-style: italic;
}

.about-stats-strip {
  padding-top: 44px;
  padding-bottom: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.about-stat strong {
  display: block;
  color: var(--brand-main);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.about-stat span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.about-story-copy {
  display: grid;
  gap: 24px;
}

.about-story-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.08rem;
  max-width: 920px;
}

.about-manifest-section {
  padding-top: 110px;
  padding-bottom: 110px;
}

.about-manifest {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.about-manifest blockquote {
  margin: 0;
  color: var(--brand-main);
  font-size: clamp(2.4rem, 5vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.about-manifest p {
  margin: 26px 0 0;
  color: var(--text-dark-soft);
  font-size: 1.04rem;
}

.about-som-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-som-chip {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-weight: 700;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.about-som-chip:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 27, 96, 0.24);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.about-timeline-section .section-heading {
  margin-bottom: 36px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.about-timeline {
  position: relative;
  display: grid;
  gap: 34px;
  max-width: 980px;
  margin: 0 auto;
  padding-left: 0;
}

.about-timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  align-items: start;
}

.timeline-dot {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #171922;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--brand-main);
  font-weight: 900;
  box-shadow: 0 0 0 8px var(--bg-panel);
}

.timeline-content {
  padding-top: 2px;
}

.timeline-year {
  display: inline-block;
  color: var(--brand-main);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}

.timeline-content h3 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.timeline-content p {
  margin: 12px 0 0;
  color: var(--text-soft);
  max-width: 760px;
}

.about-final-cta {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  padding: 22px 0;
}

.about-final-cta h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.about-final-cta h2 span {
  display: block;
  color: var(--brand-main);
  font-style: italic;
}

.about-final-cta p {
  margin: 20px auto 0;
  max-width: 680px;
  color: var(--text-soft);
  font-size: 1.02rem;
}

.about-final-cta .hero-actions {
  justify-content: center;
  margin-top: 28px;
}

@media (max-width: 1080px) {
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 840px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-timeline {
    padding-left: 0;
  }

  .about-timeline::before {
    left: 16px;
  }

  .timeline-item {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .timeline-dot {
    width: 40px;
    height: 40px;
    box-shadow: 0 0 0 6px var(--bg-panel);
  }
}

@media (max-width: 560px) {
  .about-stats {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-manifest blockquote {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .timeline-content h3 {
    font-size: 1.45rem;
  }

  .about-final-cta h2 {
  font-size: clamp(2.2rem, 10vw, 3.4rem);
}
}
.about-doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.about-doc-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(22, 25, 35, 0.06);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.about-doc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(22, 25, 35, 0.12);
  border-color: rgba(216, 27, 96, 0.22);
}

.about-doc-card strong {
  display: block;
  color: var(--text-dark);
  font-size: 1.15rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.about-doc-card span {
  display: block;
  margin-top: 12px;
  color: var(--text-dark-soft);
}

@media (max-width: 840px) {
  .about-doc-grid {
    grid-template-columns: 1fr;
  }

  .about-doc-card:hover {
    transform: none;
  }
}
/* LOKALIZACJE */
.locations-section {
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.location-card {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 14px 30px rgba(22, 25, 35, 0.08);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(22, 25, 35, 0.12);
  border-color: rgba(216, 27, 96, 0.2);
}

.location-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(216, 27, 96, 0.1);
  color: var(--brand-main);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.location-card h3 {
  margin: 22px 0 14px;
  color: var(--text-dark);
  font-size: 1.9rem;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.location-address {
  margin: 0;
  color: var(--text-dark-soft);
  font-size: 1.05rem;
}

.location-hours {
  margin-top: 22px;
  color: var(--text-dark);
  font-size: 1.02rem;
  line-height: 1.7;
}

.location-phone {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 24px;
  color: var(--brand-main);
  font-size: 1.2rem;
  font-weight: 800;
}

/* SPOŁECZNOŚĆ / WYDARZENIA */
.community-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.community-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.community-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
  border-color: rgba(216, 27, 96, 0.24);
}

.community-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(216, 27, 96, 0.12);
  color: var(--brand-main);
  font-size: 1.6rem;
}

.community-label {
  display: inline-block;
  margin-top: 22px;
  color: var(--brand-main);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.community-card h3 {
  margin: 14px 0 12px;
  font-size: 1.75rem;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.community-card p {
  margin: 0;
  color: var(--text-soft);
}

.community-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: auto;
  padding-top: 18px;
  color: #fff;
  font-weight: 800;
  transition: color 0.2s ease;
}

.section-light .community-link {
  color: var(--brand-main);
}

.community-link:hover {
  color: var(--brand-soft);
}

/* RESPONSIVE */
@media (max-width: 1080px) {
  .locations-grid,
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 840px) {
  .locations-grid,
  .community-grid {
    grid-template-columns: 1fr;
  }

  .location-card:hover,
  .community-card:hover {
    transform: none;
  }
}

.about-final-cta p {
  color: var(--text-dark-soft);
}

.story-card.light .about-final-cta p {
  color: var(--text-dark-soft);
}
.story-card.light .about-final-cta h2 {
  color: var(--text-dark);
}

.story-card.light .about-final-cta h2 span {
  color: var(--brand-main);
}

.story-card.light .about-final-cta p {
  color: var(--text-dark-soft);
}
/* LEGAL PAGES */
.legal-hero {
  border-bottom: 1px solid var(--line);
}

.legal-hero .hero-copy {
  max-width: 860px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 110px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.legal-sidebar h3 {
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.1;
}

.legal-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.legal-sidebar li + li {
  margin-top: 10px;
}

.legal-sidebar a {
  color: var(--text-soft);
  font-weight: 700;
  transition: 0.2s ease;
}

.legal-sidebar a:hover {
  color: #fff;
}

.legal-content {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

.legal-content h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.legal-content h3 {
  margin: 26px 0 10px;
  font-size: 1.16rem;
  line-height: 1.1;
}

.legal-content p,
.legal-content li {
  color: var(--text-soft);
}

.legal-content ul,
.legal-content ol {
  padding-left: 20px;
}

.legal-content section + section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(216, 27, 96, 0.08);
  border: 1px solid rgba(216, 27, 96, 0.18);
  color: var(--text-main);
}

.legal-meta {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 0.94rem;
}

@media (max-width: 1080px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }
}

@media (max-width: 560px) {
  .legal-content,
  .legal-sidebar {
    padding: 24px 20px;
  }
}

.form-note p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.form-note a {
  color: var(--brand-main);
  font-weight: 700;
}
.form-row select {
  width: 100%;
  min-height: var(--tap);
  padding: 14px 44px 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line-soft);
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: none;
}

.form-row select:focus {
  outline: 2px solid transparent;
  border-color: var(--brand-main);
  box-shadow: 0 0 0 3px rgba(216, 27, 96, 0.16);
}

.form-row select option {
  color: #111;
  background: #fff;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.form-row select:invalid {
  color: rgba(255, 255, 255, 0.72);
}

.form-row {
  position: relative;
}

.form-row select {
  background-image: linear-gradient(45deg, transparent 50%, var(--text-soft) 50%),
    linear-gradient(135deg, var(--text-soft) 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(50% - 2px),
    calc(100% - 16px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-row input,
.form-row select,
.form-row textarea {
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  margin-top: 14px;
  min-height: 24px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-status.is-success {
  color: #7ee787;
}

.form-status.is-error {
  color: #ff8f8f;
}

/* SINGLE NEWS PAGE */
.news-meta-section {
  padding-top: 34px;
  padding-bottom: 34px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.news-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.news-post-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
  gap: 36px;
  align-items: start;
}

.news-post-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.news-post-copy p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 16px;
}

.news-post-date {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 18px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.news-post-aside {
  display: flex;
  justify-content: flex-end;
}

.news-post-image-card {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.02);
}

.news-post-image-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.news-post-content {
  display: grid;
  gap: 18px;
}

.news-post-content h2,
.news-post-content h3 {
  margin: 0;
  color: #111;
}

.news-post-copy h2 {
  margin: 0;
  color: #fff;
}

.news-post-content p,
.news-post-content li {
  color: rgba(17, 17, 17, 0.82);
}

.news-post-content ul {
  margin: 0;
  padding-left: 20px;
}

.news-post-copy .eyebrow,
.news-post-content .eyebrow {
  color: var(--brand-main);
}

.news-mini-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.news-mini-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
  border-color: rgba(216, 27, 96, 0.24);
}

.news-mini-card a {
  display: block;
}

.news-mini-card h3 {
  margin: 12px 0 0;
  font-size: 1.3rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

@media (max-width: 980px) {
  .news-post-intro {
    grid-template-columns: 1fr;
  }

  .news-post-aside {
    justify-content: flex-start;
  }

  .news-post-date {
    margin-bottom: 16px;
  }
}

@media (max-width: 840px) {
  .news-mini-card:hover {
    transform: none;
  }
}

.team-card {
  cursor: pointer;
}
