/* ===========================================================
   U WŁOCHA — FOOD TRUCK PIZZA
   Paleta: zieleń włoska #0F7B3E, biel/kość słoniowa #FAF7F2,
   czerwień #C8283C, węgiel #2B2523, skórka pizzy #E8B36A
   Typografia: Fraunces (display) + Work Sans (body/utility)
   Sygnatura: sekcja Menu stylizowana na prawdziwą tablicę
   kredową klienta, z cenami "doklejonymi" jak karteczki
   =========================================================== */

:root{
  --green: #0F7B3E;
  --green-dark: #0B5A2C;
  --cream: #FAF7F2;
  --red: #C8283C;
  --red-dark: #9E1D2E;
  --ink: #2B2523;
  --crust: #E8B36A;
  --board: #1F3B2E;
  --board-line: rgba(255,255,255,0.14);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Work Sans', Arial, sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --shadow-soft: 0 12px 30px rgba(43,37,35,0.12);
  --container-w: 1120px;
}

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

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.tricolor-bar{
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, var(--green) 33.33%, var(--cream) 33.33%, var(--cream) 66.66%, var(--red) 66.66%);
}

img{ max-width: 100%; display: block; }

a{ color: inherit; text-decoration: none; }

h1, h2, h3{
  font-family: var(--font-display);
  margin: 0 0 0.4em;
  line-height: 1.15;
  font-weight: 600;
}

p{ margin: 0 0 1em; }

.container{
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

:focus-visible{
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation: none !important; transition: none !important; }
}

/* ---------- BUTTONS ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }

.btn--primary{
  background: var(--red);
  color: var(--cream);
  box-shadow: 0 8px 20px rgba(200,40,60,0.35);
}
.btn--primary:hover{ background: var(--red-dark); }

.btn--secondary{
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn--secondary:hover{ background: var(--green-dark); color: var(--cream); }

.btn--phone{
  background: var(--green);
  color: var(--cream);
  padding: 10px 20px;
  font-size: 0.9rem;
}
.btn--phone:hover{ background: var(--green-dark); }

/* ---------- HEADER ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(43,37,35,0.08);
}
.site-header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
}
.logo__img{ height: 44px; width: auto; }

.main-nav__list{
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav__list a{
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
}
.main-nav__list a::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.main-nav__list a:hover::after{ transform: scaleX(1); }

@media (max-width: 860px){
  .main-nav{ display: none; }
}

/* ---------- MOBILE NAV (CSS-only burger) ---------- */
.site-header__actions{
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-toggle{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.nav-burger{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 8px;
}
.nav-burger span{
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.mobile-nav{
  max-height: 0;
  overflow: hidden;
  background: var(--cream);
  border-top: 1px solid rgba(43,37,35,0.08);
  transition: max-height 0.3s ease;
}
.mobile-nav ul{
  list-style: none;
  margin: 0;
  padding: 8px 24px;
}
.mobile-nav li a{
  display: block;
  padding: 14px 0;
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 1px solid rgba(43,37,35,0.08);
}
.mobile-nav li:last-child a{ border-bottom: none; }

.nav-toggle:checked ~ .mobile-nav{
  max-height: 400px;
}
.nav-toggle:checked ~ .container .nav-burger span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle:checked ~ .container .nav-burger span:nth-child(2){
  opacity: 0;
}
.nav-toggle:checked ~ .container .nav-burger span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 860px){
  .nav-burger{ display: flex; }
  .btn--phone{ display: none; }
}
@media (min-width: 861px){
  .mobile-nav{ display: none; }
}

/* ---------- HERO ---------- */
.hero{
  position: relative;
  padding: 150px 0 130px;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.hero__bg{
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: 30% 35%;
  z-index: 0;
  transform: scale(1.03);
  filter: brightness(1.08) saturate(1.06);
}
.hero::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  background:
    linear-gradient(92deg, rgba(15,20,17,0.78) 0%, rgba(15,20,17,0.55) 30%, rgba(15,20,17,0.22) 55%, rgba(15,20,17,0.05) 80%, rgba(15,20,17,0.0) 100%),
    linear-gradient(180deg, rgba(15,20,17,0.0) 60%, rgba(15,20,17,0.35) 100%);
}
.hero__inner{
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero__eyebrow{
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--crust);
  margin-bottom: 16px;
}
.hero__title{
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: var(--cream);
  text-wrap: balance;
}
.hero__title-signature{
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--cream);
  margin-top: 10px;
}
.hero__subtitle{
  font-size: 1.15rem;
  color: rgba(250,247,242,0.82);
  max-width: 520px;
}
.hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero .btn--secondary{
  color: var(--cream);
  border-color: rgba(250,247,242,0.7);
}
.hero .btn--secondary:hover{
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.section{ padding: 88px 0; }
.section__title{
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: var(--ink);
  position: relative;
  padding-bottom: 14px;
}
.section__title::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 64px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--green) 33.33%, #DCD7CC 33.33%, #DCD7CC 66.66%, var(--red) 66.66%);
}
.section__lead{
  max-width: 640px;
  color: rgba(43,37,35,0.72);
  font-size: 1.05rem;
}

