/* =========================================================
   4models — formularz listy zainteresowanych Catwalk & Beyond
   Plik lekki, niezależny od głównego CSS landingu.
   ========================================================= */

:root {
  --ink: #171717;
  --ink-soft: #303033;
  --muted: #6c6661;
  --paper: #f3f1ec;
  --paper-light: #fbf8f3;
  --paper-warm: #f8efea;
  --white: #ffffff;
  --rose: #c57484;
  --rose-strong: #f9598a;
  --gold: #b5924d;
  --line: rgba(181, 146, 77, .32);
  --line-soft: rgba(23, 23, 23, .12);
  --shadow: 0 24px 70px rgba(23, 23, 23, .08);
  --shadow-soft: 0 14px 38px rgba(23, 23, 23, .045);
  --radius: 28px;
  --radius-lg: 42px;
  --wrap: 1120px;
  --font-display: Georgia, "Times New Roman", Times, serif;
  --font-body: Inter, "Inter Tight", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 8%, rgba(197, 116, 132, .13), transparent 24rem),
    radial-gradient(circle at 8% 34%, rgba(181, 146, 77, .10), transparent 18rem),
    var(--paper-light);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select {
  font-family: var(--font-body);
}

button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
  text-underline-offset: 3px;
}

::selection {
  background: rgba(249, 89, 138, .22);
}

:focus-visible {
  outline: 3px solid rgba(249, 89, 138, .38);
  outline-offset: 4px;
  border-radius: 10px;
}

.cb-interest-page {
  min-height: 100svh;
  overflow: hidden;
}

.wrap {
  width: min(var(--wrap), calc(100% - 40px));
  margin-inline: auto;
}

.hero,
.form-section {
  padding-block: clamp(56px, 7vw, 96px);
}

.hero-grid,
.form-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .72fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.form-grid {
  grid-template-columns: minmax(0, .72fr) minmax(380px, 1fr);
  align-items: start;
}

.eyebrow,
.label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  width: clamp(44px, 8vw, 112px);
  height: 1px;
  background: var(--gold);
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -.05em;
}

h1 {
  max-width: 820px;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: .96;
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
}

p {
  margin: 16px 0 0;
  color: var(--muted);
}

strong {
  color: var(--ink);
  font-weight: 750;
}

.lead {
  max-width: 760px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.4;
}

.small-note,
.form-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.notice,
.side-card,
.form-card,
.price-note {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .70);
  box-shadow: var(--shadow-soft);
}

.notice {
  display: grid;
  gap: 6px;
  max-width: 720px;
  margin-top: 30px;
  padding: 20px 22px;
  border-color: rgba(181, 146, 77, .28);
  background: rgba(255, 255, 255, .62);
}

.notice span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.side-card {
  padding: clamp(24px, 3vw, 36px);
  background:
    radial-gradient(circle at 90% 10%, rgba(249, 89, 138, .10), transparent 15rem),
    rgba(255, 255, 255, .68);
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  padding: 16px 18px 16px 54px;
  border: 1px solid rgba(23, 23, 23, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .60);
  color: var(--ink-soft);
  counter-increment: steps;
}

.steps li::before {
  content: counter(steps);
  position: absolute;
  left: 16px;
  top: 15px;
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(197, 116, 132, .13);
  color: var(--rose);
  font-size: 13px;
  font-weight: 800;
}

.section-copy {
  position: sticky;
  top: 28px;
}

.form-card {
  padding: clamp(24px, 4vw, 42px);
  border-color: rgba(69, 46, 36, .14);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .84), rgba(247, 240, 232, .96)),
    var(--paper);
  box-shadow: var(--shadow);
}

