:root {
  --green: #123d2b;
  --green-light: #1f684b;
  --deep-green: #071e15;
  --cream: #f8f3e8;
  --sand: #eadfc7;
  --gold: #d2a447;
  --lake: #1688a6;
  --lake-dark: #0b526b;
  --lake-soft: #d9eef3;
  --sun: #f2c35f;
  --text: #102018;
  --muted: #5a6b63;
  --white: #ffffff;
  --border: rgba(18, 61, 43, 0.16);
  --shadow: 0 26px 80px rgba(7, 30, 21, 0.2);
  --shadow-soft: 0 18px 46px rgba(7, 30, 21, 0.13);
  --radius: 30px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.5;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 243, 232, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(18, 61, 43, 0.1);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(18, 61, 43, 0.12);
  box-shadow: 0 12px 28px rgba(7, 30, 21, 0.1);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.logo-img {
  display: block;
  max-width: 35px;
  max-height: 35px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.logo-text {
  color: var(--green);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.7px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--green);
  font-weight: 900;
}

.nav a {
  opacity: 0.78;
  transition: 0.22s ease;
}

.nav a:hover {
  opacity: 1;
  color: var(--lake-dark);
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-size: 12px;
  font-weight: 950;
}

h1,
h2,
h3 {
  color: var(--green);
  line-height: 1.04;
  letter-spacing: -1.3px;
}

.btn {
  min-height: 54px;
  padding: 0 25px;
  border-radius: 999px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  cursor: pointer;
  transition: 0.24s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  box-shadow: 0 18px 38px rgba(18, 61, 43, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(18, 61, 43, 0.32);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.82);
  color: var(--green);
  border: 1px solid rgba(18, 61, 43, 0.14);
  backdrop-filter: blur(12px);
}

.btn-outline:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

/* OFFER FIRST */

.offer-section {
  position: relative;
  padding: 78px 0 90px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(248, 243, 232, 0.92), rgba(248, 243, 232, 0.64)),
    radial-gradient(circle at 18% 12%, rgba(242, 195, 95, 0.34), transparent 24%),
    radial-gradient(circle at 86% 12%, rgba(22, 136, 166, 0.34), transparent 29%),
    linear-gradient(135deg, #f8f3e8 0%, #e6f3ef 46%, #e8f5f8 100%);
}

.offer-landing {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
}

.offer-inner {
  position: relative;
  z-index: 2;
}

.offer-ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.offer-ambient-one {
  width: 360px;
  height: 360px;
  right: -90px;
  top: 60px;
  background: radial-gradient(circle, rgba(22, 136, 166, 0.26), transparent 66%);
}

.offer-ambient-two {
  width: 300px;
  height: 300px;
  left: -70px;
  bottom: 50px;
  background: radial-gradient(circle, rgba(31, 104, 75, 0.21), transparent 68%);
}

.offer-waterline {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -70px;
  height: 190px;
  background:
    linear-gradient(90deg, rgba(22, 136, 166, 0.12), rgba(31, 104, 75, 0.14), rgba(210, 164, 71, 0.09));
  border-radius: 50% 50% 0 0;
  transform: rotate(-1.5deg);
  pointer-events: none;
}

.section-title {
  margin-bottom: 28px;
}

.offer-title .eyebrow {
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green);
  border: 1px solid rgba(18, 61, 43, 0.12);
  box-shadow: 0 12px 28px rgba(7, 30, 21, 0.08);
}

/* TILES */

.tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tile {
  min-height: 252px;
  padding: 26px;
  border-radius: 31px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.28s ease;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: var(--white);
  box-shadow: 0 22px 54px rgba(7, 30, 21, 0.16);
  isolation: isolate;
}

.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(5, 20, 14, 0.00) 0%,
      rgba(5, 20, 14, 0.12) 38%,
      rgba(5, 20, 14, 0.64) 100%
    );
  z-index: 1;
  transition: 0.28s ease;
}


.tile::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -58px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(22, 136, 166, 0.22), rgba(255, 255, 255, 0.08) 60%, transparent 68%);
  z-index: 2;
  transition: 0.28s ease;
}

.tile:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 34px 86px rgba(7, 30, 21, 0.25);
}

.tile:hover::before {
  background:
    linear-gradient(
      180deg,
      rgba(5, 20, 14, 0.00) 0%,
      rgba(5, 20, 14, 0.08) 36%,
      rgba(5, 20, 14, 0.56) 100%
    );
}


