/* ═══════════════════════════════════════
   BONDERUP! LIVE — Premium Landing Page
   Palette: Navy · Warm White · Soft Gold
═══════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────── */
:root {
  --navy:        #0f1e38;
  --navy-mid:    #1a3055;
  --navy-light:  #243d62;
  --gold:        #c9a84c;
  --gold-light:  #e2c97e;
  --gold-faint:  rgba(201,168,76,.12);
  --cream:       #faf8f3;
  --cream-2:     #f3f0e9;
  --white:       #ffffff;
  --text-dark:   #0f1e38;
  --text-mid:    #3a4a60;
  --text-light:  #7a8ca0;
  --text-inv:    rgba(255,255,255,.88);
  --text-inv-dim:rgba(255,255,255,.5);

  /* aliasy dla kompatybilności wstecznej */
  --warm-white:  #faf8f3;   /* = --cream */
  --text-main:   #0f1e38;   /* = --text-dark */

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --radius:      2px;
  --radius-md:   6px;       /* alias dla --radius-lg */
  --radius-lg:   6px;
  --trans:       all .35s cubic-bezier(.4,0,.2,1);
  --trans-slow:  all .65s cubic-bezier(.4,0,.2,1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ─── TYPOGRAPHY ─────────────────────── */
.section__label {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 2.5rem;
}

/* Ciemne sekcje – granatowe tło + białe teksty */
.dark-section {
  background: var(--navy);
}

.dark-section .section__title,
.dark-section .section__label {
  color: var(--white);
}

.dark-section .section__label {
  color: var(--gold-light);
}

.text--accent { color: var(--gold); }

/* ─── LAYOUT ─────────────────────────── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 760px;
}

.container--split {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.section {
  padding: 7rem 0;
}

/* ─── BUTTONS ────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .9rem 2.2rem;
  border-radius: var(--radius);
  transition: var(--trans);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.3);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--small {
  padding: .55rem 1.4rem;
  font-size: .78rem;
}

.btn--large {
  padding: 1.1rem 3rem;
  font-size: .9rem;
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.25);
}


/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 2rem;
  transition: var(--trans);
}

.nav.scrolled {
  background: rgba(15,30,56,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 2rem;
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}

.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .15em;
}

.nav__logo-bond { color: var(--white); }
.nav__logo-up   { color: var(--gold); }

.nav__cta {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}

.nav__cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}


/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--navy);
  padding: 7rem 2rem 5rem;
  overflow: hidden;
}

/* subtle geometric texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(26,48,85,.6) 0%, transparent 70%);
  pointer-events: none;
}

/* grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,30,56,1) 0%, rgba(15,30,56,.75) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.hero__eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 9vw, 7.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  letter-spacing: -.01em;
  margin-bottom: 2rem;
}

.hero__title--accent {
  color: var(--gold);
  font-weight: 600;
}

.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.7);
}

.hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.5;
  margin-bottom: 2rem;
}

.hero__desc {
  font-size: 1rem;
  color: var(--text-inv);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero__meta {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__meta-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  color: var(--text-inv-dim);
  letter-spacing: .04em;
}

.hero__meta-item i {
  color: var(--gold);
  font-size: .9rem;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll span {
  display: block;
  width: 1.5px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}


/* ═══════════════════════════════════════
   EVENT GALLERY – Poprzednie edycje
═══════════════════════════════════════ */
.event-gallery {
  background: var(--navy);
}

.event-gallery .section__label,
.event-gallery .section__title {
  color: var(--warm-white, #faf8f3);
}

.event-gallery .section__label {
  color: var(--gold-light);
}

.event-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-top: 2.4rem;
}

@media (max-width: 900px) {
  .event-gallery__grid { grid-template-columns: repeat(3, 1fr); }
}

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

.event-gallery__item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.12);
}

.event-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.event-gallery__item:hover img {
  transform: scale(1.06);
}

.event-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(to top, rgba(15,30,56,.8), transparent);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: rgba(255,255,255,.82);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

/* Placeholder – gdy brak zdjęcia pokazuje kratki */
.event-gallery__item--placeholder {
  background: repeating-linear-gradient(
    45deg,
    rgba(201,168,76,.04),
    rgba(201,168,76,.04) 6px,
    rgba(255,255,255,.02) 6px,
    rgba(255,255,255,.02) 12px
  );
  border: 1px dashed rgba(201,168,76,.25);
}

.event-gallery__item--placeholder img {
  opacity: 0;  /* ukryj broken-image gdy brak pliku */
}

.event-gallery__item--placeholder .event-gallery__caption {
  background: none;
  bottom: 50%;
  transform: translateY(50%);
  text-align: center;
  color: rgba(201,168,76,.5);
  font-style: italic;
  font-size: 0.72rem;
}

