@font-face {
  font-family: "Alex Brush";
  src: url("../fonts/AlexBrush-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inria Serif";
  src: url("../fonts/InriaSerif-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inria Serif";
  src: url("../fonts/InriaSerif-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inria Serif";
  src: url("../fonts/InriaSerif-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Variable.ttf") format("truetype");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-latin.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --onyx: #111111;
  --iron: #5a3114;
  --grey: #9e9e9e;
  --white: #ffffff;
  --brown: #49250b;
  --brown-2: #5a3114;
  --brown-soft: rgba(72, 38, 15, 0.1);
  --ink: #111111;
  --muted: #666666;
  --gray: #9e9e9e;
  --paper: #ffffff;
  --mist: #f5f5f5;
  --mist-2: #f3f1ef;
  --line: rgba(72, 38, 15, 0.12);
  --max: 1080px;
  --nav: 76px;
  --radius: 16px;
  --pill: 999px;
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Satoshi, Montserrat, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; border-radius: 7px; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.skip {
  position: absolute; left: -999px; top: 0;
}
.skip:focus { left: 12px; top: 12px; z-index: 80; background: var(--white); color: var(--onyx); padding: 8px 12px; }

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

/* NAV */
.site-header {
  position: sticky; top: 0; z-index: 40;
  height: var(--nav);
  background: var(--white);
  display: flex; align-items: center;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.site-header .bar {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.logo {
  font-family: "Alex Brush", cursive;
  font-size: 38px;
  line-height: 1;
  color: var(--brown);
  text-decoration: none;
  padding-bottom: 4px;
}
.nav {
  display: flex; align-items: center; gap: 28px;
}
.nav a {
  text-decoration: none;
  color: #2a2a2a;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav a .ico { font-size: 16px; line-height: 1; }
.ig-btn {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--brown); color: var(--white);
  display: grid; place-items: center;
  text-decoration: none;
}
.ig-btn svg { width: 20px; height: 20px; fill: currentColor; }
.menu-toggle {
  display: none; border: 0; background: none; padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px; background: var(--brown); margin: 5px 0;
}

/* HERO */
.hero {
  min-height: calc(100dvh - var(--nav));
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 35%, #ffffff 0%, #f3f3f3 55%, #e8e8e8 100%);
}
.hero-photo {
  position: absolute; inset: 0;
  background: url("../img/TOP-ZDJ-TLO-transparent-web-scaled.webp") center 8% / contain no-repeat;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 20px 56px;
  width: min(820px, 100%);
}
.hero-name {
  font-family: "Alex Brush", cursive;
  font-size: clamp(56px, 8vw, 92px);
  color: var(--brown);
  line-height: 1.05;
  margin: 0 0 6px;
  font-weight: 400;
}
.hero-tag {
  font-family: "Inria Serif", serif;
  font-size: clamp(20px, 2.6vw, 28px);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #b5b0aa;
  margin: 0 0 28px;
  font-weight: 400;
}
.hero-actions {
  display: flex; align-items: center; justify-content: center; gap: 28px;
  margin-bottom: 36px;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brown); color: var(--white);
  text-decoration: none;
  border: 0;
  border-radius: var(--pill);
  padding: 12px 28px;
  font-family: Satoshi, sans-serif;
  font-size: 16px; font-weight: 500;
  box-shadow: 0 0 5px rgba(0,0,0,.27);
  cursor: pointer;
  transition: background .2s, box-shadow .2s, transform .15s;
}
.btn:hover, .btn:focus-visible {
  background: var(--brown-2);
  color: var(--white);
  box-shadow: 0 0 20px rgba(0,0,0,.17);
}
.btn:active { transform: translateY(1px); }
.btn-ghost {
  background: transparent; color: var(--brown);
  box-shadow: none; border-radius: 0; padding: 8px 0;
  text-decoration: underline; text-underline-offset: 4px;
  font-weight: 500;
}
.btn-ghost:hover { background: transparent; box-shadow: none; }
.btn-light {
  background: var(--white); color: var(--brown);
}
.hero-proof {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  color: #555; font-size: 16px;
}
.avatars { display: flex; }
.avatars img {
  width: 36px; height: 36px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--white);
  margin-left: -8px;
}
.avatars img:first-child { margin-left: 0; }
.hero-proof strong { color: var(--brown); font-size: 28px; font-weight: 700; letter-spacing: -0.02em; }
.hero-line {
  margin: 12px 0 0;
  color: #8a8682;
  font-family: "Inria Serif", serif;
  font-style: italic;
  font-size: 16px;
}

/* SECTIONS */
.section { padding: 88px 0; }
.section-mist { background: var(--mist); }
.section-soft { background: var(--mist-2); }
.kicker {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 8px;
}
h1, h2, .h2 {
  font-family: "Inria Serif", serif;
  font-weight: 400;
  color: var(--brown);
  letter-spacing: -0.01em;
}
.section h2, .h2 {
  text-align: center;
  font-size: clamp(32px, 4vw, 44px);
  margin: 0 0 12px;
  line-height: 1.15;
}
.lead {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 16px;
}
.prose {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  max-width: 62ch;
}
.prose p { margin: 0 0 14px; }

/* ABOUT */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px auto 28px;
  max-width: 720px;
}
.stat {
  background: #f7f4f1;
  border-radius: 14px;
  padding: 22px 12px;
  text-align: center;
}
.stat b {
  display: block;
  font-family: "Inria Serif", serif;
  font-size: 28px;
  color: var(--brown);
  font-weight: 400;
}
.stat span { color: var(--muted); font-size: 13px; }
.quote {
  text-align: center;
  font-family: "Inria Serif", serif;
  font-style: italic;
  color: #4a4038;
  max-width: 680px;
  margin: 8px auto 28px;
  font-size: 18px;
  line-height: 1.55;
}
.center { text-align: center; }

/* MENTORING HOME */
.stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 8px 0 36px;
}
.stage {
  background: var(--white);
  border-radius: 14px;
  padding: 22px 20px 24px;
  box-shadow: 0 1px 0 rgba(0,0,0,.03);
}
.stage .when {
  color: var(--gray);
  font-size: 12px;
  margin-bottom: 8px;
}
.stage h3 {
  font-family: "Inria Serif", serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--brown);
  margin: 0 0 8px;
}
.stage p { margin: 0; color: #555; font-size: 14px; line-height: 1.5; }

.perks { max-width: 560px; margin: 0 auto 32px; }
.perks h3 {
  text-align: center;
  font-family: "Inria Serif", serif;
  font-weight: 400;
  color: var(--brown);
  font-size: 22px;
  margin: 0 0 16px;
}
.perks ul { list-style: none; padding: 0; margin: 0; }
.perks li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 8px 0;
  color: var(--ink);
  font-size: 15px;
}
.perks li::before {
  content: "";
  width: 16px; height: 16px; flex: 0 0 16px; margin-top: 3px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='%2349250B' d='M6.2 11.6 2.8 8.2l1.2-1.2 2.2 2.2 5.8-5.8 1.2 1.2z'/></svg>") center / contain no-repeat;
}

/* BOOK */
.book {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.book img { width: 100%; border-radius: 4px; }
.book .meta { color: var(--gray); font-size: 13px; margin: 0 0 8px; }
.book h2 { text-align: left; font-size: clamp(26px, 3vw, 34px); }
.book .prose { margin-top: 12px; }

/* STORIES */
.stories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.story {
  background: #f7f4f1;
  border-radius: 14px;
  padding: 22px 22px 18px;
}
.story p { margin: 0 0 16px; color: var(--ink); font-size: 14.5px; line-height: 1.55; }
.story footer {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 12px;
}
.story .who b { display: block; color: var(--brown); font-weight: 600; }
.story .who span { color: var(--muted); font-size: 13px; }
.story .cash { text-align: right; color: var(--brown); font-weight: 600; font-size: 15px; }
.story .cash small { display: block; font-weight: 400; color: var(--muted); font-size: 12px; }

/* SOCIAL */
.socials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.social {
  border-radius: 16px;
  padding: 28px 24px;
  text-decoration: none;
  display: block;
  min-height: 160px;
}
.social.ig { background: #f3eef8; }
.social.yt { background: #f8eee8; }
.social h3 { margin: 10px 0 6px; font-size: 20px; font-family: Satoshi, sans-serif; font-weight: 600; }
.social p { margin: 0 0 14px; color: #555; font-size: 14px; }
.social .count { font-size: 13px; color: var(--muted); }

/* PORTFOLIO */
.portfolio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
  display: flex; flex-direction: column;
}
.card img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 0;
}
.card .body { padding: 16px 16px 18px; flex: 1; display: flex; flex-direction: column; }
.card .tag { color: var(--gray); font-size: 12px; margin-bottom: 4px; }
.card h3 { margin: 0 0 6px; font-size: 18px; font-family: "Inria Serif", serif; font-weight: 400; color: var(--brown); }
.card p { margin: 0 0 12px; color: #555; font-size: 13.5px; flex: 1; }
.card a { color: var(--brown); font-size: 14px; font-weight: 500; }

/* FOOTER */
.site-footer {
  background: var(--brown);
  color: #f4ece4;
  padding: 56px 0 40px;
}
.footer-grid {
  width: min(1100px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 32px;
  align-items: center;
}
.site-footer .logo { color: #f6e6d4; font-size: 42px; }
.site-footer p { color: #d9c8b6; font-size: 14px; }
.site-footer .legal a { color: #f4ece4; margin-right: 14px; font-size: 14px; }
.fineprint { font-size: 11px; line-height: 1.5; color: #cbb7a4; max-width: 520px; margin-top: 18px; }
.footer-cta { display: flex; align-items: center; gap: 20px; justify-content: flex-end; }
.footer-cta img {
  width: 180px; height: auto; border-radius: 8px;
}
.footer-cta .ask {
  font-family: "Inria Serif", serif;
  font-size: 22px;
  color: #f6e6d4;
  margin: 0 0 14px;
}

/* LEGAL */
.legal-page { padding: 56px 0 80px; }
.legal-page h1 { font-size: clamp(32px, 4vw, 44px); margin: 0 0 28px; text-align: center; }
.legal-page h2 { font-family: Satoshi, sans-serif; font-size: 18px; font-weight: 600; color: var(--brown); text-align: left; margin: 28px 0 10px; }
.legal-page p, .legal-page li { color: var(--ink); font-size: 15px; line-height: 1.65; }
.legal-page ul { padding-left: 18px; }

/* ABOUT TIMELINE */
.timeline { max-width: 720px; margin: 36px auto 0; }
.year {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.year b { font-family: "Inria Serif", serif; font-size: 22px; color: var(--brown); font-weight: 400; }
.about-hero-img { width: min(920px, 100%); margin: 24px auto 8px; border-radius: 10px; }

/* MENTORING PAGE */
.m-hero { padding: 72px 0 48px; text-align: center; }
.m-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.12;
  margin: 0 0 18px;
}
.m-hero .sub { color: var(--muted); margin: 0 0 6px; }
.m-box {
  background: var(--mist);
  border-radius: 16px;
  padding: 28px 32px;
  max-width: 720px;
  margin: 28px auto 0;
  color: var(--ink);
}
.check-grid {
  display: grid; gap: 10px; max-width: 640px; margin: 24px auto 0;
}
.check-grid div {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px;
}

.no-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-top: 24px;
}
.no-card {
  background: var(--white); border-radius: 14px; padding: 20px;
  text-align: center;
}
.no-card strong { display: block; color: var(--brown); margin-bottom: 6px; }

.model {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px;
}
.model article {
  background: var(--white); border-radius: 14px; padding: 22px;
}
.model h3 { margin: 0 0 8px; font-family: "Inria Serif", serif; font-weight: 400; color: var(--brown); }

.plan { margin-top: 12px; }
.plan-block { margin: 0 0 28px; }
.plan-head {
  display: flex; align-items: baseline; gap: 14px; margin-bottom: 12px;
}
.plan-head .num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--brown); color: var(--white);
  display: grid; place-items: center; font-size: 14px; font-weight: 600;
}
.plan-head h3 { margin: 0; font-size: 22px; font-family: "Inria Serif", serif; font-weight: 400; color: var(--brown); }
.plan-head .when { color: var(--muted); font-size: 14px; }
.item {
  background: var(--white); border-radius: 12px; padding: 16px 18px; margin-bottom: 8px;
}
.item h4 { margin: 0 0 4px; font-size: 16px; }
.item p { margin: 0; color: #555; font-size: 14px; }
.gem {
  background: #f7f0e8;
  border-radius: 12px;
  padding: 16px 18px;
}

.faq details {
  background: var(--white); border-radius: 12px; padding: 14px 18px; margin-bottom: 8px;
}
.faq summary { cursor: pointer; font-weight: 600; color: var(--brown); }
.faq p { margin: 10px 0 0; color: #444; }

/* NEWSLETTER */
.nl {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 40px;
  align-items: center;
  padding: 48px 0 80px;
}
.nl img { width: 100%; }
.nl h1 { font-size: clamp(36px, 5vw, 52px); margin: 0 0 16px; }
.form { display: grid; gap: 12px; margin-top: 22px; max-width: 420px; }
.form label { font-size: 13px; color: var(--brown); }
.form input[type="text"],
.form input[type="email"] {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  background: var(--white);
  color: var(--ink);
}
.form input:focus { outline: 2px solid var(--brown); outline-offset: 1px; }
.consent { font-size: 13px; color: var(--grey); line-height: 1.5; }
.form-msg { font-size: 14px; min-height: 1.2em; }
.form-msg.ok { color: var(--grey); }
.form-msg.err { color: var(--grey); }

/* COOKIE */
.cookie {
  position: fixed; left: 24px; bottom: 24px; z-index: 50;
  width: min(420px, calc(100% - 32px));
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 16px 50px rgba(0,0,0,.18);
  padding: 22px 22px 18px;
}
.cookie h2 { font-family: Satoshi, sans-serif; font-size: 18px; font-weight: 700; color: var(--onyx); text-align: left; margin: 0 0 8px; }
.cookie p { color: var(--iron); font-size: 14px; margin: 0 0 14px; }
.cookie-actions { display: grid; gap: 8px; }
.cookie .btn-outline {
  background: var(--white); color: #1a56db; border: 1px solid #c9d4ea;
  box-shadow: none; border-radius: 10px;
}
.cookie .btn-primary-blue {
  background: #1a56db; color: var(--white); box-shadow: none; border-radius: 10px;
}
.cookie[hidden] { display: none; }

/* MOBILE */
@media (max-width: 900px) {
  .stages, .stories, .socials, .portfolio, .book, .no-grid, .model, .nl, .footer-grid, .about-stats {
    grid-template-columns: 1fr;
  }
  .portfolio { grid-template-columns: 1fr 1fr; }
  .book { gap: 24px; }
  .footer-cta { justify-content: flex-start; flex-wrap: wrap; }
}
@media (max-width: 767px) {
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute; top: var(--nav); left: 0; right: 0;
    background: var(--white);
    flex-direction: column; align-items: flex-start;
    padding: 16px 24px 24px;
    box-shadow: 0 12px 24px rgba(0,0,0,.06);
    gap: 16px;
  }
  .nav.open { display: flex; }
  .hero-name { font-size: 52px; }
  .hero-content { padding-bottom: 36px; }
  .section { padding: 56px 0; }
  .portfolio { grid-template-columns: 1fr; }
  .year { grid-template-columns: 1fr; gap: 6px; }
  .wrap, .wrap-narrow { width: calc(100% - 32px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