/* ---------- MENU (signature: real chalkboard look) ---------- */
.menu{ background: var(--cream); }

.menu__base-prices{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 40px 0 8px;
}
.menu__base-card{
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  padding: 28px 0 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.menu__base-card::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  z-index: 1;
  background: linear-gradient(90deg, var(--green) 33.33%, var(--cream) 33.33%, var(--cream) 66.66%, var(--red) 66.66%);
}
.menu__base-photo{
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center center;
  margin-bottom: 18px;
}
.menu__base-card h3,
.menu__base-card .price,
.menu__base-card .menu__base-note{
  margin-left: 24px;
  margin-right: 24px;
}
.menu__base-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.menu__base-card h3{ font-size: 1.3rem; margin-bottom: 6px; }
.menu__variant{
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-dark);
  border: 1px solid var(--green-dark);
  border-radius: 999px;
  padding: 2px 10px;
  margin-left: 8px;
  vertical-align: middle;
}
.menu__base-card .price{
  font-family: var(--font-body);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--red);
  margin-top: 6px;
  margin-bottom: 6px;
}
.menu__base-note{ font-size: 0.9rem; color: rgba(43,37,35,0.65); margin: 0; }
.menu__note{
  font-size: 0.85rem;
  color: rgba(43,37,35,0.55);
  margin-bottom: 40px;
}

/* ---------- MENU FACTS (Italian tricolor accents) ---------- */
.menu__facts{
  list-style: none;
  margin: 20px 0 8px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.menu__facts li{
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--green);
  border-left: 5px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu__facts-flag{
  display: inline-block;
  width: 16px;
  height: 12px;
  flex-shrink: 0;
  background: linear-gradient(90deg, var(--green) 33.33%, var(--cream) 33.33%, var(--cream) 66.66%, var(--red) 66.66%);
  border: 1px solid rgba(43,37,35,0.25);
  border-radius: 2px;
}
.menu__facts li:nth-child(2){ border-color: var(--ink); border-left-color: var(--red); }
.menu__facts li:nth-child(3){ border-color: var(--green); border-left-color: var(--crust); }

.menu-group__note{
  margin: 14px 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--board);
  background: var(--crust);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
}
.menu-group__photo{
  width: 100%;
  height: 210px;
  object-fit: contain;
  background: rgba(0,0,0,0.15);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}

.menu__groups{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* the chalkboard card, echoing the client's real menu signs */
.menu-group{
  background: var(--board);
  border-radius: var(--radius-md);
  padding: 28px 26px 22px;
  box-shadow: var(--shadow-soft), inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
}
.menu-group::before{
  /* chalk dust texture, subtle */
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: var(--radius-md);
  background-image:
    radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 6px 6px;
  pointer-events: none;
}
.menu-group__title{
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  color: var(--crust);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--board-line);
}
.menu-group__list{
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-group__list li{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--board-line);
  color: var(--cream);
  font-size: 0.96rem;
}
.menu-group__list li:last-child{ border-bottom: none; }
.menu-group__list li span:first-child{ font-weight: 500; }
.menu-group__list li span:last-child{
  /* sticky-note price tag, like the taped labels on the real board */
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
  background: #F4D35E;
  padding: 3px 9px;
  border-radius: 3px;
  transform: rotate(-0.75deg);
  box-shadow: 0 2px 5px rgba(0,0,0,0.25);
  flex-shrink: 0;
}
.menu-group__list li:nth-child(3n) span:last-child{
  background: #F2A0A8;
  transform: rotate(0.75deg);
}
.menu-group__list li:nth-child(4n) span:last-child{
  transform: rotate(-0.4deg);
}

