/* ============================================================
   Dobre Śniadanie — page-specific styles
   ============================================================ */

/* ---- Hero ---- */
.ds-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(148deg, var(--blush-200) 0%, var(--cream-50) 52%, var(--cream-100) 100%);
  padding: 164px 0 112px;
}

.ds-hero__blob {
  position: absolute;
  right: -100px;
  top: -80px;
  width: 560px;
  height: 560px;
  border-radius: 62% 38% 46% 54% / 52% 60% 40% 48%;
  background: var(--blush-400);
  opacity: 0.16;
  pointer-events: none;
  animation: float 9s ease-in-out infinite;
}

.ds-hero__ghost {
  position: absolute;
  right: -50px;
  bottom: -20px;
  font-size: clamp(8rem, 16vw, 17rem);
  font-weight: 800;
  line-height: 0.9;
  color: var(--blush-600);
  opacity: 0.042;
  pointer-events: none;
  letter-spacing: -0.06em;
  user-select: none;
}

.ds-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 920px) {
  .ds-hero__inner {
    grid-template-columns: 1fr 400px;
    gap: 72px;
  }
}

/* Tag pill */
.ds-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--cream-300);
  border-radius: 999px;
  padding: 7px 16px 7px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blush-800);
  margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(138, 99, 77, 0.07);
  animation: fadeUp 0.55s var(--ease) both;
}

.ds-hero__tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blush-600);
  flex-shrink: 0;
  animation: pulseDot 2.4s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.6); opacity: 0.5; }
}

.ds-hero__h1 {
  font-size: clamp(2.625rem, 5vw + 0.5rem, 4.625rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink-900);
  max-width: 16ch;
  margin-bottom: 24px;
  animation: fadeUp 0.7s var(--ease) 0.1s both;
}

.ds-hero__h1 strong {
  color: var(--blush-600);
  font-weight: 700;
  font-style: italic;
}

.ds-hero__sub {
  font-size: clamp(1rem, 1.5vw + 0.4rem, 1.1875rem);
  line-height: 1.78;
  color: var(--ink-700);
  max-width: 48ch;
  margin-bottom: 40px;
  animation: fadeUp 0.7s var(--ease) 0.22s both;
}

.ds-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  animation: fadeUp 0.7s var(--ease) 0.34s both;
}

.ds-hero__loc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--ink-500);
  font-weight: 500;
}

.ds-hero__loc svg {
  color: var(--blush-600);
  flex-shrink: 0;
}

/* Visual: concentric rings */
.ds-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  animation: fadeInRight 0.85s var(--ease) 0.28s both;
}

.ds-rings {
  position: relative;
  width: 340px;
  height: 340px;
  flex-shrink: 0;
}

.ds-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-color: var(--blush-400);
  pointer-events: none;
}

.ds-ring--1 { width: 340px; height: 340px; border-width: 1.5px; opacity: 0.13; animation: ringExpand 4s ease-in-out infinite; }
.ds-ring--2 { width: 268px; height: 268px; border-width: 2px;   opacity: 0.2;  animation: ringExpand 4s ease-in-out 0.5s infinite; }
.ds-ring--3 { width: 198px; height: 198px; border-width: 2.5px; opacity: 0.3;  animation: ringExpand 4s ease-in-out 1s infinite; }
.ds-ring--4 { width: 134px; height: 134px; border-width: 3px;   opacity: 0.44; }

@keyframes ringExpand {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%       { transform: translate(-50%, -50%) scale(1.04); }
}

.ds-ring--center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--blush-600);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 36px rgba(194, 122, 122, 0.42);
  animation: float 6s ease-in-out infinite;
}

.ds-ring--center svg {
  width: 32px;
  height: 32px;
  color: var(--cream-50);
}

/* Floating tag cards near rings */
.ds-ring-tag {
  position: absolute;
  background: white;
  border: 1px solid var(--cream-200);
  border-radius: 14px;
  padding: 11px 16px;
  box-shadow: var(--shadow-card);
}

