
/* ═══════════════════════════════════════════
   WERONIKA THEME — main.css
   Portowanie z oryginalnego HTML autorki
════════════════════════════════════════════ */

/* ─── ZMIENNE CSS ─── */
:root {
  --gold: #a27e45;
  --gold-light: #D4B483;
  --gold-pale: #F0E6D3;
  --pearl: #F7F2EC;
  --pearl-deep: #EDE5D8;
  --beige: #F3EDE3;
  --cream: #FDFAF6;
  --navy: #1E3A6E;
  --navy-light: #3A5A9A;
  --navy-pale: #EBF0F8;
  --dark: #0E1F3A;
  --dark-mid: #1A3060;
  --dark-light: #2E4E8A;
  --text-primary: #0D1520;
  --text-mid: #2A3A52;
  --text-muted: #6A7A90;
  --border: rgba(184, 149, 90, 0.25);
  --border-strong: rgba(184, 149, 90, 0.5);
  --nav-height: 72px;
  --container: 1300px;
  --container-narrow: 720px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text-primary);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── TYPOGRAFIA ─── */
.serif {
  font-family: 'Cormorant Garamond', serif;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}

a {
  color: inherit;
}

/* ─── KONTENERY ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 3%;
}

.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 3%;
}

/* ─── NAGŁÓWKI SEKCJI ─── */
.section-header {
  text-align: left;
  margin-bottom: 60px;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}

.section-title {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section-lead {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}


/* ═══════════════════════════════════════════
   NAV
════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #0A1628;
  border-bottom: 1px solid rgba(184, 149, 90, 0.3);
  padding: 0 3%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #F0E6D3;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-weight: 500;
  border: 1px solid rgba(240, 230, 211, 0.3);
  padding: 8px 14px;
}

.nav-logo-name {
  font-size: 22px !important;
  letter-spacing: 0.18em;
  color: #F7F2EC;
  font-variant: small-caps;
  text-transform: lowercase;
}

.nav-logo-inner {
  display: flex;
  flex-direction: column;
}

.nav-logo-inner > :first-child {
  font-size: 17px;
  color: #F7F2EC;
  letter-spacing: 0.15em;
  font-variant: small-caps;
}

.nav-logo-sub {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(212, 180, 131, 0.65);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-variant: normal;
}

.nav-logo span {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(212, 180, 131, 0.65);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--gold-pale);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
  font-weight: 400;
}

.nav-phone:hover { color: var(--gold-light); }

.nav-phone svg {
  color: var(--gold-light);
  flex-shrink: 0;
}

.nav-link-rezerv {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(212, 180, 131, 0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.nav-link-rezerv:hover {
  color: #fff;
  border-color: #fff;
}

.nav-cta {
  background: var(--gold);
  color: #0A1628;
  padding: 10px 24px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  animation: pulse-gold 2.8s ease-in-out infinite;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184, 149, 90, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(184, 149, 90, 0); }
}


/* ═══════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero-bg-ornament {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  background: linear-gradient(135deg, var(--pearl-deep) 0%, var(--pearl) 60%, var(--beige) 100%);
  z-index: 0;
}

.hero-bg-ornament::before {
  content: '';
  position: absolute;
  top: 15%; left: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  opacity: 0.4;
}

.hero-bg-ornament::after {
  content: '';
  position: absolute;
  bottom: 20%; right: 10%;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid var(--border);
  opacity: 0.25;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 3% 80px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tagline {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-tagline-line {
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.0;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-weight: 400;
}

.hero-title-italic {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-subtitle-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2vw, 20px);
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 32px;
  line-height: 1.5;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 24px;
}

.hero-stat:first-child { padding-left: 0; }

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}

.hero-stat-divider {
  width: 1px; height: 32px;
  background: var(--border-strong);
  flex-shrink: 0;
}

.hero-lead {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-credentials {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-credentials span {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.cred-dot { color: var(--gold); }

.hero-image-col {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 4% 40px 3%;
}

.hero-right-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hero-photo {
  position: absolute;
  bottom: 0; left: 0;
  max-height: 80vh;
  width: auto;
  max-width: 55%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  z-index: 1;
}

.hero-session-card {
  background: #fff;
  border: 1px solid rgba(184, 149, 90, 0.4);
  padding: 36px 32px;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-session-card::before {
  content: '';
  position: absolute;
  top: -8px; left: -8px; right: 8px; bottom: 8px;
  border: 1px solid rgba(184, 149, 90, 0.25);
  z-index: -1;
}

.hero-session-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-session-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.hero-session-price { margin-bottom: 24px; }

.hero-session-free {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold);
  font-weight: 400;
}

.hero-session-duration {
  font-size: 13px;
  color: var(--text-muted);
  margin-left: 4px;
}

.hero-session-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.hero-session-list li {
  font-size: 13px;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.hero-session-list li::before {
  content: '◦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 14px;
}

.hero-session-cta {
  display: block;
  background: var(--gold);
  color: #fff;
  text-align: center;
  padding: 16px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  margin-bottom: 24px;
}

.hero-session-cta:hover {
  background: #0A1628;
  color: #fff;
}

.hero-session-creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.hero-session-cred-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-session-cred-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.hero-session-cred-sub {
  font-size: 11px;
  color: var(--text-muted);
}


/* ═══════════════════════════════════════════
   LONGEVITY STRIP
════════════════════════════════════════════ */
.longevity-strip {
  background: #0A1628;
  padding: 40px 5%;
  border-top: 1px solid rgba(184, 149, 90, 0.2);
  border-bottom: 1px solid rgba(184, 149, 90, 0.2);
}

.longevity-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.longevity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 40px;
}

