/* =========================================================
   Cowork Zakopane — Wirtualne biuro
   Design system / global styles
   Edit brand tokens here. Colors, type, spacing.
   ========================================================= */

/* ---------- Fonty marki: AmpleSoft (nagłówki / UI) ----------
   Font wyświetlany ładowany lokalnie (assets/fonts/*.woff2).
   Wagi używane w projekcie: 500 (Medium), 600 i 700 (Bold).
   Brak natywnej grubości 600 w rodzinie — mapowana na Bold,
   dzięki czemu nagłówki zachowują mocny, „brandowy" charakter. */
@font-face {
  font-family: "AmpleSoft";
  src: url("fonts/amplesoft-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AmpleSoft";
  src: url("fonts/amplesoft-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AmpleSoft";
  src: url("fonts/amplesoft-bold.woff2") format("woff2");
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Font tekstowy: Lato (ładowany lokalnie) ----------
   Subsety latin + latin-ext (polskie znaki) rozdzielone unicode-range.
   Lato ma 400/700/900 — w projekcie używamy 400/500/600/700; CSS mapuje
   automatycznie 500 → 400 oraz 600 → 700 (brak natywnych tych grubości). */
@font-face {
  font-family: "Lato";
  src: url("fonts/lato-latin-ext-400-normal.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/lato-latin-400-normal.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/lato-latin-ext-400-italic.woff2") format("woff2");
  font-weight: 400; font-style: italic; font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/lato-latin-400-italic.woff2") format("woff2");
  font-weight: 400; font-style: italic; font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/lato-latin-ext-700-normal.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/lato-latin-700-normal.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Brand palette — derived from the COWORK ZAKOPANE mural
     (cyan accent + near-black charcoal + warm paper) */
  --ink:        #15181a;   /* near-black charcoal (brand dark) */
  --ink-soft:   #2a3034;   /* dark panels */
  --ink-2:      #383f44;
  --muted:      #586065;   /* secondary text on light */
  --muted-2:    #8a9298;
  --paper:      #f6f4ef;   /* warm calm off-white (page base) */
  --paper-2:    #ffffff;   /* cards */
  --paper-3:    #efece4;   /* alt band */
  --line:       rgba(21,24,26,0.12);
  --line-soft:  rgba(21,24,26,0.07);

  --cyan:       #00AEEF;   /* brand accent (use on dark / as fill) */
  --cyan-deep:  #00AEEF;   /* brand blue for text/links/icons */
  --cyan-tint:  #e2f4fd;   /* faint blue wash */
  --cyan-line:  rgba(0,174,239,0.32);

  --on-dark:        #f3f1ea;
  --on-dark-muted:  #aeb6ba;
  --on-dark-line:   rgba(243,241,234,0.16);

  --danger:     #b23b3b;
  --ok:         #1f7a5c;

  /* Type */
  --font-display: "AmpleSoft", ui-sans-serif, system-ui, sans-serif;
  --font-body:    "Lato", ui-sans-serif, system-ui, -apple-system, sans-serif;

  /* Spacing rhythm */
  --section-y: clamp(64px, 9vw, 132px);
  --gutter:    clamp(20px, 5vw, 64px);
  --maxw:      1200px;

  --radius:    14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(21,24,26,0.05), 0 2px 8px rgba(21,24,26,0.05);
  --shadow:    0 4px 14px rgba(21,24,26,0.08), 0 18px 48px rgba(21,24,26,0.07);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

html { scroll-padding-top: 88px; } /* header anchor offset */

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: var(--cyan-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
  color: var(--ink);
}

p { text-wrap: pretty; }

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute;
  left: 16px; top: -64px;
  z-index: 2000;
  background: var(--ink);
  color: var(--on-dark);
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  transition: top 0.18s ease;
}
.skip-link:focus { top: 16px; color: var(--on-dark); }

:focus-visible {
  outline: 3px solid var(--cyan-deep);
  outline-offset: 2px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1.5px;
  background: var(--cyan);
}

.section-head { max-width: 760px; margin-bottom: clamp(32px, 4vw, 56px); }
.section-head h2 {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  margin-top: 14px;
}
.section-head p { color: var(--muted); font-size: 1.075rem; margin-top: 18px; max-width: 64ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 16px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.16s ease, background 0.16s ease, color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--ink); color: var(--on-dark); }
.btn--primary:hover { background: #000; color: #fff; box-shadow: var(--shadow-sm); }
.btn--accent { background: var(--cyan); color: #013049; }
.btn--accent:hover { background: #18bdf9; color: #013049; box-shadow: 0 8px 22px rgba(0,174,239,0.38); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn--on-dark { background: var(--cyan); color: #013049; }
.btn--on-dark:hover { background: #18bdf9; }
.btn--ghost-dark { background: transparent; color: var(--on-dark); border-color: var(--on-dark-line); }
.btn--ghost-dark:hover { border-color: var(--on-dark); color: #fff; }
.btn .arrow { transition: transform 0.16s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* =========================================================
   Top info bar — coworking unavailable
   ========================================================= */
.topbar {
  background: var(--ink);
  color: var(--on-dark);
  font-size: 0.92rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-block: 10px;
  flex-wrap: wrap;
}
.topbar__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--cyan);
  flex: none;
}
.topbar__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0,174,239,0.18);
  flex: none;
}
.topbar__text { color: var(--on-dark-muted); }
.topbar__text strong { color: var(--on-dark); font-weight: 600; }
.topbar a.topbar__link {
  color: var(--cyan);
  font-weight: 600;
  white-space: nowrap;
  margin-left: auto;
}
.topbar a.topbar__link:hover { color: #fff; }

/* =========================================================
   Header / nav
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-block: 14px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; flex: none; }
.brand:hover { color: inherit; }
.brand__logo { height: 34px; width: auto; flex: none; display: block; }
.brand__tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: 13px;
  border-left: 1px solid var(--line);
  white-space: nowrap;
}

.nav { margin-left: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
}
.nav__list a {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 9px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.97rem;
}
.nav__list a:hover { background: var(--paper-3); color: var(--ink); }

.header__cta { flex: none; }
.header .btn { padding: 12px 20px; font-size: 0.95rem; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; stroke: var(--ink); }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 1000px) {
  .header__inner { gap: 14px; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    margin: 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 0.28s ease, visibility 0s linear 0.28s;
  }
  .nav.open { max-height: 80vh; visibility: visible; transition: max-height 0.32s ease; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; padding: 14px var(--gutter) 20px; }
  .nav__list a { padding: 14px 12px; font-size: 1.05rem; border-radius: 11px; }
  .nav__list .nav__cta-mobile { margin-top: 10px; }
  .header__cta--desktop { display: none; }
}
@media (min-width: 1001px) {
  .nav__cta-mobile { display: none; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero { position: relative; padding-block: clamp(48px, 7vw, 92px) var(--section-y); overflow: hidden; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__eyebrow { margin-bottom: 22px; }
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--cyan-deep); }
.hero__address {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--ink);
}
.hero__address svg { width: 18px; height: 18px; color: var(--cyan-deep); flex: none; }
.hero__lead { font-size: 1.14rem; color: var(--muted); margin-top: 26px; max-width: 52ch; }
.hero__lead strong { color: var(--ink); font-weight: 600; }

.hero__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.hero__price .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hero__price .per { color: var(--muted); font-size: 1rem; }

.hero__points {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px 26px;
}
.hero__points li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-size: 0.99rem;
}
.hero__points li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 11px; height: 11px;
  background: var(--cyan);
  clip-path: polygon(50% 0, 100% 100%, 0 100%); /* peak */
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__note {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.92rem;
  color: var(--muted);
}
.hero__note .peak-ico { width: 16px; height: 16px; flex: none; color: var(--cyan-deep); }

/* Hero figure / building placeholder */
.hero__figure { position: relative; }
.figure-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--ink-soft);
}
.placeholder {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      var(--ink-soft) 0 14px,
      #313840 14px 28px
    );
  color: var(--on-dark-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 28px;
  min-height: 100%;
}
.placeholder__icon { width: 46px; height: 46px; color: var(--cyan); opacity: 0.9; }
.placeholder__label {
  font-family: ui-monospace, "SF Mono", "Cascadia Code", Menlo, Consolas, monospace;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: var(--on-dark-muted);
  max-width: 30ch;
}
.placeholder__tag {
  font-family: ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid var(--cyan-line);
  padding: 4px 9px;
  border-radius: 999px;
}
.hero__figure .figure-card { aspect-ratio: auto; }
.hero__figure .figure-card img { height: auto; object-fit: contain; }
.figure-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero__figure-cap {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}
.hero__figure-cap .pin { width: 16px; height: 16px; color: var(--cyan-deep); flex: none; }

/* Decorative peak line behind hero */
.hero__peaks {
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: 220px;
  color: var(--cyan);
  opacity: 0.10;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__figure { order: -1; }
  .hero__figure .figure-card { aspect-ratio: 4 / 3; }
  .hero__figure .figure-card img { height: 100%; object-fit: cover; object-position: center center; }
  .hero__points { grid-template-columns: 1fr; }
}

/* =========================================================
   Quick facts strip
   ========================================================= */
.facts {
  background: var(--ink);
  color: var(--on-dark);
}
.facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.fact { padding: clamp(26px, 3.4vw, 40px) clamp(20px, 2.6vw, 34px); border-right: 1px solid var(--on-dark-line); }
.fact:last-child { border-right: 0; }
.fact__icon { width: 26px; height: 26px; color: var(--cyan); margin-bottom: 16px; }
.fact__label {
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}
.fact__value { font-weight: 600; font-size: 1.05rem; color: var(--on-dark); line-height: 1.4; }
.fact__value small { display:block; font-weight: 400; color: var(--on-dark-muted); font-size: 0.85rem; margin-top: 4px; }
@media (max-width: 820px) {
  .facts__grid { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(1), .fact:nth-child(2) { border-bottom: 1px solid var(--on-dark-line); }
}
@media (max-width: 480px) {
  .facts__grid { grid-template-columns: 1fr; }
  .fact { border-right: 0; border-bottom: 1px solid var(--on-dark-line); }
  .fact:last-child { border-bottom: 0; }
}

/* =========================================================
   "What is" + get / not-get
   ========================================================= */
.explain__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.explain__body p { color: var(--muted); margin-top: 18px; font-size: 1.06rem; }
.explain__body p:first-child { margin-top: 0; }
.callout {
  margin-top: 26px;
  padding: 20px 22px;
  border-left: 3px solid var(--cyan);
  background: var(--cyan-tint);
  border-radius: 0 12px 12px 0;
  color: var(--ink);
  font-size: 1rem;
}
.explain__media {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.explain__media img { width: 100%; height: auto; display: block; aspect-ratio: 4 / 3; object-fit: cover; }
.explain__media figcaption {
  font-size: 0.85rem; color: var(--muted);
  padding: 12px 16px; background: var(--paper-2);
  display: flex; align-items: center; gap: 9px;
}
.explain__media figcaption svg { width: 15px; height: 15px; color: var(--cyan-deep); flex: none; }

.dual { display: grid; gap: 18px; }
.panel {
  border-radius: var(--radius);
  padding: 26px 26px 28px;
  border: 1px solid var(--line);
}
.panel--get { background: var(--paper-2); }
.panel--not { background: var(--paper-3); }
.panel h3 {
  font-size: 1.18rem;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.panel h3 .badge {
  width: 26px; height: 26px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}
.panel--get .badge { background: var(--cyan); color: #013049; }
.panel--not .badge { background: #d9d4c9; color: var(--ink-soft); }
.panel ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.panel li { position: relative; padding-left: 28px; font-size: 0.99rem; color: var(--ink); }
.panel li svg { position: absolute; left: 0; top: 3px; width: 18px; height: 18px; }
.panel--get li svg { color: var(--cyan-deep); }
.panel--not li svg { color: var(--muted-2); }
@media (max-width: 820px) { .explain__grid { grid-template-columns: 1fr; } }

/* =========================================================
   Generic card grids (audience, scope)
   ========================================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.feature {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--cyan-line); }
.feature__icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--cyan-tint);
  color: var(--cyan-deep);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature__icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.12rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 0.97rem; }
.note-inline {
  margin-top: 28px;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.97rem; color: var(--muted);
  padding: 16px 20px;
  background: var(--paper-2);
  border: 1px dashed var(--line);
  border-radius: 12px;
}
.note-inline svg { width: 20px; height: 20px; color: var(--cyan-deep); flex: none; }
@media (max-width: 900px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .card-grid, .card-grid--2 { grid-template-columns: 1fr; } }

/* =========================================================
   Process / steps
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; list-style: none; padding: 0; margin: 0; }
.step { position: relative; padding: 0 22px; }
.step:not(:last-child)::after {
  content: "";
  position: absolute; top: 22px; right: -12px; width: 24px; height: 1.5px;
  background: var(--cyan-line);
}
.step__num {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--cyan);
  color: var(--cyan-deep);
  font-family: var(--font-display);
  font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 18px;
  background: var(--paper-2);
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.94rem; }
.steps-cta { margin-top: 44px; display:flex; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; gap: 26px; }
  .step { padding: 0 0 0 4px; }
  .step:not(:last-child)::after { display: none; }
}

/* =========================================================
   Pricing
   ========================================================= */
.pricing { background: var(--ink); color: var(--on-dark); }
.pricing .eyebrow { color: var(--cyan); }
.pricing .eyebrow::before { background: var(--cyan); }
.pricing .section-head h2 { color: var(--on-dark); }
.pricing__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 4vw, 56px); align-items: stretch; }
.price-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 46px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.price-card__peak { position: absolute; top: 0; right: 0; width: 150px; height: 150px; color: var(--cyan); opacity: 0.12; }
.price-card__kicker {
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.95rem; color: var(--muted);
}
.price-card__amount { display: flex; align-items: baseline; gap: 10px; margin: 14px 0 4px; flex-wrap: wrap; }
.price-card__amount .net {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.2rem); letter-spacing: -0.02em;
}
.price-card__amount .per { color: var(--muted); font-size: 1rem; }
.price-card__gross { color: var(--muted); font-size: 1rem; margin-bottom: 22px; }
.price-card__gross strong { color: var(--ink); font-weight: 600; }
.price-card__list { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 11px; }
.price-card__list li { position: relative; padding-left: 28px; font-size: 0.98rem; }
.price-card__list li svg { position: absolute; left: 0; top: 3px; width: 18px; height: 18px; color: var(--cyan-deep); }
.price-card .btn { width: 100%; }
.price-card__fine {
  margin-top: 18px; font-size: 0.84rem; color: var(--muted);
  display: flex; gap: 9px; align-items: flex-start;
}
.price-card__fine svg { width: 16px; height: 16px; color: var(--cyan-deep); flex: none; margin-top: 2px; }

.terms { display: grid; gap: 14px; align-content: start; }
.term {
  border: 1px solid var(--on-dark-line);
  border-radius: var(--radius);
  padding: 22px 24px;
  background: rgba(255,255,255,0.02);
}
.term h3 { color: var(--on-dark); font-size: 1.05rem; margin-bottom: 12px; display:flex; align-items:center; gap:10px; }
.term h3 svg { width: 20px; height: 20px; color: var(--cyan); flex: none; }
.term ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.term li { color: var(--on-dark-muted); font-size: 0.96rem; padding-left: 18px; position: relative; }
.term li::before { content:""; position:absolute; left:0; top:10px; width:7px; height:7px; border-radius:50%; background: var(--cyan); }
.term li strong { color: var(--on-dark); font-weight: 600; }
.term p { color: var(--on-dark-muted); font-size: 0.96rem; }
@media (max-width: 860px) { .pricing__grid { grid-template-columns: 1fr; } }

/* =========================================================
   Location
   ========================================================= */
.location__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(32px, 4.5vw, 64px); align-items: center; }
.location__body .addr {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  line-height: 1.25;
  margin: 18px 0;
}
.location__body p { color: var(--muted); margin-top: 14px; }
.location__actions { margin-top: 26px; display:flex; flex-wrap: wrap; gap: 12px; }

.map-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  background: var(--paper-3);
}
/* Lightweight static map facade — real iframe loads on click */
.map-facade {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; text-align: center; padding: 24px;
  cursor: pointer;
  background:
    radial-gradient(circle at 50% 42%, rgba(0,174,239,0.12), transparent 60%),
    repeating-linear-gradient(0deg, rgba(21,24,26,0.04) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(90deg, rgba(21,24,26,0.04) 0 1px, transparent 1px 38px),
    var(--paper-2);
  border: 0; width: 100%;
  font-family: var(--font-body);
  color: var(--ink);
  transition: background-color 0.18s ease;
}
.map-facade:hover { background-color: var(--paper-3); }
.map-facade__pin {
  width: 56px; height: 56px;
  color: var(--cyan-deep);
  filter: drop-shadow(0 6px 12px rgba(0,174,239,0.32));
}
.map-facade__title { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.map-facade__hint {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.9rem; color: var(--muted);
  background: var(--paper); padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--line);
}
.map-facade__hint svg { width: 16px; height: 16px; }
.map-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 820px) { .location__grid { grid-template-columns: 1fr; } }

/* =========================================================
   Coworking-unavailable notice block
   ========================================================= */
.cowork-notice { background: var(--paper-3); }
.cowork-notice__inner {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 3vw, 40px);
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-2);
  padding: clamp(28px, 4vw, 44px);
}
.cowork-notice__icon {
  width: 48px; height: 48px;
  background: transparent; color: var(--cyan-deep);
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}
.cowork-notice__icon svg { width: 44px; height: 44px; }
.cowork-notice h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 14px; }
.cowork-notice p { color: var(--muted); margin-top: 12px; font-size: 1.04rem; }
.cowork-notice p strong { color: var(--ink); font-weight: 600; }
@media (max-width: 600px) { .cowork-notice__inner { grid-template-columns: 1fr; } }

