:root {
  /* ── Paleta ASY: krem / granat / złoto / pomarańcz ── */
  --bg: #faf5ea;
  --bg-soft: #f2ecdd;
  --navy: #2a3d63;
  --navy-dk: #1f2f50;
  --navy-mid: #5b6886;
  --gold: #c9952f;
  --gold-dk: #b07f1d;
  --orange: #e6821e;
  --orange-dk: #d4730f;
  --text: #3c4658;
  --muted: #6c7689;

  /* Aliasy dla booking.css (współdzielony z przedszkolem — tam paleta zielona) */
  --green: var(--navy);
  --green-dk: var(--navy-dk);
  --green-mid: var(--navy-mid);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.site {
  position: relative;
  overflow: hidden;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- TOP BAR ---------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  text-decoration: none;
}

.logo {
  height: 56px;
  width: auto;
  display: block;
}

.brand__name {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--navy-dk);
  line-height: 1.45;
  max-width: 120px;
}

/* ---------- NAV (desktop) ---------- */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-dk);
  text-decoration: none;
  padding: 9px 14px;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.nav a:hover {
  background: rgba(42, 61, 99, 0.07);
  color: var(--navy);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ---------- PHONE BUTTON (gold pill) ---------- */
.phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(135deg, #d8a13c 0%, #c08a1c 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.30),
    0 8px 24px rgba(176, 127, 29, 0.28);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease;
}

.phone:hover {
  transform: translateY(-1px) scale(1.015);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 12px 30px rgba(176, 127, 29, 0.38);
  filter: saturate(1.05);
}

.phone:active {
  transform: scale(0.975);
  transition-duration: 0.12s;
}

.phone svg {
  color: #fff;
}

/* ---------- BURGER (mobile) ---------- */
.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(31, 47, 80, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  place-items: center;
  flex: 0 0 46px;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-dk);
  margin: 2.5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(250, 245, 234, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 110px 28px 32px;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu__close {
  position: absolute;
  top: 16px;
  right: 24px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(31, 47, 80, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--navy-dk);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.mobile-menu a {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--navy-dk);
  text-decoration: none;
  padding: 14px 8px;
  border-bottom: 1px solid rgba(31, 47, 80, 0.08);
}

.mobile-menu .mobile-menu__phone {
  margin-top: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #d8a13c 0%, #c08a1c 100%);
  color: #fff;
  text-align: center;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(176, 127, 29, 0.28);
}

body.menu-open {
  overflow: hidden;
}

/* ---------- HERO ---------- */
.hero {
  padding: 28px 0 64px;
}

.hero__content {
  max-width: 520px;
}

/* ---------- BADGE ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(201, 149, 47, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 10px 26px rgba(31, 47, 80, 0.045);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .8px;
  color: var(--navy-dk);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(230, 130, 30, 0.10);
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.08;
  color: var(--navy-dk);
  letter-spacing: -.3px;
  margin-bottom: 16px;
}

.hero h1 .hl {
  color: var(--orange);
}

.hero__lead {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text);
  max-width: 430px;
  margin-bottom: 26px;
}

/* ---------- HERO BUTTONS ---------- */
.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-dk);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .2px;
  text-decoration: none;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 28px rgba(31, 47, 80, 0.22);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.btn-navy:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 16px 36px rgba(31, 47, 80, 0.30);
}

.btn-navy:active {
  transform: scale(0.97);
  transition-duration: 0.12s;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.35);
  color: var(--navy-dk);
  border: 1.5px solid rgba(201, 149, 47, 0.55);
  border-radius: 999px;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .2px;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(176, 127, 29, 0.14);
}

.btn-outline:active {
  transform: scale(0.97);
  transition-duration: 0.12s;
}

.btn-navy svg,
.btn-outline svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.btn-outline svg {
  color: var(--gold-dk);
}

/* ---------- REKRUTACJA ROW ---------- */
.hero__recruit {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13.5px;
}

.hero__recruit-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--navy-dk);
}

.hero__recruit-badge svg {
  width: 17px;
  height: 17px;
  color: var(--orange);
  flex: 0 0 auto;
}

.hero__recruit-link {
  color: var(--orange-dk);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px dashed rgba(212, 115, 15, 0.4);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.hero__recruit-link:hover {
  color: var(--orange);
  border-color: var(--orange);
}

/* ---------- CTA (pomarańczowy gradient — współdzielony wygląd z bookingiem) ---------- */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #f28a18 0%, #ef7a10 55%, #e96908 100%);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 14px 30px rgba(230, 130, 30, 0.22);
  transition:
    transform 0.42s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.42s cubic-bezier(.22, 1, .36, 1),
    filter 0.42s cubic-bezier(.22, 1, .36, 1);
}

.cta:hover {
  transform: translateY(-2px) scale(1.018);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 20px 42px rgba(230, 130, 30, 0.30),
    0 0 0 7px rgba(230, 130, 30, 0.075);
  filter: saturate(1.04);
}

.cta:active {
  transform: scale(0.965);
  transition-duration: 0.12s;
}

.cta svg {
  width: 17px;
  height: 17px;
  transition: transform .2s;
}

.cta:hover svg {
  transform: translateX(4px);
}

/* ---------- PHOTO (hero, maska gradientowa) ---------- */
.photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 54%;
  background-color: #efe7d4;
  background-position: 72% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      rgba(0, 0, 0, 0.06) 10%,
      rgba(0, 0, 0, 0.32) 22%,
      rgba(0, 0, 0, 0.76) 38%,
      #000 58%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      rgba(0, 0, 0, 0.06) 10%,
      rgba(0, 0, 0, 0.32) 22%,
      rgba(0, 0, 0, 0.76) 38%,
      #000 58%);
}

/* ---------- MOBILE ≤1080px ---------- */
@media (max-width: 1080px) {
  .wrap {
    padding: 0 24px;
  }

  .nav {
    display: none;
  }

  .burger {
    display: grid;
  }

  .phone span {
    display: none;
  }

  .brand__name {
    display: none;
  }

  .logo {
    height: 48px;
  }

  .photo {
    top: 80px;
    right: 0;
    left: 0;
    bottom: auto;
    width: 100%;
    height: 280px;
    background-position: 62% 30%;
    background-size: cover;
    -webkit-mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
  }

  .hero {
    padding: 250px 0 48px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__lead {
    max-width: 100%;
  }

  .hero__actions .btn-navy,
  .hero__actions .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .cta {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- TABLET 600–1080px ---------- */
@media (min-width: 600px) and (max-width: 1080px) {
  .photo {
    height: 430px;
    background-position: 60% 35%;
  }

  .hero {
    padding-top: 400px;
  }

  .phone span {
    display: inline;
  }

  .hero__actions .btn-navy,
  .hero__actions .btn-outline {
    width: auto;
  }
}

/* ---------- SMALL MOBILE ≤600px ---------- */
@media (max-width: 600px) {
  .photo {
    height: 250px;
    background-position: 60% 28%;
  }

  .hero {
    padding-top: 225px;
  }
}