.longevity-item .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.longevity-item .num.longevity-italic {
  font-style: italic;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 300;
}

.longevity-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 230, 211, 0.55);
  margin-top: 8px;
  line-height: 1.5;
  max-width: 180px;
}

.longevity-divider {
  width: 1px; height: 50px;
  background: rgba(184, 149, 90, 0.3);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.btn-primary {
  background: var(--gold);
  color: #fff;
  padding: 14px 32px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(30, 58, 110, 0.25);
}

.hero-content .btn-primary { color: #fff; }

.hero-content .btn-primary:hover {
  background: #0A1628;
  color: #fff;
  transform: translateY(-2px);
}

.cennik-cta-top {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.btn-navy {
  background: var(--gold) !important;
  color: #fff !important;
}

.btn-navy:hover {
  background: var(--navy) !important;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.3);
}

.btn-secondary {
  color: var(--gold);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  padding: 14px 32px;
  display: inline-block;
  background: transparent;
  transition: background 0.3s, color 0.3s;
}

.btn-secondary:hover {
  background: var(--gold);
  color: #0A1628;
  border-color: var(--gold);
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--border-strong);
  color: var(--text-mid);
  padding: 12px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}

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


/* ═══════════════════════════════════════════
   O MNIE
════════════════════════════════════════════ */
.section-omnie {
  background: var(--cream);
  padding: 100px 0;
}

.omnie-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.omnie-image-col { position: relative; }

.omnie-photo {
  width: 100%;
  display: block;
  object-fit: cover;
}

.omnie-eyebrow-line {
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--gold);
  margin-right: 14px;
  vertical-align: middle;
}

.omnie-title {
  font-size: clamp(40px, 5vw, 50px);
  line-height: 1.05;
  margin-bottom: 32px;
  margin-top: 16px;
  color: var(--text-primary);
  font-weight: 400;
}

.omnie-title-italic {
  font-style: italic;
  color: #B8955A;
}

.omnie-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 20px;
}

.omnie-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.omnie-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.omnie-tags span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border-strong);
  padding: 6px 14px;
  color: var(--text-muted);
}


/* ═══════════════════════════════════════════
   MOJA HISTORIA
════════════════════════════════════════════ */
.section-historia {
  background: var(--pearl);
  padding: 80px 0 20px;
}

.historia-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 3%;
}

.historia-eyebrow { margin-bottom: 24px; }