/* ---------- SCHEDULE ---------- */
.schedule{ background: var(--cream); }
.schedule__table{
  width: 100%;
  border-collapse: collapse;
  margin: 36px 0 20px;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.schedule__table th,
.schedule__table td{
  text-align: left;
  padding: 16px 20px;
  font-size: 0.95rem;
}
.schedule__table thead th{
  background: var(--green);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.8rem;
}
.schedule__table tbody tr:nth-child(even){ background: rgba(15,123,62,0.05); }
.schedule__table tbody tr{ transition: background-color 0.15s ease; }
.schedule__table tbody tr:hover{ background: rgba(200,40,60,0.06); }
.schedule__table tbody td:first-child{ font-weight: 700; color: var(--red); }

.schedule__disclaimer{
  font-size: 0.9rem;
  color: rgba(43,37,35,0.65);
}
.schedule__disclaimer a{ color: var(--red); font-weight: 600; }

@media (max-width: 640px){
  .schedule__table{ font-size: 0.85rem; }
  .schedule__table th, .schedule__table td{ padding: 12px 12px; }
}

/* ---------- GALLERY ---------- */
.gallery{ background: var(--cream); }
.gallery__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 16px;
  margin-top: 36px;
}
.gallery__item{
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
}
.gallery__item--wide{ grid-column: span 2; }
.gallery__item img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery__item:hover img{ transform: scale(1.05); }

@media (max-width: 760px){
  .gallery__grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery__item--wide{ grid-column: span 2; height: 220px; }
}

.gallery-toggle{
  position: absolute;
  opacity: 0;
  pointer-events: none;
  height: 0;
  width: 0;
}
.gallery__grid--extra{
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.5s ease, margin-top 0.3s ease;
}
.gallery-toggle:checked ~ .gallery__grid--extra{
  max-height: 6000px;
  margin-top: 16px;
}
.gallery-toggle-label{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  padding: 13px 28px;
  border: 2px solid var(--green-dark);
  border-radius: 999px;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.gallery-toggle-label:hover{
  background: var(--green-dark);
  color: var(--cream);
}
.gallery-toggle-label__hide{ display: none; }
.gallery-toggle:checked ~ .gallery-toggle-label .gallery-toggle-label__show{ display: none; }
.gallery-toggle:checked ~ .gallery-toggle-label .gallery-toggle-label__hide{ display: inline; }

/* ---------- RENTAL / IMPREZY ---------- */
.rental{
  background: var(--green-dark);
  color: var(--cream);
}
.rental .section__title,
.rental .section__lead{ color: var(--cream); }
.rental__inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.rental__text p{ color: rgba(250,247,242,0.85); font-size: 1.02rem; }
.rental__quick-contact{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}
.rental .btn--secondary{
  color: var(--cream);
  border-color: var(--cream);
}
.rental .btn--secondary:hover{
  background: var(--cream);
  color: var(--green-dark);
}

.rental__form{
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  box-shadow: var(--shadow-soft);
}
.rental__honeypot{ display: none; }

.form-field{ display: flex; flex-direction: column; gap: 6px; }
.form-field--full{ grid-column: 1 / -1; }
.form-field label{
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}
.form-field input,
.form-field textarea{
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 11px 14px;
  border: 1.5px solid rgba(43,37,35,0.2);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
}
.form-field input:focus,
.form-field textarea:focus{
  border-color: var(--green);
}
.form-field textarea{ resize: vertical; }

.form-field--consent{ margin-top: 4px; }
.consent-label{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  cursor: pointer;
}
.consent-label input[type="checkbox"]{
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
  cursor: pointer;
}
.consent-label a{
  color: var(--green);
  text-decoration: underline;
}

.rental__form button.btn{ margin-top: 6px; }

@media (max-width: 860px){
  .rental__inner{ grid-template-columns: 1fr; }
  .rental__form{ grid-template-columns: 1fr; }
}

/* ---------- ABOUT ---------- */
.about{ padding-top: 20px; }
.about p{ max-width: 720px; font-size: 1.05rem; color: rgba(43,37,35,0.78); }
.about__inner{
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 44px;
  align-items: center;
}
.about__photo-wrap{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-soft);
}
.about__photo-wrap::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  z-index: 1;
  background: linear-gradient(90deg, var(--green) 33.33%, #F4F1EA 33.33%, #F4F1EA 66.66%, var(--red) 66.66%);
}
.about__photo{
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center 25%;
}
@media (max-width: 760px){
  .about__inner{
    grid-template-columns: 1fr;
  }
  .about__photo-wrap{ max-width: 320px; margin: 0 auto; }
}

/* ---------- FOOTER ---------- */
.site-footer{
  background: var(--ink);
  color: rgba(250,247,242,0.85);
  padding: 56px 0 24px;
}
.site-footer__inner{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(250,247,242,0.12);
}
.site-footer h3{
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--crust);
  margin-bottom: 14px;
}
.site-footer__brand .logo__text{
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
}
.site-footer__brand em{ display: block; font-style: normal; font-size: 0.85rem; color: rgba(250,247,242,0.6); }
.site-footer__brand p{ margin-top: 8px; color: rgba(250,247,242,0.6); }
.site-footer a:hover{ color: var(--crust); }
.site-footer__contact p, .site-footer__links li{ margin: 0 0 10px; list-style: none; }
.site-footer__links ul{ padding: 0; margin: 0; }
.site-footer__copy{
  text-align: center;
  font-size: 0.8rem;
  color: rgba(250,247,242,0.45);
  margin: 24px 0 0;
}