/* =========================================================
   FAQ
   ========================================================= */
.faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 4vw, 64px); align-items: start; }
.faq__list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--ink);
  padding: 22px 44px 22px 0;
  position: relative;
  display: block;
  line-height: 1.35;
}
.faq__q:hover { color: var(--cyan-deep); }
.faq__icon {
  position: absolute; right: 4px; top: 24px;
  width: 20px; height: 20px; color: var(--cyan-deep);
  transition: transform 0.22s ease;
  flex: none;
}
.faq__q[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.26s ease;
}
.faq__a-inner { overflow: hidden; }
.faq__item.open .faq__a { grid-template-rows: 1fr; }
.faq__a p { color: var(--muted); font-size: 1rem; padding-bottom: 24px; max-width: 64ch; }
.faq__a p strong { color: var(--ink); font-weight: 600; }
@media (max-width: 820px) { .faq__grid { grid-template-columns: 1fr; } }

/* =========================================================
   Contact
   ========================================================= */
.contact { background: var(--ink); color: var(--on-dark); }
.contact .eyebrow { color: var(--cyan); }
.contact .eyebrow::before { background: var(--cyan); }
.contact__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.contact h2 { color: var(--on-dark); font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.contact__intro { color: var(--on-dark-muted); margin-top: 18px; font-size: 1.06rem; }
.contact__methods { margin-top: 32px; display: grid; gap: 14px; }
.contact-method {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--on-dark-line);
  border-radius: var(--radius);
  color: var(--on-dark);
  text-decoration: none;
  transition: border-color 0.16s ease, background 0.16s ease;
}
.contact-method:hover { border-color: var(--cyan); background: rgba(0,174,239,0.08); color: var(--on-dark); }
.contact-method__icon {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  background: rgba(0,174,239,0.16); color: var(--cyan);
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-method__icon svg { width: 22px; height: 22px; }
.contact-method__label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-muted); font-family: var(--font-display); }
.contact-method__value { font-weight: 600; font-size: 1.08rem; font-family: var(--font-display); }

