/* -------------------------
   CSS RESET & NORMALIZE
-------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article,
aside, canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.6;
  background: #F6F9F3;
  color: #293447;
  font-family: 'EB Garamond', serif, 'Times New Roman', Times, serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #293447;
  text-decoration: none;
  transition: color .2s;
}
a:focus { outline: 2px solid #9BC2B1; }

/* --------------
  TYPOGRAPHY
-------------- */
h1, .h1 {
  font-family: 'EB Garamond', serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #293447;
  letter-spacing: 0.5px;
}
h2, .h2 {
  font-family: 'EB Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #293447;
}
h3, .h3 {
  font-family: 'EB Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: #474e5b;
}
h4, .h4 {
  font-size: 1rem;
  font-family: 'EB Garamond', serif;
  color: #293447;
}
p, ul, ol, li, small {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: #384256;
  margin-bottom: 14px;
}
subheadline, .subheadline {
  font-size: 1.15rem;
  color: #566179;
  margin-bottom: 16px;
  font-family: 'Lora', serif;
  letter-spacing: 0.12em;
}
b, strong {
  font-weight: 700;
  color: #293447;
}
small {
  font-size: 0.92em;
  color: #848e99;
}

/* ---------------
  BRAND BUTTONS
--------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #293447;
  color: #fff;
  font-family: 'EB Garamond', serif;
  font-size: 1.08rem;
  padding: 12px 34px;
  border: none;
  border-radius: 28px;
  letter-spacing: .08em;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(41,52,71,0.07);
  transition: background .25s, box-shadow .25s, color .15s;
  margin-top: 10px;
  margin-bottom: 10px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #9BC2B1;
  color: #293447;
  box-shadow: 0 4px 14px rgba(41,52,71,0.11);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #9BC2B1;
  color: #fff;
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  border: none;
  border-radius: 28px;
  padding: 10px 28px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #293447;
  color: #fff;
}

/* -----------
   CONTAINER
----------- */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* -----------------------------------
      HEADER, MAIN NAVIGATION
----------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(41,52,71,.07);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 60;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 70px;
  padding: 12px 0;
}
.main-nav a img {
  height: 42px;
  width: auto;
  margin-right: 18px;
}
.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.main-nav ul li {
  margin-bottom: 0;
}
.main-nav ul li a {
  font-family: 'EB Garamond', serif;
  font-size: 1.08rem;
  color: #293447;
  padding: 6px 14px;
  border-radius: 16px;
  transition: background .15s, color .18s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: #9BC2B1;
  color: #fff;
}
.main-nav .btn-primary {
  margin-left: 20px;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #293447;
  cursor: pointer;
  margin-left: 16px;
  transition: color .18s;
  z-index: 101;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #9BC2B1;
}
@media (max-width: 1100px) {
  .main-nav ul {
    gap: 10px;
  }
  .main-nav {
    gap: 12px;
  }
}

/* MOBILE MENU (Hamburger nav) */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(41,52,71, 0.98);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 200;
  padding-top: 0;
  transform: translateX(-100%);
  transition: transform .39s cubic-bezier(.77,.2,.05,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.4rem;
  border: none;
  align-self: flex-end;
  margin: 18px 22px 8px 0;
  cursor: pointer;
  transition: color .18s;
  z-index: 210;
}
.mobile-menu-close:focus {
  outline: 2px solid #9BC2B1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 24px;
  gap: 12px;
}
.mobile-nav a {
  font-family: 'EB Garamond', serif;
  font-size: 1.25rem;
  color: #fff;
  padding: 12px 0 12px 0;
  width: 80%;
  border-radius: 22px;
  text-align: center;
  margin-bottom: 0;
  transition: background .19s, color .21s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #9BC2B1;
  color: #293447;
}

@media (max-width: 900px) {
  .main-nav ul, .main-nav .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  header {
    min-height: 56px;
  }
}

/* -------------
     SECTIONS
-------------- */
section {
  background: #fff;
  border-radius: 28px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 3px 18px rgba(41,52,71,0.06);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 900px) {
  section {
    padding: 30px 8px;
    border-radius: 18px;
    margin-bottom: 38px;
  }
}

