/* ── START: Editorial Hero ── */

.start {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
}

.start__photo {
  position: absolute;
  inset: 0;
}

.start__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.start__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 21, 37, 0.15) 0%,
    rgba(6, 21, 37, 0.05) 35%,
    rgba(6, 21, 37, 0.55) 75%,
    rgba(6, 21, 37, 0.82) 100%
  );
}

.start__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(6rem, 14vh, 9rem) clamp(1.5rem, 5vw, 3rem) clamp(3rem, 8vh, 5rem);
  max-width: 52rem;
}

.start__kicker {
  display: block;
  margin-bottom: 1.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--seafoam-light);
}

.start__title {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.start__title em {
  font-style: italic;
  color: var(--white-dim);
}

.start__lead {
  max-width: 32rem;
  font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
  line-height: 1.75;
  color: var(--text-on-dark);
  margin-bottom: 2rem;
}

.start__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.start__scroll {
  position: absolute;
  bottom: clamp(1.5rem, 4vh, 2.5rem);
  right: clamp(1.5rem, 5vw, 3rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  transition: color 0.3s;
}

.start__scroll:hover {
  color: var(--white);
}

.start__scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(180deg, var(--seafoam), transparent);
  animation: scroll-pulse 2.4s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.85); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── MORZE: Horizontal Dish Ocean ── */

.morze {
  background: var(--navy);
  color: var(--white);
  padding-block: clamp(3rem, 8vh, 5rem) clamp(2.5rem, 6vh, 4rem);
  overflow: hidden;
}

.morze__intro {
  padding-inline: clamp(1.5rem, 5vw, 3rem);
  margin-bottom: clamp(2rem, 5vh, 3rem);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.morze__label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--seafoam-light);
}

.morze__heading {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 300;
  max-width: 18ch;
}

.morze__hint {
  font-size: 0.8125rem;
  color: var(--text-on-dark-muted);
  max-width: 16rem;
  line-height: 1.6;
}

.morze__hint svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.375rem;
  opacity: 0.6;
}

.morze__track-wrap {
  position: relative;
}

.morze__track {
  display: flex;
  gap: var(--panel-gap);
  padding-inline: clamp(1.5rem, 5vw, 3rem);
  padding-bottom: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: clamp(1.5rem, 5vw, 3rem);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.morze__track::-webkit-scrollbar {
  display: none;
}

.morze__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.morze__panel {
  flex: 0 0 var(--panel-w);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.morze__panel-inner {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--navy-soft);
}

.morze__panel-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.morze__panel:hover .morze__panel-inner img {
  transform: scale(1.04);
}

.morze__panel-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6, 21, 37, 0.88) 100%);
}

.morze__panel-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.25rem 1.375rem;
}

.morze__panel-name {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 0.25rem;
}

.morze__panel-price {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--seafoam-light);
}

.morze__progress {
  margin-top: 1.5rem;
  padding-inline: clamp(1.5rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.morze__progress-bar {
  flex: 1;
  height: 1px;
  background: rgba(247, 250, 252, 0.12);
  position: relative;
  overflow: hidden;
}

.morze__progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 8%;
  background: var(--seafoam);
  transition: width 0.15s linear;
}

.morze__progress-count {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-on-dark-muted);
  white-space: nowrap;
}

/* ── PRZYPŁYW: Philosophy / Story ── */

.przyplyw {
  background: var(--white);
  padding-block: clamp(4rem, 10vh, 7rem);
}

.przyplyw__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}

