/* ============================================================
   vantoria — Alex Sikorski, prawnik (Gdańsk)
   Umowy handlowe · prawo rodzinne · doradztwo prawne
   Styl: ciepły editorial, serifowe nagłówki na sansowym tekście,
   jeden mocny terakotowy akcent, mocno zaokrąglone zdjęcia,
   pastylkowe przyciski.
   Kroje: DM Serif Display (nagłówki) + Poppins (tekst)
   ============================================================ */

:root {
  --paper: #fbf8f4;
  --paper-2: #ffffff;
  --ink: #1d1e20;
  --muted: #56585e;
  --muted-2: #8a8c92;
  --orange: #cc6333;
  --orange-dark: #b5521f;
  --cream: #f5ece3;
  --line: #e8e1d8;
  --line-dark: rgba(255, 255, 255, 0.18);
  --dark: #241b15;
  --dark-2: #1b140f;
  --radius: 26px;
  --radius-sm: 18px;
  --wrap: 1200px;
  --display: "DM Serif Display", Georgia, "Times New Roman", serif;
  --body: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--body); color: var(--ink); background: var(--paper); line-height: 1.6; font-size: 16px; font-weight: 300; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; line-height: 1.18; letter-spacing: 0; }
em { font-style: italic; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.va-wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

.va-eyebrow { font-family: var(--body); font-size: 12.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange); display: inline-block; }
.va-eyebrow.is-light { color: #f4c9b2; }

.va-btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--body); font-size: 15px; font-weight: 500; padding: 15px 34px; background: var(--ink); color: #fff; border: 2px solid var(--ink); border-radius: 999px; cursor: pointer; transition: background .25s, border-color .25s, color .25s; }
.va-btn:hover { background: var(--orange); border-color: var(--orange); }
.va-btn--orange { background: var(--orange); border-color: var(--orange); }
.va-btn--orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.va-btn--light { background: #fff; color: var(--ink); border-color: #fff; }
.va-btn--light:hover { background: transparent; color: #fff; }
.va-btn--ghost { background: transparent; color: var(--ink); }
.va-btn--ghost:hover { background: var(--ink); color: #fff; }

.va-link { display: inline-flex; align-items: center; gap: 9px; font-family: var(--body); font-size: 14px; font-weight: 600; letter-spacing: 0.02em; color: var(--ink); border-bottom: 2px solid var(--orange); padding-bottom: 3px; transition: gap .25s, color .25s; }
.va-link:hover { gap: 14px; color: var(--orange); }
.va-link svg { width: 16px; height: 16px; }

/* ============================================================ HEADER */
.va-header { position: absolute; top: 0; left: 0; right: 0; z-index: 60; padding: 20px 0; }
.va-header.is-stuck { position: fixed; background: rgba(251,248,244,.97); backdrop-filter: blur(6px); padding: 12px 0; box-shadow: 0 2px 20px rgba(29,30,32,.06); animation: vaDrop .4s ease; }
@keyframes vaDrop { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.va-header .va-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.va-logo { display: flex; align-items: center; gap: 11px; }
.va-logo-mark { width: 42px; height: 42px; border-radius: 50%; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 22px; flex: none; }
.va-logo-word b { display: block; font-family: var(--display); font-size: 23px; color: #fff; line-height: 1; }
.va-logo-word span { display: block; font-family: var(--body); font-size: 9.5px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,.82); margin-top: 4px; }
.va-header.is-stuck .va-logo-word b { color: var(--ink); }
.va-header.is-stuck .va-logo-word span { color: var(--muted); }
.va-nav ul { list-style: none; display: flex; align-items: center; gap: 30px; }
.va-nav a { font-family: var(--body); font-size: 13px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; padding-bottom: 3px; border-bottom: 1px solid transparent; transition: border-color .2s, color .2s; }
.va-header.is-stuck .va-nav a { color: var(--ink); }
.va-nav a:hover, .va-nav a.is-active { border-color: var(--orange); }
.va-head-cta { display: flex; align-items: center; gap: 16px; }
.va-head-cta .va-btn { padding: 11px 24px; font-size: 13px; }
.va-header:not(.is-stuck) .va-head-cta .va-btn { background: #fff; color: var(--ink); border-color: #fff; }
.va-header:not(.is-stuck) .va-head-cta .va-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.va-burger { display: none; background: none; border: 0; cursor: pointer; width: 42px; height: 42px; padding: 10px; }
.va-burger span { display: block; height: 2px; width: 100%; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.va-header.is-stuck .va-burger span { background: var(--ink); }
.va-burger span + span { margin-top: 6px; }
.va-burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.va-burger.is-open span:nth-child(2) { opacity: 0; }
.va-burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================ HERO */
.va-hero { position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; background-size: cover; background-position: center; }
.va-hero::after { content: ""; position: absolute; inset: 0; background: rgba(23,16,11,.5); }
.va-hero .va-wrap { position: relative; z-index: 2; max-width: 900px; }
.va-hero h1 { color: #fff; font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.12; margin-bottom: 22px; }
.va-hero h1 em { color: #f0b184; }
.va-hero p { font-size: 18px; color: #f2ebe4; max-width: 54ch; margin: 0 auto 32px; font-weight: 300; }
.va-hero .va-btn { background: var(--orange); border-color: var(--orange); }
.va-hero .va-btn:hover { background: #fff; color: var(--ink); border-color: #fff; }
.va-hero-trust { margin-top: 24px; font-family: var(--body); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: #f4c9b2; }

/* ============================================================ ORANGE BAND */
.va-band { background: var(--orange); color: #fff; text-align: center; padding: 60px 0; }
.va-band p { font-family: var(--display); font-size: clamp(1.5rem, 3.2vw, 2.4rem); line-height: 1.3; max-width: 900px; margin: 0 auto; }
.va-band p em { font-style: italic; }

/* ============================================================ SECTIONS */
.va-section { padding: 92px 0; }
.va-section.is-cream { background: var(--cream); }
.va-section.is-white { background: var(--paper-2); }

/* problem: text-left, rounded image-right */
.va-split { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
.va-split.is-reverse .va-split-media { order: -1; }
.va-split-media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; border-radius: var(--radius); }
.va-split-body .va-eyebrow { margin-bottom: 18px; }
.va-split-body h2 { font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.15; margin-bottom: 20px; }
.va-split-body h2 em { color: var(--orange); }
.va-split-body p { color: var(--muted); margin-bottom: 16px; }

/* value: headline-left + paragraph-right + fullwidth image */
.va-value-head { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: end; margin-bottom: 44px; }
.va-value-head h2 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); line-height: 1.12; }
.va-value-head h2 em { color: var(--orange); }
.va-value-head p { color: var(--ink); font-size: 17px; }
.va-value-img img { width: 100%; height: clamp(300px, 42vw, 520px); object-fit: cover; border-radius: var(--radius); }

/* ============================================================ PRACTICE CARDS */
.va-head { max-width: 720px; margin-bottom: 50px; }
.va-head.is-center { text-align: center; margin-left: auto; margin-right: auto; }
.va-head .va-eyebrow { margin-bottom: 16px; }
.va-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
.va-head p { color: var(--muted); margin-top: 14px; font-size: 16.5px; }
.va-cards { display: grid; grid-template-columns: 1fr; gap: 30px; }
.va-card { display: block; }
.va-card-img { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius-sm); margin-bottom: 18px; background: var(--cream); }
.va-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.va-card:hover .va-card-img img { transform: scale(1.05); }
.va-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.va-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 12px; }
.va-card:hover .va-link { gap: 14px; color: var(--orange); }

/* ============================================================ FEATURE BAND (orange) */
.va-feature { background: var(--orange); color: #fff; }
.va-feature .va-wrap { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; padding-top: 84px; padding-bottom: 84px; }
.va-feature-media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; border-radius: var(--radius); }
.va-feature-body h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 30px; }
.va-frow { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.28); }
.va-frow:first-of-type { border-top: 0; }
.va-frow h3 { color: #fff; font-size: 1.4rem; margin-bottom: 6px; }
.va-frow p { color: rgba(255,255,255,.9); font-size: 15px; }

/* ============================================================ TESTIMONIALS */
.va-quotes { display: grid; grid-template-columns: 1fr; gap: 26px; }
.va-quote { background: var(--paper-2); border-radius: var(--radius-sm); padding: 32px 28px; box-shadow: 0 14px 40px rgba(29,30,32,.06); }
.va-quote .va-stars { color: var(--orange); letter-spacing: 2px; margin-bottom: 14px; }
.va-quote blockquote { font-family: var(--display); font-size: 1.2rem; line-height: 1.4; margin-bottom: 20px; }
.va-quote-author { display: flex; align-items: center; gap: 12px; }
.va-quote-author .va-av { width: 44px; height: 44px; border-radius: 50%; background: var(--cream); color: var(--orange); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 17px; }
.va-quote-author b { display: block; font-weight: 500; font-size: 14.5px; }
.va-quote-author span { font-size: 13px; color: var(--muted); }

/* ============================================================ FAQ */
.va-faq { display: grid; grid-template-columns: 1fr; gap: 40px 60px; }
.va-faq-item h3 { font-size: 1.3rem; margin-bottom: 12px; }
.va-faq-item p { color: var(--muted); font-size: 15.5px; }

/* ============================================================ CONTACT */
.va-contact { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
.va-contact-rows { display: grid; gap: 16px; margin-top: 26px; }
.va-crow { display: flex; align-items: center; gap: 16px; }
.va-crow .va-tile { width: 50px; height: 50px; flex: none; background: var(--cream); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--orange); }
.va-crow .va-tile svg { width: 22px; height: 22px; }
.va-crow b { display: block; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); }
.va-crow a, .va-crow span { font-size: 17px; color: var(--ink); }
.va-crow a:hover { color: var(--orange); }
.va-map { min-height: 360px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.va-map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* ============================================================ PAGEHEAD / PROSE / STEPS / PRICING */
.va-pagehead { position: relative; color: #fff; background-size: cover; background-position: center; text-align: center; padding: 190px 0 88px; }
.va-pagehead::after { content: ""; position: absolute; inset: 0; background: rgba(23,16,11,.58); }
.va-pagehead .va-wrap { position: relative; z-index: 2; }
.va-pagehead .va-eyebrow { color: #f4c9b2; margin-bottom: 14px; }
.va-pagehead h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.8rem); }
.va-pagehead h1 em { color: #f0b184; }
.va-pagehead p { color: #f2ebe4; max-width: 620px; margin: 16px auto 0; font-size: 17px; }
.va-crumbs { margin-top: 20px; font-family: var(--body); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,.75); }
.va-crumbs a { color: #f0b184; }

.va-prose { max-width: 800px; margin: 0 auto; }
.va-prose .va-lead { font-family: var(--display); font-size: 24px; line-height: 1.4; color: var(--ink); margin-bottom: 14px; }
.va-prose h2 { font-size: 2rem; margin: 42px 0 14px; }
.va-prose h3 { font-family: var(--body); font-size: 1.2rem; font-weight: 600; margin: 26px 0 10px; }
.va-prose p { color: var(--muted); margin-bottom: 16px; }
.va-prose ul, .va-prose ol { margin: 0 0 18px 22px; color: var(--muted); }
.va-prose li { margin-bottom: 9px; }
.va-prose a { color: var(--orange); text-decoration: underline; }
.va-prose strong { color: var(--ink); }
.va-callout { background: var(--cream); border-radius: var(--radius-sm); padding: 24px 28px; margin: 26px 0; }
.va-callout p { margin: 0; color: var(--ink); }

.va-steps { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 860px; margin: 0 auto; }
.va-step { display: flex; gap: 22px; background: var(--paper-2); border-radius: var(--radius-sm); padding: 28px; box-shadow: 0 12px 34px rgba(29,30,32,.05); }
.va-step-n { font-family: var(--display); font-size: 2.2rem; color: var(--orange); line-height: 1; flex: none; }
.va-step h3 { font-family: var(--display); font-weight: 400; font-size: 1.4rem; margin-bottom: 8px; }
.va-step p { color: var(--muted); font-size: 15px; margin: 0; }

.va-price-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.va-price { background: var(--paper-2); border-radius: var(--radius-sm); padding: 34px 30px; display: flex; flex-direction: column; box-shadow: 0 14px 40px rgba(29,30,32,.06); }
.va-price.is-feat { outline: 2px solid var(--orange); }
.va-price .va-k { font-family: var(--body); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); font-weight: 600; margin-bottom: 12px; }
.va-price h3 { font-size: 1.5rem; margin-bottom: 8px; }
.va-price .va-amt { font-family: var(--display); font-size: 2.4rem; line-height: 1; margin-bottom: 4px; }
.va-price .va-amt small { font-family: var(--body); font-size: 14px; color: var(--muted); font-weight: 400; }
.va-price .va-sub { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.va-price ul { list-style: none; margin-bottom: 24px; }
.va-price li { padding: 9px 0 9px 24px; position: relative; border-top: 1px solid var(--line); font-size: 14.5px; }
.va-price li::before { content: ""; position: absolute; left: 0; top: 16px; width: 12px; height: 2px; background: var(--orange); }
.va-price .va-btn { margin-top: auto; justify-content: center; }

/* ============================================================ SITUATIONS */
.va-sit { display: grid; grid-template-columns: 1fr; gap: 24px; }
.va-sit-item { background: var(--paper-2); border-radius: var(--radius-sm); padding: 30px 28px; box-shadow: 0 12px 34px rgba(29, 30, 32, .05); }
.va-sit-item .va-sit-n { font-family: var(--display); font-size: 2rem; color: var(--orange); line-height: 1; }
.va-sit-item h3 { font-family: var(--display); font-weight: 400; font-size: 1.4rem; margin: 12px 0 8px; }
.va-sit-item p { color: var(--muted); font-size: 15px; margin: 0; }
@media (min-width: 700px) { .va-sit { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================ FOOTER */
.va-footer { background: var(--dark); color: #d5cdc4; padding: 66px 0 0; }
.va-footer-top { display: grid; grid-template-columns: 1fr; gap: 40px; padding-bottom: 46px; }
.va-footer-brand .va-logo-word b { color: #fff; }
.va-footer-brand .va-logo-word span { color: rgba(255,255,255,.7); }
.va-footer p { color: #a79c90; font-size: 14.5px; margin: 16px 0; max-width: 34ch; }
.va-footer h4 { font-family: var(--body); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.va-footer ul { list-style: none; }
.va-footer li { margin-bottom: 12px; }
.va-footer a { color: #d5cdc4; font-size: 14.5px; }
.va-footer a:hover { color: #f0b184; }
.va-footer-contact li { display: flex; gap: 10px; line-height: 1.5; font-size: 14.5px; }
.va-footer-contact svg { width: 16px; height: 16px; color: var(--orange); flex: none; margin-top: 4px; }
.va-footer-bottom { border-top: 1px solid var(--line-dark); padding: 24px 0; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: #8a8074; }
.va-footer-bottom a { color: #8a8074; }
.va-footer-bottom a:hover { color: #f0b184; }
.va-footer-bottom nav { display: flex; gap: 18px; flex-wrap: wrap; }
.va-tagline { background: var(--dark-2); color: #f0b184; text-align: center; padding: 24px 0; font-family: var(--display); font-size: clamp(1.2rem, 2.6vw, 1.7rem); }

/* ============================================================ COOKIE */
.va-cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; max-width: 1040px; margin: 0 auto; background: var(--dark); color: #ece4da; border-radius: var(--radius-sm); padding: 24px 26px; display: none; grid-template-columns: 1fr; gap: 16px; align-items: center; box-shadow: 0 24px 60px rgba(0,0,0,.3); }
.va-cookie.is-visible { display: grid; }
.va-cookie p { font-size: 14px; color: #c7bdb2; margin: 0; }
.va-cookie a { color: #f0b184; text-decoration: underline; }
.va-cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.va-cookie-actions button { font-family: var(--body); font-size: 14px; font-weight: 500; padding: 12px 22px; border-radius: 999px; cursor: pointer; border: 2px solid var(--orange); }
.va-cookie-actions .va-ck-all { background: var(--orange); color: #fff; }
.va-cookie-actions .va-ck-all:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.va-cookie-actions .va-ck-min { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.va-cookie-actions .va-ck-min:hover { border-color: #fff; }

/* ============================================================ RESPONSIVE */
@media (min-width: 640px) {
  .va-cards { grid-template-columns: repeat(2, 1fr); }
  .va-quotes { grid-template-columns: repeat(3, 1fr); }
  .va-faq { grid-template-columns: repeat(2, 1fr); }
  .va-price-grid { grid-template-columns: repeat(3, 1fr); }
  .va-contact { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 940px) {
  .va-cards { grid-template-columns: repeat(4, 1fr); }
  .va-split { grid-template-columns: 1fr 1fr; gap: 64px; }
  .va-value-head { grid-template-columns: 1.1fr 1fr; gap: 50px; }
  .va-feature .va-wrap { grid-template-columns: 1fr 1fr; gap: 64px; }
  .va-footer-top { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}
@media (max-width: 899px) {
  .va-burger { display: block; }
  .va-nav { position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw); background: var(--paper); padding: 96px 32px 32px; transform: translateX(100%); transition: transform .34s ease; z-index: 55; box-shadow: -20px 0 50px rgba(0,0,0,.15); }
  .va-nav.is-open { transform: translateX(0); }
  .va-nav ul { flex-direction: column; align-items: flex-start; gap: 4px; }
  .va-nav a { color: var(--ink); display: block; width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .va-head-cta .va-btn { display: none; }
  .va-section { padding: 62px 0; }
}