/* Form */
.form-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.4vw, 40px);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}
.field label .opt { color: var(--muted); font-weight: 400; font-size: 0.82rem; }
.field label .req { color: var(--cyan-deep); }
.field input,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper-2);
  border: 1.5px solid var(--line);
  border-radius: 11px;
  padding: 13px 15px;
  width: 100%;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cyan-deep);
  box-shadow: 0 0 0 3px rgba(11,119,133,0.15);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(178,59,59,0.13);
}
.field__error {
  color: var(--danger);
  font-size: 0.84rem;
  font-weight: 500;
  min-height: 0;
  display: none;
}
.field__error.show { display: block; }

.consent { display: flex; gap: 12px; align-items: flex-start; }
.consent input { width: 20px; height: 20px; margin-top: 3px; flex: none; accent-color: var(--cyan-deep); }
.consent label { font-family: var(--font-body); font-weight: 400; font-size: 0.9rem; color: var(--muted); line-height: 1.5; }
.consent label a { color: var(--cyan-deep); }

/* honeypot — visually hidden but present for bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

.form-actions { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.form-actions .btn { width: 100%; }
.form-actions .btn[disabled] { opacity: 0.6; cursor: progress; }
.form-fine { font-size: 0.85rem; color: var(--muted); }

.form-status {
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.96rem;
  display: none;
  align-items: flex-start;
  gap: 10px;
}
.form-status.show { display: flex; }
.form-status svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }
.form-status--ok { background: #e3f3ec; color: #11543c; border: 1px solid #b6e0cd; }
.form-status--err { background: #fae6e6; color: #8a2a2a; border: 1px solid #eec4c4; }

.spinner { width: 18px; height: 18px; border: 2px solid rgba(1,48,73,0.3); border-top-color: #013049; border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 860px) { .contact__grid { grid-template-columns: 1fr; } }
@media (max-width: 540px) { .form-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Final CTA
   ========================================================= */
