:root {
  --cream:        #FEFDE2;
  --cream-btn:     #FDF2B7;
  --nav-cream:     #FEFDE2;
  --nav-yellow:    #FAF285;
  --navy:          #172683;
  --navy-deep:     #101c63;
  --ink:           #23231f;
  --ink-soft:      #4a4a42;

  --font-italianno: 'Italianno', cursive;
  --font-ephesis:   'Ephesis', cursive;
  --font-esteban:   'Esteban', serif;
  --font-daibanna:  'Dai Banna SIL', serif;
  --font-elms:      'Elms Sans', sans-serif;

  --container: 1180px;
  --nav-h: 76px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-elms);
  overflow-x: hidden;
}

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

h1, h2, h3 { margin: 0; }

section {
  position: relative;
  overflow: hidden;
}

/* animacja */
.reveal-fade {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s cubic-bezier(.22,.61,.36,1), transform 0.9s cubic-bezier(.22,.61,.36,1);
}
.reveal-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-fade { transition: none; opacity: 1; transform: none; }
}

/* nawigacja */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--nav-cream);
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}
.nav.is-scrolled {
  background: var(--nav-yellow);
  box-shadow: 0 4px 18px rgba(23,38,131,0.08);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-ephesis);
  font-size: 2.1rem;
  color: var(--navy);
  text-decoration: none;
  line-height: 1;
}
.nav__links {
  display: flex;
  gap: 42px;
}
.nav__links a {
  font-family: var(--font-ephesis);
  font-size: 1.5rem;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0%; height: 1px;
  background: var(--navy);
  transition: width 0.3s ease;
}
.nav__links a:hover { color: var(--navy); }
.nav__links a:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.nav__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* sekcja 1 hero */
.hero {
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,15,10,0.18) 0%, rgba(10,15,10,0.12) 45%, rgba(10,15,10,0.35) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 760px;
}
.hero__title {
  font-family: var(--font-italianno);
  font-size: clamp(5rem, 13vw, 9.5rem);
  color: var(--cream);
  line-height: 0.9;
  text-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.hero__subtitle {
  font-family: var(--font-elms);
  font-weight: 400;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: #fff;
  letter-spacing: 0.02em;
  margin-top: 6px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.btn {
  font-family: var(--font-elms);
  font-size: 1rem;
  letter-spacing: 0.01em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn--hero {
  margin-top: 34px;
  background: var(--cream-btn);
  color: var(--ink);
  padding: 16px 40px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.btn--hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.24);
  background: #fff6cf;
}

/* sekcja 2 */
.about {
  padding: 130px 0 110px;
  background: var(--cream);
}
.about__content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-ephesis);
  font-size: 2rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.eyebrow__line {
  flex: 1;
  height: 1px;
  background: var(--ink);
  opacity: 0.4;
  max-width: 180px;
}
.about h2 {
  font-family: var(--font-esteban);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  margin-bottom: 44px;
}
.about__body {
  display: flex;
  gap: 44px;
  align-items: flex-start;
}
.about__img {
  width: 340px;
  flex-shrink: 0;
  border-radius: 18px;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.about__text p {
  font-family: var(--font-daibanna);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.about__text p:last-child { margin-bottom: 0; }

/* kafelki - tiles po bokach */
.tile-col {
  position: absolute;
  width: clamp(80px, 9vw, 190px);
  z-index: 1;
  opacity: 0.95;
  pointer-events: none;
}
.tile-col--left { left: clamp(10px, 1.8vw, 24px); }
.tile-col--right { right: clamp(10px, 1.8vw, 24px); }
.tile-col.tile-1 { top: 0; }
.tile-col.tile-2 { top: clamp(80px, 9vw, 190px); }
.tile-col.tile-3 { top: calc(clamp(80px, 9vw, 190px) * 2); }
.tile-col.tile-4 { top: calc(clamp(80px, 9vw, 190px) * 3); }

/* sekcja 3 */
.places {
  padding: 100px 24px 130px;
  background: var(--cream);
  text-align: center;
}
.eyebrow--script {
  display: block;
  font-family: var(--font-ephesis);
  font-size: 2.6rem;
  color: var(--ink);
}
.places__subtitle {
  font-family: var(--font-esteban);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 4px 0 60px;
}
.lemon-icon {
  position: absolute;
  width: 175px;
  top: 92px;
  opacity: 0.9;
}
.lemon-icon--left { left: 6%; }
.lemon-icon--right { right: 6%; transform: scaleX(-1); }

.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  max-width: var(--container);
  margin: 0 auto;
}
.carousel__arrow {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
  padding: 12px;
  transition: transform 0.25s ease, color 0.25s ease;
}
.carousel__arrow:hover { color: var(--navy); transform: scale(1.15); }

.carousel__track {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 26px;
  touch-action: pan-y;
  user-select: none;
}
.carousel__slide {
  position: relative;
  flex-shrink: 0;
  width: 230px;
  transition: transform 0.45s cubic-bezier(.22,.61,.36,1), opacity 0.45s ease, width 0.45s ease;
  opacity: 0.6;
  cursor: pointer;
}
.carousel__slide img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(23,38,131,0.12);
}
.carousel__slide--active {
  width: 300px;
  opacity: 1;
  transform: translateY(-18px);
}
.carousel__label {
  display: block;
  margin-top: 16px;
  font-family: var(--font-esteban);
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  color: var(--ink);
}
.carousel__slide--active .carousel__label { font-size: 1.15rem; }

/* sekcja 4 */
.food {
  padding: 0 0 0;
  background: var(--cream);
  text-align: center;
}
.pattern-band {
  height: 90px;
  background-repeat: repeat-x;
  background-size: 90px 90px;
  background-position: center;
}
.pattern-band--mix {
  background-size: 360px 90px;
}
.food h2 {
  font-family: var(--font-esteban);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin: 70px 0 50px;
}
.food__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 70px;
}
.food__card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.food__card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.food__card:hover img { transform: scale(1.08); }