.historia-eyebrow .section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
}

.historia-eyebrow .section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.historia-pullquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.6vw, 48px);
  font-style: italic;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.1;
  margin: 0 auto 0;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  max-width: 900px;
  text-align: center;
}

.historia-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.historia-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.historia-block-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  color: var(--border-strong);
  font-weight: 300;
  line-height: 1;
}

.historia-block-text h3 {
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-weight: 400;
}

.historia-block-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
}

.historia-cta {
  text-align: center;
  margin-top: 48px;
}


/* ═══════════════════════════════════════════
   SELF IMMERSION METHOD
════════════════════════════════════════════ */
.section-metoda {
  padding: 100px 0;
  background: var(--cream);
}

.section-metoda .section-header {
  text-align: left;
  margin-bottom: 60px;
}

.section-metoda .section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-metoda .section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-metoda .section-title { font-weight: 500; }

.section-metoda .section-lead {
  text-align: left;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--text-mid);
  font-size: 18px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 60px;
}

.method-step {
  background: var(--pearl);
  padding: 40px 28px;
  border-top: 3px solid var(--gold);
  transition: background 0.3s;
}

.method-step:hover { background: var(--pearl-deep); }

.method-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: var(--border-strong);
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 300;
}

.method-step h3 {
  font-size: 13px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--text-primary);
  white-space: nowrap;
}

.method-step p {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.8;
}

.method-step-sub {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  font-weight: 400;
  font-style: italic;
}


/* ═══════════════════════════════════════════
   LONGEVITY ECONOMY
════════════════════════════════════════════ */
.section-longevity .section-eyebrow,
.longevity-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
}

.longevity-eyebrow .eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-longevity {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 6%;
  background: var(--navy-pale);
}

.longevity-content p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 16px;
}

.longevity-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.longevity-circle-outer {
  position: relative;
  width: 340px;
  height: 340px;
}

.longevity-circle-outer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.longevity-circle-inner {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--pearl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
}

.big-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
}

.big-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
  text-align: center;
}

.longevity-orbit {
  position: absolute;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  background: var(--pearl);
  border: 1px solid var(--border);
  padding: 6px 10px;
  text-align: center;
  line-height: 1.3;
}

.orbit-1 { top: -10px; left: 50%; transform: translateX(-50%); }
.orbit-2 { right: -10px; top: 50%; transform: translateY(-50%); }
.orbit-3 { bottom: -10px; left: 50%; transform: translateX(-50%); }
.orbit-4 { left: -10px; top: 50%; transform: translateY(-50%); }


/* ═══════════════════════════════════════════
   PRELEKCJE
════════════════════════════════════════════ */
.section-prelekcje {
  background: linear-gradient(135deg, #0b182c 0%, #13274c 100%);
  padding: 100px 0;
}

.prelekcje-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 3%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}

.prelekcje-eyebrow { color: var(--gold-light) !important; }

.prelekcje-title {
  font-size: clamp(36px, 4vw, 54px);
  color: var(--gold-pale);
  line-height: 1.1;
  margin-bottom: 20px;
  margin-top: 12px;
  font-weight: 400;
}

.prelekcje-title-em {
  font-style: italic;
  color: var(--gold-light);
}

.prelekcje-lead {
  font-size: 16px;
  color: rgba(240, 230, 211, 0.75);
  line-height: 1.85;
  max-width: 560px;
  margin-bottom: 36px;
}

.prelekcje-topics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 32px;
  border-top: 1px solid rgba(184, 149, 90, 0.2);
}

.prelekcje-topic {
  display: flex;
  gap: 16px;
  padding: 20px 16px 20px 0;
  border-bottom: 1px solid rgba(184, 149, 90, 0.15);
}

.prelekcje-topic-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.prelekcje-topic strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-pale);
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.prelekcje-topic p {
  font-size: 13px;
  color: rgba(240, 230, 211, 0.55);
  line-height: 1.6;
}

.prelekcje-formats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.prelekcje-formats span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(184, 149, 90, 0.35);
  color: var(--gold-light);
  padding: 6px 14px;
}