.final-cta { text-align: center; }
.final-cta__inner {
  border-radius: var(--radius-lg);
  background: var(--ink);
  padding: clamp(48px, 7vw, 88px) var(--gutter);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.final-cta__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
}
.final-cta__inner::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,12,14,0.78), rgba(10,12,14,0.82)),
    radial-gradient(circle at 50% 30%, rgba(0,174,239,0.22), transparent 62%);
}
.final-cta__peak { position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: min(620px, 90%); color: var(--cyan); opacity: 0.22; z-index: -1; }
.final-cta h2 { color: var(--on-dark); font-size: clamp(1.9rem, 4vw, 3rem); max-width: 20ch; margin-inline: auto; position: relative; }
.final-cta p { color: var(--on-dark-muted); margin: 18px auto 0; max-width: 56ch; font-size: 1.06rem; position: relative; }
.final-cta__actions { margin-top: 32px; display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center; position: relative; }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--ink); color: var(--on-dark); padding-block: clamp(48px, 6vw, 80px) 32px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); }
.footer__brand .brand__tag { color: var(--on-dark-muted); border-left-color: var(--on-dark-line); }
.footer__about { color: var(--on-dark-muted); font-size: 0.96rem; margin-top: 18px; max-width: 42ch; }
.footer__col h3 {
  color: var(--on-dark);
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 16px; font-family: var(--font-display);
}
.footer__addr { font-style: normal; color: var(--on-dark-muted); line-height: 1.7; font-size: 0.97rem; }
.footer__addr strong { color: var(--on-dark); font-weight: 600; display:block; margin-bottom: 4px; }
.footer__addr a { color: var(--cyan); }
.footer__addr a:hover { color: #fff; }
.footer__nav { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__nav a { color: var(--on-dark-muted); text-decoration: none; font-size: 0.97rem; }
.footer__nav a:hover { color: var(--cyan); }
.footer__operator {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--on-dark-line);
  display: grid; grid-template-columns: 1fr auto; gap: 20px;
  align-items: start;
}
.footer__operator .op-block { font-size: 0.92rem; color: var(--on-dark-muted); line-height: 1.7; }
.footer__operator .op-block strong { color: var(--on-dark); }
.footer__operator .op-label { font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan); margin-bottom: 6px; }
.footer__notice {
  margin-top: 24px;
  background: rgba(0,174,239,0.10);
  border: 1px solid var(--on-dark-line);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--on-dark-muted);
  max-width: 360px;
  display: flex; gap: 10px; align-items: flex-start;
}
.footer__notice svg { width: 18px; height: 18px; color: var(--cyan); flex: none; margin-top: 2px; }
.footer__bottom {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--on-dark-line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.86rem; color: var(--on-dark-muted);
}
.footer__bottom a { color: var(--on-dark-muted); }
.footer__bottom a:hover { color: var(--cyan); }
@media (max-width: 820px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__operator { grid-template-columns: 1fr; }
}
@media (max-width: 520px) { .footer__top { grid-template-columns: 1fr; } }

