/* ===== Luna Lupi — Sections: Content blocks ===== */

/* ===== Opening / news block ===== */
.opening-block {
  grid-column: span 12;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  padding: 0;
  background: var(--coral);
  color: #fff;
  border: 0;
}
.opening-content { padding: clamp(24px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; }
.opening-content .kicker { background: rgba(255,255,255,0.22); color: #fff; }
.opening-content .block-title { color: #fff; margin: 14px 0 14px; }
.opening-content .desc {
  margin: 0 0 22px;
  color: rgba(255,255,255,0.92);
  max-width: 42ch;
  line-height: 1.55;
}
.opening-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 22px;
}
.opening-meta div { display: flex; flex-direction: column; gap: 2px; }
.opening-meta span { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.75); font-weight: 700; }
.opening-meta strong { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: #fff; letter-spacing: -0.01em; }
.opening-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.opening-tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  font-size: 12px;
  font-weight: 600;
}
.opening-photo {
  background: var(--coral-deep);
  border-radius: 0 var(--r-block) var(--r-block) 0;
  overflow: hidden;
  min-height: 320px;
  position: relative;
}
.opening-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ===== Instagram Feed ===== */
.ig-block { grid-column: span 12; }
.ig-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.ig-controls { display: flex; align-items: center; gap: 12px; }
.ig-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background 160ms;
}
.ig-follow-btn:hover { background: var(--navy-soft); }
.ig-follow-btn svg { width: 15px; height: 15px; }
.ig-arrows { display: flex; gap: 8px; }
.ig-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  transition: background 160ms, border-color 160ms, color 160ms;
}
.ig-arrow:hover:not(:disabled) { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.ig-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.ig-arrow svg { width: 18px; height: 18px; }
.ig-viewport { overflow: hidden; }
.ig-track {
  display: flex;
  gap: var(--block-gap);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}
.ig-card {
  flex: 0 0 calc((100% - 2 * var(--block-gap)) / 3);
  background: var(--surface);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: box-shadow 220ms, transform 220ms;
}
.ig-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.ig-card-photo {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  background: var(--cream-warm);
}
.ig-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms; }
.ig-card:hover .ig-card-photo img { transform: scale(1.05); }
.ig-badge {
  position: absolute;
  top: 10px; right: 10px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
}
.ig-badge svg { width: 14px; height: 14px; }
.ig-card-body { padding: 14px 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.ig-card-caption {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.ig-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--ink-soft);
  font-weight: 500;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.ig-likes { color: var(--coral-deep); font-weight: 700; }
.ig-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
}
.ig-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  transition: background 240ms, transform 240ms;
}
.ig-dot.is-active { background: var(--navy); transform: scale(1.3); }

/* ===== About blocks ===== */
.about-story-block {
  grid-column: span 7;
  background: var(--cream-warm);
}
.about-story-block .lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.25;
  color: var(--coral-deep);
  margin: 0 0 22px;
}
.about-story-block .body p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--navy);
}
.about-story-block .body p strong { font-weight: 600; }

.about-photo-block {
  grid-column: span 5;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.about-photo-block > div {
  border-radius: var(--r-block);
  overflow: hidden;
  background: var(--cream-warm);
  flex: 1;
}
.about-photo-block img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 30% center;
}

/* Offering tile blocks */
.offering-block {
  grid-column: span 3;
  background: var(--surface);
  min-height: 200px;
  gap: 10px;
  transition: transform 200ms, background 200ms;
}
.offering-block:hover { transform: translateY(-3px); background: var(--cream-warm); }
.offering-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--coral);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.offering-block h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  margin: 0;
  letter-spacing: -0.015em;
  color: var(--navy);
}
.offering-block p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ===== Team blocks ===== */
.team-block {
  grid-column: span 3;
  padding: 0;
  background: var(--surface);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-block);
  transition: transform 240ms;
}
.team-block { cursor: pointer; text-align: left; appearance: none; border: 1px solid var(--line-soft); }
.team-block:hover { transform: translateY(-4px); }
.team-photo-wrap {
  aspect-ratio: 4 / 5;
  background: var(--cream-warm);
  overflow: hidden;
  position: relative;
}
.team-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms;
}
.team-block:hover .team-photo-wrap img { transform: scale(1.05); }
.team-num-pill {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--navy);
}
.team-info { padding: 18px 20px 22px; }
.team-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.team-role {
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}

/* ===== Dogoterapia ===== */
.dogo-pillars-block {
  grid-column: span 12;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--block-gap);
}
.dogo-pillar {
  background: var(--surface);
  border-radius: var(--r-md);
  padding: 24px;
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}
.dogo-pillar-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  color: var(--coral);
  letter-spacing: -0.04em;
}
.dogo-pillar p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--navy);
  font-weight: 500;
}

