.elementor-6057 .elementor-element.elementor-element-09837fd{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-6057 .elementor-element.elementor-element-320e8e5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-6057 .elementor-element.elementor-element-1c09a90{width:100%;max-width:100%;}.elementor-6057 .elementor-element.elementor-element-1c09a90 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS *//* ══════════════════════════════════════════
   CHROMASOMA™ — CSS dla WordPress / Elementor
   Kolory marki annapiaseczna.pl
   Wklej całość do: Elementor → Ustawienia strony → Custom CSS
   ══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Jost:wght@300;400;500&display=swap');

/* ══ ZMIENNE KOLORÓW MARKI ══ */
:root {
  --ch-ink: #000000;           /* czarny — tekst, ciemne tła */
  --ch-cream: #f4e7e3;         /* ciepły krem — główne tło */
  --ch-warm: #e8d0ca;          /* ciemniejszy róż — obramowania, akcenty tła */
  --ch-gold: #f54c08;          /* pomarańczowy — główny akcent, CTA */
  --ch-gold-light: #f87a4a;    /* jaśniejszy pomarańcz — hovery, detale */
  --ch-dust: #d4b5ae;          /* przygaszony róż — obramowania formularza */
  --ch-muted: #5a3e38;         /* ciemny brąz-róż — tekst pomocniczy */
  --ch-beige: #f0ece1;         /* ciepły beż — tło sekcji */
  --ch-blue-pale: #ebf1f7;     /* blady błękit — opcjonalne tło */
  --ch-sand: #e8d0ca;          /* piaskowy róż — tło kart */

  /* spektrum pryzmatu — nawiązanie do CHROMASOMY */
  --ch-prism-1: #f54c08;
  --ch-prism-2: #e8a87c;
  --ch-prism-3: #c9a96e;
  --ch-prism-4: #8a9e8c;
  --ch-prism-5: #9b8cb4;
}

/* ══ ANIMACJA ══ */
@keyframes ch-fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ch-fade { opacity: 0; animation: ch-fadeUp 0.9s ease forwards; }
.ch-fade-1 { animation-delay: 0.1s; }
.ch-fade-2 { animation-delay: 0.25s; }
.ch-fade-3 { animation-delay: 0.4s; }
.ch-fade-4 { animation-delay: 0.55s; }
.ch-fade-5 { animation-delay: 0.7s; }

/* ══ HERO ══ */
.ch-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  background: linear-gradient(175deg, #ede0db 0%, #f4e7e3 55%, #f0ece1 100%);
  position: relative;
  overflow: hidden;
}
.ch-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #f87a4a, transparent);
}
.ch-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ch-gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.ch-eyebrow::before, .ch-eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--ch-gold-light);
}
.ch-hero h1 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(2.8rem, 8vw, 6.5rem) !important;
  font-weight: 300 !important;
  line-height: 1.05 !important;
  color: var(--ch-ink) !important;
  margin-bottom: 12px !important;
}
.ch-hero h1 em { color: var(--ch-gold); font-style: italic; }
.ch-method-line {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ch-muted);
  letter-spacing: 0.1em;
  margin-bottom: 36px;
}
.ch-hero-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--ch-muted);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.85;
}

/* ══ PRZYCISK ══ */
.ch-btn {
  display: inline-block;
  padding: 18px 52px;
  background: var(--ch-gold);
  color: #ffffff !important;
  text-decoration: none !important;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border-radius: 0;
}
.ch-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #000000;
  transform: translateX(-101%);
  transition: transform 0.4s ease;
  z-index: 0;
}
.ch-btn span { position: relative; z-index: 1; }
.ch-btn:hover::before { transform: translateX(0); }

.ch-hero-details {
  margin-top: 52px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.ch-detail { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.ch-detail-label {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ch-dust);
}
.ch-detail-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ch-ink);
}

/* ══ CIEMNE TŁO — CYTAT ══ */
.ch-dark {
  background: var(--ch-ink);
  padding: 90px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ch-dark::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    var(--ch-prism-1),
    var(--ch-prism-2),
    var(--ch-prism-3),
    var(--ch-prism-4),
    var(--ch-prism-5));
}
.ch-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3.5vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  max-width: 740px;
  margin: 0 auto 28px;
  color: var(--ch-cream);
}
.ch-attr {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ch-gold);
}

