/* ================================================================
   ISLAND OF KRK — Page-specific styles
   Design tokens + shared components come from main.css
   ================================================================ */

/* ----------------------------------------------------------------
   §1  HERO
   ---------------------------------------------------------------- */
.krk-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.krk-hero__bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.krk-hero__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  display: block;
  transform-origin: center center;
}

.krk-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,22,40,0.25) 0%,
    rgba(10,22,40,0.15) 40%,
    rgba(10,22,40,0.65) 100%
  );
}

.krk-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  max-width: 880px;
}

.krk-hero__label {
  display: block;
  margin-bottom: 1.5rem;
  letter-spacing: 0.18em;
}

.krk-hero__h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
}

/* Script accent word — "island" in handwritten font, inline with serif */
.krk-hero__h1 .sw--script-inline {
  display: inline;
  position: relative;
  top: -0.02em;
  transition: top 0.3s ease, margin 0.3s ease;
}
.krk-hero__h1 .hero__script-word {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 1.15em;
  font-style: normal;
  letter-spacing: 0.01em;
}

.krk-hero__sub {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.3vw, 1.125rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin: 0 0 2.5rem;
}

.krk-hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll hint */
.krk-hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.krk-hero__scroll-hint span {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.krk-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollLinePulse 2s ease-in-out infinite;
}
@keyframes scrollLinePulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}


/* ----------------------------------------------------------------
   §2  FEELING (Krk variant — dark pinned section)
   ---------------------------------------------------------------- */
.krk-feeling {
  position: relative;
  background: var(--color-ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 clamp(1.5rem, 6vw, 6rem);
  min-height: 100vh;
  overflow: hidden;
}

.krk-feeling__phrase {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(2rem, 8vw, 10rem);
}

.krk-feeling__phrase p {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4.5vw, 4.25rem);
  font-weight: 300;
  line-height: 1.25;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}

.krk-feeling__coda {
  position: absolute;
  bottom: clamp(2.5rem, 5vh, 4rem);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}

/* Mobile: suppress forced <br> line-breaks — let text wrap naturally */
@media (max-width: 767px) {
  .krk-feeling__phrase br { display: none; }
}


/* Teal accent — faint geometric overlay */
.krk-feeling::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(42,122,140,0.12) 0%, transparent 65%);
  pointer-events: none;
}


/* ----------------------------------------------------------------
   §3  ISLAND FACTS — cinematic dark editorial
   ---------------------------------------------------------------- */
.krk-facts {
  position: relative;
  background: var(--color-ocean);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(7rem, 14vh, 11rem) 0 clamp(5rem, 10vh, 8rem);
  overflow: hidden;
}

.krk-facts__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.krk-facts__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  opacity: 0.28;
}

.krk-facts__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      var(--color-ocean) 0%,
      rgba(10,22,40,0.55) 25%,
      rgba(10,22,40,0.45) 65%,
      var(--color-ocean) 100%);
}

.krk-facts__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  width: 100%;
  text-align: center;
}

.krk-facts__head {
  margin-bottom: clamp(3rem, 6vh, 5rem);
}

.krk-facts__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin: 1rem 0 0;
}

/* Oversized editorial numbers */
.krk-facts__nums {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: clamp(3rem, 6vh, 5rem);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.krk-facts__num-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: clamp(2rem, 4vh, 3rem) clamp(0.5rem, 1.5vw, 1.5rem);
  border-right: 1px solid rgba(255,255,255,0.1);
}

.krk-facts__num-item:last-child {
  border-right: none;
}

.krk-facts__num-val {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.5vw, 6rem);
  font-weight: 300;
  color: var(--color-gold);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  width: 100%;
  text-align: center;
}

.krk-facts__num-unit {
  font-family: var(--font-serif);
  font-size: clamp(0.875rem, 1.5vw, 1.25rem);
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-top: 0.15rem;
}

.krk-facts__num-label {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-top: 0.6rem;
  line-height: 1.6;
}

.krk-facts__copy {
  font-family: var(--font-sans);
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 62ch;
  margin: 0 auto clamp(2.5rem, 5vh, 4rem);
}

/* Slim travel row */
.krk-facts__travel-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: clamp(1.5rem, 3vh, 2.5rem);
}

.krk-facts__travel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0 clamp(1.5rem, 3vw, 3rem);
}

.krk-facts__travel-label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}

