/* ============================================================
   axentro — sprzątanie mieszkań i biur, Kraków
   Paleta: głęboki morski atrament + jeden świeży miętowy akcent
   Kroje: Oswald (nagłówki, nawigacja) + Mulish (tekst)
   ============================================================ */

:root {
  --ink: #0e1b22;
  --ink-2: #13262f;
  --ink-3: #0a151b;
  --mint: #1fc07b;
  --mint-dark: #14a165;
  --mint-soft: rgba(31, 192, 123, 0.12);
  --paper: #ffffff;
  --paper-2: #f3f8f5;
  --ink-text: #17262d;
  --muted: #5d6c73;
  --muted-light: #a9b7bd;
  --line: #e3ebe7;
  --line-dark: rgba(255, 255, 255, 0.12);
  --wrap: 1180px;
  --radius: 6px;
  --radius-lg: 14px;
  --shadow: 0 18px 44px rgba(11, 26, 32, 0.14);
  --shadow-sm: 0 8px 22px rgba(11, 26, 32, 0.08);
  --head: "Oswald", "Arial Narrow", sans-serif;
  --body: "Mulish", -apple-system, BlinkMacSystemFont, "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-text);
  background: var(--paper);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--head);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ---------- Kropki-tekst pomocnicze ---------- */
.ax-eyebrow {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mint);
  display: inline-block;
  margin-bottom: 14px;
}
.ax-eyebrow.is-dark { color: var(--mint-dark); }

.ax-btn {
  display: inline-block;
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  font-size: 15px;
  background: var(--mint);
  color: #06231a;
  padding: 15px 34px;
  border-radius: var(--radius);
  border: 2px solid var(--mint);
  cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.ax-btn:hover { background: var(--mint-dark); border-color: var(--mint-dark); color: #fff; transform: translateY(-2px); }
.ax-btn.is-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.ax-btn.is-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
.ax-topbar {
  background: var(--ink-3);
  color: var(--muted-light);
  font-size: 13.5px;
  letter-spacing: .3px;
}
.ax-topbar .ax-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
  gap: 14px;
  flex-wrap: wrap;
}
.ax-topbar a { color: #dfe8e5; }
.ax-topbar a:hover { color: var(--mint); }
.ax-topbar-meta { display: flex; gap: 22px; flex-wrap: wrap; }
.ax-topbar-meta span { white-space: nowrap; }

.ax-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(14, 27, 34, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line-dark);
}
.ax-header .ax-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}
.ax-logo { display: flex; align-items: center; gap: 11px; }
.ax-logo svg { width: 34px; height: 34px; flex: none; }
.ax-logo-word {
  font-family: var(--head);
  font-weight: 700;
  font-size: 25px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
}
.ax-logo-word b { color: var(--mint); font-weight: 700; }

