:root {
  --sea-dark: #005f73;
  --sea: #0a7f96;
  --sea-light: #37c2dc;
  --sea-soft: #e8f8fc;
  --sky-light: #f2fcff;

  --accent: #ffa31a;
  --accent-dark: #d97800;
  --sand: #fff8e9;
  --sand-soft: #fffdf7;
  --sand-strong: #ffe6b8;

  --white: #ffffff;
  --text: #06495a;
  --muted: #527482;
  --soft-muted: #607984;

  --border: rgba(0, 95, 115, 0.13);
  --shadow-soft: 0 12px 28px rgba(0, 95, 115, 0.07);
  --shadow-card: 0 16px 34px rgba(0, 95, 115, 0.09);
  --shadow-strong: 0 22px 60px rgba(0, 95, 115, 0.14);

  --radius: 20px;
  --radius-lg: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fffaf0;
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

.nowrap {
  white-space: nowrap;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 95, 115, 0.10);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--sea-dark);
  text-decoration: none;
  font-size: 25px;
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 1;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(255, 163, 26, 0.34);
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  font-weight: 850;
}

.main-nav a {
  color: #07333c;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--accent-dark);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  font-weight: 950;
  box-shadow: 0 16px 32px rgba(255, 163, 26, 0.34);
}

.header-phone:hover {
  background: #ffb13a;
}

/* HERO */

.hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--sky-light);
}

.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slider::before {
  content: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider .hero-image {
  opacity: 0;
  animation: heroFade 24s infinite;
}

.hero-slider .hero-image:nth-child(1) {
  animation-delay: 0s;
}

.hero-slider .hero-image:nth-child(2) {
  animation-delay: 6s;
}

.hero-slider .hero-image:nth-child(3) {
  animation-delay: 12s;
}

.hero-slider .hero-image:nth-child(4) {
  animation-delay: 18s;
}

@keyframes heroFade {
  0% { opacity: 0; }
  8% { opacity: 1; }
  28% { opacity: 1; }
  38% { opacity: 0; }
  100% { opacity: 0; }
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(230, 249, 255, 0.20) 0%,
      rgba(230, 249, 255, 0.12) 46%,
      rgba(255, 247, 219, 0.06) 100%
    );
}