.prelekcje-cta {
  display: inline-block;
  background: var(--gold);
  color: #0A1628;
  padding: 14px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.prelekcje-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.prelekcje-card {
  background: #22355b;
  border: 1px solid rgba(184, 149, 90, 0.2);
  padding: 28px;
}

.prelekcje-card-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  font-weight: 500;
}

.prelekcje-appearances {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.prelekcje-appear-item {
  font-size: 13px;
  color: rgba(240, 230, 211, 0.65);
  padding: 10px 0;
  border-bottom: 1px solid rgba(184, 149, 90, 0.1);
  line-height: 1.5;
}

.prelekcje-appear-date {
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-right: 8px;
}

.prelekcje-forma {
  font-size: 13px;
  color: rgba(240, 230, 211, 0.6);
  line-height: 1.7;
  margin-top: 10px;
}

.prelekcje-forma a {
  color: var(--gold-light);
  text-decoration: none;
}

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

.prel-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 28px;
  transition: border-color 0.3s;
}

.prel-card:hover { border-color: var(--gold-light); }

.prel-tag {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.prel-title {
  font-size: 16px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.prel-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

.prel-rok { color: var(--gold-light); }

.btn-toggle-media {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 32px auto 0;
  background: none;
  border: 1px solid var(--border-strong);
  color: var(--text-mid);
  padding: 12px 24px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-toggle-media:hover {
  border-color: var(--gold);
  color: var(--gold);
}


/* ═══════════════════════════════════════════
   SEGMENTY
════════════════════════════════════════════ */
.section-segmenty {
  padding: 100px 0;
  background: #f3ede3;
}

.section-segmenty .section-header {
  text-align: left;
  margin-bottom: 60px;
}

.section-segmenty .section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-segmenty .section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-segmenty .section-lead {
  text-align: left;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--navy);
  font-size: 18px;
}

.segmenty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(184, 149, 90, 0.2);
}

.segment-card {
  border: none;
  border-top: 3px solid var(--gold);
  padding: 48px 40px;
  background: #fff;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.segment-card:nth-child(2) { border-top-color: var(--navy); }
.segment-card:hover { transform: translateY(-2px); }

.segment-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 16px;
  width: 52px; height: 52px;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
}

.segment-card:nth-child(2) .segment-icon {
  color: var(--navy);
  border-color: var(--navy);
}

.segment-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}

.segment-card:nth-child(2) .segment-label { color: var(--navy); }

.segment-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--text-primary);
  line-height: 1.2;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}

.segment-pain {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.segment-offers {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
  flex: 1;
}

.segment-offers li {
  font-size: 14px;
  color: var(--text-mid);
  padding: 12px 0 12px 24px;
  position: relative;
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
}

.segment-offers li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
}

.segment-card:nth-child(2) .segment-offers li::before { color: var(--navy); }

.btn-segment {
  display: inline-block;
  padding: 14px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  text-align: center;
  width: 55%;
}

.segment-card:nth-child(1) .btn-segment {
  background: var(--gold);
  color: #fff;
}

.segment-card:nth-child(1) .btn-segment:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.segment-card:nth-child(2) .btn-segment {
  background: var(--navy);
  color: #fff;
}

.segment-card:nth-child(2) .btn-segment:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════════
   FORMULARZ
════════════════════════════════════════════ */
.section-formularz {
  padding: 100px 0;
  background: var(--pearl);
}

.formularz-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 3%;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.formularz-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
}

.formularz-eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.formularz-title {
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 20px;
  margin-top: 12px;
  font-weight: 400;
}

.formularz-title-em {
  font-style: italic;
  color: var(--gold);
}

.formularz-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 36px;
}

.form-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail:first-of-type { border-top: 1px solid var(--border); }

.contact-detail-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.contact-detail-value {
  font-size: 15px;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}

.contact-detail-value:hover { color: var(--gold); }

.contact-detail-hours {
  font-style: italic;
  color: var(--text-muted) !important;
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  letter-spacing: 0.04em;
}