.tile:hover::after {
  transform: scale(1.2);
}

.tile-number {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 950;
  font-size: 13px;
  letter-spacing: 1px;
  position: relative;
  z-index: 3;
}

.tile h3 {
  max-width: 330px;
  font-size: clamp(24px, 2.25vw, 33px);
  position: relative;
  z-index: 3;
  color: var(--white);
  font-weight: 950;
 text-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
}

.tile-budowlane {
  background-image: url("images/budowlane.jpg");
}

.tile-rolne {
  background-image: url("images/rolne.jpg");
}

.tile-osady {
  background-image: url("images/osady.jpg");
}

.tile-linia {
  background-image: url("images/linia-brzegowa.jpg");
}

.tile-inwestycyjne {
  background-image: url("images/inwestycyjne.jpg");
}

.tile-arealy {
  background-image: url("images/arealy.jpg");
}

/* HERO / BRAND SECTION */

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 86px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 18%, rgba(242, 195, 95, 0.34), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(22, 136, 166, 0.32), transparent 34%),
    linear-gradient(135deg, #f8f3e8 0%, #e3f2ec 45%, #d9eef3 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 16%, rgba(242, 195, 95, 0.24), transparent 28%),
    radial-gradient(circle at 78% 20%, rgba(22, 136, 166, 0.28), transparent 34%),
    linear-gradient(180deg, transparent 0%, rgba(18, 61, 43, 0.08) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  align-items: center;
  gap: 62px;
}

.hero h1 {
  margin-top: 14px;
  font-size: clamp(48px, 6vw, 78px);
  max-width: 760px;
}

.hero-text {
  margin-top: 24px;
  max-width: 620px;
  font-size: 20px;
  color: var(--muted);
}

.hero-buttons {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-photo {
  position: relative;
  min-height: 520px;
  border-radius: 42px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 30, 21, 0.04), rgba(7, 30, 21, 0.42)),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 34px 90px rgba(7, 30, 21, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.74);
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 31px;
  z-index: 1;
  pointer-events: none;
}

.hero-photo-badge {
  position: absolute;
  left: 34px;
  bottom: 34px;
  right: 34px;
  min-height: 92px;
  padding: 22px 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.11);
  z-index: 2;
}

.hero-photo-badge span {
  display: block;
  font-size: 27px;
  font-weight: 950;
  letter-spacing: 1px;
  color: var(--green);
}

.hero-photo-badge p {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 900;
}

/* CATEGORY PAGES */

.category-page {
  background: var(--cream);
}

.category-hero {
  padding: 62px 0 28px;
  background:
    radial-gradient(circle at 15% 20%, rgba(242, 195, 95, 0.18), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(22, 136, 166, 0.17), transparent 30%),
    var(--cream);
}

.category-hero-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: end;
}

.category-hero h1 {
  margin-top: 14px;
  font-size: clamp(42px, 5vw, 68px);
}

.category-hero p {
  color: var(--muted);
  font-size: 18px;
}

.category-section {
  padding: 40px 0 82px;
}

.category-top {
  margin-bottom: 26px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
}

.category-top h2 {
  font-size: clamp(32px, 3.4vw, 48px);
}

.category-top p {
  max-width: 440px;
  color: var(--muted);
}

.plots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.plot-card {
  background: rgba(255, 255, 255, 0.91);
  border: 1px solid rgba(18, 61, 43, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

.plot-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.plot-image {
  position: relative;
  min-height: 218px;
  background:
    linear-gradient(135deg, rgba(18, 61, 43, 0.28), rgba(210, 164, 71, 0.16)),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center;
}

.plot-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(7, 30, 21, 0.04),
      rgba(7, 30, 21, 0.46)
    );
}