.krk-facts__travel-val {
  font-family: var(--font-serif);
  font-size: clamp(0.9375rem, 1.2vw, 1.125rem);
  font-weight: 300;
  color: rgba(255,255,255,0.78);
}

.krk-facts__travel-div {
  display: block;
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}


/* ----------------------------------------------------------------
   §4  BEACHES MOSAIC
   ---------------------------------------------------------------- */
.krk-beaches {
  background: var(--color-ocean);
  padding: clamp(4rem, 8vh, 7rem) 0 0;
}

.krk-beaches__header {
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}

.krk-beaches__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin: 0.75rem 0 0;
}

/* Full-width edge-to-edge mosaic */
.krk-beaches__mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 40vh 40vh;
  gap: 3px;
}

.krk-beaches__cell--large {
  grid-row: 1 / 3;
}

.krk-beaches__cell {
  position: relative;
  overflow: hidden;
}

.krk-beaches__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.krk-beaches__cell:hover img {
  transform: scale(1.04);
}

.krk-beaches__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(10,22,40,0.82) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.krk-beaches__name {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.4vw, 1.375rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
}

.krk-beaches__meta {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.krk-beaches__cell--large .krk-beaches__caption {
  padding: 4rem 2rem 2rem;
}

.krk-beaches__cell--large .krk-beaches__name {
  font-size: clamp(1.25rem, 2vw, 1.875rem);
}


/* ----------------------------------------------------------------
   §5  AT SEA
   ---------------------------------------------------------------- */
.krk-sea {
  background: var(--color-ocean);
  padding: clamp(4rem, 8vh, 7rem) 0 clamp(4rem, 8vh, 7rem);
}

.krk-sea__header {
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.krk-sea__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin: 0.75rem 0 0;
}

/* Activity bento grid */
.krk-sea__cards {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 400px 340px;
  gap: 8px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.krk-sea__card {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: default;
}

/* SUP feature card spans 2 columns on desktop */
.krk-sea__card--feature {
  grid-column: 2 / 4;
}

.krk-sea__card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.krk-sea__card:hover img {
  transform: scale(1.05);
}

.krk-sea__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,22,40,0.9) 0%,
    rgba(10,22,40,0.35) 45%,
    transparent 72%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}

.krk-sea__card-num {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 300;
  color: rgba(201,169,110,0.13);
  line-height: 1;
  position: absolute;
  top: 0.25rem;
  left: 0.75rem;
  pointer-events: none;
  user-select: none;
}

.krk-sea__card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 1.8vw, 1.75rem);
  font-weight: 300;
  color: #fff;
  margin: 0 0 0.4rem;
  line-height: 1.1;
}

.krk-sea__card-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.75rem, 0.88vw, 0.875rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.62);
  margin: 0;
  max-width: 38ch;
}


/* ----------------------------------------------------------------
   §6  THE TABLE (uses .exp-card from main.css + wrapper)
   ---------------------------------------------------------------- */
.krk-table {
  background: var(--color-sand);
}

.krk-table__header {
  padding: clamp(4rem, 8vh, 7rem) clamp(1.5rem, 5vw, 5rem) clamp(0.5rem, 2vh, 1.5rem);
}

.krk-table__headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--color-ocean);
  margin: 0.75rem 0 0;
}

/* The exp-section__list is shared with homepage for exp-cards */
.krk-table .exp-section__list {
  display: block;
}

/* Restaurant recommendation list inside exp-card */
.exp-card__reco-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.exp-card__reco-list li {
  font-family: var(--font-sans);
  font-size: clamp(0.8125rem, 0.95vw, 0.9375rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(10,22,40,0.68);
  padding-left: 1rem;
  border-left: 2px solid var(--color-teal);
}

.exp-card__reco-list li strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  font-weight: 400;
  color: var(--color-ocean);
  margin-bottom: 0.3rem;
}


/* ----------------------------------------------------------------
   §7  DISCOVER — horizontal scroll
   ---------------------------------------------------------------- */
.krk-discover {
  background: var(--color-ocean);
  padding: clamp(4rem, 8vh, 7rem) 0 0;
  overflow: hidden;
}

.krk-discover__header {
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  margin-bottom: clamp(2rem, 4vh, 3.5rem);
}

.krk-discover__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin: 0.75rem 0 0;
}

.krk-discover__track-wrap {
  overflow: hidden;
  padding-bottom: 0;
}