/* ═══════════════════════════════════════
   FOR WHOM
═══════════════════════════════════════ */
.for-whom {
  background: var(--cream);
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 620px;
}

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.checklist__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .1rem;
}

.checklist__icon i {
  font-size: .6rem;
  color: var(--gold);
}

.checklist__item strong {
  color: var(--text-dark);
  font-weight: 500;
}


/* ═══════════════════════════════════════
   AGENDA / STEPS
═══════════════════════════════════════ */
.agenda {
  background: var(--navy);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 3rem;
  position: relative;
}

/* vertical line */
.steps::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,.1));
}

.step {
  display: flex;
  gap: 2.5rem;
  padding: 2rem 0;
  position: relative;
}

.step:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.step__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold);
  background: var(--navy);
  position: relative;
  z-index: 1;
}

.step__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .6rem;
}

.step__desc {
  font-size: .93rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}

.agenda__note {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: 1.4rem 1.8rem;
  border: 1px solid var(--gold-faint);
  border-left: 3px solid var(--gold);
  background: rgba(201,168,76,.05);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
}

.agenda__note i {
  color: var(--gold);
  margin-top: .15rem;
  flex-shrink: 0;
}

/* Gospodarz warsztatów */
.agenda__host {
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
  margin-top: 1.5rem;
  padding: 2rem 2.2rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: var(--trans);
}

.agenda__host::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 0% 50%, rgba(201,168,76,.06) 0%, transparent 70%);
  pointer-events: none;
}

.agenda__host:hover {
  border-color: rgba(201,168,76,.5);
  background: rgba(255,255,255,.06);
}

.agenda__host-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--gold-faint);
  border: 1.5px solid rgba(201,168,76,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

/* Avatar ze zdjęciem – kółko jak w social media */
.agenda__host-avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2.5px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,.15), 0 4px 20px rgba(0,0,0,.3);
  overflow: hidden;
  position: relative;
  z-index: 1;
  align-self: center;
}

.agenda__host-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.agenda__host-body {
  position: relative;
  z-index: 1;
}

.agenda__host-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .35rem;
}

.agenda__host-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .6rem;
  line-height: 1.2;
}

.agenda__host-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
}

.info__value small {
  font-size: .72rem;
  font-family: var(--font-sans);
  color: var(--text-light);
  display: block;
  margin-top: .25rem;
}

.info__value small.strikethrough {
  text-decoration: line-through;
  text-decoration-color: rgba(200,50,50,.5);
}

.info__promo-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #c2410c;
  background: rgba(194,65,12,.08);
  border: 1px solid rgba(194,65,12,.2);
  border-radius: 20px;
  padding: .2rem .65rem;
  margin-top: .4rem;
  margin-left: .1rem;
  vertical-align: middle;
}
.info__promo-tag i { font-size: .6rem; }

@media (max-width: 560px) {
  .agenda__host {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }
}


/* ═══════════════════════════════════════
   INCLUDES – CO ZAWIERA BILET
═══════════════════════════════════════ */
.includes {
  background: var(--cream-2);
}

.includes__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: start;
}

/* ── Lista zawartości ── */
.includes__list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: .5rem;
}

.includes__list li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.includes__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--gold-faint);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .85rem;
  margin-top: .1rem;
}

.includes__list strong {
  display: block;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .2rem;
}

.includes__list p {
  font-size: .84rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── Karta cenowa ── */
.includes__price-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 2.5rem 2.2rem;
  position: sticky;
  top: 100px;
  border: 1px solid rgba(201,168,76,.2);
  box-shadow: 0 12px 40px rgba(15,30,56,.15);
}

.includes__price-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.includes__price-row {
  display: flex;
  align-items: baseline;
  gap: .3rem;
  margin-bottom: .4rem;
}

.includes__price-from {
  font-size: 1rem;
  color: rgba(255,255,255,.5);
  font-weight: 300;
}

.includes__price-amount {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.includes__price-currency {
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(255,255,255,.7);
}

.includes__price-sub {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  margin-bottom: .8rem;
}

.includes__promo-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fb923c;
  background: rgba(251,146,60,.1);
  border: 1px solid rgba(251,146,60,.25);
  border-radius: 20px;
  padding: .25rem .75rem;
  margin-bottom: .3rem;
}

.includes__promo-note {
  font-size: .72rem;
  color: rgba(255,255,255,.25);
  text-decoration: line-through;
  text-decoration-color: rgba(255,100,100,.4);
  margin-bottom: 1.5rem;
}