.przyplyw__statement {
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.przyplyw__line {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6.5vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.przyplyw__line + .przyplyw__line {
  margin-top: 0.15em;
}

.przyplyw__line--muted {
  color: var(--text-muted);
  font-style: italic;
}

.przyplyw__body {
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  max-width: 36rem;
}

.przyplyw__body p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.przyplyw__body p:last-child {
  margin-bottom: 0;
}

.przyplyw__photo {
  position: relative;
  margin-inline: clamp(0, 3vw, 2rem);
}

.przyplyw__photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.przyplyw__photo-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(10, 31, 51, 0.72);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
}

@media (min-width: 900px) {
  .przyplyw__grid {
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: auto auto;
  }

  .przyplyw__statement {
    grid-column: 1 / -1;
  }

  .przyplyw__body {
    grid-column: 1;
  }

  .przyplyw__photo {
    grid-column: 2;
    grid-row: 2;
    margin-inline: 0;
  }
}

/* ── KUCHNIA: Chef 70/30 ── */

.kuchnia {
  background: var(--mist);
  padding-block: clamp(4rem, 9vh, 6rem);
}

.kuchnia__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

.kuchnia__main {
  order: 2;
}

.kuchnia__aside {
  order: 1;
}

.kuchnia__label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--seafoam);
}

.kuchnia__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.kuchnia__quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  color: var(--navy);
  margin-bottom: 1.75rem;
  padding-left: 1.25rem;
  border-left: 2px solid var(--seafoam);
}

.kuchnia__name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  margin-bottom: 0.25rem;
}

.kuchnia__role {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: 1.25rem;
}

.kuchnia__bio p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.kuchnia__bio p:last-child {
  margin-bottom: 0;
}

.kuchnia__portrait {
  position: relative;
  max-width: 20rem;
  margin-inline: auto;
}

.kuchnia__portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.kuchnia__portrait-badge {
  position: absolute;
  bottom: -0.75rem;
  right: -0.75rem;
  padding: 0.5rem 0.875rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}

@media (min-width: 768px) {
  .kuchnia__split {
    grid-template-columns: 7fr 3fr;
    gap: clamp(2rem, 4vw, 4rem);
  }

  .kuchnia__main {
    order: 1;
  }

  .kuchnia__aside {
    order: 2;
  }

  .kuchnia__portrait {
    margin-inline: 0 0;
    margin-left: auto;
  }
}

/* ── STÓŁ: Reservation ── */

.stol {
  position: relative;
  min-height: clamp(36rem, 85vh, 52rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4rem, 10vh, 6rem) clamp(1.25rem, 4vw, 2rem);
}

.stol__bg {
  position: absolute;
  inset: 0;
}

.stol__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stol__bg-veil {
  position: absolute;
  inset: 0;
  background: rgba(6, 21, 37, 0.62);
}

.stol__panel {
  position: relative;
  z-index: 2;
  width: min(32rem, 100%);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: rgba(247, 250, 252, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-panel);
}

.stol__panel-head {
  text-align: center;
  margin-bottom: 1.75rem;
}

.stol__panel-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--seafoam);
}

.stol__panel-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.stol__panel-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── PORT: Hours + Map + Address ── */

.port {
  background: var(--navy);
  color: var(--white);
  padding-block: clamp(4rem, 9vh, 6rem);
}

.port__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vh, 4rem);
}

.port__label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--seafoam-light);
}

.port__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 300;
}

.port__fuse {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}

.port__info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.port__address-block h3,
.port__hours-block h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--seafoam-light);
  margin-bottom: 1rem;
}

.port__address {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.port__address-detail {
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
  line-height: 1.7;
}

.port__address-detail a {
  color: var(--seafoam-light);
  transition: color 0.2s;
}

.port__address-detail a:hover {
  color: var(--white);
}

.port__hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.port__hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid rgba(247, 250, 252, 0.08);
  font-size: 0.9375rem;
}

.port__hours-row dt {
  color: var(--text-on-dark);
}

.port__hours-row dd {
  color: var(--text-on-dark-muted);
  text-align: right;
}

.port__hours-row--closed dd {
  color: rgba(247, 250, 252, 0.35);
  font-style: italic;
}

.port__access {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: var(--text-on-dark-muted);
  line-height: 1.65;
}

.port__map {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--navy-soft);
}

.port__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 900px) {
  .port__fuse {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }

  .port__info {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* ── Reveal animations ── */

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}
