/* ============================================================
   KAROLINA PROCZEK COACHING — STYLESHEET
   Paleta: krem, beż, głęboka zieleń, złamana biel
   Fonty: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

:root {
  --cream:      #F5F0E8;
  --beige:      #E8DFD0;
  --beige-dark: #C9B99A;
  --green:      #2D4A3E;
  --green-mid:  #3D6357;
  --green-light:#EBF0ED;
  --warm-white: #FDFAF5;
  --text:       #1C2420;
  --text-muted: #6B7672;
  --gold:       #A8916A;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --shadow: 0 8px 40px rgba(44, 74, 62, 0.10);
  --shadow-lg: 0 20px 60px rgba(44, 74, 62, 0.15);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* UTILITIES */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.center { text-align: center; }
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--green);
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
}
.section-intro {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}
.br-desk { display: none; }
@media (min-width: 900px) { .br-desk { display: block; } }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
}
.btn--primary {
  background: var(--green);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn--outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn--outline:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}
.btn--full { width: 100%; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(253, 250, 245, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(44,74,62,0.08);
  padding: 14px 40px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
  background: var(--green);
  color: var(--cream) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 500 !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--green-mid) !important; }
/* Lang toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-sep {
  font-size: 12px;
  color: var(--beige-dark);
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 2px 4px;
  transition: color var(--transition);
  line-height: 1;
}
.lang-btn.active {
  color: var(--green);
  font-weight: 700;
}
.lang-btn:hover { color: var(--green); }

.nav-burger { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 120px 80px 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero-shape--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #EBF0ED 0%, transparent 70%);
  top: -200px; right: -100px;
}
.hero-shape--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #E8DFD0 0%, transparent 70%);
  bottom: 0; left: -100px;
}

.hero-content {
  animation: fadeUp 0.9s ease both;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--green);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--green-mid);
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 440px;
}
.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero-photo-frame {
  width: 420px;
  height: 520px;
  border-radius: 220px 220px 32px 32px;
  overflow: hidden;
  background: var(--beige);
  position: relative;
  box-shadow: var(--shadow-lg);
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-photo-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  background: var(--beige);
  font-style: italic;
}
.hero-tag {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.hero-tag-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--green);
  line-height: 1;
}
.hero-tag-txt {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust {
  background: var(--green);
  padding: 28px 0;
}
.trust .container {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}
.trust-logos {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}
.trust-logos li {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 120px 0;
  background: var(--warm-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.about-accent-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 32px;
}
.about-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-style: italic;
  font-weight: 300;
  color: var(--green);
  line-height: 1.4;
  border: none;
}
.about-text p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-text .btn { margin-top: 16px; }

/* ============================================================
   OFFER
   ============================================================ */
.offer {
  padding: 120px 0;
  background: var(--cream);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}
.card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--beige);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card--featured {
  background: var(--green);
  border-color: var(--green);
  color: var(--cream);
}
.card-tag {
  position: absolute;
  top: -14px;
  left: 36px;
  background: var(--gold);
  color: white;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}
.card-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 20px;
}
.card--featured .card-icon { color: rgba(255,255,255,0.5); }
.card-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--green);
}
.card--featured .card-title { color: var(--cream); }
.card-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex: 1;
}
.card--featured .card-desc { color: rgba(235,240,237,0.8); }
.card-features {
  margin-bottom: 32px;
}
.card-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--beige);
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-features li::before {
  content: '–';
  color: var(--gold);
  flex-shrink: 0;
}
.card--featured .card-features li {
  color: rgba(235,240,237,0.85);
  border-bottom-color: rgba(255,255,255,0.12);
}
.card--featured .card-features li::before { color: rgba(255,255,255,0.4); }
.card--featured .btn--outline {
  color: var(--cream);
  border-color: rgba(255,255,255,0.4);
}
.card--featured .btn--outline:hover {
  background: rgba(255,255,255,0.1);
}

/* ============================================================
   DIFFERENTIATOR
   ============================================================ */
.differentiator {
  padding: 120px 0;
  background: var(--warm-white);
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.diff-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--green);
  position: sticky;
  top: 120px;
}
.diff-title em { font-style: italic; }
.diff-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pillar {
  padding: 40px 0;
  border-bottom: 1px solid var(--beige);
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  gap: 0 24px;
  align-items: start;
}
.pillar:first-child { border-top: 1px solid var(--beige); }
.pillar-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--beige-dark);
  letter-spacing: 0.05em;
  padding-top: 4px;
  grid-row: 1 / 3;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 8px;
}
.pillar p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 120px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.contact-email {
  color: var(--green);
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  transition: color var(--transition);
}
.contact-email:hover { color: var(--gold); }
.contact-linkedin a {
  color: var(--green);
  font-weight: 500;
}

/* FORM */
.contact-form {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--beige);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--warm-white);
  transition: border-color var(--transition);
  outline: none;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--beige-dark); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--green);
  margin-top: 2px;
}
.form-check label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.5;
}
.form-success {
  display: none;
  text-align: center;
  font-size: 14px;
  color: var(--green-mid);
  font-style: italic;
  padding: 12px;
  background: var(--green-light);
  border-radius: var(--radius);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 40px 0;
  background: var(--green);
  color: rgba(255,255,255,0.6);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
}
.footer-copy { font-size: 13px; }
.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.9); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 120px 40px 80px; text-align: center; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-photo-wrap { justify-content: center; }
  .hero-photo-frame { width: 320px; height: 400px; }
  .hero-tag { left: 50%; transform: translateX(-50%); bottom: -20px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-quote { font-size: 26px; }
  .cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .diff-grid { grid-template-columns: 1fr; gap: 40px; }
  .diff-title { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 32px; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .lang-toggle { order: 1; }
  .nav-burger  { order: 2; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--warm-white);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 99;
  }
  .nav-links.open a { font-size: 22px; }
  .nav-burger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
    padding: 4px;
  }
  .nav-burger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--green);
    transition: all var(--transition);
  }
  .nav-burger.open span:first-child { transform: rotate(45deg) translate(5px, 5px); }
  .nav-burger.open span:last-child  { transform: rotate(-45deg) translate(5px, -5px); }
  .hero { padding: 100px 24px 60px; }
  .trust .container { gap: 24px; }
  .trust-logos { gap: 20px; }
  .about, .offer, .differentiator, .contact { padding: 80px 0; }
  .footer-inner { flex-direction: column; text-align: center; }
}