.hero .hero-content {
  position: relative;
  z-index: 3;
  max-width: 770px;
  margin-left: auto;
  margin-right: auto;
  padding: 34px 38px;
  border-radius: var(--radius-lg);
  text-align: center;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.84),
      rgba(255, 250, 232, 0.68)
    );
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 24px 70px rgba(0, 95, 115, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(5px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sea);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 880px;
  margin: 0 auto 18px;
  color: var(--sea-dark);
  font-size: clamp(42px, 6.4vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.hero-lead {
  max-width: 680px;
  margin: 0 auto 20px;
  color: #06495a;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
}

.hero-phone {
  margin: 0 0 20px;
  color: var(--sea-dark);
  font-size: 20px;
  font-weight: 900;
}

.hero-phone a {
  color: var(--sea-dark);
  font-weight: 950;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.hero-content .eyebrow,
.hero-content h1,
.hero-content .hero-lead,
.hero-content .hero-phone,
.hero-content .hero-phone a {
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95),
    0 0 8px rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 0 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  border: 0;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 18px 35px rgba(255, 163, 26, 0.34);
}

.btn-primary:hover {
  background: #ffb13a;
}

.btn-light {
  background: rgba(255, 255, 255, 0.94);
  color: var(--sea-dark);
  box-shadow: 0 14px 32px rgba(0, 95, 115, 0.14);
}

.btn-light:hover {
  background: #ffffff;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.hero-tags span {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--sea-dark);
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 8px 18px rgba(0, 95, 115, 0.10);
}

/* SEKCJE OGÓLNE */

.section {
  padding: 72px 0;
}

.section:nth-of-type(even) {
  background: #fffdf7;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--soft-muted);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.intro-text h2,
.property-text h2,
.cta-box h2 {
  margin: 0 0 14px;
  color: var(--sea-dark);
  font-size: clamp(32px, 3.7vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.section-heading p,
.intro-text p,
.property-text p,
.cta-box p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

/* INTRO */

.intro-section {
  background: var(--sky-light);
}

.intro-layout {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 44px;
  align-items: center;
}

.intro-text p {
  margin: 0 0 16px;
}

.simple-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.simple-tags span {
  padding: 8px 16px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--sea-dark);
  font-size: 14px;
  font-weight: 900;
  border: 1px solid rgba(0, 95, 115, 0.12);
  box-shadow: 0 10px 22px rgba(0, 95, 115, 0.06);
}

.intro-photo img,
.photo-box img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

/* FEATURES */

.features-section {
  background: linear-gradient(135deg, #0a8eaa, #78d7ee);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 16px 34px rgba(0, 95, 115, 0.14);
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

/* OFERTA */

.offer-section {
  background: #fffaf0;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.offer-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid rgba(0, 95, 115, 0.11);
  box-shadow: var(--shadow-card);
}

.offer-image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e9f7fb;
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.offer-card:hover .offer-image img {
  transform: scale(1.05);
}

.offer-content {
  padding: 22px 20px 24px;
}

.offer-type {
  margin: 0 0 9px;
  color: var(--soft-muted);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.offer-content h3 {
  margin: 0 0 8px;
  color: var(--sea-dark);
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.offer-content p {
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.52;
}

.offer-content ul {
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--muted);
}

.offer-price {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 13px;
  padding: 7px 13px;
  border-radius: 999px;
  background: #fff1d2;
  color: #c57400;
  font-size: 16px;
  font-weight: 950;
}

.text-link {
  color: var(--sea-dark);
  font-weight: 950;
  text-decoration: none;
  border-bottom: 3px solid var(--accent);
}

.text-link:hover {
  color: var(--accent-dark);
}

.reservation-grid {
  margin-top: 28px;
}

/* WYPOSAŻENIE / KAFELKI INFORMACYJNE */

.equipment-section {
  background: var(--sky-light);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.equipment-card {
  padding: 26px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(0, 95, 115, 0.12);
  box-shadow: var(--shadow-soft);
}

.equipment-card h3 {
  margin: 0 0 12px;
  color: var(--sea-dark);
  font-size: 23px;
  line-height: 1.15;
}

.equipment-card p,
.equipment-card li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.equipment-card p {
  margin: 0;
}

.equipment-card ul {
  margin: 0;
  padding-left: 19px;
}

.equipment-card li + li {
  margin-top: 6px;
}

.important-card {
  background: #ffffff;
  border: 1px solid rgba(0, 95, 115, 0.12);
  box-shadow: var(--shadow-soft);
}

/* OKOLICA / OBIEKT — ZWARTE BLOKI I PROSTOKĄTNE ZDJĘCIA */

.property-section {
  background: #ffffff;
}

.property-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 42px;
  align-items: center;
}

.property-text h2 {
  max-width: 540px;
}

.property-text p {
  max-width: 600px;
  margin: 0 0 15px;
}

.property-points {
  max-width: 590px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.property-points span {
  padding: 7px 15px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--sea-dark);
  font-size: 14px;
  font-weight: 900;
  border: 1px solid rgba(0, 95, 115, 0.12);
  box-shadow: 0 10px 22px rgba(0, 95, 115, 0.05);
}

.property-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-left: auto;
}

.property-photos img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 95, 115, 0.10);
}

/* ATRAKCJE */

.attractions-preview {
  background: #fffaf0;
}

.attractions-box {
  padding: 46px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0a8eaa, #73d7ee);
  color: #ffffff;
  box-shadow: var(--shadow-card);
}

.attractions-box .section-heading h2,
.attractions-box .section-heading p,
.attractions-box .section-kicker {
  color: #ffffff;
}

.attractions-box .section-kicker {
  color: #fff2c6;
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.attractions-grid article {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.attractions-grid h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.attractions-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.center-button {
  text-align: center;
  margin-top: 28px;
}

/* KONTAKT / MAPA */

.location-section {
  background: #fff8e9;
}

.location-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 24px;
  align-items: stretch;
}

.location-card {
  padding: 28px 32px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(0, 95, 115, 0.12);
  box-shadow: var(--shadow-soft);
}

.location-card h3 {
  margin: 0 0 14px;
  color: var(--sea-dark);
  font-size: 24px;
  line-height: 1.15;
}

.location-card p,
.location-card li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.location-card p {
  margin: 0 0 10px;
}

.location-card ul {
  margin: 0;
  padding-left: 20px;
}

.location-card li + li {
  margin-top: 6px;
}

.map-card {
  min-height: 410px;
  overflow: hidden;
  border-radius: 18px;
  border: 10px solid #ffffff;
  box-shadow: 0 16px 36px rgba(0, 95, 115, 0.10);
  background: #e8f8fc;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
  display: block;
  border-radius: 10px;
}

/* CTA */

.cta-section {
  background: linear-gradient(135deg, #37c2dc, #9beaff);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.20);
  color: var(--sea-dark);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 42px rgba(0, 95, 115, 0.14);
}

.cta-box h2,
.cta-box p,
.cta-box .section-kicker {
  color: var(--sea-dark);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* GALERIE */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  background: #ffffff;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-note {
  max-width: 760px;
  margin: 18px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}

/* CENNIKI */

.price-box {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: fit-content;
  margin: 0 0 22px;
  padding: 14px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--sea-dark);
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(0, 95, 115, 0.18);
}

.price-box strong {
  font-size: 22px;
  line-height: 1.2;
}

.price-box span {
  color: var(--muted);
  font-size: 15px;
}

.price-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff7e9;
  border: 1px solid rgba(255, 163, 26, 0.26);
  font-weight: 850;
}

.price-row span:first-child {
  color: var(--muted);
}

.price-row span:last-child {
  color: var(--accent-dark);
  white-space: nowrap;
}

/* FOOTER */

.site-footer {
  padding: 50px 0 24px;
  background: linear-gradient(135deg, #006d83, #0098b7);
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 12px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer a {
  color: #ffffff;
  font-weight: 850;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 14px;
}

/* RESPONSYWNOŚĆ */

@media (max-width: 1100px) {
  .container {
    width: min(100% - 44px, 1180px);
  }

  .offer-grid,
  .features-grid,
  .attractions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-layout,
  .property-layout,
  .location-layout {
    grid-template-columns: 1fr;
  }

  .property-photos {
    max-width: 760px;
    margin-left: 0;
  }

  .location-card,
  .map-card {
    max-width: 100%;
  }
}

/* TABLETY I TELEFONY */

@media (max-width: 820px) {
  body {
    padding-top: 92px;
  }

  .container {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
  }

  .header-inner {
    min-height: 92px;
    padding: 8px 0 9px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 10px;
    row-gap: 6px;
  }

  .logo {
    grid-column: 1 / 3;
    grid-row: 1;
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 21px;
    line-height: 1;
    white-space: nowrap;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
    font-size: 23px;
  }

  .header-phone {
    grid-column: 3;
    grid-row: 1 / 3;
    justify-self: end;
    align-self: center;
    min-height: 38px;
    padding: 8px 12px;
    font-size: 14px;
    white-space: nowrap;
  }

  .main-nav {
    grid-column: 1 / 3;
    grid-row: 2;
    width: auto;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
  }

  .hero {
    min-height: 690px;
    padding: 34px 0 54px;
    align-items: flex-start;
  }

  .hero-image {
    object-fit: cover;
    object-position: center center;
  }

  .hero-shade {
    background:
      linear-gradient(
        180deg,
        rgba(230, 249, 255, 0.10) 0%,
        rgba(230, 249, 255, 0.05) 46%,
        rgba(255, 247, 219, 0.04) 100%
      );
  }

  .hero .hero-content {
    width: min(100% - 28px, 560px);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    padding: 28px 22px;
    border-radius: 28px;
    text-align: center;
    background:
      linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.78),
        rgba(255, 250, 232, 0.62)
      );
    backdrop-filter: blur(4px);
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: 0.13em;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(36px, 10.6vw, 52px);
    line-height: 1.03;
    letter-spacing: -0.055em;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
  }

  .hero-lead {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: clamp(18px, 4.8vw, 22px);
    line-height: 1.5;
  }

  .hero-phone {
    margin-bottom: 22px;
    font-size: clamp(20px, 5.3vw, 24px);
    line-height: 1.25;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
  }

  .btn {
    width: 100%;
    min-height: 50px;
  }

  .hero-tags {
    gap: 8px;
  }

  .hero-tags span {
    font-size: 13px;
    padding: 7px 12px;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading h2,
  .intro-text h2,
  .property-text h2,
  .cta-box h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .section-heading p,
  .intro-text p,
  .property-text p,
  .cta-box p {
    font-size: 17px;
  }

  .offer-content {
    padding: 22px;
  }

  .equipment-card,
  .location-card {
    padding: 24px;
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
    padding: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-card,
  .map-card iframe {
    min-height: 360px;
  }
}

/* MAŁE TELEFONY */

@media (max-width: 560px) {
  body {
    padding-top: 86px;
  }

  .container {
    width: min(100% - 22px, 1180px);
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
  }

  .header-inner {
    min-height: 86px;
    padding: 7px 0 8px;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 8px;
    row-gap: 5px;
  }

  .logo {
    grid-column: 1 / 3;
    grid-row: 1;
    gap: 7px;
    font-size: 18px;
    white-space: nowrap;
  }

  .logo-mark {
    width: 32px;
    height: 32px;
    font-size: 21px;
  }

  .header-phone {
    grid-column: 3;
    grid-row: 1 / 3;
    min-height: 34px;
    padding: 7px 9px;
    font-size: 12px;
    white-space: nowrap;
  }

  .main-nav {
    grid-column: 1 / 3;
    grid-row: 2;
    justify-content: center;
    gap: 9px;
    flex-wrap: nowrap;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
  }

  .hero {
    min-height: 720px;
    padding: 28px 0 48px;
  }

  .hero-image {
    object-position: center center;
  }

  .hero .hero-content {
    width: calc(100% - 28px);
    padding: 26px 18px;
    border-radius: 26px;
  }

  .eyebrow {
    font-size: 12px;
    line-height: 1.55;
    letter-spacing: 0.14em;
  }

  .hero h1 {
    font-size: clamp(34px, 10.4vw, 46px);
    line-height: 1.04;
    letter-spacing: -0.052em;
  }

  .hero-lead {
    font-size: clamp(17px, 4.6vw, 20px);
    line-height: 1.5;
  }

  .hero-phone {
    font-size: clamp(20px, 5.4vw, 23px);
  }

  .offer-grid,
  .features-grid,
  .equipment-grid,
  .attractions-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .property-photos {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .property-photos img {
    aspect-ratio: 16 / 10;
  }

  .attractions-box {
    padding: 30px 20px;
    border-radius: 24px;
  }

  .map-card {
    border-width: 7px;
  }

  .map-card,
  .map-card iframe {
    min-height: 350px;
  }

  .price-row {
    display: block;
  }

  .price-row span {
    display: block;
  }

  .price-row span:last-child {
    margin-top: 4px;
  }
}

/* BARDZO WĄSKIE EKRANY */

@media (max-width: 390px) {
  body {
    padding-top: 82px;
  }

  .container {
    width: min(100% - 18px, 1180px);
  }

  .header-inner {
    min-height: 82px;
    padding: 6px 0 7px;
    column-gap: 6px;
    row-gap: 4px;
  }

  .logo {
    font-size: 16px;
    gap: 6px;
  }

  .logo-mark {
    width: 29px;
    height: 29px;
    font-size: 19px;
  }

  .main-nav {
    font-size: 11px;
    gap: 7px;
  }

  .header-phone {
    min-height: 32px;
    padding: 6px 8px;
    font-size: 11px;
  }

  .hero {
    min-height: 700px;
  }

  .hero .hero-content {
    width: calc(100% - 22px);
    padding: 24px 15px;
  }

  .hero h1 {
    font-size: clamp(31px, 10vw, 40px);
    line-height: 1.05;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-phone {
    font-size: 20px;
  }
/* KOREKTA MOBILNEGO PASKA — niższy pasek, lepsze wyrównanie */

@media (max-width: 820px) {
  body {
    padding-top: 84px;
  }

  .header-inner {
    min-height: 84px;
    padding: 6px 0 7px;
    row-gap: 3px;
    align-items: center;
  }

  .header-phone {
    align-self: start;
    margin-top: 2px;
  }

  .main-nav {
    align-self: start;
    transform: translateY(-2px);
  }
}

@media (max-width: 560px) {
  body {
    padding-top: 78px;
  }

  .header-inner {
    min-height: 78px;
    padding: 5px 0 6px;
    row-gap: 2px;
  }

  .header-phone {
    align-self: start;
    margin-top: 1px;
  }

  .main-nav {
    transform: translateY(-3px);
  }
}

@media (max-width: 390px) {
  body {
    padding-top: 74px;
  }

  .header-inner {
    min-height: 74px;
    padding: 5px 0;
    row-gap: 1px;
  }

  .header-phone {
    margin-top: 0;
  }

  .main-nav {
    transform: translateY(-3px);
  }
}
}