/* ---------------------
  FLEXBOX LAYOUTS
---------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 1px 6px rgba(41,52,71,0.06);
  padding: 24px 22px;
  position: relative;
  min-width: 260px;
  flex: 1 1 320px;
  transition: box-shadow .22s, transform .22s;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.card:hover {
  box-shadow: 0 5px 30px rgba(41,52,71,0.12);
  transform: translateY(-2px) scale(1.011);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  background: #F6F9F3;
  border-radius: 18px;
  gap: 20px;
  box-shadow: 0 1px 8px rgba(41,52,71,0.04);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 240px;
  transition: box-shadow .18s, transform .12s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 16px rgba(155,194,177,0.11);
  transform: scale(1.016);
}
.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.star-rating {
  color: #9BC2B1;
  font-size: 1.15em;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #F6F9F3;
  border-radius: 16px;
  padding: 18px 20px;
  min-width: 210px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  box-shadow: 0 1px 8px rgba(155,194,177,0.066);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  transition: box-shadow .26s, background .19s;
}
.feature-grid > div:hover {
  box-shadow: 0 4px 20px rgba(155,194,177,0.12);
  background: #e8f2ed;
}
.feature-grid img {
  height: 34px;
  margin-bottom: 8px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 16px 12px;
  background: #f6f9f3;
  border-radius: 14px;
  margin-bottom: 20px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
  list-style: none;
}
.services-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #FAFCF9;
  border-radius: 15px;
  padding: 18px 18px;
  border: 1px solid #e2e7e3;
  font-size: 1.03rem;
}
.services-list li img {
  flex: 0 0 36px;
  height: 36px;
  margin-right: 10px;
  margin-top: 2px;
}
.services-list li strong {
  font-family: 'EB Garamond', serif;
  font-size: 1.05rem;
  color: #293447;
}
.services-list li span {
  font-family: 'Lora', serif;
  color: #9BC2B1;
  font-weight: 600;
  margin-left: 11px;
  font-size: 1rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.01rem;
}
.contact-info-list li img {
  flex: 0 0 22px;
  height: 22px;
  margin-right: 8px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: decimal inside;
}
.steps-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.07rem;
}
.steps-list li img {
  flex: 0 0 29px;
  height: 29px;
}

.faq-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.tips-grid > div {
  background: #f6f9f3;
  border-radius: 12px;
  padding: 18px 16px;
  flex: 1 1 215px;
  box-shadow: 0 1px 6px rgba(41,52,71,0.05);
}

.ideas-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: disc inside;
}
.organizational-tips {
  background: #e8f2ed;
  border-radius: 13px;
  padding: 18px 18px;
  margin-bottom: 18px;
}
.seasonal-inspiration {
  background: #f6f9f3;
  border-radius: 13px;
  padding: 16px 16px;
}
.case-study-teaser {
  background: #fafcf9;
  border-radius: 11px;
  padding: 16px 16px;
  margin-bottom: 16px;
  border: 1px solid #e2e7e3;
}

.social-widget {
  background: #f6f9f3;
  border-radius: 16px;
  padding: 20px 22px;
  margin-top: 14px;
  margin-bottom: 18px;
  box-shadow: 0 1px 8px rgba(155,194,177,0.06);
}
.featured-mentions {
  display: flex; 
  align-items: center; 
  gap: 12px;
  margin-top: 10px;
}
.featured-mentions span {
  background: #fff;
  color: #293447;
  padding: 6px 14px;
  border-radius: 18px;
  font-size: 1rem;
  box-shadow: 0 1px 6px rgba(41,52,71,0.04);
  display: flex;
  align-items: center;
  gap: 8px;
}

.key-statistics {
  background: #e8f2ed;
  color: #293447;
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 1.09rem;
  margin-top: 18px;
  margin-bottom: 16px;
  font-family: 'EB Garamond', serif;
  font-weight: 600;
}

.map-placeholder {
  background: #f6f9f3;
  border: 1px dashed #9BC2B1;
  border-radius: 12px;
  padding: 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-height: 88px;
  margin-top: 15px;
}

.legal-text {
  font-size: 1.01rem;
  background: #fafcf9;
  padding: 18px 14px;
  border-radius: 10px;
  color: #384256;
  margin-bottom: 8px;
}

ol, ul {
  margin-left: 1.2em;
}

/* -----------
   FOOTER
------------ */
footer {
  background: #FAFCF9;
  box-shadow: 0 -2px 10px rgba(41,52,71,0.045);
  padding: 28px 0 16px 0;
  margin-top: 40px;
}
.footer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  text-align: center;
}
.footer-wrapper img {
  height: 36px;
  margin-bottom: 5px;
}
.footer-wrapper nav {
  color: #668680;
  font-size:1rem;
}
.footer-wrapper nav a {
  color: #566179;
  padding: 0 4px;
  transition: color .19s;
}
.footer-wrapper nav a:hover, .footer-wrapper nav a:focus {
  color: #9BC2B1;
  text-decoration: underline;
}
.footer-wrapper small {
  color: #848e99;
  margin-top: 10px;
}

