@font-face {
  font-family: 'Vesper Libre';
  src: url('/fonts/vesper-libre-v21-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vesper Libre';
  src: url('/fonts/vesper-libre-v21-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vesper Libre';
  src: url('/fonts/vesper-libre-v21-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vesper Libre';
  src: url('/fonts/vesper-libre-v21-latin-900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-v20-latin-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-v20-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-v20-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-v20-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1e249a;
  --navy-dark: #12123a;
  --navy-light: #eeeef8;
  --coral: #f14061;
  --coral-light: #fff0f3;
  --white: #ffffff;
  --off-white: #f7f7f9;
  --gray: #6b6b80;
  --light-gray: #e8e8ec;
  --serif: 'Vesper Libre', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--navy-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3.5rem;
  background: rgba(18, 18, 58, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-brand-icon {
  width: 36px;
  height: 36px;
  background: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 0.85rem;
  color: white;
}

.nav-brand-text {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 1rem;
  color: white;
  line-height: 1.1;
}

.nav-brand-text span {
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: white;
}

.nav-cta {
  background: var(--coral);
  color: white;
  padding: 0.55rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.nav-cta:hover {
  opacity: 0.9;
}

.nav-logo {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.nav-hamburger {
  display: none;
}

.desktop-only {
  display: inline-block;
}

@media (max-width: 900px) {
  .nav-hamburger {
    display: flex;
  }

  .desktop-only {
    display: none;
  }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy-dark);
  display: flex;
  align-items: flex-start;
  padding: 10rem 3.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 64, 97, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg-circle.c1 {
  width: 700px;
  height: 700px;
  top: -20%;
  right: -15%;
}

.hero-bg-circle.c2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -5%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  margin-top: -4rem;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--coral);
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 3.2rem;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--coral);
}

.hero-desc {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 460px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero-stat {
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--coral);
  margin-bottom: 1px;
  transition: background 0.2s;
}

.hero-stat:hover {
  background: rgba(255, 255, 255, 0.07);
}

.hero-stat-num {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 2rem;
  color: white;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.35rem;
  letter-spacing: 0.05em;
}

/* ── BUTTONS ── */
.btn-coral {
  background: var(--coral);
  color: white;
  padding: 0.85rem 2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-coral:hover {
  opacity: 0.9;
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.85rem 2rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: white;
  color: white;
}

/* ── SECTIONS ── */
section {
  padding: 6rem 3.5rem;
}

.inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--coral);
}

.section-eyebrow.coral {
  color: var(--coral);
}

h2.section-title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1rem;
}

h2.section-title.light {
  color: white;
}

.section-lead {
  font-size: 1rem;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 3rem;
}

.section-lead.muted {
  color: rgba(255, 255, 255, 0.45);
}

/* ── FILOZOFIA ── */
.philosophy {
  background: var(--off-white);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.philosophy-body {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

.philosophy-quote {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
  color: white;
  background: var(--navy);
  padding: 2rem 2.5rem;
  border-left: 4px solid var(--coral);
  margin-top: 2rem;
}

.philosophy-quote span {
  color: var(--coral);
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pillar {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: white;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

.pillar:hover {
  border-bottom-color: var(--coral);
}

.pillar-num {
  width: 40px;
  height: 40px;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--navy);
}

.pillar-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pillar-text {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ── USŁUGI ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--off-white);
  padding: 2rem;
  border-top: 3px solid var(--light-gray);
  transition: border-top-color 0.25s, transform 0.25s;
}

.service-card:hover {
  border-top-color: var(--coral);
  transform: translateY(-4px);
}

.service-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--light-gray);
  line-height: 1;
  margin-bottom: 1rem;
}

.service-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-text {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.65;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.25rem;
}

.tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  background: var(--navy-light);
  color: var(--navy);
}

/* ── KLIENCI ── */
.clients {
  background: var(--navy);
}

.clients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.client-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s;
}

.client-card:hover {
  background: rgba(255, 255, 255, 0.09);
}

.client-icon {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 1rem;
}

.client-name {
  font-weight: 600;
  font-size: 1rem;
  color: white;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.client-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

/* ── WARTOŚCI ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--light-gray);
}

.value-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--light-gray);
  position: relative;
}

.value-item:last-child {
  border-right: none;
}

.value-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--coral);
  transition: width 0.35s;
}

.value-item:hover::after {
  width: 100%;
}

.value-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--light-gray);
  line-height: 1;
  margin-bottom: 1rem;
}

.value-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.value-text {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ── STRATEGIA ── */
.strategy-section {
  background: var(--off-white);
}

.strategy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.strat-card {
  padding: 2rem 2.5rem;
  border: 1px solid var(--light-gray);
  background: white;
}

.strat-card-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
}

.strat-card-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.strat-list {
  list-style: none;
}

.strat-list li {
  font-size: 0.88rem;
  color: var(--gray);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  gap: 0.75rem;
}

.strat-list li::before {
  content: '—';
  color: var(--coral);
  flex-shrink: 0;
}

/* ── CTA ── */
.cta-section {
  background: var(--navy-dark);
  text-align: center;
  padding: 7rem 3.5rem;
}

.cta-section h2 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-section h2 span {
  color: var(--coral);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.5);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-detail {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 1.5rem;
}

/* ── FOOTER ── */
footer {
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--serif);
  font-weight: 900;
  color: white;
  font-size: 0.95rem;
}

.footer-logo span {
  color: var(--coral);
}

.footer-meta {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .nav-menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(18, 18, 58, 0.98);
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }

  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: all 0.25s;
  }

  .nav-menu-open .nav-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-menu-open .nav-hamburger span:nth-child(2) {
    opacity: 0;
  }

  .nav-menu-open .nav-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  section {
    padding: 3.5rem 1.5rem;
  }

  .hero {
    padding: 6rem 1.5rem 3.5rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .clients-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .values-grid .value-item {
    border-right: none;
    border-bottom: 1px solid var(--light-gray);
  }

  .strategy-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 4rem 1.5rem;
  }

  .cta-section h2 {
    font-size: 1.9rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}