/* Opcje Solo/Para/Family */
.includes__options {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 2rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.includes__option {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.includes__option-name {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
}

.includes__option-price {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold-light);
}

.includes__cta {
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
}

/* Lista w karcie po prawej */
.includes__card-list {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin: 1.2rem 0 2rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.includes__card-list li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}

.includes__card-list i {
  color: var(--gold);
  font-size: .7rem;
  margin-top: .3rem;
  flex-shrink: 0;
}

.includes__cta-note {
  text-align: center;
  font-size: .72rem;
  color: rgba(255,255,255,.25);
  line-height: 1.6;
  letter-spacing: .03em;
}

@media (max-width: 900px) {
  .includes__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .includes__price-card {
    position: static;
  }
}


/* ═══════════════════════════════════════
   ABOUT BONDERUP
═══════════════════════════════════════ */
.about {
  background: var(--cream-2);
}

.about__lead {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 1.4rem;
}

.about__text {
  font-size: .97rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.about__pillars {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.pillar {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .8rem 1.2rem;
  border: 1px solid var(--cream-2);
  background: var(--cream);
  border-radius: var(--radius-lg);
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-dark);
  box-shadow: 0 2px 12px rgba(15,30,56,.06);
  transition: var(--trans);
}

.pillar:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,.15);
  transform: translateY(-2px);
}

.pillar__icon {
  width: 36px;
  height: 36px;
  background: var(--gold-faint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .85rem;
}

.about__note {
  font-size: .88rem;
  color: var(--text-light);
  font-style: italic;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15,30,56,.08);
}

@media (max-width: 768px) {
  .container--split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}


/* ═══════════════════════════════════════
   VALUES / MAPA WARTOŚCI
═══════════════════════════════════════ */
.values {
  background: var(--navy-mid);
  text-align: center;
}

.values__intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.values__intro strong {
  color: var(--gold-light);
  font-weight: 500;
}

.values__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.value-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: var(--trans);
}

.value-card:hover {
  background: rgba(201,168,76,.08);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.value-card__number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 1rem;
}

.value-card p {
  font-size: .93rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}

.values__outro {
  font-size: .95rem;
  color: rgba(255,255,255,.45);
  font-style: italic;
}

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


/* ═══════════════════════════════════════
   INFO / REGISTRATION
═══════════════════════════════════════ */
.info {
  background: var(--cream);
}

.info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}

.info__card {
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(15,30,56,.07);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(15,30,56,.05);
  transition: var(--trans);
}

.info__card:hover {
  box-shadow: 0 6px 28px rgba(15,30,56,.1);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.info__icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.info__label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .4rem;
}

.info__value {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.4;
}

.info__value small {
  font-size: .75rem;
  font-family: var(--font-sans);
  color: var(--text-light);
  display: block;
  margin-top: .3rem;
}

.info__cta {
  text-align: center;
}

.info__cta-sub {
  margin-top: 1rem;
  font-size: .83rem;
  color: var(--text-light);
  letter-spacing: .03em;
}

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

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


/* ═══════════════════════════════════════
   FAQ / ACCORDION
═══════════════════════════════════════ */
.faq {
  background: var(--cream-2);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.accordion__item {
  background: var(--white);
  border: 1px solid rgba(15,30,56,.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans);
}

.accordion__item.open {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,.1);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-dark);
  text-align: left;
  gap: 1rem;
  transition: var(--trans);
}

.accordion__trigger:hover {
  color: var(--gold);
}

.accordion__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(15,30,56,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .65rem;
  transition: var(--trans);
}

.accordion__item.open .accordion__icon {
  transform: rotate(45deg);
  border-color: var(--gold);
  background: var(--gold-faint);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease;
}

.accordion__body p {
  padding: 0 1.8rem 1.6rem;
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.8;
}


/* ═══════════════════════════════════════
   VIDEO CONFESSION
═══════════════════════════════════════ */
.video-confession {
  background: var(--navy);
  text-align: center;
}

.video-confession__intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  line-height: 1.85;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Bolączki (4 ikony przed filmem) ── */
.video-confession__pains {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 680px;
  margin: 2.5rem auto;
  text-align: left;
}

.video-pain {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  transition: border-color .3s, background .3s;
}

.video-pain:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,168,76,.35);
}

.video-pain i {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: .15rem;
}

.video-pain span {
  font-family: var(--font-sans);
  font-size: .875rem;
  line-height: 1.55;
  color: rgba(255,255,255,.75);
}

@media (max-width: 600px) {
  .video-confession__pains {
    grid-template-columns: 1fr;
  }
}

/* ── Player poziomy 16:9 ── */
.video-confession__player {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}

.video-confession__frame {
  position: relative;
  width: 100%;
  max-width: 780px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(201,168,76,.25),
    0 24px 60px rgba(0,0,0,.5);
}

.video-confession__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Kontekst historyczny (po filmie) ── */
.video-confession__context {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  text-align: left;
}