.ax-nav ul { list-style: none; display: flex; align-items: center; gap: 26px; }
.ax-nav a {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  font-size: 15px;
  color: #e7efec;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.ax-nav a:hover, .ax-nav a.is-active { color: var(--mint); border-color: var(--mint); }
.ax-nav .ax-nav-cta {
  border: 2px solid var(--mint);
  color: var(--mint);
  padding: 8px 18px;
  border-radius: var(--radius);
}
.ax-nav .ax-nav-cta:hover { background: var(--mint); color: #06231a; }

.ax-burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 42px; height: 42px;
  padding: 9px;
}
.ax-burger span {
  display: block; height: 2px; width: 100%;
  background: #fff; border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.ax-burger span + span { margin-top: 6px; }
.ax-burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.ax-burger.is-open span:nth-child(2) { opacity: 0; }
.ax-burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.ax-hero {
  position: relative;
  background: linear-gradient(180deg, rgba(10,21,27,.72), rgba(10,21,27,.82)),
              url("https://images.pexels.com/photos/4239146/pexels-photo-4239146.jpeg?auto=compress&cs=tinysrgb&w=1600") center/cover no-repeat;
  color: #fff;
  padding: 96px 0 108px;
}
.ax-hero-inner { max-width: 720px; }
.ax-hero h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 1px;
  margin-bottom: 22px;
}
.ax-hero h1 em { color: var(--mint); font-style: normal; }
.ax-hero p {
  font-size: 19px;
  color: #dce6e2;
  max-width: 560px;
  margin-bottom: 34px;
  line-height: 1.6;
}
.ax-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.ax-hero-badges {
  display: flex; gap: 30px; flex-wrap: wrap;
  margin-top: 46px; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.ax-hero-badges div { min-width: 90px; }
.ax-hero-badges b {
  font-family: var(--head); font-size: 34px; font-weight: 700;
  color: #fff; display: block; line-height: 1;
}
.ax-hero-badges span { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted-light); }

/* ============================================================
   CTA BAND
   ============================================================ */
.ax-band {
  background: var(--mint);
  color: #06231a;
  text-align: center;
  padding: 26px 0;
}
.ax-band .ax-wrap {
  display: flex; align-items: center; justify-content: center;
  gap: 20px 34px; flex-wrap: wrap;
}
.ax-band p {
  font-family: var(--head); text-transform: uppercase;
  letter-spacing: 1px; font-size: 22px; font-weight: 500; margin: 0;
}
.ax-band .ax-btn { background: #06231a; border-color: #06231a; color: #fff; }
.ax-band .ax-btn:hover { background: #fff; border-color: #fff; color: #06231a; }

/* ============================================================
   INTRO (jasna sekcja)
   ============================================================ */
.ax-section { padding: 84px 0; }
.ax-section.is-dark { background: var(--ink); color: #fff; }
.ax-section.is-soft { background: var(--paper-2); }

.ax-head-center { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.ax-head-center h2 { font-size: 42px; margin-bottom: 16px; }
.ax-section.is-dark .ax-head-center h2 { color: #fff; }
.ax-head-center p { color: var(--muted); font-size: 17px; }
.ax-section.is-dark .ax-head-center p { color: #cdd8d4; }

.ax-lede { max-width: 820px; margin: 0 auto; text-align: center; }
.ax-lede p { font-size: 18px; color: var(--muted); margin-bottom: 18px; }
.ax-lede a.ax-inline { color: var(--mint-dark); font-weight: 700; border-bottom: 1px solid currentColor; }

/* ============================================================
   PROCES — trzy koła
   ============================================================ */
.ax-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: center;
}
.ax-step .ax-disc {
  width: 128px; height: 128px; border-radius: 50%;
  margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  background: var(--ink-2);
  border: 3px solid rgba(255,255,255,.08);
}
.ax-step:first-child .ax-disc { background: var(--mint); color: #06231a; border-color: rgba(255,255,255,.25); }
.ax-step .ax-disc svg { width: 52px; height: 52px; }
.ax-step h3 { font-size: 24px; margin-bottom: 10px; }
.ax-step p { color: var(--muted); font-size: 16px; max-width: 320px; margin: 0 auto; }
.ax-section.is-dark .ax-step p { color: #c6d1cd; }

/* ============================================================
   KAFLE USŁUG — pełnoformatowe z etykietą
   ============================================================ */
.ax-tiles { display: grid; grid-template-columns: 1fr; gap: 0; }
.ax-tile {
  position: relative;
  min-height: 300px;
  display: flex; align-items: flex-end;
  padding: 30px;
  color: #fff;
  overflow: hidden;
  background-size: cover; background-position: center;
}
.ax-tile::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,21,27,.15), rgba(10,21,27,.82));
  transition: background .35s ease;
}
.ax-tile:hover::before { background: linear-gradient(180deg, rgba(20,161,101,.35), rgba(10,21,27,.85)); }
.ax-tile-label { position: relative; z-index: 2; }
.ax-tile-label span {
  font-family: var(--head); text-transform: uppercase; letter-spacing: 2px;
  color: var(--mint); font-size: 13px; display: block; margin-bottom: 6px;
}
.ax-tile-label h3 { font-size: 30px; margin-bottom: 8px; }
.ax-tile-label p { font-size: 15px; color: #dfe8e4; max-width: 360px; }

/* ============================================================
   OBRAZ + TEKST (o firmie / zespół)
   ============================================================ */
.ax-split { display: grid; grid-template-columns: 1fr; gap: 0; align-items: stretch; }
.ax-split-img { min-height: 340px; background-size: cover; background-position: center; }
.ax-split-body {
  background: var(--ink-2); color: #fff;
  padding: 52px 34px;
}
.ax-split-body h2 { font-size: 38px; margin-bottom: 18px; }
.ax-split-body p { color: #c9d4d0; margin-bottom: 16px; }
.ax-split-body .ax-signature {
  font-family: var(--head); text-transform: uppercase; letter-spacing: 2px;
  color: var(--mint); font-size: 15px; margin-top: 22px;
}

/* ============================================================
   OPINIE
   ============================================================ */
.ax-quotes { display: grid; grid-template-columns: 1fr; gap: 26px; }
.ax-quote {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-sm);
}
.ax-quote .ax-stars { color: var(--mint); letter-spacing: 3px; font-size: 15px; margin-bottom: 14px; }
.ax-quote blockquote { font-size: 17px; color: var(--ink-text); line-height: 1.65; margin-bottom: 20px; }
.ax-quote .ax-author { display: flex; align-items: center; gap: 13px; }
.ax-quote .ax-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--mint); color: #06231a;
  font-family: var(--head); font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.ax-quote .ax-author b { font-family: var(--head); letter-spacing: .5px; font-size: 16px; }
.ax-quote .ax-author span { display: block; font-size: 13px; color: var(--muted); font-family: var(--body); text-transform: none; letter-spacing: 0; }

/* ============================================================
   GALERIA
   ============================================================ */
.ax-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.ax-gallery img { width: 100%; height: 180px; object-fit: cover; border-radius: var(--radius); }

/* ============================================================
   CENNIK
   ============================================================ */
.ax-price-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.ax-price-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.ax-price-card.is-featured { border-color: var(--mint); box-shadow: var(--shadow); }
.ax-price-card .ax-tag {
  align-self: flex-start; background: var(--mint-soft); color: var(--mint-dark);
  font-family: var(--head); letter-spacing: 1.5px; font-size: 12px;
  padding: 5px 12px; border-radius: 40px; margin-bottom: 16px;
}
.ax-price-card h3 { font-size: 26px; margin-bottom: 8px; }
.ax-price-card .ax-amount { font-family: var(--head); font-size: 44px; color: var(--ink-text); line-height: 1; margin-bottom: 4px; }
.ax-price-card .ax-amount small { font-size: 16px; color: var(--muted); font-weight: 400; }
.ax-price-card .ax-note { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.ax-price-card ul { list-style: none; margin-bottom: 26px; }
.ax-price-card li { padding: 9px 0 9px 28px; position: relative; border-bottom: 1px solid var(--line); font-size: 15px; }
.ax-price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--mint-dark); font-weight: 700; }
.ax-price-card .ax-btn { margin-top: auto; text-align: center; }

/* ============================================================
   FAQ / listy treści
   ============================================================ */
.ax-prose { max-width: 820px; margin: 0 auto; }
.ax-prose h2 { font-size: 34px; margin: 40px 0 16px; }
.ax-prose h3 { font-size: 23px; margin: 28px 0 12px; letter-spacing: .5px; }
.ax-prose p { color: var(--muted); margin-bottom: 16px; }
.ax-prose ul, .ax-prose ol { margin: 0 0 18px 22px; color: var(--muted); }
.ax-prose li { margin-bottom: 9px; }
.ax-prose a { color: var(--mint-dark); border-bottom: 1px solid currentColor; }
.ax-prose strong { color: var(--ink-text); }

.ax-feature-list { display: grid; grid-template-columns: 1fr; gap: 20px; }
.ax-feature {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 26px;
}
.ax-feature .ax-ic {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: var(--mint-soft); color: var(--mint-dark);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.ax-feature .ax-ic svg { width: 26px; height: 26px; }
.ax-feature h3 { font-size: 21px; margin-bottom: 8px; }
.ax-feature p { color: var(--muted); font-size: 15px; margin: 0; }

/* ---------- zespół ---------- */
.ax-team-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
.ax-member {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
}
.ax-member .ax-photo { height: 230px; background-size: cover; background-position: center; }
.ax-member .ax-member-body { padding: 22px 24px 26px; }
.ax-member h3 { font-size: 22px; margin-bottom: 2px; }
.ax-member .ax-role { font-family: var(--head); letter-spacing: 1px; color: var(--mint-dark); font-size: 13px; margin-bottom: 12px; }
.ax-member p { color: var(--muted); font-size: 15px; margin: 0; }

/* ============================================================
   PODstrona — nagłówek
   ============================================================ */
.ax-pagehead {
  background: linear-gradient(180deg, rgba(10,21,27,.82), rgba(10,21,27,.88)),
              url("https://images.pexels.com/photos/4239129/pexels-photo-4239129.jpeg?auto=compress&cs=tinysrgb&w=1600") center/cover no-repeat;
  color: #fff; text-align: center; padding: 76px 0 66px;
}
.ax-pagehead h1 { font-size: 46px; font-weight: 700; margin-bottom: 14px; letter-spacing: 1px; }
.ax-pagehead p { color: #cdd8d4; max-width: 620px; margin: 0 auto; font-size: 17px; }
.ax-crumbs { margin-top: 18px; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted-light); font-family: var(--head); }
.ax-crumbs a { color: var(--mint); }

/* ============================================================
   KONTAKT
   ============================================================ */
.ax-contact-grid { display: grid; grid-template-columns: 1fr; gap: 34px; }
.ax-contact-card ul { list-style: none; }
.ax-contact-card li { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line-dark); }
.ax-section.is-dark .ax-contact-card li { color: #d7e0dc; }
.ax-contact-card .ax-ic {
  width: 44px; height: 44px; flex: none; border-radius: var(--radius);
  background: var(--mint-soft); color: var(--mint);
  display: flex; align-items: center; justify-content: center;
}
.ax-contact-card .ax-ic svg { width: 22px; height: 22px; }
.ax-contact-card b { font-family: var(--head); letter-spacing: 1px; font-size: 14px; color: var(--mint); display: block; text-transform: uppercase; }
.ax-contact-card a, .ax-contact-card span { color: #eef4f1; font-size: 16px; }
.ax-contact-card a:hover { color: var(--mint); }
.ax-map { border-radius: var(--radius-lg); overflow: hidden; min-height: 320px; border: 1px solid var(--line-dark); }
.ax-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.ax-footer { background: var(--ink-3); color: #c7d2ce; padding: 66px 0 0; }
.ax-footer-cols {
  display: grid; grid-template-columns: 1fr; gap: 40px; padding-bottom: 48px;
}
.ax-footer h4 {
  font-family: var(--head); text-transform: uppercase; letter-spacing: 1.5px;
  color: #fff; font-size: 17px; margin-bottom: 18px;
}
.ax-footer p { font-size: 15px; color: #9fb0ab; margin-bottom: 14px; }
.ax-footer ul { list-style: none; }
.ax-footer li { margin-bottom: 11px; }
.ax-footer a { color: #b7c4bf; font-size: 15px; }
.ax-footer a:hover { color: var(--mint); }
.ax-footer .ax-logo-word { color: #fff; font-size: 24px; }
.ax-footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 15px; }
.ax-footer-contact svg { width: 18px; height: 18px; color: var(--mint); flex: none; margin-top: 3px; }
.ax-footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 22px 0; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 13.5px; color: #839590;
}
.ax-footer-bottom a { color: #839590; }
.ax-footer-bottom a:hover { color: var(--mint); }
.ax-footer-bottom nav { display: flex; gap: 18px; flex-wrap: wrap; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.ax-cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  background: var(--ink-2); color: #e7efec;
  border: 1px solid var(--line-dark); border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px 24px;
  display: none;
  grid-template-columns: 1fr; gap: 16px; align-items: center;
  max-width: 1000px; margin: 0 auto;
}
.ax-cookie.is-visible { display: grid; }
.ax-cookie p { font-size: 14.5px; color: #cdd8d4; margin: 0; }
.ax-cookie a { color: var(--mint); border-bottom: 1px solid currentColor; }
.ax-cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.ax-cookie-actions button {
  font-family: var(--head); text-transform: uppercase; letter-spacing: 1px;
  font-size: 13px; padding: 11px 20px; border-radius: var(--radius); cursor: pointer; border: 2px solid var(--mint);
}
.ax-cookie-actions .ax-ck-all { background: var(--mint); color: #06231a; }
.ax-cookie-actions .ax-ck-all:hover { background: var(--mint-dark); border-color: var(--mint-dark); color: #fff; }
.ax-cookie-actions .ax-ck-min { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.ax-cookie-actions .ax-ck-min:hover { border-color: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 720px) {
  .ax-steps { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .ax-tiles { grid-template-columns: repeat(2, 1fr); }
  .ax-quotes { grid-template-columns: repeat(2, 1fr); }
  .ax-price-grid { grid-template-columns: repeat(3, 1fr); }
  .ax-feature-list { grid-template-columns: repeat(2, 1fr); }
  .ax-team-grid { grid-template-columns: repeat(2, 1fr); }
  .ax-contact-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .ax-footer-cols { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; }
}

@media (min-width: 960px) {
  .ax-split { grid-template-columns: 1fr 1fr; }
  .ax-split-body { padding: 70px 60px; }
  .ax-team-grid { grid-template-columns: repeat(3, 1fr); }
  .ax-gallery { grid-template-columns: repeat(3, 1fr); }
  .ax-gallery img { height: 220px; }
  .ax-hero { padding: 130px 0 140px; }
  .ax-hero h1 { font-size: 74px; }
}

@media (max-width: 899px) {
  .ax-burger { display: block; }
  .ax-nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw);
    background: var(--ink-2); padding: 92px 30px 30px;
    transform: translateX(100%); transition: transform .32s ease; z-index: 55;
    box-shadow: -18px 0 40px rgba(0,0,0,.4);
  }
  .ax-nav.is-open { transform: translateX(0); }
  .ax-nav ul { flex-direction: column; align-items: flex-start; gap: 6px; }
  .ax-nav a { display: block; width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line-dark); }
  .ax-nav .ax-nav-cta { margin-top: 12px; text-align: center; }
  .ax-hero h1 { font-size: 42px; }
  .ax-hero p { font-size: 17px; }
  .ax-head-center h2 { font-size: 32px; }
  .ax-split-body h2 { font-size: 30px; }
}

@media (max-width: 480px) {
  .ax-hero h1 { font-size: 34px; }
  .ax-band p { font-size: 18px; }
  .ax-gallery { grid-template-columns: 1fr 1fr; }
  .ax-section { padding: 60px 0; }
}