.section-formularz .contact-form {
  background: #fff;
  padding: 48px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-formularz .form-input {
  display: block;
  width: 100%;
  background: var(--pearl);
  border: 1px solid var(--border);
  border-top: none;
  border-left: none;
  border-right: none;
  padding: 12px 0;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
}

.section-formularz .form-input:focus { border-color: var(--gold); }

.section-formularz .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.section-formularz .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-formularz .form-submit {
  width: 100%;
  padding: 16px;
  font-size: 12px;
  letter-spacing: 0.18em;
  margin-top: 8px;
  background: var(--gold);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.section-formularz .form-submit:hover {
  background: var(--navy);
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════════
   CENNIK
════════════════════════════════════════════ */
.section-cennik {
  padding: 100px 0;
  background: var(--cream);
}

.cennik-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 3%;
}

.cennik-eyebrow {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.cennik-eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.cennik-sub-eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 12px;
}

.cennik-sub-lead {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--gold);
  margin-bottom: 28px;
  line-height: 1.6;
}

.cennik-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 56px;
}

.price-card {
  background: #f7f2ec;
  border: 1px solid var(--border);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s;
}

.price-card--featured {
  background: #f1e6d3;
  border-color: var(--border);
}

.price-card:hover { border-color: var(--gold-light); }

.price-card--featured::before {
  content: 'Polecane';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #c4a674;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 16px;
  white-space: nowrap;
}

.price-card-badge { display: none; }

.price-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.price-card-subtitle {
  font-size: 22px;
  color: var(--text-mid);
  margin-bottom: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}

.price-card-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  color: var(--gold);
  line-height: 1;
  font-weight: 400;
}

.price-card-unit {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
  margin-top: 4px;
}

.price-card-list {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.price-card-list li {
  font-size: 14px;
  color: var(--text-mid);
  padding: 10px 0 10px 18px;
  position: relative;
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
}

.price-card-list li::before {
  content: '◦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 16px;
}

.price-card-list .price-item--highlight {
  color: var(--gold);
  font-weight: 400;
}

.price-card-list .price-item--highlight::before {
  content: '◦';
  color: var(--gold);
}

.btn-price-cta {
  background: var(--gold);
  border: none;
  color: #fff;
  padding: 14px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: block;
}

.btn-price-cta:hover {
  background: #0A1628;
  color: #fff;
  transform: translateY(-2px);
}

.price-card--featured .btn-price-cta { background: var(--gold); color: #fff; }
.price-card--featured .btn-price-cta:hover { background: #0A1628; }

.sesja-pojedyncza {
  border-top: 1px solid var(--border);
  padding-top: 48px;
  margin-bottom: 60px;
}

.sesja-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
}

.price-card--single {
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
}

.price-card--single .price-card-list { text-align: left; }

.booking-contact {
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}

.booking-contact-cols {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.booking-contact-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.booking-contact-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

.booking-contact-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

.booking-contact-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  font-size: 20px;
  color: var(--text-muted);
}

.booking-contact-action {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.booking-contact-action:hover { color: var(--text-primary); }

.booking-contact-action--primary {
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
}

.booking-contact-action--primary:hover {
  color: var(--text-primary);
}

.booking-email, .booking-phone {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--text-primary);
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.2s;
}

.booking-email:hover, .booking-phone:hover { color: var(--gold); }

.booking-hours {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-muted);
}


/* ═══════════════════════════════════════════
   EFEKTY PRACY
════════════════════════════════════════════ */
.section-efekty {
  padding: 100px 0;
  background: var(--pearl);
}

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

.efekt-card {
  background: var(--cream);
  border-top: 3px solid var(--gold);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 40px 28px;
  transition: background 0.3s, transform 0.3s;
}

.efekt-card:hover {
  background: var(--navy-pale);
  transform: translateY(-4px);
}

.efekt-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.efekt-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 16px;
}

.efekt-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
}


/* ═══════════════════════════════════════════
   OPINIE
════════════════════════════════════════════ */
.section-opinie .section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.section-opinie .section-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-opinie {
  padding: 100px 0;
  background: var(--pearl-deep);
}

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

