/* RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --rose: #F2C4BB;
  --rose-light: #FAF0EE;
  --rose-mid: #E8A89B;
  --rose-dark: #C47B6E;
  --cream: #FDF8F6;
  --text: #2A1F1C;
  --text-soft: #6B4F49;
  --border: #EDD5CF;
  --nav-h: 72px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(250,240,238,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5rem;
  gap: 2rem;
}

.navbar__identity {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  flex-shrink: 0;
}

.navbar__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.30rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  white-space: nowrap;
}

.navbar__name em {
  font-style: italic;
  color: var(--rose-dark);
}

.navbar__subtitle {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-soft);
}

.navbar__right {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar__right nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.navbar__right nav a {
  display: block;
  font-size: 0.79rem;
  font-weight: 400;
  color: var(--text-soft);
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.16s, color 0.16s;
}

.navbar__right nav a:hover,
.navbar__right nav a.active {
  background: var(--rose);
  color: var(--text);
}

.navbar__ig {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.75rem;
  font-weight: 400;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: white;
  white-space: nowrap;
  margin-left: 0.75rem;
  transition: border-color 0.16s, background 0.16s;
}

.navbar__ig:hover {
  border-color: var(--rose-mid);
  background: var(--rose-light);
}

.navbar__ig svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-soft);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--rose-light);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 1.5rem;
  z-index: 99;
  flex-direction: column;
  gap: 0.2rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 0.88rem;
  color: var(--text-soft);
  text-decoration: none;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  transition: background 0.15s;
}

.mobile-menu a:hover {
  background: var(--rose);
  color: var(--text);
}

.mobile-menu .mobile-ig {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.8rem;
  background: white;
}

.mobile-menu .mobile-ig svg {
  width: 14px;
  height: 14px;
}

/* LAYOUT HELPERS */
.bleed-rose {
  background: var(--rose-light);
}

.section-bleed {
  border-bottom: 1px solid var(--border);
}

.section-bleed>section {
  border-bottom: none;
}

section {
  padding: 5rem 7rem;
  max-width: 1100px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

section:last-of-type {
  border-bottom: none;
}

section[id] {
  scroll-margin-top: var(--nav-h);
}

.section-eyebrow {
  font-size: 1.95rem;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 1rem;
  text-align:center;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1.8rem;
}

.section-heading em {
  font-style: italic;
}

.section-body {
  font-size: 0.93rem;
  color: var(--text-soft);
  max-width: 700px;
  line-height: 1.9;
}

.section-body p+p {
  margin-top: 1.1rem;
}

/* HERO */
#hero {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  display: block;
}

.hero-hook {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.62rem;
  font-style: italic;
  font-weight: 300;
  color: var(--rose-dark);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-heading strong {
  font-weight: 600;
  color: var(--rose-dark);
}

.hero-subheading {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.hero-body {
  font-size: 0.93rem;
  color: var(--text-soft);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-cta {
  display: inline-block;
  background: var(--rose-dark);
  color: white;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.85rem 2.2rem;
  border-radius: 40px;
  transition: background 0.18s, transform 0.15s;
}

.hero-cta:hover {
  background: var(--text);
  transform: translateY(-2px);
}

.hero-cta-secondary {
  font-size: 0.82rem;
  color: var(--text-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}

.hero-cta-secondary:hover {
  color: var(--rose-dark);
  border-color: var(--rose-dark);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-tag {
  font-size: 0.73rem;
  background: white;
  border: 1px solid var(--border);
  color: var(--text-soft);
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
}

/* LISTA DLA KOGO */
.dlakogo-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--border);
  margin-top: 1.5rem;
}

.dlakogo-list li {
  background: var(--cream);
  padding: 1.3rem 1.8rem;
  gap: 1rem;
  align-items: flex-start;
  transition: background 0.35s;
display: flex;
  align-items: center;
  justify-content: center;
}

.dlakogo-list li:hover {
  background: var(--rose-light);
}

.dlakogo-list__text {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.7;
  
}

/* LISTA POMAGAM */
.pomagam-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.pomagam-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  background: white;
  transition: border-color 0.18s, transform 0.15s;
  display:flex; 
  justify-content: center; 
  align-items: center
}

.pomagam-item:hover {
  border-color: var(--rose-mid);
  transform: translateY(-2px);
}

.pomagam-item__icon {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.pomagam-item__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.pomagam-item__desc {
  font-size: 0.8rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* KARTY ONLINE */
.online-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.online-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
}

.online-card__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 0.5rem;
}

.online-card__value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.online-card__desc {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* KARTY O MNIE / WSPÓŁPRACA */
.omnie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.omnie-card {
  background: var(--rose-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
}

.omnie-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.omnie-card__text {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* FAQ */
.faq-list {
  margin-top: 2rem;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.2rem 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.15s;
}

.faq-q:hover {
  background: var(--rose-light);
}

.faq-q svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--rose-dark);
  transition: transform 0.25s;
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  padding: 0 1.5rem;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 1.5rem 1.2rem;
}

.faq-a p {
  font-size: 0.87rem;
  color: var(--text-soft);
  line-height: 1.8;
}

/* OPINIE */
.opinie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.opinia {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
  position: relative;
}

.opinia::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--rose);
  position: absolute;
  top: 0.5rem;
  left: 1.2rem;
  line-height: 1;
}

.opinia__text {
  font-size: 0.87rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-top: 1.5rem;
  font-style: italic;
}

.opinia__author {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--rose-dark);
  letter-spacing: 0.05em;
}