.food__placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #eceac0, #dcd9a0);
  color: var(--ink-soft);
}
.food__placeholder-icon { font-size: 2.4rem; }
.food__placeholder-text {
  font-family: var(--font-elms);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

.food__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,20,50,0);
  transition: background 0.35s ease;
}
.food__overlay span {
  font-family: var(--font-esteban);
  font-size: 1.15rem;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  text-align: center;
  padding: 0 12px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.food__card:hover .food__overlay { background: rgba(15,20,50,0.5); }
.food__card:hover .food__overlay span { opacity: 1; transform: translateY(0); }

/* sekcja 5 */
.itinerary {
  padding: 100px 24px 0;
  background: var(--cream);
  text-align: center;
}
.itinerary h2 {
  font-family: var(--font-esteban);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 70px;
}
.itinerary__list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-bottom: 90px;
}
.day {
  position: relative;
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 40px;
  text-align: left;
}
.day--reverse {
  grid-template-columns: 1fr 190px;
}
.day--reverse .day__text { order: 1; }
.day--reverse .day__img { order: 2; }
.day__img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(23,38,131,0.18);
}
.day__text h3 {
  font-family: var(--font-esteban);
  font-weight: 400;
  font-size: 1.85rem;
  margin-bottom: 12px;
}
.day__text p {
  font-family: var(--font-daibanna);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}
.day__swirl {
  position: absolute;
  width: 160px;
  top: 50%;
  transform: translateY(-50%);
}
.day__swirl--left { left: -180px; }
.day__swirl--right { right: -180px; }

/* stopka */
.footer {
  position: relative;
  background: var(--navy);
  padding: 70px 24px 60px;
  text-align: center;
  overflow: hidden;
}
.footer__lemon {
  position: absolute;
  width: 155px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.9;
}
.footer__lemon--left { left: 6%; }
.footer__lemon--right { right: 6%; transform: translateY(-50%) scaleX(-1); }