.krk-discover__track {
  display: flex;
  gap: 3px;
  will-change: transform;
}

.krk-discover__tile {
  flex: 0 0 380px;
  height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.krk-discover__tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.krk-discover__tile:hover img {
  transform: scale(1.04);
}

.krk-discover__tile-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 3rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.krk-discover__tile-name {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
}

.krk-discover__tile-sub {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.krk-discover__hint {
  padding: 1.5rem clamp(1.5rem, 5vw, 5rem) 0;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

/* Discover footer — SEO/GEO copy below scroll */
.krk-discover__footer {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(3rem, 6vh, 5rem) clamp(1.5rem, 5vw, 5rem) clamp(4rem, 8vh, 7rem);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 2rem;
}

.krk-discover__footer-copy {
  font-family: var(--font-sans);
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.52);
  margin: 0 0 1.75rem;
}

.krk-discover__footer-link {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(42,122,140,0.35);
  padding-bottom: 0.15em;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.krk-discover__footer-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}


/* ----------------------------------------------------------------
   §8  RESTORE — split layout
   ---------------------------------------------------------------- */
.krk-restore {
  background: var(--color-sand);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.krk-restore__content {
  padding: clamp(4rem, 8vh, 7rem) clamp(3rem, 5vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.krk-restore__headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--color-ocean);
  margin: 0.75rem 0 1.5rem;
}

.krk-restore__copy {
  font-family: var(--font-sans);
  font-size: clamp(0.875rem, 1.05vw, 1rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(10,22,40,0.7);
  max-width: 44ch;
  margin: 0 0 2.5rem;
}

.krk-restore__items {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.krk-restore__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.krk-restore__icon {
  width: 32px; height: 32px;
  color: var(--color-teal);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.krk-restore__item div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.krk-restore__item strong {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--color-ocean);
  letter-spacing: 0.01em;
}

.krk-restore__item span {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(10,22,40,0.58);
  line-height: 1.5;
}

/* Image side */
.krk-restore__img {
  position: relative;
  overflow: hidden;
}

.krk-restore__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  will-change: transform;
}


/* ----------------------------------------------------------------
   §9  VILLA PROXIMITY
   ---------------------------------------------------------------- */
.krk-proximity {
  background: var(--color-ocean);
  padding: 0;
}

.krk-proximity__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(4rem, 8vh, 7rem) clamp(1.5rem, 5vw, 5rem) 0;
}

.krk-proximity__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin: 0.75rem 0 1.5rem;
}

.krk-proximity__copy {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.1vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 52ch;
  margin: 0 auto 3rem;
}

/* Distance columns */
.krk-proximity__distances {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 4rem;
  margin-bottom: 3rem;
  text-align: left;
  width: 100%;
}

.krk-proximity__dist-villa {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--color-gold);
  margin: 0 0 0.85rem;
  letter-spacing: 0.02em;
}

.krk-proximity__dist-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.krk-proximity__dist-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.krk-proximity__dist-list li span {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
}

.krk-proximity__dist-list li strong {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
}

.krk-proximity__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: clamp(3rem, 6vh, 5rem);
  margin-top: 0.5rem;
}

/* Map */
.krk-proximity__map {
  position: relative;
  overflow: hidden;
  margin-top: clamp(2rem, 4vh, 3rem);
}

.krk-proximity__map img {
  width: 100%;
  display: block;
  max-height: 52vh;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.72;
}