.video-context__block {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 10px;
  padding: 1.3rem 1.6rem;
}

.video-context__icon {
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: .1rem;
  width: 2rem;
  text-align: center;
}

.video-context__block strong {
  display: block;
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .04em;
  margin-bottom: .4rem;
}

.video-context__block p {
  font-family: var(--font-sans);
  font-size: .875rem;
  line-height: 1.65;
  color: rgba(255,255,255,.6);
  margin: 0;
}

.video-context__block em {
  color: rgba(255,255,255,.85);
  font-style: italic;
}

.video-confession__outro {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .video-confession__frame {
    border-radius: 8px;
  }
}


/* ═══════════════════════════════════════
   FLIP COUNTDOWN
═══════════════════════════════════════ */
.hero__countdown {
  margin-top: 2.4rem;
}

.hero__countdown-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 0.9rem;
}

.countdown__track {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.countdown__lbl {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

.countdown__sep {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  padding-top: 0.1rem;
  opacity: .7;
}

/* — flip card — */
.flip-card {
  position: relative;
  width: 68px;
  height: 72px;
  perspective: 400px;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--warm-white);
}

.flip-card__top,
.flip-card__bottom,
.flip-card__back-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50%;
  overflow: hidden;
  background: rgba(255,255,255,.08);
  border-radius: 6px 6px 0 0;
  backface-visibility: hidden;
  letter-spacing: 0.04em;
}

.flip-card__bottom {
  border-radius: 0 0 6px 6px;
  align-items: flex-start;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* back half that flips */
.flip-card__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  transform-origin: bottom center;
  transform: rotateX(0deg);
  z-index: 10;
}

.flip-card__back-top {
  height: 100%;
  border-radius: 6px 6px 0 0;
  background: rgba(201,168,76,.18);
  color: var(--gold);
}

/* animate flip */
.flip-card.flip .flip-card__back {
  animation: flipDown 0.5s ease-in-out forwards;
}

@keyframes flipDown {
  0%   { transform: rotateX(0deg); }
  100% { transform: rotateX(-90deg); }
}

.countdown__ended {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  padding: 1rem 0;
}

/* ═══════════════════════════════════════
   TESTIMONIALS / OPINIE
═══════════════════════════════════════ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}

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

/* ── Jasna wersja (opinie-1, opinie-3) ── */
.testimonial {
  background: var(--white);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: 12px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.4rem;
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(201,168,76,.15);
  pointer-events: none;
}

.testimonial:hover {
  border-color: rgba(201,168,76,.4);
  box-shadow: 0 10px 32px rgba(15,30,56,.08);
  transform: translateY(-3px);
}

/* ── Gwiazdki ── */
.testimonial__stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.testimonial__quote {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  font-style: italic;
  line-height: 1.65;
  color: var(--text-dark);
  flex: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(201,168,76,.12);
}

/* ── Awatar z inicjałem ── */
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid rgba(201,168,76,.25);
}

.testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial__name {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.testimonial__role {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.1rem;
}

/* ── Ciemna wersja (opinie-2 na granatowym tle) ── */
.testimonials--dark .testimonial,
.testimonial--dark {
  background: rgba(255,255,255,.05);
  border-color: rgba(201,168,76,.2);
}

.testimonials--dark .testimonial:hover,
.testimonial--dark:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(201,168,76,.4);
  box-shadow: 0 10px 32px rgba(0,0,0,.2);
}

.testimonials--dark .testimonial__quote,
.testimonial--dark .testimonial__quote {
  color: rgba(255,255,255,.88);
}

.testimonials--dark .testimonial__name,
.testimonial--dark .testimonial__name {
  color: var(--gold-light);
}

.testimonials--dark .testimonial__author,
.testimonial--dark .testimonial__author {
  border-top-color: rgba(255,255,255,.08);
}

.testimonials--dark .testimonial::before,
.testimonial--dark::before {
  color: rgba(201,168,76,.1);
}

/* ── Tytuł kursywą ── */
.testimonials .section__title em,
.testimonials--dark .section__title em {
  font-style: italic;
  color: var(--gold);
}

/* ═══════════════════════════════════════
   JOIN TEASER (subskrypcja)
═══════════════════════════════════════ */
.join-teaser {
  background: var(--navy);
  text-align: center;
}

.join-teaser__inner {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.join-teaser__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.2;
  margin: 0;
}

.join-teaser__title em {
  font-style: italic;
  color: var(--gold);
}

.join-teaser__desc {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  margin: 0;
}

.join-teaser__sub {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(255,255,255,.35);
  letter-spacing: 0.04em;
  margin: 0;
}

/* btn--gold variant */
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
  font-weight: 600;
}
.btn--gold:hover {
  background: transparent;
  color: var(--gold);
}