@media (max-width: 900px) {
  .footer-wrapper {
    gap: 7px;
  }
  footer {
    padding: 22px 0 9px 0;
    margin-top: 16px;
  }
}

/* ----------------------------------
   COOKIE CONSENT BANNER & MODAL
---------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #ffffff;
  border-top: 2px solid #9BC2B1;
  box-shadow: 0 -4px 20px rgba(41,52,71,0.06);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 500;
  padding: 20px 24px;
  font-size: 1rem;
  gap: 16px;
  animation: cookie-slide-up .52s cubic-bezier(.5,1.8,.27,1.09);
}
@keyframes cookie-slide-up {
  from { transform: translateY(45px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner-message {
  color: #384256;
  font-family: 'Lora', serif;
  flex: 1 1 220px;
  margin-right: 18px;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  margin-right: 4px;
  margin-left: 0;
  transition: background .21s, color .2s;
  min-width: 110px;
}
.cookie-banner .accept {
  background: #9BC2B1;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #293447;
  color: #fff;
}
.cookie-banner .reject {
  background: #eee;
  color: #384256;
  border: 1px solid #9BC2B1;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #9BC2B1;
  color: #fff;
}
.cookie-banner .settings {
  background: #fff;
  color: #293447;
  border: 1px solid #9BC2B1;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #e8f2ed;
  color: #293447;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 8px;
  }
  .cookie-banner-message {
    margin-right: 0;
  }
}

/* Cookie settings modal */
.cookie-modal {
  position: fixed;
  z-index: 700;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(41,52,71, 0.47);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-fade-in .33s cubic-bezier(.52,1.35,.47,.94);
}
@keyframes cookie-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 36px rgba(41,52,71,0.18);
  width: 90%;
  max-width: 380px;
  padding: 30px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  animation: modal-scale-in .35s cubic-bezier(.49,1.19,.56,1);
}
@keyframes modal-scale-in {
  from { transform: scale(.91); opacity:.46; }
  to { transform: scale(1); opacity:1; }
}
.cookie-modal-dialog h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-family: 'EB Garamond', serif;
}
.cookie-modal-options {
  display: flex; flex-direction: column; gap: 14px;
  width: 100%;
}
.cookie-modal-option {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0;
}
.cookie-modal-option input[type=checkbox] {
  accent-color: #9BC2B1;
  width: 19px; height: 19px;
}
.cookie-modal-option label {
  font-size: 1rem;
  color: #293447;
  font-family: 'Lora', serif;
  cursor: pointer;
}
.cookie-modal-buttons {
  display: flex;
  gap: 11px;
  align-self: flex-end;
  margin-top: 14px;
}
.cookie-modal-close {
  position: absolute;
  right: 19px;
  top: 16px;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #293447;
  cursor: pointer;
  transition: color .18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #9BC2B1;
}

/* Required cookie style */
.cookie-modal-option.essential label {
  font-weight: 700;
}
.cookie-modal-option.essential input[type=checkbox] {
  display: none;
}
.cookie-modal-option.essential label:after {
  content: '(Wymagane)';
  color: #9BC2B1;
  margin-left: 6px;
  font-size: 0.92em;
}

/* ----------------------
   MISC & MICROMOTIONS
---------------------- */
::-webkit-scrollbar {
  width: 10px;
  background: #F6F9F3;
}
::-webkit-scrollbar-thumb {
  background: #e3e7e5;
  border-radius: 6px;
}
hr {
  border: none;
  border-bottom: 1px solid #e2e7e3;
  margin: 32px 0 18px 0;
}

/* MICROINTERACTIONS */
.card, .feature-grid > div, .testimonial-card, .btn-primary, .btn-secondary, .services-list li, .case-study-teaser, .tips-grid > div {
  transition: box-shadow .19s, background .16s, transform .18s, color .16s;
}

/* RESPONSIVE TEXT & SPACING */
@media (max-width: 600px) {
  h1, .h1 { font-size: 1.37rem; }
  h2, .h2 { font-size: 1.08rem; }
  h3, .h3 { font-size: 1rem; }
  section { padding: 17px 3px; margin-bottom: 24px; }
  .footer-wrapper img { height: 27px; }
  .services-list li img, .contact-info-list li img { height: 17px; }
}

/* --------------
 LOAD GOOGLE FONTS
-------------- */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@500;700&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

/* END OF STYLESHEET */