.ds-ring-tag--1 {
  top: 6%;
  right: -4%;
  animation: float 7s ease-in-out infinite;
}

.ds-ring-tag--2 {
  bottom: 12%;
  left: -6%;
  animation: float 8.5s ease-in-out 1.2s infinite reverse;
}

.ds-ring-tag__label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ink-900);
  white-space: nowrap;
}

.ds-ring-tag__sub {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--ink-300);
  margin-top: 2px;
  white-space: nowrap;
}

@media (max-width: 919px) {
  .ds-hero__visual {
    display: none;
  }
  .ds-hero {
    padding: 130px 0 80px;
  }
}

@media (max-width: 767px) {
  .ds-hero__ghost {
    display: none;
  }
}


/* ---- Info strip ---- */
.ds-strip {
  background: var(--ink-900);
  padding: 0;
  overflow: hidden;
}

.ds-strip__inner {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
}

.ds-strip__inner::-webkit-scrollbar { display: none; }

.ds-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 32px 44px;
  border-right: 1px solid rgba(255,255,255,0.06);
  flex: 1;
  flex-shrink: 0;
  text-align: center;
  min-width: 140px;
}

.ds-strip__item:last-child { border-right: none; }

.ds-strip__label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}

.ds-strip__value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
}

@media (max-width: 639px) {
  .ds-strip__item { padding: 24px 28px; }
  .ds-strip__value { font-size: 0.875rem; }
}


/* ---- Story section ---- */
.ds-story {
  padding: 104px 0;
  background: var(--cream-50);
}

.ds-story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 72px;
  align-items: start;
}

@media (min-width: 880px) {
  .ds-story__grid {
    grid-template-columns: 340px 1fr;
    gap: 96px;
    align-items: center;
  }
}

.ds-story__aside {
  position: relative;
}

@media (min-width: 880px) {
  .ds-story__aside {
    position: sticky;
    top: 96px;
  }
}

.ds-story__qmark {
  display: block;
  font-size: 9rem;
  line-height: 0.72;
  color: var(--blush-400);
  opacity: 0.38;
  font-weight: 800;
  letter-spacing: -0.05em;
  user-select: none;
  margin-bottom: 8px;
}

.ds-story__quote {
  font-size: clamp(1.25rem, 2vw + 0.4rem, 1.5625rem);
  font-weight: 600;
  line-height: 1.42;
  color: var(--ink-900);
  letter-spacing: -0.014em;
}

.ds-story__quote em {
  color: var(--blush-600);
  font-style: italic;
}

.ds-story__attr {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-300);
  margin-top: 28px;
}

.ds-story__text > p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--ink-700);
  margin-bottom: 24px;
}

.ds-story__text > p:last-child { margin-bottom: 0; }

@media (max-width: 767px) {
  .ds-story { padding: 72px 0; }
}


/* ---- How it works ---- */
.ds-how {
  padding: 104px 0;
  background: var(--cream-100);
}

.ds-how__header {
  margin-bottom: 72px;
}

.ds-how__header h2 {
  font-size: clamp(1.875rem, 3vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin-top: 12px;
  max-width: 20ch;
}

.ds-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 720px) {
  .ds-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}

.ds-step {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ds-step__top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ds-step__num-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--blush-400);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(138, 99, 77, 0.08);
  transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease);
  flex-shrink: 0;
}

.ds-step:hover .ds-step__num-wrap {
  background: var(--blush-600);
  border-color: var(--blush-600);
}

.ds-step__num {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--blush-600);
  letter-spacing: -0.03em;
  transition: color var(--duration) var(--ease);
}

.ds-step:hover .ds-step__num { color: white; }

.ds-step__icon {
  width: 48px;
  height: 48px;
  background: var(--blush-200);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blush-800);
  transition: background var(--duration) var(--ease);
}

.ds-step:hover .ds-step__icon { background: var(--blush-400); }