.opinia__stars {
  margin-top: 0.3rem;
  color: var(--rose-dark);
  font-size: 0.75rem;
}

/* FORMULARZ */
.form-wrap {
  max-width: 560px;
  margin-top: 2rem;
}

.form-row {
  margin-bottom: 1.2rem;
}

.form-row label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-soft);
  margin-bottom: 0.4rem;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.18s;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--rose-mid);
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  background: var(--rose-dark);
  color: white;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.85rem 2rem;
  border-radius: 40px;
  transition: background 0.18s, transform 0.15s;
  width: 100%;
}

.form-submit:hover {
  background: var(--text);
  transform: translateY(-2px);
}

.form-success {
  display: none;
  background: white;
  border: 1px solid var(--rose-mid);
  border-radius: 12px;
  padding: 1.2rem;
  font-size: 0.9rem;
  color: var(--text);
  margin-top: 1rem;
  text-align: center;
}

/* STRZAŁKA DO GÓRY */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--rose-dark);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background 0.2s, transform 0.2s;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--text);
  transform: translateY(-3px);
}

.scroll-top svg {
  width: 24px;
  height: 24px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

/* FOOTER */
.site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.15s;
}

.site-footer a:hover {
  color: white;
}

/* === ZMIANY Z EDYTORA === */
.hero-heading { font-size: 3.02rem !important; }
.hero-heading2 { font-size: 1.45rem !important; }
.hero-heading { margin-bottom: 0.78rem !important; }
.section-eyebrow { font-size: 1.9rem !important; }
.section-eyebrow { font-weight: 500 !important; }
.section-eyebrow { letter-spacing: 0.25em !important; }
.section-eyebrow { margin-bottom: 0.2rem !important; }
.section-eyebrow { text-align: center !important; }
.section-eyebrow { color: var(--rose-dark) !important; }
.section-heading { font-size: 2.8rem !important; }
.section-heading { font-weight: 400 !important; }
.section-heading { margin-bottom: 2.3rem !important; }
.section-heading { text-align: left !important; }
.section-body, .hero-body, .hero-subheading { font-size: 1.15rem !important; }
.section-body { line-height: 1.9 !important; }
.section-body, .hero-body { text-align: left !important; }
.pomagam-item__title { font-size: 1.1rem !important; }
.pomagam-item { text-align: center !important; }
.pomagam-item { align-items: center !important; }
.pomagam-item { flex-direction: column !important; }
.pomagam-list { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important; }
.pomagam-list { gap: 1.2rem !important; }
.opinia__text { font-size: 0.87rem !important; }
.opinia__text { text-align: left !important; }
.faq-q { font-size: 0.9rem !important; }
.faq-a p { font-size: 0.87rem !important; }
.faq-a p { line-height: 1.8 !important; }
.faq-a p { text-align: left !important; }

.dlakogo-list__text { font-size: 0.88rem !important; }
.dlakogo-list li { text-align: left !important; }
.dlakogo-list li { justify-content: flex-start !important; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .navbar {
    padding: 0 1.2rem;
  }

  .navbar__right nav,
  .navbar__ig {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: 3rem 1.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-image {
    order: 2;
  }

  .hero-content {
    order: 1;
  }

  .section-heading {
    font-size: 2rem;
  }

  .dlakogo-list {
    grid-template-columns: 1fr;
  }

  .omnie-grid {
    grid-template-columns: 1fr;
  }

  .scroll-top {
    bottom: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
  }

  .scroll-top svg {
    width: 20px;
    height: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}