/* ══ KONTENERY ══ */
.ch-wrap { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* ══ BLOKI SEKCJI ══ */
.ch-section-block-light { padding: 90px 0; background: var(--ch-cream); }
.ch-section-block-warm  { padding: 90px 0; background: linear-gradient(160deg, #ede0db 0%, var(--ch-cream) 100%); }
.ch-section-block-sand  { padding: 80px 0; background: var(--ch-beige); }

/* ══ TYPOGRAFIA ══ */
.ch-label {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ch-gold);
  margin-bottom: 20px;
  display: block;
}
.ch-label-center { text-align: center; }
.ch-h2 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(2rem, 5vw, 3.4rem) !important;
  font-weight: 300 !important;
  line-height: 1.15 !important;
  color: var(--ch-ink) !important;
  margin-bottom: 24px !important;
}
.ch-h2 em { font-style: italic; color: var(--ch-gold); }
.ch-h2-center { text-align: center !important; }
.ch-h2-light { color: var(--ch-cream) !important; }
.ch-p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1.02rem;
  color: var(--ch-muted);
  margin-bottom: 20px;
  line-height: 1.75;
}
.ch-p-light { color: rgba(244,231,227,0.65); }

/* ══ FILOZOFIA ══ */
.ch-blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.65rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--ch-ink);
  border-left: 2px solid var(--ch-gold);
  padding-left: 28px;
  margin-bottom: 36px;
}
.ch-blockquote em { font-style: italic; color: var(--ch-gold); }

/* ══ TRZY FILARY — CIEMNE TŁO ══ */
.ch-method-dark { background: var(--ch-ink); padding: 100px 0; }

.ch-spectrum {
  height: 2px;
  background: linear-gradient(90deg,
    var(--ch-prism-1),
    var(--ch-prism-2),
    var(--ch-prism-3),
    var(--ch-prism-4),
    var(--ch-prism-5));
  margin: 52px 0;
  opacity: 0.5;
}

.ch-pillar {
  background: rgba(244,231,227,0.04);
  border: 1px solid rgba(245,76,8,0.15);
  padding: 48px 40px;
  margin-bottom: 2px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}
.ch-pillar:hover { background: rgba(244,231,227,0.07); }
.ch-pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
}
.ch-pillar-chroma::before { background: linear-gradient(to bottom, #f54c08, #e8a87c); }
.ch-pillar-geo::before    { background: linear-gradient(to bottom, #8a9e8c, #7094b8); }
.ch-pillar-touch::before  { background: linear-gradient(to bottom, #9b8cb4, #8a9e8c); }

.ch-pillar-header { display: flex; align-items: baseline; gap: 20px; margin-bottom: 16px; flex-wrap: wrap; }
.ch-pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(245,76,8,0.15);
  line-height: 1;
  flex-shrink: 0;
}
.ch-pillar-roman {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(245,76,8,0.6);
  display: block;
  margin-bottom: 4px;
}
.ch-pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 300;
  color: var(--ch-cream);
  line-height: 1.1;
}
.ch-pillar-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--ch-gold-light);
  margin-bottom: 20px;
  display: block;
}
.ch-pillar-body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.96rem;
  color: rgba(244,231,227,0.58);
  line-height: 1.75;
  margin-bottom: 24px;
}
.ch-pillar-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.ch-pillar-list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  align-items: start;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: rgba(244,231,227,0.65);
  line-height: 1.6;
}
.ch-pillar-list li::before { content: '—'; color: var(--ch-gold); opacity: 0.7; }
.ch-touch-note {
  margin-top: 24px;
  padding: 18px 22px;
  background: rgba(245,76,8,0.06);
  border-left: 1px solid rgba(245,76,8,0.3);
}
.ch-touch-note p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.86rem;
  color: rgba(244,231,227,0.5);
  margin: 0;
  line-height: 1.7;
}
.ch-touch-note strong { color: var(--ch-gold-light); font-weight: 400; }

/* ══ DLA KOGO ══ */
.ch-rec-list { margin-top: 44px; }
.ch-rec-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--ch-warm);
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: start;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.ch-rec-item.ch-visible { opacity: 1; transform: translateY(0); }
.ch-rec-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--ch-gold);
  opacity: 0.8;
  margin-top: 4px;
}
.ch-rec-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 300;
  color: var(--ch-ink);
  line-height: 1.5;
}

/* ══ FLOW SESJI ══ */
.ch-flow { margin-top: 48px; position: relative; padding-left: 52px; }
.ch-flow::before {
  content: '';
  position: absolute;
  left: 10px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--ch-gold-light), transparent 90%);
}
.ch-flow-item { position: relative; margin-bottom: 40px; }
.ch-flow-item:last-child { margin-bottom: 0; }
.ch-flow-dot {
  position: absolute;
  left: -46px; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ch-cream);
  border: 1.5px solid var(--ch-gold);
}
.ch-flow-num {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ch-gold);
  margin-bottom: 5px;
  display: block;
  opacity: 0.8;
}
.ch-flow-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ch-ink);
  margin-bottom: 8px;
}

/* ══ WAŻNE INFORMACJE ══ */
.ch-notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2px;
  background: var(--ch-warm);
  margin-top: 44px;
}
.ch-note-card { background: var(--ch-beige); padding: 34px 28px; }
.ch-note-icon {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ch-gold);
  margin-bottom: 14px;
  display: block;
}
.ch-note-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ch-ink);
  margin-bottom: 10px;
  display: block;
}
.ch-note-card p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--ch-muted);
  line-height: 1.7;
  margin: 0;
}