.footer__content { max-width: 560px; margin: 0 auto; }
.footer__line1 {
  font-family: var(--font-elms);
  color: #fff;
  font-size: 1.05rem;
  margin: 0 0 6px;
}
.footer__line2 {
  font-family: var(--font-elms);
  color: #fff;
  font-size: 1.05rem;
  margin: 0 0 30px;
}
.footer__form {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.footer__form input {
  font-family: var(--font-elms);
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  width: 100%;
  max-width: 320px;
  background: var(--cream-btn);
  color: var(--ink);
}
.footer__form input::placeholder { color: #7a7256; }
.footer__form button {
  font-family: var(--font-elms);
  border: none;
  border-radius: 999px;
  padding: 14px 26px;
  background: var(--cream);
  color: var(--navy);
  cursor: pointer;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}
.footer__form button:hover { background: #fff; transform: translateY(-2px); }

/* mobilka */
@media (max-width: 1100px) and (min-width: 769px) {
  .tile-col { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav__inner { padding: 0 20px; }
  .nav__logo { font-size: 1.7rem; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    right: 0;
    left: 0;
    background: var(--nav-yellow);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    box-shadow: 0 10px 20px rgba(23,38,131,0.08);
  }
  .nav__links.is-open { max-height: 300px; }
  .nav__links a {
    padding: 16px 0;
    width: 100%;
    text-align: center;
  }

  .hero__title { font-size: clamp(4rem, 20vw, 5.5rem); }
  .hero__subtitle { font-size: 1rem; padding: 0 12px; }
  .btn--hero { padding: 14px 32px; font-size: 0.95rem; }

  .about { padding: 100px 0 80px; }
  .about__body { flex-direction: column; }
  .about__img { width: 100%; }
  .eyebrow { font-size: 1.6rem; }
  .about h2 { font-size: 1.6rem; margin-bottom: 30px; }

  .tile-col { width: 88px; opacity: 0.75; }
  .tile-col--left { left: 12px; }
  .tile-col--right { right: 12px; }
  .tile-col.tile-1 { top: 30px; }
  .tile-col.tile-2 { top: 118px; }
  .tile-col.tile-3 { top: 206px; }
  .tile-col.tile-4 { top: 294px; }

  .places { padding: 80px 16px 90px; }
  .lemon-icon { width: 95px; top: 62px; opacity: 0.75; }
  .eyebrow--script { font-size: 2rem; }
  .places__subtitle { font-size: 0.9rem; margin-bottom: 40px; }
  .carousel { gap: 8px; }
  .carousel__slide { width: 150px; }
  .carousel__slide--active { width: 190px; transform: translateY(-8px); }
  .carousel__arrow { font-size: 1.2rem; padding: 6px; }

  .food h2 { margin: 50px 0 34px; }
  .food__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 0 16px 50px;
  }
  .food__overlay { background: rgba(15,20,50,0.35); }
  .food__overlay span { opacity: 1; transform: none; font-size: 0.95rem; }

  .itinerary { padding: 80px 16px 0; }
  .itinerary__list { gap: 46px; padding-bottom: 60px; }
  .day, .day--reverse {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
  }
  .day--reverse .day__text { order: 0; }
  .day--reverse .day__img { order: 1; }
  .day__img { max-width: 220px; margin: 0 auto; }
  .day__text { text-align: center; }
  .day__text h3 { font-size: 1.5rem; }
  .day__text p { font-size: 1rem; }
  .day__swirl { display: none; }

  .footer { padding: 56px 16px 46px; }
  .footer__lemon { width: 82px; opacity: 0.55; }
  .footer__form { flex-direction: column; align-items: center; }
  .footer__form input, .footer__form button { max-width: 280px; width: 100%; }
}

@media (max-width: 480px) {
  .food__grid { grid-template-columns: repeat(2, 1fr); }
}