@media (max-width: 700px){
  .site-footer__inner{ grid-template-columns: 1fr; }
}

.fade-in{
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-visible{
  opacity: 1;
  transform: translateY(0);
}

.site-header--scrolled{
  box-shadow: 0 2px 12px rgba(43,37,35,0.1);
}

@media (max-width: 480px){
  .hero{ padding: 100px 0 80px; }
  .hero__title{ font-size: 2rem; }
  .hero__subtitle{ font-size: 1rem; }
  .hero__actions{ flex-direction: column; }
  .hero__actions .btn{ width: 100%; }
  .section{ padding: 56px 0; }
  .menu__base-prices{ grid-template-columns: 1fr; }
  .menu__groups{ grid-template-columns: 1fr; }
  .gallery__grid{ grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery__item--wide{ grid-column: span 1; }
  .schedule__table{ display: block; overflow-x: auto; white-space: nowrap; }
  .rental__form{ padding: 20px; }
  .container{ padding: 0 16px; }
}

@media (min-width: 481px) and (max-width: 760px){
  .hero{ padding: 120px 0 100px; }
  .menu__groups{ grid-template-columns: repeat(2, 1fr); }
}

/* Hero na telefonach: kadr przesunięty w prawo, żeby było widać właścicielkę
   (na desktopie zostaje 30% 35% — nie ruszamy, bo tam się zgadza).
   Świadomie NIE przyciemniamy gradientu — klientka mówiła, że jest za ciemno. */
@media (max-width: 760px){
  .hero__bg{
    background-position: 68% 32%;
  }
}

.skip-link{
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 100;
  background: var(--red);
  color: var(--cream);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus{
  top: 12px;
}

html{
  scroll-padding-top: 80px;
}

.schedule__responsive{
  display: grid;
  gap: 0;
  margin: 36px 0 20px;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.schedule__row{
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 0;
}
.schedule__row span{
  padding: 16px 20px;
  font-size: 0.95rem;
  text-align: left;
}
.schedule__header span{
  background: var(--green);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.8rem;
}
.schedule__row:not(.schedule__header):nth-child(even){
  background: rgba(15,123,62,0.05);
}
.schedule__row:not(.schedule__header){
  transition: background-color 0.15s ease;
}
.schedule__row:not(.schedule__header):hover{
  background: rgba(200,40,60,0.06);
}
.schedule__row:not(.schedule__header) span:first-child{
  font-weight: 700;
  color: var(--red);
}

@media (max-width: 640px){
  .schedule__responsive{
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: transparent;
    box-shadow: none;
  }
  .schedule__header{
    display: none;
  }
  .schedule__row{
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 16px 20px;
    gap: 8px;
  }
  .schedule__row span{
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
  .schedule__row span::before{
    content: attr(data-label);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--green-dark);
    letter-spacing: 0.5px;
    flex-shrink: 0;
    margin-right: 12px;
  }
  .schedule__row span:first-child{
    font-size: 1.1rem;
    color: var(--red);
    border-bottom: 1px solid rgba(43,37,35,0.08);
    padding-bottom: 8px;
    margin-bottom: 4px;
  }
  .schedule__row span:first-child::before{
    display: none;
  }
}



/* ---------- LEGAL / POLITYKA PRYWATNOŚCI ---------- */
.legal{
  padding: 64px 0 90px;
  max-width: 760px;
  margin: 0 auto;
}
.legal h1{
  font-size: 2.1rem;
  margin-bottom: 0.3em;
}
.legal .legal__updated{
  color: rgba(43,37,35,0.55);
  font-size: 0.9rem;
  margin-bottom: 2.4em;
}
.legal h2{
  font-family: var(--font-body);
  font-size: 1.15rem;
  margin-top: 2.2em;
}
.legal p, .legal li{
  color: rgba(43,37,35,0.85);
  font-size: 0.98rem;
}
.legal ul{ padding-left: 1.2em; }
.legal .placeholder{
  background: #F4D35E;
  padding: 1px 6px;
  border-radius: 3px;
  font-weight: 600;
}
.legal a{
  color: var(--red);
  text-decoration: underline;
}
.legal__back{
  display: inline-block;
  margin-bottom: 24px;
  font-weight: 600;
}