.opinia-card {
  background: var(--pearl);
  padding: 48px 36px;
  border-top: none;
  border-left: 3px solid var(--gold);
}

.opinia-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.opinia-author {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.opinia-role {
  font-size: 13px;
  color: var(--gold);
  font-style: italic;
}


/* ═══════════════════════════════════════════
   ARTYKUŁY
════════════════════════════════════════════ */
.section-artykuly {
  padding: 100px 0;
  background: var(--pearl);
}

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

.artykul-card {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 36px 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}

.artykul-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.artykul-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.artykul-tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-strong);
  padding: 4px 10px;
  font-weight: 500;
}

.artykul-date {
  font-size: 12px;
  color: var(--text-muted);
}

.artykul-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 16px;
  font-weight: 400;
  flex: 1;
}

.artykul-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

.artykul-read-more {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}


/* ═══════════════════════════════════════════
   MEDIA
════════════════════════════════════════════ */
.section-media {
  padding: 100px 0;
  background: var(--cream);
}

.media-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}

.media-row {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.2s;
}

.media-row:first-child { border-top: 1px solid var(--border); }

.media-row:hover { background: var(--pearl); }

.media-row-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.media-row-source {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.media-row-date {
  font-size: 12px;
  color: var(--text-muted);
}

.media-row-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 6px;
  font-weight: 400;
  line-height: 1.3;
}

.media-row-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

.media-row-cta {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.media-hidden { display: none; }

.media-expand-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  padding: 16px 0;
  transition: color 0.2s;
}

.media-expand-btn:hover { color: var(--text-primary); }

.media-note {
  font-size: 14px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 32px;
  margin-top: 16px;
}

.media-note a {
  color: var(--gold);
  text-decoration: none;
}


/* ═══════════════════════════════════════════
   SOCIAL
════════════════════════════════════════════ */
.section-social {
  padding: 100px 0;
  background: var(--pearl);
}

.section-social .section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.section-social .section-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

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

.social-card {
  background: var(--cream);
  border: 1px solid var(--border-strong);
  padding: 40px 32px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, transform 0.3s;
}

.social-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.social-linkedin { border-top: 3px solid #0077b5; }
.social-instagram { border-top: 3px solid var(--gold); }
.social-facebook { border-top: 3px solid #1877f2; }

.social-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.social-platform {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.social-handle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--text-primary);
  font-weight: 400;
}

.social-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
}

.social-follow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}


/* ═══════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
footer {
  background: #0A1628;
  border-top: 1px solid rgba(184, 149, 90, 0.2);
}

.footer-top {
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 5%;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(240, 230, 211, 0.25);
  border-radius: 50%;
  color: rgba(240, 230, 211, 0.6);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}

.footer-social-icon:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--gold-pale);
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.footer-brand span {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 4px;
  font-weight: 400;
}

.footer-desc {
  font-size: 13px;
  color: rgba(240, 230, 211, 0.45);
  line-height: 1.7;
  max-width: 260px;
  margin-top: 12px;
}

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(240, 230, 211, 0.6);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-hours {
  font-size: 12px;
  opacity: 0.5;
  margin-top: 4px;
  color: rgba(240, 230, 211, 0.6);
}

.footer-media-desc {
  font-size: 12px;
  line-height: 1.7;
  opacity: 0.55;
  margin-bottom: 10px;
  color: rgba(240, 230, 211, 0.6);
}

.footer-topics {
  font-size: 11px;
  opacity: 0.4;
  margin-top: 8px;
  color: rgba(240, 230, 211, 0.6);
}

.footer-bottom {
  border-top: 1px solid rgba(184, 149, 90, 0.15);
  padding: 20px 5%;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom span {
  font-size: 11px;
  color: rgba(240, 230, 211, 0.3);
  letter-spacing: 0.06em;
}


/* ═══════════════════════════════════════════
   STICKY MOBILE BAR
════════════════════════════════════════════ */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  background: #0A1628;
  border-top: 1px solid rgba(184, 149, 90, 0.3);
  padding: 12px 16px;
  gap: 12px;
}