/* ══ INWESTYCJA — CIEMNE TŁO ══ */
.ch-invest-dark {
  background: var(--ch-ink);
  padding: 100px 24px;
  text-align: center;
}
.ch-price-box {
  max-width: 480px;
  margin: 48px auto;
  border: 1px solid rgba(245,76,8,0.3);
  padding: 50px 36px;
  position: relative;
}
.ch-price-box::before, .ch-price-box::after {
  content: '◆';
  position: absolute;
  font-size: 9px;
  color: var(--ch-gold);
  opacity: 0.6;
}
.ch-price-box::before { top: -5px; left: 50%; transform: translateX(-50%); }
.ch-price-box::after  { bottom: -5px; left: 50%; transform: translateX(-50%); }
.ch-price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 10vw, 5.5rem);
  font-weight: 300;
  color: var(--ch-cream);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.ch-price-unit {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ch-gold);
  display: block;
  margin-bottom: 32px;
}
.ch-price-meta {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(245,76,8,0.15);
  padding-top: 24px;
}
.ch-price-meta-item { display: flex; flex-direction: column; gap: 4px; align-items: center; }
.ch-price-meta-label {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,76,8,0.5);
}
.ch-price-meta-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--ch-cream);
}
.ch-kwalifikacja {
  max-width: 560px;
  margin: 0 auto 48px;
  padding: 26px 30px;
  border-left: 2px solid rgba(245,76,8,0.4);
  background: rgba(245,76,8,0.04);
  text-align: left;
}
.ch-kwalifikacja p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: rgba(244,231,227,0.58);
  margin: 0;
  line-height: 1.8;
}
.ch-kwalifikacja strong { color: var(--ch-gold-light); font-weight: 400; }

/* ══ FORMULARZ ══ */
.ch-form-section { background: var(--ch-cream); padding: 90px 24px; }
.ch-form-wrap { max-width: 620px; margin: 48px auto 0; }
.ch-form-row { margin-bottom: 30px; }
.ch-label-field {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ch-gold);
  margin-bottom: 10px;
}
.ch-input,
.ch-select,
.ch-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ch-dust);
  padding: 11px 0;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--ch-ink);
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}
.ch-input:focus, .ch-select:focus, .ch-textarea:focus { border-bottom-color: var(--ch-gold); }
.ch-textarea { resize: none; height: 120px; line-height: 1.7; }
.ch-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23f54c08'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
}
.ch-consent-row { display: grid; grid-template-columns: 18px 1fr; gap: 14px; align-items: start; margin-bottom: 14px; }
.ch-consent-row input[type="checkbox"] { width: 16px; height: 16px; margin-top: 3px; accent-color: var(--ch-gold); cursor: pointer; }
.ch-consent-text { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 0.78rem; color: var(--ch-muted); line-height: 1.65; cursor: pointer; }
.ch-submit {
  display: block;
  width: 100%;
  padding: 20px;
  background: var(--ch-gold);
  color: #ffffff;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}
.ch-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ch-ink);
  transform: translateY(101%);
  transition: transform 0.4s ease;
}
.ch-submit:hover::before { transform: translateY(0); }
.ch-submit span { position: relative; z-index: 1; }
.ch-form-note {
  text-align: center;
  margin-top: 24px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  color: var(--ch-muted);
  line-height: 1.8;
}
.ch-form-note em { color: var(--ch-gold); font-style: normal; }
.ch-success { display: none; text-align: center; padding: 60px 32px; }
.ch-success.ch-show { display: block; }
.ch-success-glyph {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--ch-gold);
  display: block;
  margin-bottom: 24px;
}
.ch-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 300;
  margin-bottom: 14px;
  color: var(--ch-ink);
}

/* ══ STOPKA ══ */
.ch-footer {
  background: var(--ch-ink);
  color: rgba(244,231,227,0.3);
  text-align: center;
  padding: 48px 24px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  line-height: 1.9;
  letter-spacing: 0.05em;
}
.ch-footer .ch-gold-text { color: rgba(245,76,8,0.7); }
.ch-copyright {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(245,76,8,0.12);
  font-size: 0.68rem;
  color: rgba(244,231,227,0.18);
  line-height: 1.8;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 640px) {
  .ch-hero-details { gap: 24px; }
  .ch-flow { padding-left: 36px; }
  .ch-flow::before { left: 6px; }
  .ch-flow-dot { left: -32px; }
  .ch-pillar { padding: 32px 22px; }
  .ch-price-meta { gap: 18px; }
  .ch-notes-grid { grid-template-columns: 1fr; }
}/* End custom CSS */