:root {
  --burgundy: #7B1D1D;
  --burgundy-light: #9B2C2C;
  --dusty-pink: #F5E6E0;
  --blush: #F0D0C8;
  --cream: #FDF8F6;
  --accent: #C9737A;
}

* { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--cream);
  color: #3a1a1a;
}

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

.mb-12 { margin-bottom: 3rem; }
.gap-10 { gap: 2.5rem; }
.mt-24 { margin-top: 6rem; }
.mb-0 { margin-bottom: 0; }

.section-py {
  padding-top: 72px;
  padding-bottom: 72px;
}

@media (max-width: 768px) {
  .section-py {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* NAV */
nav {
  background: rgba(253,248,246,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123,29,29,0.08);
}

/* HERO */
.hero-bg {
  background: linear-gradient(135deg, var(--dusty-pink) 0%, var(--blush) 55%, #e8c5bc 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,115,122,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,29,29,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.photo-frame {
  position: relative;
}

.photo-frame::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50% 40% 50% 40%;
  background: rgba(123,29,29,0.06);
  transform: rotate(-3deg);
}

.photo-placeholder {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, rgba(201,115,122,0.25) 0%, rgba(123,29,29,0.12) 100%);
  border-radius: 50% 42% 48% 44% / 44% 50% 44% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(123,29,29,0.15), 0 8px 24px rgba(123,29,29,0.08);
}

.photo-placeholder::after {
  content: 'AS';
  font-family: 'Cormorant Garamond', serif;
  font-size: 96px;
  font-weight: 300;
  color: rgba(123,29,29,0.2);
  letter-spacing: 8px;
}

/* SOCIAL ICONS */
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.25s ease;
  text-decoration: none;
  border: 1.5px solid transparent;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123,29,29,0.18);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.btn-primary {
  background: var(--burgundy);
  color: white;
}

.btn-outline {
  background: white;
  border-color: var(--burgundy);
  color: var(--burgundy);
}

.btn-outline:hover {
  background: var(--dusty-pink);
}

/* SECTION TITLES */
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--burgundy);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent);
  font-weight: 500;
}

/* OFFER CARDS */
.offer-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 32px rgba(123,29,29,0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(201,115,122,0.12);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--burgundy), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 56px rgba(123,29,29,0.12);
}

.offer-card:hover::before { transform: scaleX(1); }

.blog-card {
  height: 100%;
}

.blog-card:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.offer-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

/* MISSION */
.mission-bg {
  background: linear-gradient(135deg, var(--burgundy) 0%, #5a1212 100%);
  position: relative;
  overflow: hidden;
}

.mission-bg::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

/* CONTACT */
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(201,115,122,0.15);
}

.contact-icon-wrap {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--dusty-pink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.consult-form {
  background: white;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 8px 40px rgba(123,29,29,0.06);
  border: 1px solid rgba(201,115,122,0.14);
}

.consult-visual {
  margin-top: 28px;
  max-width: 420px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--dusty-pink);
  box-shadow: 0 16px 42px rgba(123,29,29,0.10);
}

.consult-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 54% 24%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field.full { grid-column: 1 / -1; }

.form-field label {
  color: var(--burgundy);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(123,29,29,0.16);
  border-radius: 14px;
  background: #fffafa;
  color: #4a2020;
  padding: 12px 14px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea { min-height: 130px; resize: vertical; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,115,122,0.16);
}

.form-note {
  color: #8A5A5A;
  font-size: 0.78rem;
  line-height: 1.6;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #6a3a3a;
  font-size: 0.78rem;
  line-height: 1.55;
}

.form-consent input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--burgundy);
  flex-shrink: 0;
}

.form-status {
  display: none;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 0.84rem;
  line-height: 1.5;
}

.form-status.is-visible { display: block; }
.form-status.is-success { background: #edf7ef; color: #235c32; }
.form-status.is-error { background: #fff0f0; color: #7B1D1D; }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .consult-visual { max-width: none; }
}

/* DIVIDER */
.flourish {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 12px 0;
}

.flourish::before, .flourish::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,115,122,0.4), transparent);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.15s; opacity: 0; }
.delay-2 { animation-delay: 0.3s; opacity: 0; }
.delay-3 { animation-delay: 0.45s; opacity: 0; }
.delay-4 { animation-delay: 0.6s; opacity: 0; }

/* LOGO TEXT */
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--burgundy);
  letter-spacing: 2px;
}

/* MAP */
.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(123,29,29,0.12);
}

/* QUOTE */
blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
}

/* FOOTER */
footer {
  background: #1a0808;
}

@media (max-width: 768px) {
  .photo-placeholder { max-width: 280px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── STATS BAR ── */
#stats-bar {
  background: linear-gradient(135deg, #5a1010 0%, var(--burgundy) 50%, var(--burgundy-light) 100%);
  padding: 22px 0;
  position: relative;
  overflow: hidden;
}
#stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: overlay;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 8px 20px;
}
.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
}
.stat-l {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-top: 5px;
  display: block;
}
.stat-div {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.12);
}
@media (max-width: 580px) {
  .stat-div { display: none; }
  .stat-item { padding: 6px 12px; }
}

/* ── JAK TO DZIAŁA ── */
#process {
  padding: 72px 24px;
  background: var(--cream);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,115,122,0.3) 20%, rgba(201,115,122,0.3) 80%, transparent);
}
.process-facebook-card {
  margin-top: 56px;
  padding: 32px;
  border-radius: 24px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(201,115,122,0.16);
  box-shadow: 0 18px 48px rgba(123,29,29,0.06);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 32px;
  align-items: center;
}
.process-facebook-action {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 820px) {
  #process { padding: 60px 24px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .process-steps::before { display: none; }
  .process-facebook-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .process-facebook-action {
    justify-content: flex-start;
  }
}
@media (max-width: 500px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-facebook-card {
    padding: 24px 20px;
    margin-top: 40px;
  }
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: white;
  border: 2px solid rgba(201,115,122,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--burgundy);
  box-shadow: 0 8px 28px rgba(123,29,29,0.08);
  transition: all 0.35s ease;
}
.step:hover .step-num {
  background: var(--burgundy);
  color: white;
  border-color: var(--burgundy);
  box-shadow: 0 12px 36px rgba(123,29,29,0.25);
  transform: scale(1.08);
}
.step-h {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--burgundy);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.step-p {
  font-size: 0.83rem;
  line-height: 1.7;
  color: #8A5A5A;
}