/* Subtle top-fade: content → map — small and clean */
.krk-proximity__map::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 72px;
  background: linear-gradient(to bottom, #0a1628 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}


/* ----------------------------------------------------------------
   MOBILE RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 900px) {
  /* Facts — stack */
  .krk-facts__inner {
    grid-template-columns: 1fr;
  }
  /* facts — compact on tablet */
  .krk-facts {
    min-height: auto;
  }

  /* Beaches mosaic — 2 col */
  .krk-beaches__mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 35vw);
  }
  .krk-beaches__cell--large {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  /* Sea cards — 2 col */
  .krk-sea__cards {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 300px 300px;
  }
  .krk-sea__card--feature {
    grid-column: 1 / 3;
  }

  /* Restore — stack */
  .krk-restore {
    grid-template-columns: 1fr;
  }
  .krk-restore__img {
    height: 55vw;
    min-height: 260px;
  }

  /* Proximity distances — stack */
  .krk-proximity__distances {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Map — ensure readable on tablet */
  .krk-proximity__map img {
    min-height: 360px;
    max-height: none;
  }
}

@media (max-width: 640px) {
  /* Hero — rotate landscape DJI image to portrait on mobile */
  .krk-hero__img {
    width: 100vh;
    height: 100vw;
    max-width: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    object-position: center center;
  }

  .krk-hero__sub br { display: none; }

  /* Beaches mosaic — single col */
  .krk-beaches__mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .krk-beaches__cell--large {
    grid-column: 1;
    grid-row: auto;
    aspect-ratio: 3 / 2;
  }
  .krk-beaches__cell {
    aspect-ratio: 3 / 2;
  }

  /* Sea cards — single col on mobile */
  .krk-sea__cards {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .krk-sea__card {
    aspect-ratio: 4 / 3;
  }
  .krk-sea__card--feature {
    grid-column: 1;
  }

  /* Discover — unlock parent overflow so track can scroll natively */
  .krk-discover {
    overflow: visible;
  }
  .krk-discover__track-wrap {
    overflow: visible;
  }

  /* Discover — all tiles visible by native scroll */
  .krk-discover__track {
    padding: 0 1.25rem 2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .krk-discover__track::-webkit-scrollbar { display: none; }
  .krk-discover__tile {
    flex: 0 0 80vw;
    height: 65vw;
    max-height: 420px;
    scroll-snap-align: start;
  }

  /* Facts — 2×2 grid on tablet */
  .krk-facts__nums {
    grid-template-columns: 1fr 1fr;
  }
  .krk-facts__num-item:nth-child(2) {
    border-right: none;
  }
  .krk-facts__num-item:nth-child(1),
  .krk-facts__num-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  /* Get here — wrap and stack */
  .krk-facts__travel-row {
    flex-direction: column;
    gap: 1rem;
  }
  .krk-facts__travel-div {
    width: 40px;
    height: 1px;
  }

  /* Map — tall enough on mobile to show full island context */
  .krk-proximity__map img {
    min-height: 440px;
    max-height: none;
  }
}

/* ----------------------------------------------------------------
   §10  FINAL CTA — override main.css close-section background-image
   The GSAP parallax shifts the bg element down by yPercent: 12.
   Pre-offset the img by -15% top so the gap at the section top is
   always filled with image content. overflow:hidden on .close-section
   clips the overshoot safely.
   ---------------------------------------------------------------- */
#krk-close .close-section__bg {
  background-image: none !important;
}

#krk-close .close-section__bg img {
  position: absolute;
  top: -15%;
  left: 0;
  right: 0;
  bottom: -5%;
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
}


/* ----------------------------------------------------------------
   §10  GETTING HERE — krk-arrive
   ---------------------------------------------------------------- */
.krk-arrive {
  background: var(--color-sand);
  padding: clamp(5rem, 10vh, 8rem) 0;
  overflow: hidden;
}

.krk-arrive__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.krk-arrive__label {
  display: block;
  margin-bottom: 1.25rem;
}

.krk-arrive__h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-ocean);
  margin: 0 0 1.5rem;
}

.krk-arrive__body {
  font-family: var(--font-sans);
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(10,22,40,0.8);
  margin: 0 0 1rem;
}

/* Routes column */
.krk-arrive__routes {
  padding-top: 0.5rem;
}

.krk-arrive__route {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(10,22,40,0.1);
}

.krk-arrive__route-from {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-ocean);
  grid-column: 1;
  grid-row: 1;
}

.krk-arrive__route-time {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--color-teal);
  grid-column: 2;
  grid-row: 1;
  white-space: nowrap;
}

.krk-arrive__route-note {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(10,22,40,0.55);
  line-height: 1.5;
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 0.25rem;
}

/* CTA row */
.krk-arrive__route-cta {
  margin-top: 2rem;
}

.krk-arrive__route-cta .cta-btn {
  margin-bottom: 0.75rem;
}

.krk-arrive__route-cta-note {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(10,22,40,0.55);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 860px) {
  .krk-arrive__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}


/* ----------------------------------------------------------------
   REDUCED MOTION
   ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .krk-hero__img,
  .krk-restore__img img { transform: none !important; }
  .krk-hero__scroll-line { animation: none; }
  .krk-beaches__cell img,
  .krk-discover__tile img,
  .krk-sea__card img { transition: none; }
  .wave-divider--ocean-bottom svg { animation: none; }
}
