* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #F8F5F1;           /* Background Warm Off-White */
  color: #1F2521;                /* Text Primary Dark Charcoal */
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  padding: 80px 10%;
  background: #F8F5F1;
}

.badge {
  display: inline-block;
  margin-bottom: 24px;
  padding: 10px 16px;
  border: 1px solid #A3B8A1;           /* Soft Sage */
  border-radius: 999px;
  color: #555D59;
  font-size: 14px;
  background: #FFFFFF;
}

h1 {
  max-width: 760px;
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: #1F2521;
}

.lead {
  max-width: 680px;
  margin-top: 24px;
  color: #555D59;                    /* Text Secondary */
  font-size: 20px;
}

.buttons {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 16px;
  font-weight: 700;
  transition: 0.2s ease;
  font-size: 16px;
}

.btn.primary {
  background: #A3B8A1;               /* Soft Sage - główny akcent */
  color: #1F2521;
}

.btn.primary:hover {
  background: #8FA78E;
  transform: translateY(-2px);
}

.btn.secondary {
  border: 2px solid #555D59;
  color: #1F2521;
  background: transparent;
}

.btn.secondary:hover {
  background: #1F2521;
  color: #FFFFFF;
}

/* ===================== KARTA REKOMENDACJI ===================== */
.card {
  padding: 32px;
  border: 1px solid #EDE4D6;         /* Beige Light */
  border-radius: 28px;
  background: #FFFFFF;               /* Pure White */
  box-shadow: 0 25px 60px rgba(31, 37, 33, 0.08);
}

.card .small {
  margin-bottom: 16px;
  color: #A3B8A1;                    /* Soft Sage */
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.card h2 {
  margin-bottom: 16px;
  font-size: 30px;
  line-height: 1.2;
  color: #1F2521;
}

.card p {
  color: #555D59;
}

/* ===================== SEKCJE ===================== */
.section {
  padding: 90px 10%;
}

.section h2 {
  margin-bottom: 22px;
  font-size: 42px;
  letter-spacing: -1px;
  color: #1F2521;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.box {
  padding: 28px;
  border: 1px solid #EDE4D6;
  border-radius: 24px;
  background: #FFFFFF;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(31, 37, 33, 0.07);
}

.box h3 {
  margin-bottom: 12px;
  font-size: 22px;
  color: #1F2521;
}

.box p {
  color: #555D59;
  font-size: 15px;
}

/* ===================== KONTAKT ===================== */
.contact {
  text-align: center;
  background: #F8F5F1;
}

.contact p {
  max-width: 700px;
  margin: 0 auto 28px;
  color: #555D59;
  font-size: 18px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 6%;
  }
  h1 { font-size: 42px; }
  .grid { grid-template-columns: 1fr; }
  .section { padding: 70px 6%; }
}

@media (max-width: 520px) {
  h1 { font-size: 34px; }
  .lead { font-size: 17px; }
  .buttons { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .section h2 { font-size: 32px; }
}

/* ===================== FORMULARZ KONTAKTOWY ===================== */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 50px auto 0;
  align-items: start;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 16px;
  border: 1px solid #EDE4D6;
  border-radius: 12px;
  font-size: 16px;
  background: #FFFFFF;
  color: #1F2521;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #A3B8A1;
  box-shadow: 0 0 0 3px rgba(163, 184, 161, 0.15);
}

.contact-form button {
  width: 100%;
  padding: 16px;
  font-size: 17px;
}

.email-link {
  font-size: 1.3rem;
  color: #1F2521;
  font-weight: 600;
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===================== STOPKA ===================== */
.footer {
  background: #F8F5F1;
  border-top: 1px solid #EDE4D6;
  padding: 28px 10% 20px;
  text-align: center;
  font-size: 13px;
  color: #555D59;
  line-height: 1.5;
  margin-top: 60px;
}

.footer p {
  margin-bottom: 6px;
}

.footer p:last-child {
  margin-bottom: 0;
  font-size: 12.5px;
  opacity: 0.8;
}

.footer a {
  color: #1F2521;
  text-decoration: underline;
}

.footer a:hover {
  color: #A3B8A1;
}

.copyright {
  font-size: 12px !important;
}

/* ===================== COOKIE MODAL ===================== */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.cookie-modal__backdrop {
  position: absolute;
  background: rgba(31, 37, 33, 0.7);
  width: 100%;
  height: 100%;
}

.cookie-modal__box {
  background: #FFFFFF;
  border-radius: 20px;
  max-width: 460px;
  width: 90%;
  margin: 20px;
  box-shadow: 0 25px 60px rgba(31, 37, 33, 0.15);
  position: relative;
  z-index: 1;
}

.cookie-modal__content {
  padding: 32px;
}

.cookie-modal__eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: #A3B8A1;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.cookie-modal__content h3 {
  margin-bottom: 16px;
  color: #1F2521;
}

.cookie-modal__content p {
  color: #555D59;
  line-height: 1.6;
  margin-bottom: 24px;
}

.cookie-modal__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-modal__details {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #EDE4D6;
}

.cookie-check {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  cursor: pointer;
}

.cookie-check input {
  width: 18px;
  height: 18px;
  accent-color: #A3B8A1;
}

.cookie-modal__save {
  margin-top: 20px;
}

@media (max-width: 520px) {
  .cookie-modal__content {
    padding: 24px;
  }
}

/* ===================== HEADER ===================== */
.header {
  position: sticky;
  top: 0;
  background: rgba(248, 245, 241, 0.98);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid #EDE4D6;
  box-shadow: 0 4px 20px rgba(31, 37, 33, 0.06);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 92px;           /* ← Główna zmiana – dużo większe i widoczne */
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(31, 37, 33, 0.08));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.04);
}

.nav {
  display: flex;
  gap: 44px;
  align-items: center;
}

.nav a {
  color: #1F2521;
  font-weight: 600;
  font-size: 17px;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #A3B8A1;
}

/* RESPONSIVE – telefon */
@media (max-width: 768px) {
  .header-container {
    padding: 14px 6%;
  }
  .logo img {
    height: 74px;
  }
  .nav {
    gap: 28px;
  }
  
  
 /* ===================== LOGOWANIE W MENU ===================== */
.nav a.login-btn {
  background: #1F2521;
  color: #FFFFFF;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav a.login-btn:hover {
  background: #A3B8A1;
  color: #1F2521;
  transform: translateY(-1px);
}

/* Responsywność */
@media (max-width: 768px) {
  .nav a.login-btn {
    padding: 9px 18px;
    font-size: 15px;
  }
} 
  
  
}