/* ═══════════════════════════════════════
   SURVEY RESULTS – WYNIKI ANKIET
═══════════════════════════════════════ */

/* Liczby – 4 w rzędzie */
.survey__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2.8rem 0;
}

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

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

.survey__stat {
  text-align: center;
  padding: 1.8rem 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 10px;
  transition: border-color .3s, background .3s;
}

.survey__stat:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,168,76,.4);
}

.survey__stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .4rem;
}

.survey__stat-num small {
  font-size: .45em;
  color: var(--gold-light);
  vertical-align: super;
}

.survey__stat-label {
  display: block;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  line-height: 1.4;
}

/* Tagi – słowa kluczowe z ankiet */
.survey__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem;
  margin: 0 0 3rem;
}

.survey__tag {
  display: inline-block;
  padding: .3rem .9rem;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: .04em;
  transition: background .25s, border-color .25s;
}

.survey__tag:hover {
  background: rgba(201,168,76,.18);
  border-color: var(--gold);
}

/* 3 filary wartości */
.survey__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: .5rem;
}

@media (max-width: 780px) {
  .survey__pillars { grid-template-columns: 1fr; gap: 1.2rem; }
}

.survey__pillar {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 10px;
  padding: 1.8rem 1.6rem;
  text-align: center;
  transition: border-color .3s, background .3s;
}

.survey__pillar:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,168,76,.35);
}

.survey__pillar-icon {
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.survey__pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .6rem;
}

.survey__pillar p {
  font-family: var(--font-sans);
  font-size: .875rem;
  line-height: 1.65;
  color: rgba(255,255,255,.55);
}

/* info__tba – badge "wkrótce" */
.info__tba {
  display: inline-block;
  margin-left: .4rem;
  font-size: .72rem;
  color: var(--gold);
  font-style: normal;
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════
   PULL QUOTE SECTION
═══════════════════════════════════════ */
.pull-quote-section {
  background: var(--navy);
  padding: 4rem 1.5rem;
  text-align: center;
}

.pull-quote {
  margin: 0 auto;
  max-width: 720px;
  border: none;
  padding: 0;
}

.pull-quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--gold-light);
  position: relative;
}

.pull-quote p::before {
  content: '\201C';
  font-size: 5rem;
  line-height: 0;
  vertical-align: -1.6rem;
  color: var(--gold);
  opacity: .5;
  margin-right: .15em;
  font-style: normal;
}

.pull-quote p::after {
  content: '\201D';
  font-size: 5rem;
  line-height: 0;
  vertical-align: -1.6rem;
  color: var(--gold);
  opacity: .5;
  margin-left: .15em;
  font-style: normal;
}

/* ═══════════════════════════════════════
   ONLINE LIVES
═══════════════════════════════════════ */
.online-lives {
  background: var(--navy);
  text-align: center;
}

.online-lives .section__label {
  color: var(--gold-light);
}

.online-lives .section__title {
  color: var(--white);
}

.online-lives__intro {
  font-family: var(--font-sans);
  font-size: clamp(.95rem, 2vw, 1.05rem);
  color: rgba(255,255,255,.7);
  max-width: 660px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.online-lives__intro strong {
  color: var(--gold-light);
}

/* channels */
.online-lives__channels {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.online-channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  color: var(--navy);
  transition: color .25s, transform .25s;
}

.online-channel:hover {
  color: var(--gold);
  transform: translateY(-4px);
}

.online-channel i {
  font-size: 2.8rem;
}

.online-channel span {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--text-dark);
}

/* CTA */
.online-lives__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.online-lives__cta-note {
  font-family: var(--font-sans);
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}

/* responsive */
@media (max-width: 600px) {
  .online-lives__channels {
    gap: 1.2rem;
  }
  .online-channel i {
    font-size: 2.2rem;
  }
}

/* ═══════════════════════════════════════
   EVENTS CALENDAR
═══════════════════════════════════════ */
.events-calendar {
  background: var(--cream);
}

/* Special offer box */
.special-offer {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.8rem;
  text-align: center;
  margin: 2rem auto 2.5rem;
  max-width: 680px;
  position: relative;
  box-shadow: 0 8px 24px rgba(201,168,76,.25);
}

.special-offer__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--navy);
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.special-offer__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: .8rem;
}