/* =========================================================
   Legal pages (privacy / cookies templates)
   ========================================================= */
.legal { max-width: 820px; }
.legal__back { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-family: var(--font-display); margin-bottom: 30px; text-decoration: none; }
.legal__back svg { width: 18px; height: 18px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 12px; }
.legal .legal__meta { color: var(--muted); margin-bottom: 32px; }
.legal h2 { font-size: 1.4rem; margin: 38px 0 12px; }
.legal h3 { font-size: 1.1rem; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.todo-banner {
  background: #fff6e0;
  border: 1px solid #f0d9a0;
  border-left: 4px solid #d99a16;
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 32px;
  color: #6b4e10;
  font-size: 0.96rem;
}
.todo-banner strong { display:block; font-family: var(--font-display); margin-bottom: 6px; color: #5a4109; }

/* =========================================================
   Cookie consent banner
   ========================================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1000;
  background: var(--ink);
  border-top: 1px solid var(--on-dark-line);
  box-shadow: 0 -8px 30px rgba(21,24,26,0.20);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner {
  display: flex; align-items: center; gap: clamp(16px, 3vw, 40px);
  padding-block: 16px;
}
.cookie-banner__text {
  margin: 0; flex: 1;
  font-size: 0.92rem; line-height: 1.55;
  color: var(--on-dark-muted);
}
.cookie-banner__text a { color: var(--cyan); }
.cookie-banner__actions { display: flex; gap: 10px; flex: none; }
.cookie-banner__actions .btn { white-space: nowrap; }
@media (max-width: 640px) {
  .cookie-banner__inner { flex-direction: column; align-items: stretch; gap: 14px; }
  .cookie-banner__actions .btn { flex: 1; justify-content: center; }
}

/* Link „Ustawienia cookies" (button stylizowany jak link w stopce) */
.cookie-settings-link {
  background: none; border: 0; padding: 0; margin: 0;
  font: inherit; color: inherit; cursor: pointer;
  text-decoration: underline; text-underline-offset: 2px;
}
.cookie-settings-link:hover { color: var(--cyan); }

/* Blok społecznościowy w stopce */
.footer__social { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.footer__social-label {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--on-dark-muted); font-family: var(--font-display);
}
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--on-dark-line);
  color: var(--on-dark-muted);
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}
.social-link svg { width: 20px; height: 20px; }
.social-link:hover { color: var(--cyan); border-color: var(--cyan-line); background: rgba(0,174,239,0.08); }