.dogo-mode-block {
  grid-column: span 6;
  min-height: 360px;
  gap: 0;
}
.dogo-mode-block .mode-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
}
.dogo-mode-block .mode-desc {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 22px;
  opacity: 0.85;
}
.dogo-mode-block ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.dogo-mode-block ul li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.5;
}
.dogo-mode-block ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 10px; height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.dogo-mode-block .duration {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  font-size: 12px;
}
.dogo-mode-block .duration span { opacity: 0.7; letter-spacing: 0.08em; text-transform: uppercase; font-size: 10px; }
.dogo-mode-block .duration strong { font-family: var(--font-display); font-size: 14px; font-weight: 600; }

.dogo-supports-block {
  grid-column: span 8;
}
.dogo-supports-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.dogo-supports-block li {
  font-size: 16px;
  line-height: 1.4;
  color: var(--navy);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.dogo-supports-block li:last-child { border-bottom: 0; padding-bottom: 0; }
.dogo-supports-block li::before {
  content: "—";
  color: var(--coral-deep);
  font-weight: 600;
}

.dogo-quote-block {
  grid-column: span 4;
  background: var(--coral);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.dogo-quote-block .quote-mark {
  font-family: var(--font-serif);
  font-size: 64px;
  line-height: 0.5;
  color: #fff;
  opacity: 0.7;
}
.dogo-quote-block p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.3;
  margin: 0;
  color: #fff;
}

/* ===== Psi Świat ===== */
.psi-head-block {
  grid-column: span 12;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.psi-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.psi-filter {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  transition: all 160ms;
}
.psi-filter:hover { border-color: var(--navy); }
.psi-filter.is-active { background: var(--navy); color: var(--cream); border-color: var(--navy); }

.psi-card-block {
  grid-column: span 4;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: transform 240ms, box-shadow 240ms;
  text-align: left;
  width: 100%;
}
.psi-card-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.psi-card-photo {
  aspect-ratio: 16 / 11;
  position: relative;
  background: var(--cream-warm);
  overflow: hidden;
}
.psi-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms;
}
.psi-card-block:hover .psi-card-photo img { transform: scale(1.05); }
.psi-card-tag {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  backdrop-filter: blur(8px);
}
.psi-card-body {
  padding: 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.psi-card-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--navy);
}
.psi-card-summary {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
  flex: 1;
}
.psi-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
  font-size: 12px;
}
.psi-card-foot .price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--coral-deep);
}
.psi-card-foot .duration {
  color: var(--ink-soft);
  font-weight: 500;
}

/* ===== Pricing ===== */
.pricing-block {
  grid-column: span 6;
}
.pricing-block .block-title { margin-bottom: 22px; }
.pricing-group + .pricing-group { margin-top: 22px; }
.pricing-group h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin: 0 0 10px;
}
.block.is-navy .pricing-group h4 { color: var(--coral-soft); }
.pricing-rows { display: flex; flex-direction: column; }
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.block.is-navy .pricing-row { border-color: rgba(250,245,236,0.18); }
.pricing-row:last-child { border-bottom: 0; }
.pricing-row span { font-size: 14px; line-height: 1.4; flex: 1; }
.pricing-row strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.block.is-navy .pricing-row strong { color: var(--cream); }
.pricing-note {
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  font-style: italic;
}

/* ===== Contact ===== */
.contact-info-block {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.contact-line:last-of-type { border-bottom: 0; padding-bottom: 0; }
.contact-line span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-deep);
  font-weight: 700;
}
.contact-line a, .contact-line p {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}
.contact-line a:hover { color: var(--coral-deep); }
.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.contact-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--cream-warm);
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}
.contact-social:hover { background: var(--navy); color: var(--cream); }
.contact-social svg { width: 14px; height: 14px; }

.contact-form-block {
  grid-column: span 7;
  background: var(--navy);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form-block .block-title { color: var(--cream); margin-bottom: 8px; }
.contact-field { display: flex; flex-direction: column; gap: 6px; }
.contact-field label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-soft);
  font-weight: 700;
}
.contact-field input,
.contact-field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--cream);
  font: inherit;
  font-size: 14px;
  transition: border-color 160ms, background 160ms;
}
.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: rgba(255,255,255,0.1);
}
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: rgba(250,245,236,0.4); }
.contact-field textarea { resize: vertical; min-height: 100px; }
.form-success {
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(232,122,76,0.18);
  border: 1px solid rgba(232,122,76,0.4);
  color: var(--coral-soft);
  font-size: 13px;
}
.form-error {
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(200,40,40,0.08);
  border: 1px solid rgba(200,40,40,0.25);
  color: #b91c1c;
  font-size: 13px;
}

/* ── FAQ ────────────────────────────────────────────────────────────── */
.faq-block {
  padding: var(--block-pad);
  background: var(--cream);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
}
.faq-item {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 18px 22px;
  transition: background 160ms, border-color 160ms;
}
.faq-item[open] {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(232, 122, 76, 0.35);
}
.faq-question {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--coral-deep);
  transition: transform 200ms;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] .faq-question::after {
  content: "−";
}
.faq-answer {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  color: rgba(15, 23, 42, 0.78);
  font-size: 14px;
  line-height: 1.6;
}
.faq-answer p { margin: 0; }