.special-offer__desc {
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.special-offer__desc strong {
  font-weight: 600;
}

.special-offer__value {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.special-offer__old {
  text-decoration: line-through;
  opacity: .6;
}

.special-offer__arrow {
  font-size: 1.5rem;
  color: var(--navy);
}

.special-offer__new {
  font-size: 1.4rem;
  color: var(--navy);
}

@media (max-width: 600px) {
  .special-offer {
    padding: 1.5rem 1.2rem;
  }
  .special-offer__value {
    flex-direction: column;
    gap: .5rem;
  }
  .special-offer__arrow {
    transform: rotate(90deg);
  }
}

.events-calendar__intro {
  text-align: center;
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* ── grid ── */
.events-calendar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

/* ── card ── */
.ec-card {
  background: #fff;
  border: 1.5px solid var(--cream-2);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  position: relative;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}

.ec-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 28px rgba(201,168,76,.14);
  transform: translateY(-3px);
}

/* highlighted – next event */
.ec-card--next {
  border-color: var(--gold);
  background: var(--navy);
}

.ec-card--next:hover {
  box-shadow: 0 8px 32px rgba(201,168,76,.25);
  transform: translateY(-4px);
}

/* badge */
.ec-card__badge {
  position: absolute;
  top: -1px;
  right: 1.2rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* promo badge (2 osoby) */
.ec-card__promo-badge {
  background: rgba(255,100,50,.95);
  color: #fff;
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  text-align: center;
  padding: .5rem .75rem;
  border-radius: var(--radius);
  margin: -.5rem -.5rem .5rem;
  box-shadow: 0 2px 8px rgba(255,100,50,.3);
}

.ec-card--next .ec-card__promo-badge {
  background: var(--gold-light);
  color: var(--navy);
}

/* price line */
.ec-card__price-line {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: .3rem;
}

.ec-card__old-price {
  font-family: var(--font-sans);
  font-size: .85rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.ec-card__new-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
}

.ec-card--next .ec-card__old-price {
  color: rgba(255,255,255,.4);
}

.ec-card--next .ec-card__new-price {
  color: var(--gold-light);
}

/* date block */
.ec-card__date {
  display: flex;
  align-items: baseline;
  gap: .4rem;
}

.ec-card__day {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  color: var(--gold);
}

.ec-card--next .ec-card__day {
  color: var(--gold-light);
}

.ec-card__month {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.ec-card--next .ec-card__month {
  color: rgba(255,255,255,.55);
}

/* coming soon card */
.ec-card--coming-soon {
  border-style: dashed;
  background: var(--cream-2);
  cursor: default;
}

.ec-card--coming-soon:hover {
  border-color: rgba(201,168,76,.3);
  box-shadow: none;
  transform: none;
}

.ec-card--coming-soon .ec-card__day {
  font-size: 2.5rem;
}

.ec-card__soon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: rgba(201,168,76,.12);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .6rem 1rem;
  border-radius: var(--radius);
  margin-top: auto;
}

/* body rows */
.ec-card__body {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  flex: 1;
}

.ec-card__city {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
}

.ec-card--next .ec-card__city {
  color: #fff;
}

.ec-card__time,
.ec-card__seats {
  font-family: var(--font-sans);
  font-size: .8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: .45rem;
}

.ec-card--next .ec-card__time,
.ec-card--next .ec-card__seats {
  color: rgba(255,255,255,.55);
}

.ec-card__time i,
.ec-card__seats i,
.ec-card__city i {
  color: var(--gold);
  width: 14px;
  text-align: center;
}

.ec-card--next .ec-card__city i {
  color: var(--gold-light);
}

/* buttons */
.ec-card__btn {
  width: 100%;
  text-align: center;
  font-size: .8rem;
  padding: .75rem 1rem;
  margin-top: auto;
}

.ec-card--next .ec-card__btn {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 600;
}

.ec-card--next .ec-card__btn:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.ec-card__btn--soon {
  opacity: .75;
  pointer-events: auto;
  cursor: default;
}

.ec-card__btn--soon:hover {
  opacity: 1;
}

/* footer */
.events-calendar__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--cream-2);
  border-radius: var(--radius-lg);
}

.events-calendar__footer-text {
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: .6rem;
}

.events-calendar__footer-text i {
  color: var(--gold);
}

.events-calendar__notify-btn {
  color: var(--navy);
  border-color: var(--navy);
  font-size: .82rem;
}

.events-calendar__notify-btn:hover {
  background: var(--navy);
  color: #fff;
}

/* responsive */
@media (max-width: 600px) {
  .events-calendar__grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════
   CALENDAR TEASER
═══════════════════════════════════════ */
.calendar-teaser {
  background: var(--cream);
  text-align: center;
}

.calendar-teaser__inner {
  background: var(--white);
  border: 1.5px solid rgba(201,168,76,.25);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.calendar-teaser__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,.07) 0%, transparent 70%);
  pointer-events: none;
}

.calendar-teaser__icon {
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  animation: calPulse 3s ease-in-out infinite;
}

@keyframes calPulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%       { transform: scale(1.1); opacity: .75; }
}