.cb-interest-form {
  display: grid;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label,
.choice-group legend {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 750;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(69, 46, 36, .18);
  border-radius: 16px;
  background: rgba(255, 255, 255, .78);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.form-field input:hover,
.form-field select:hover {
  border-color: rgba(69, 46, 36, .30);
  background: rgba(255, 255, 255, .92);
}

.form-field input:focus,
.form-field select:focus {
  border-color: rgba(43, 33, 28, .42);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 0 0 4px rgba(69, 46, 36, .08);
}

.form-field input::placeholder {
  color: rgba(43, 33, 28, .42);
}

.form-hint {
  margin: 8px 0 0;
  padding: 12px 14px;
  border-left: 4px solid #c57484;
  border-radius: 12px;
  background: rgba(197, 116, 132, 0.10);
  color: #4a3439;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.form-hint.form-hint-important {
  border-left-color: #b5924d;
  background: rgba(181, 146, 77, 0.14);
  color: #4b3a1f;
}

.choice-group {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(69, 46, 36, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .48);
}

.choice-group legend {
  padding: 0 6px;
}

.choice-group .form-hint {
  margin: 0 0 4px;
}

.choice-box,
.form-consent label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  cursor: pointer;
}

.choice-box {
  padding: 13px 14px;
  border: 1px solid rgba(69, 46, 36, .10);
  border-radius: 16px;
  background: rgba(255, 255, 255, .56);
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.choice-box:hover {
  border-color: rgba(69, 46, 36, .22);
  background: rgba(255, 255, 255, .84);
  transform: translateY(-1px);
}

.choice-box input,
.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--ink);
  cursor: pointer;
}

.choice-box span,
.form-consent span {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.price-note {
  padding: 15px 16px;
  border-color: rgba(181, 146, 77, .24);
  background: rgba(255, 255, 255, .50);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  box-shadow: none;
}

.form-consent {
  padding: 16px 18px;
  border: 1px solid rgba(69, 46, 36, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .56);
}

.form-consent a {
  color: var(--ink);
  font-weight: 650;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
}

.form-status:not(:empty) {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .62);
}

.form-status.is-error:not(:empty) {
  border: 1px solid rgba(157, 47, 32, .20);
  background: rgba(157, 47, 32, .06);
  color: #9d2f20;
}

.form-status.is-success:not(:empty) {
  border: 1px solid rgba(47, 107, 63, .20);
  background: rgba(47, 107, 63, .06);
  color: #2f6b3f;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  width: fit-content;
  min-width: 220px;
  padding: 15px 25px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(23, 23, 23, .13);
}

.btn[disabled] {
  opacity: .72;
  cursor: wait;
}

.is-invalid {
  border-color: rgba(157, 47, 32, .52) !important;
  box-shadow: 0 0 0 4px rgba(157, 47, 32, .08) !important;
}

.choice-group.is-invalid,
.form-consent.is-invalid {
  border-color: rgba(157, 47, 32, .42);
  box-shadow: 0 0 0 4px rgba(157, 47, 32, .06);
}

@media (max-width: 980px) {
  .hero-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
    line-height: 1.62;
  }

  .wrap {
    width: min(var(--wrap), calc(100% - 28px));
  }

  .hero,
  .form-section {
    padding-block: clamp(46px, 10vw, 72px);
  }

  h1 {
    font-size: clamp(40px, 11vw, 58px);
    line-height: .98;
  }

  h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .lead {
    font-size: 19px;
  }

  .side-card,
  .form-card,
  .notice {
    border-radius: 24px;
  }

  .form-card {
    padding: 22px;
  }

  .form-field input,
  .form-field select {
    min-height: 52px;
    border-radius: 14px;
  }

  .choice-group {
    padding: 16px;
    border-radius: 18px;
  }

  .btn {
    width: 100%;
  }
}

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

/* ---------- PATCH: widoczne podpowiedzi formularza ---------- */
/* Na końcu pliku, żeby nadpisać wcześniejsze reguły typu p { color: var(--muted); } */

.form-card .form-hint,
.cb-interest-form .form-hint,
.choice-group .form-hint,
p.form-hint {
  display: block;
  margin: 8px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(197, 116, 132, .22);
  border-left: 4px solid var(--rose);
  border-radius: 14px;
  background: rgba(197, 116, 132, .11);
  color: #4a3439 !important;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.choice-group > .form-hint {
  margin: 2px 0 6px;
}

.form-card .form-hint.form-hint-important,
.cb-interest-form .form-hint.form-hint-important,
.choice-group .form-hint.form-hint-important,
p.form-hint.form-hint-important {
  border-color: rgba(181, 146, 77, .30);
  border-left-color: var(--gold);
  background: rgba(181, 146, 77, .16);
  color: #4b3a1f !important;
}

@media (max-width: 640px) {
  .form-card .form-hint,
  .cb-interest-form .form-hint,
  .choice-group .form-hint,
  p.form-hint {
    padding: 11px 12px;
    font-size: 13.5px;
    border-radius: 12px;
  }
}