.ds-step__title {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.ds-step__desc {
  font-size: 0.9375rem;
  color: var(--ink-500);
  line-height: 1.68;
}

@media (max-width: 767px) {
  .ds-how { padding: 72px 0; }
}


/* ---- Partner benefits ---- */
.ds-partners {
  padding: 104px 0;
  background: var(--cream-50);
}

.ds-partners__header {
  margin-bottom: 56px;
}

.ds-partners__header h2 {
  font-size: clamp(1.875rem, 3vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin-top: 12px;
  margin-bottom: 16px;
}

.ds-partners__header p {
  font-size: 1.0625rem;
  color: var(--ink-500);
  line-height: 1.65;
  max-width: 52ch;
}

.ds-benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .ds-benefit-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ds-benefit {
  background: var(--cream-100);
  border: 1px solid var(--cream-200);
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease), border-color 0.32s var(--ease);
  position: relative;
  overflow: hidden;
}

.ds-benefit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blush-400), var(--blush-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.ds-benefit:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
  border-color: var(--blush-200);
}

.ds-benefit:hover::before { transform: scaleX(1); }

.ds-benefit__icon {
  width: 52px;
  height: 52px;
  background: var(--blush-200);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blush-800);
  transition: background var(--duration) var(--ease);
}

.ds-benefit:hover .ds-benefit__icon { background: var(--blush-400); }

.ds-benefit__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.ds-benefit__desc {
  font-size: 0.9375rem;
  color: var(--ink-500);
  line-height: 1.65;
  flex: 1;
}

.ds-partners__contact {
  margin-top: 48px;
  padding: 40px 44px;
  background: linear-gradient(130deg, var(--blush-200) 0%, var(--cream-100) 100%);
  border-radius: 24px;
  border: 1px solid var(--blush-200);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ds-partners__contact-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink-900);
  max-width: 42ch;
  line-height: 1.48;
}

@media (max-width: 767px) {
  .ds-partners { padding: 72px 0; }
  .ds-benefit  { padding: 28px 24px; }
  .ds-partners__contact { padding: 28px 24px; }
}


/* ---- Video section ---- */
.ds-video {
  padding: 88px 0;
  background: var(--ink-900);
  position: relative;
  overflow: hidden;
}

.ds-video::before {
  content: '';
  position: absolute;
  left: -120px;
  bottom: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: var(--blush-800);
  opacity: 0.22;
  pointer-events: none;
}

.ds-video::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--blush-600);
  opacity: 0.1;
  pointer-events: none;
}

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

.ds-video__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blush-400);
  margin-bottom: 14px;
}

.ds-video__title {
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 52px;
}

.ds-video__player {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(140deg, #2A201C 0%, #3D2E28 100%);
  cursor: pointer;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255,255,255,0.04);
  transition: transform 0.4s var(--ease);
}

.ds-video__player:hover { transform: scale(1.012); }

.ds-video__player--inline {
  background: #000;
  cursor: default;
}

.ds-video__player--inline:hover { transform: none; }

.ds-video__el {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}

.ds-video__deco {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 70%, rgba(194, 122, 122, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse at 78% 20%, rgba(224, 168, 168, 0.13) 0%, transparent 48%);
}

.ds-video__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  background: var(--blush-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration) var(--ease), transform 0.32s var(--ease);
  box-shadow: 0 8px 44px rgba(194, 122, 122, 0.48);
}

.ds-video__player:hover .ds-video__play-btn {
  background: var(--blush-800);
  transform: translate(-50%, -50%) scale(1.12);
}

.ds-video__play-btn svg {
  width: 30px;
  height: 30px;
  fill: white;
  margin-left: 5px;
}

.ds-video__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 767px) {
  .ds-video { padding: 60px 0; }
}


/* ---- CTA band blush gradient ---- */
.cta-band--blush {
  background: linear-gradient(140deg, var(--blush-400) 0%, var(--blush-600) 100%);
}

.cta-band--blush h2 {
  color: var(--cream-50);
}