.calendar-teaser__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.calendar-teaser__title em {
  font-style: italic;
  color: var(--gold);
}

.calendar-teaser__desc {
  font-family: var(--font-sans);
  font-size: .975rem;
  line-height: 1.75;
  color: var(--text-mid, #4a5568);
  max-width: 520px;
  margin: 0 auto 1.8rem;
}

.calendar-teaser__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 2rem;
}

.calendar-teaser__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .9rem;
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--navy);
  background: rgba(201,168,76,.07);
}

.calendar-teaser__badge i {
  color: var(--gold);
  font-size: .75rem;
}

/* ─── responsive ──────────────────────── */
@media (max-width: 640px) {
  .calendar-teaser__inner {
    padding: 2.5rem 1.5rem;
  }

  .calendar-teaser__title {
    font-size: 1.7rem;
  }
}

/* ═══════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════ */
.final-cta {
  background: var(--navy);
  text-align: center;
}

/* background decoration */
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201,168,76,.08) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta {
  position: relative;
}

.final-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.final-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.25;
  max-width: 680px;
}

.final-cta__tagline {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,.3);
  letter-spacing: .12em;
}


/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 3rem 0 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.footer__brand {
  font-size: .85rem;
}

.footer__brand p {
  margin-top: .5rem;
  color: rgba(255,255,255,.3);
  font-size: .78rem;
  letter-spacing: .06em;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer__links a {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em;
  transition: var(--trans);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__org {
  text-align: right;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  line-height: 1.8;
}

.footer__org strong {
  color: rgba(255,255,255,.6);
  font-weight: 500;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .75rem;
  color: rgba(255,255,255,.2);
  letter-spacing: .06em;
}

@media (max-width: 640px) {
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__org {
    text-align: center;
  }
}


/* ═══════════════════════════════════════
   FOUNDER / O INICJATORZE
═══════════════════════════════════════ */

.founder {
  background: var(--cream);
}

/* ── TOP: portret + bio split ── */
.founder__top {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 5rem;
}

/* Portret */
.founder__portrait-col {
  position: sticky;
  top: 100px;
}

.founder__portrait-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.founder__portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: var(--radius-lg);
  filter: grayscale(8%) contrast(1.04);
  transition: var(--trans-slow);
}

.founder__portrait-wrap:hover .founder__portrait {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.02);
}

.founder__portrait-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(15, 30, 56, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-lg);
  padding: .7rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.founder__portrait-badge span {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

.badge-brand {
  font-family: var(--font-sans);
  font-size: .85rem !important;
  font-weight: 600 !important;
  letter-spacing: .12em !important;
  color: var(--gold) !important;
}

/* Bio column */
.founder__lead {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}

.founder__text {
  font-size: .97rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 2rem;
}

/* Cytat */
.founder__quote {
  position: relative;
  margin: 2rem 0 2.5rem;
  padding: 1.5rem 1.8rem 1.5rem 2rem;
  border-left: 3px solid var(--gold);
  background: linear-gradient(135deg, rgba(201,168,76,.06) 0%, transparent 100%);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.founder__quote::before {
  content: '\201C';
  position: absolute;
  top: -1rem;
  left: 1.2rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: .25;
  pointer-events: none;
}

.founder__quote p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Credentials list */
.founder__creds {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-bottom: 2.5rem;
}

.founder__creds li {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.founder__creds i {
  font-size: .4rem;
  color: var(--gold);
  margin-top: .45rem;
  flex-shrink: 0;
}

.founder__creds strong {
  color: var(--text-dark);
  font-weight: 500;
}

/* Przycisk outline-dark */
.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: rgba(15,30,56,.25);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}

.btn--outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-faint);
  transform: translateY(-2px);
}

.btn--outline-dark i {
  font-size: .75rem;
}

/* ── WHY BONDERUP banner ── */
.founder__why {
  margin: 0 0 5rem;
}

.founder__why-inner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 3.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.founder__why-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(201,168,76,.08) 0%, transparent 70%);
  pointer-events: none;
}

.founder__why-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.founder__why-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 300;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.founder__why-coda {
  margin-top: 1.5rem;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

/* ── Gallery header ── */
.founder__gallery-header {
  margin: 3rem 0 1.5rem;
  text-align: left;
}

.founder__gallery-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0;
}

/* ── Gallery ── */
.founder__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.founder__gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.founder__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--trans-slow);
  filter: grayscale(10%) contrast(1.05);
}

.founder__gallery-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(1);
}

.founder__gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: .6rem 1rem;
  background: linear-gradient(to top, rgba(15,30,56,.75), transparent);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* Karta tekstowa zamiast 3. zdjęcia */
