.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.nav a {
  color: var(--gold);
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}

.nav-logo img {
  height: 100px;
  width: auto;
  display: block;
}

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

/* VARIABLES */
:root {
  --green-dark: #0e3b2c;
  --green: #155c43;
  --gold: #d4af37;
  --white: #ffffff;
  --text-light: #f1f1f1;
}

/* GLOBAL */
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--green-dark);
  color: var(--text-light);
  line-height: 1.6;
}

/* .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
} */

/* HEADER */
.header {
  background: var(--green-dark);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
} */

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
}

.logo-sign {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
}

/* .nav {
  display: flex;
  gap: 24px;
} */

/* .nav a {
  color: var(--gold);
  text-decoration: none;
  font-size: 14px;
} */

/* HERO */
.hero {
  padding: 80px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--gold);
}

.hero span {
  color: var(--white);
}

/* .hero-image img {
  width: 100%;
  border-radius: 16px;
} */

.hero-image {
  justify-self: end; /* 🔑 TO JEST KLUCZ */
}

/* ABOUT */
.about {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Oba PNG zachowują proporcje */
.about-text img,
.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

/* Opcjonalnie – subtelne podkreślenie premium */
.about-text img {
  background: var(--green);
}

.about-image img {
  background: #eee;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* OFFER */

.offer h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--gold);
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.offer {
  padding: 80px 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

/* Wszystkie PNG */
.offer-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

/* Nagłówek */
.offer-header {
  display: flex;
  justify-content: center;
}

.offer-header img {     /* ← WPISZ DOKŁADNĄ SZEROKOŚĆ Z FIGMY */
  max-width: 30%;
  height: auto;
  display: block;
}

/* Karty */
.offer-card {
  display: flex;
  justify-content: center;
}

/* CONTACT */
.contact {
  background: var(--green-dark);
  padding-bottom: 80px;
}

/* OBRAZ GÓRNY */
.contact-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* LISTA KONTAKTU */
.contact-list {
  margin-top: 48px;
  display: grid;
  gap: 32px;
}

/* POJEDYNCZA LINIA */
.contact-item {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* IKONY PNG */
.contact-item img {
  width: 40px;        /* dopasuj do Figmy */
  height: auto;
  display: block;
}

/* TEKST */
.contact-item span {
  font-size: 28px;    /* wg Figmy */
  font-weight: 400;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 24px;
  font-size: 14px;
  opacity: 0.7;
}

.offer-grid {
  padding: 80px 0;
}

/* wspólne dla obu rzędów */
.offer-grid-head,
.offer-grid-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px; /* dopasuj pod Figmę */
}

/* obrazy */
.offer-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px; /* jeśli w Figmie są zaokrąglenia */
}

.pillars {
  padding: 80px 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 🔑 2 kolumny */
  gap: 32px; /* odstęp jak w Figmie */
}

.pillars-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px; /* jeśli w Figmie są zaokrąglenia */
}

@media (max-width: 768px) {
  /* style dla smartfonów */

  .nav {
    flex-direction: column;
    gap: 24px;
  }

  .container {
    width: 100%;
    padding: 0 16px;
  }

  img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 1024px) {
  /* tablety */

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

img {
  max-width: 100%;
  height: auto;
}

.map-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* proporcje 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 16px; /* opcjonalnie – jak w Figmie */
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}