/* =========================================================
   Strona 404
   ========================================================= */
.notfound { display: grid; place-items: center; min-height: 62vh; text-align: center; }
.notfound__inner {
  max-width: 640px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.notfound__peaks { width: min(360px, 70%); height: auto; color: var(--cyan); opacity: 0.85; margin-bottom: 4px; }
.notfound__code {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(4.5rem, 16vw, 9rem); line-height: 0.85;
  letter-spacing: -0.03em; color: var(--cyan-deep); margin: 0;
}
.notfound__title {
  font-size: clamp(1.35rem, 3.4vw, 2.05rem); margin: 0; max-width: 22ch;
}
.notfound__text { color: var(--muted); font-size: 1.05rem; margin: 0; max-width: 46ch; }
.notfound .btn { margin-top: 12px; }

/* Tabela w dokumentach prawnych (np. cookies) */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 22px;
  font-size: 0.92rem;
}
.legal-table th, .legal-table td {
  text-align: left;
  padding: 10px 12px;
  border: 1px solid var(--line);
  vertical-align: top;
  color: var(--ink);
}
.legal-table thead th {
  background: var(--paper-3);
  font-family: var(--font-display);
  font-weight: 600;
}
.legal-table code {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.88em;
}
@media (max-width: 560px) {
  .legal-table, .legal-table thead, .legal-table tbody, .legal-table th, .legal-table td, .legal-table tr { display: block; }
  .legal-table thead { display: none; }
  .legal-table tr { margin-bottom: 12px; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
  .legal-table td { border: 0; border-bottom: 1px solid var(--line-soft); }
  .legal-table td:last-child { border-bottom: 0; }
}