.founder__gallery-item--quote {
  background: var(--navy);
  border: 1px solid rgba(201,168,76,.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder__gallery-text-card {
  text-align: center;
  padding: 2rem;
}

.founder__gallery-bigtext {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .5rem;
}

.founder__gallery-subtext {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .founder__top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .founder__portrait-col {
    position: static;
    max-width: 320px;
    margin: 0 auto;
  }

  .founder__why-inner {
    padding: 2.5rem 2rem;
  }

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

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

/* ═══════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   Domyślnie widoczne – JS dodaje klasę
   .js-ready do <html> i wtedy ukrywa
═══════════════════════════════════════ */

/* Elementy są widoczne dopóki JS nie jest gotowy */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .7s ease, transform .7s ease;
}

/* JS dodaje .js-ready do <html> — dopiero wtedy ukrywamy */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
}

.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.js-ready .reveal:nth-child(2) { transition-delay: .08s; }
.js-ready .reveal:nth-child(3) { transition-delay: .16s; }
.js-ready .reveal:nth-child(4) { transition-delay: .24s; }
.js-ready .reveal:nth-child(5) { transition-delay: .32s; }
.js-ready .reveal:nth-child(6) { transition-delay: .40s; }


/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }

  .hero {
    padding: 6rem 1.5rem 4rem;
    text-align: center;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__meta {
    gap: 1.2rem;
  }

  .steps::before {
    display: none;
  }

  .step {
    flex-direction: column;
    gap: 1rem;
  }

  .step__number {
    width: 40px;
    height: 40px;
    font-size: .85rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.2rem;
  }

  .btn--large {
    padding: 1rem 2rem;
  }
}

/* ═══════════════════════════════════════
   NEXT EVENT TEASER — Wkrótce
═══════════════════════════════════════ */
.next-event-teaser {
  background: var(--cream);
}

.next-event__card {
  background: #fff;
  border: 1.5px solid rgba(201,168,76,.3);
  border-radius: var(--radius-lg);
  padding: 3.5rem 4rem;
  max-width: 780px;
  margin: 0 auto 3rem;
  text-align: center;
  box-shadow: 0 8px 40px rgba(15,30,56,.08);
  position: relative;
  overflow: hidden;
}

.next-event__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.next-event__pulse {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: pulse-icon 2.5s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.12); opacity: .75; }
}

.next-event__heading {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 1.2rem;
  line-height: 1.3;
}

.next-event__desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto .9rem;
}

.next-event__desc strong {
  color: var(--navy);
}

.next-event__actions {
  margin-top: 2rem;
}

.next-event__actions-note {
  margin-top: .75rem;
  font-size: .82rem;
  color: var(--text-mid);
  opacity: .8;
}

/* Ikony-perks pod kartą */
.next-event__perks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  max-width: 700px;
  margin: 0 auto;
}

.next-event__perk {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .95rem;
  color: var(--navy);
  font-weight: 500;
}

.next-event__perk i {
  color: var(--gold);
  font-size: 1rem;
}

@media (max-width: 640px) {
  .next-event__card {
    padding: 2.5rem 1.5rem;
  }

  .next-event__heading {
    font-size: 1.4rem;
  }

  .next-event__perks {
    gap: 1rem 2rem;
  }
}

/* ═══════════════════════════════════════
   VENUE SECTION — Miejsce wydarzenia
═══════════════════════════════════════ */
.venue-section {
  background: var(--cream);
}

.venue-section__intro {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* Siatka zdjęć: duże z lewej + mniejsze z prawej */
.venue-gallery {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.venue-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(15,30,56,.12);
}

.venue-gallery__main {
  grid-row: 1;
}

.venue-gallery figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.venue-gallery figure:hover img {
  transform: scale(1.03);
}

.venue-gallery__main img {
  min-height: 340px;
}

.venue-gallery__side img {
  min-height: 340px;
}

/* Pasek adresu */
.venue-address {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #fff;
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(15,30,56,.06);
}

.venue-address__icon {
  font-size: 1.6rem;
  color: var(--gold);
  flex-shrink: 0;
}

.venue-address__text {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  flex: 1;
}

.venue-address__text strong {
  font-size: 1.1rem;
  color: var(--navy);
  font-family: var(--font-serif);
}

.venue-address__text span {
  font-size: .9rem;
  color: var(--text-mid);
}

/* btn--outline dla venue */
.venue-address .btn--outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.3rem;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .04em;
  white-space: nowrap;
  transition: background .2s, color .2s;
}

.venue-address .btn--outline:hover {
  background: var(--gold);
  color: #fff;
}

/* Responsive */
@media (max-width: 700px) {
  .venue-gallery {
    grid-template-columns: 1fr;
  }

  .venue-gallery__main img,
  .venue-gallery__side img {
    min-height: 220px;
  }

  .venue-address {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1.2rem;
  }
}