.sticky-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-pale);
  font-size: 13px;
  text-decoration: none;
  flex: 1;
}

.sticky-cta {
  background: var(--gold);
  color: #0A1628;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}


/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
════════════════════════════════════════════ */
.method-step,
.segment-card,
.price-card,
.prel-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.method-step.is-visible,
.segment-card.is-visible,
.price-card.is-visible,
.prel-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── FADE UP ANIMATION ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }


/* ═══════════════════════════════════════════
   RESPONSIVE — tablet
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .method-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .media-row {
    grid-template-columns: 160px 1fr auto;
    gap: 20px;
  }
}


/* ═══════════════════════════════════════════
   RESPONSIVE — mobile
════════════════════════════════════════════ */
@media (max-width: 768px) {

  body, html { overflow-x: hidden; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 60px 20px 40px;
  }

  .hero-bg-ornament { display: none; }
  .hero-image-col { display: none; }

  .hero-title { font-size: clamp(42px, 12vw, 64px); }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-stat-divider { display: none; }

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-credentials { display: none; }

  /* Stats bar */
  .longevity-strip-inner {
    flex-direction: column;
    gap: 24px;
  }

  .longevity-divider { display: none; }

  /* O mnie */
  .omnie-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .omnie-image-col { order: -1; }

  /* Historia */
  .historia-block {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  /* Metoda */
  .method-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  /* Longevity */
  .section-longevity {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 48px;
  }

  .longevity-circle-outer { width: 260px; height: 260px; }
  .longevity-circle-inner { width: 160px; height: 160px; }
  .big-num { font-size: 36px; }

  /* Prelekcje */
  .prelekcje-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .prelekcje-topics { grid-template-columns: 1fr; }
  .prelekcje-grid { grid-template-columns: 1fr; }

  /* Dla kogo */
  .segmenty-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .btn-segment { width: 100%; }

  /* Artykuły */
  .artykuly-grid { grid-template-columns: 1fr; }

  /* Media */
  .media-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .media-row-cta { display: none; }

  /* Social */
  .social-grid { grid-template-columns: 1fr; }

  /* Efekty */
  .efekty-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  /* Opinie */
  .opinie-grid { grid-template-columns: 1fr; }

  /* Formularz */
  .formularz-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-formularz .form-row { grid-template-columns: 1fr; }

  /* Cennik */
  .cennik-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .price-card--single { max-width: 100%; }
  .btn-price-cta { width: 100%; }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Nav */
  .nav-phone { display: none; }

  nav {
    padding: 0 16px;
    height: 60px;
  }

  .nav-logo {
    padding: 5px 10px;
    border: 1px solid rgba(240, 230, 211, 0.2);
  }

  .nav-logo-name {
    font-size: 13px !important;
    letter-spacing: 0.1em;
  }

  .nav-logo-sub {
    display: none;
  }

  .nav-right {
    gap: 10px;
  }

  .nav-link-rezerv {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .nav-cta {
    padding: 8px 14px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  /* Sekcje - padding mobile */
  .section-omnie,
  .section-historia,
  .section-metoda,
  .section-prelekcje,
  .section-segmenty,
  .section-artykuly,
  .section-media,
  .section-social,
  .section-opinie,
  .section-formularz,
  .section-efekty,
  .section-cennik {
    padding: 60px 20px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  /* Historia */
  .historia-inner { padding: 0; }

  /* Formularz */
  .formularz-inner { padding: 0; }

  /* Opinie */
  .opinia-card { padding: 32px 24px; }

  /* Cennik */
  .cennik-grid { padding: 0; }

  /* Social */
  .social-grid { padding: 0 20px; }

  /* Sticky */
  .sticky-mobile-bar { display: flex; }
  body { padding-bottom: 64px; }
}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-logo-name {
    font-size: 11px !important;
    letter-spacing: 0.08em;
  }

  .section-title {
    font-size: clamp(28px, 8vw, 40px);
  }
}