.plot-status {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.plot-content {
  padding: 24px;
}

.plot-content h3 {
  font-size: 25px;
  margin-bottom: 12px;
}

.plot-meta {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-weight: 700;
}

.plot-meta span strong {
  color: var(--green);
}

.plot-description {
  color: var(--muted);
  margin-bottom: 22px;
}

.plot-card .btn {
  min-height: 48px;
  padding: 0 20px;
}

.plot-empty {
  border-style: dashed;
  background: rgba(248, 243, 232, 0.78);
}

.category-cta {
  margin-top: 34px;
  padding: 30px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--sand), #f1e7d2);
  border: 1px solid rgba(18, 61, 43, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.category-cta h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.category-cta p {
  margin-top: 10px;
  color: var(--muted);
  max-width: 620px;
}

/* PROPERTY DETAIL PAGES */

.property-page {
  background: var(--cream);
}

.property-hero {
  padding: 58px 0 30px;
  background:
    radial-gradient(circle at 15% 20%, rgba(242, 195, 95, 0.16), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(22, 136, 166, 0.16), transparent 30%),
    var(--cream);
}

.property-hero-inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: end;
}

.property-hero h1 {
  margin-top: 14px;
  font-size: clamp(42px, 5vw, 66px);
}

.property-hero p {
  color: var(--muted);
  font-size: 18px;
  max-width: 660px;
}

.property-main {
  padding: 34px 0 86px;
}

.property-detail-layout {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 34px;
  align-items: start;
}

.property-main-photo {
  min-height: 470px;
  border-radius: 34px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.property-thumbs {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.property-thumb {
  min-height: 108px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: 0 10px 24px rgba(7, 30, 21, 0.1);
}

.property-info-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 61, 43, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 34px;
}

.property-info-panel h2 {
  font-size: clamp(30px, 3vw, 44px);
  margin-bottom: 20px;
}

.property-points {
  display: grid;
  gap: 13px;
  list-style: none;
}

.property-points li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
}

.property-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: rgba(22, 136, 166, 0.18);
  color: var(--green);
  display: grid;
  place-items: center;
  font-weight: 950;
  font-size: 14px;
}

.property-note {
  margin-top: 24px;
  padding: 18px;
  border-radius: 18px;
  background: var(--cream);
  border: 1px solid rgba(18, 61, 43, 0.1);
  color: var(--muted);
  font-weight: 700;
}

.property-cta {
  margin-top: 34px;
  padding: 30px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--sand), #f1e7d2);
  border: 1px solid rgba(18, 61, 43, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.property-cta h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.property-cta p {
  margin-top: 10px;
  color: var(--muted);
  max-width: 620px;
}

/* CONTACT */

.contact-section {
  position: relative;
  padding: 94px 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(248, 243, 232, 0.92) 0%, rgba(248, 243, 232, 0.78) 48%, rgba(248, 243, 232, 0.62) 100%),
    url("images/contact-bg.jpg"),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center;
}

.contact-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 17% 25%, rgba(242, 195, 95, 0.22), transparent 28%),
    radial-gradient(circle at 84% 26%, rgba(22, 136, 166, 0.23), transparent 30%);
  pointer-events: none;
}

.contact-box {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: center;
}

.contact-heading h2 {
  font-size: clamp(36px, 4.3vw, 58px);
}

.contact-heading p {
  margin-top: 14px;
  font-size: 22px;
  color: var(--green);
  font-weight: 950;
}

.contact-form {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 70px rgba(7, 30, 21, 0.16);
  display: grid;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--text);
  border-radius: 17px;
  padding: 16px 17px;
  outline: none;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(210, 164, 71, 0.13);
}

.contact-form .btn {
  width: fit-content;
  min-width: 150px;
}

/* FOOTER */

.footer {
  background: var(--deep-green);
  color: rgba(255, 255, 255, 0.84);
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.84);
  transition: 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* PRIVACY POLICY */

.policy-page {
  background: var(--cream);
}

.policy-hero {
  padding: 90px 0 40px;
  background:
    radial-gradient(circle at 15% 20%, rgba(242, 195, 95, 0.16), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(22, 136, 166, 0.14), transparent 30%),
    var(--cream);
}

.policy-hero h1 {
  margin-top: 14px;
  font-size: clamp(42px, 5vw, 72px);
}

.policy-hero p {
  max-width: 760px;
  margin-top: 20px;
  font-size: 19px;
  color: var(--muted);
}

.policy-content {
  padding: 40px 0 90px;
}

.policy-box {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(18, 61, 43, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 48px;
}

.policy-box h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 26px;
}

.policy-box h2:first-child {
  margin-top: 0;
}

.policy-box p {
  color: var(--muted);
  margin-bottom: 14px;
}

.policy-box strong {
  color: var(--green);
}

.policy-box ul {
  margin: 10px 0 22px 22px;
  color: var(--muted);
}

.policy-box li {
  margin-bottom: 8px;
}

.policy-date {
  margin-top: 34px;
  font-weight: 800;
}

.policy-back {
  margin-top: 18px;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .offer-landing,
  .hero {
    min-height: auto;
  }

  .hero-inner,
  .contact-box,
  .category-hero-inner,
  .property-hero-inner,
  .property-detail-layout {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    min-height: 420px;
  }

  .tiles-grid,
  .plots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-top,
  .category-cta,
  .property-cta {
    display: block;
  }

  .category-cta .btn,
  .property-cta .btn {
    margin-top: 22px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 68px;
  }

  .logo-text {
    font-size: 19px;
  }

  .nav {
    display: none;
  }

  .offer-section,
  .hero,
  .contact-section {
    padding: 56px 0;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-text {
    font-size: 18px;
  }

  .tiles-grid,
  .plots-grid {
    grid-template-columns: 1fr;
  }

  .tile {
    min-height: 198px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .policy-hero,
  .category-hero,
  .property-hero {
    padding: 56px 0 28px;
  }

  .policy-content,
  .category-section,
  .property-main {
    padding: 28px 0 56px;
  }

  .policy-box {
    padding: 26px;
  }

  .policy-box h2 {
    font-size: 22px;
  }

  .plot-image {
    min-height: 190px;
  }

  .property-main-photo {
    min-height: 320px;
  }

  .property-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* AUTOMATYCZNE OFERTY Z ARKUSZA */

#offers-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.auto-offer-card {
  background: #ffffff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(31, 54, 45, 0.12);
  border: 1px solid rgba(31, 54, 45, 0.08);
}

.auto-offer-image {
  display: block;
  height: 230px;
  overflow: hidden;
  background: #d9eef3;
}

.auto-offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.auto-offer-card:hover .auto-offer-image img {
  transform: scale(1.06);
}

.auto-offer-content {
  padding: 24px;
}

.auto-offer-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
  color: #547066;
}

.auto-offer-top strong {
  color: #1f6f55;
}

.auto-offer-content h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.15;
  color: #19382d;
}

.auto-offer-location {
  margin: 0 0 16px;
  color: #5d6f68;
}

.auto-offer-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.auto-offer-details span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #edf5ef;
  color: #21483a;
  font-size: 14px;
}

.auto-offer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: #1f6f55;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
}

.auto-offer-empty {
  padding: 28px;
  background: #ffffff;
  border-radius: 20px;
  color: #5d6f68;
}

/* STRONA SZCZEGÓŁÓW OFERTY AUTOMATYCZNEJ */

.offer-detail-section {
  padding: 90px 0;
  background: #f7f2e8;
}

.offer-detail-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}

.offer-detail-photo {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(31, 54, 45, 0.18);
}

.offer-detail-photo img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
}

.offer-detail-panel {
  background: #ffffff;
  border-radius: 32px;
  padding: 36px;
  box-shadow: 0 18px 50px rgba(31, 54, 45, 0.12);
}

.offer-detail-category {
  color: #1f6f55;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.offer-detail-panel h1 {
  margin: 14px 0 22px;
  color: #19382d;
  font-size: 42px;
  line-height: 1.08;
}

.offer-detail-panel h2 {
  margin: 28px 0 14px;
  color: #19382d;
}

.offer-detail-meta,
.offer-detail-points {
  padding-left: 20px;
  color: #40554d;
}

.offer-detail-meta li,
.offer-detail-points li {
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  #offers-list {
    grid-template-columns: 1fr;
  }

  .offer-detail-grid {
    grid-template-columns: 1fr;
  }

  .offer-detail-photo img {
    height: 380px;
  }

  .offer-detail-panel h1 {
    font-size: 32px;
  }
/* MOCNIEJSZE ZDJĘCIE W SEKCJI KONTAKT */

.contact-section {
  background:
    linear-gradient(
      90deg,
      rgba(248, 243, 232, 0.58) 0%,
      rgba(248, 243, 232, 0.28) 42%,
      rgba(248, 243, 232, 0.02) 100%
    ),
    url("images/contact-bg.jpg"),
    url("images/hero.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
}

.contact-shade {
  display: none !important;
}

.contact-heading {
  max-width: 560px;
  padding: 24px 28px;
  border-radius: 28px;
  background: rgba(248, 243, 232, 0.34);
  backdrop-filter: blur(3px);
}

.contact-heading h2,
.contact-heading p,
.contact-heading .eyebrow {
  text-shadow: 0 5px 22px rgba(248, 243, 232, 0.95);
}

.contact-form {
  background: rgba(255, 255, 255, 0.88) !important;
}/* FINAL — mocniejsze zdjęcie w kontakcie */

.contact-section {
  background:
    linear-gradient(
      90deg,
      rgba(248, 243, 232, 0.36) 0%,
      rgba(248, 243, 232, 0.12) 42%,
      rgba(248, 243, 232, 0.00) 100%
    ),
    url("images/contact-bg.jpg"),
    url("images/hero.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
}

.contact-shade {
  display: none !important;
}

.contact-heading {
  max-width: 570px !important;
  padding: 26px 30px !important;
  border-radius: 28px !important;
  background: rgba(248, 243, 232, 0.22) !important;
  backdrop-filter: blur(2px) !important;
}

.contact-heading h2,
.contact-heading p,
.contact-heading .eyebrow {
  text-shadow:
    0 4px 18px rgba(248, 243, 232, 0.95),
    0 2px 8px rgba(248, 243, 232, 0.85) !important;
}

.contact-form {
  background: rgba(255, 255, 255, 0.84) !important;
}/* KONTAKT — finalna wersja, zdjęcie dużo bardziej widoczne */

.contact-section {
  position: relative !important;
  isolation: isolate !important;
  background:
    url("images/contact-bg.jpg"),
    url("images/hero.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
}

.contact-section::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  background:
    linear-gradient(
      90deg,
      rgba(248, 243, 232, 0.50) 0%,
      rgba(248, 243, 232, 0.22) 38%,
      rgba(248, 243, 232, 0.00) 72%
    ) !important;
  pointer-events: none !important;
}

.contact-shade {
  display: none !important;
}

.contact-box {
  position: relative !important;
  z-index: 2 !important;
}

.contact-heading {
  max-width: 570px !important;
  padding: 26px 30px !important;
  border-radius: 28px !important;
  background: rgba(248, 243, 232, 0.28) !important;
  backdrop-filter: blur(2px) !important;
}

.contact-heading h2,
.contact-heading p,
.contact-heading .eyebrow {
  text-shadow:
    0 4px 18px rgba(248, 243, 232, 0.98),
    0 2px 8px rgba(248, 243, 232, 0.9) !important;
}

.contact-form {
  background: rgba(255, 255, 255, 0.86) !important;
}.contact-section {
  border: 10px solid red !important;
}/* ===== O MNIE ===== */

.about-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(47, 133, 107, 0.16), transparent 32%),
    radial-gradient(circle at 10% 85%, rgba(218, 165, 55, 0.15), transparent 30%),
    linear-gradient(135deg, #f8f3e8 0%, #edf4ee 100%);
}

.about-section::before {
  content: "MAZURYLAND";
  position: absolute;
  right: -20px;
  top: 40px;
  font-size: clamp(70px, 10vw, 160px);
  font-weight: 900;
  letter-spacing: 8px;
  color: rgba(18, 77, 55, 0.045);
  pointer-events: none;
}

.about-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.about-content {
  width: 100%;
  max-width: 1050px;
  padding: 55px 65px;
  border: 1px solid rgba(24, 82, 60, 0.12);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 25px 70px rgba(18, 61, 43, 0.12);
  backdrop-filter: blur(10px);
}

.about-content .eyebrow {
  margin-bottom: 12px;
  color: #b88423;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-content h2 {
  margin: 0 0 18px;
  color: #123d2b;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
}

.about-content p {
  max-width: 900px;
  margin: 0 0 20px;
  color: #344d43;
  font-size: 18px;
  line-height: 1.8;
}

.about-content p:first-of-type {
  color: #163f2e;
  font-size: 22px;
  font-weight: 700;
}

.about-content p:last-child {
  display: inline-flex;
  margin-top: 10px;
  margin-bottom: 0;
  padding: 15px 22px;
  border-radius: 999px;
  background: #145b43;
  color: #ffffff;
  font-size: 16px;
  box-shadow: 0 12px 30px rgba(20, 91, 67, 0.22);
}

.about-content p:last-child strong {
  color: inherit;
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }

  .about-content {
    padding: 35px 24px;
    border-radius: 26px;
  }

  .about-content p {
    font-size: 16px;
    line-height: 1.7;
  }

  .about-content p:first-of-type {
    font-size: 19px;
  }

  .about-content p:last-child {
    display: block;
    border-radius: 18px;
    line-height: 1.5;
  }
}
}
