/* --- RESET & BASE --- */
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 {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F3F5F8;
  color: #182246;
  min-height: 100vh;
  position: relative;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
*, *::before, *::after {
  box-sizing: inherit;
}
ul, ol {
  list-style: none;
}
a {
  color: #EAA728;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #182246;
  text-decoration: underline;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- BRAND FONTS --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
}
h1 { font-size: 2.4rem; line-height: 1.15; margin-bottom: 18px; }
h2 { font-size: 1.75rem; line-height: 1.15; margin-bottom: 16px; }
h3 { font-size: 1.3rem; line-height: 1.2; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
p, ul, ol, blockquote, .content-wrapper > div, .content-wrapper > p {
  font-size: 1rem;
  margin-bottom: 16px;
}
blockquote {
  background: #EAA7281a;
  color: #182246;
  padding: 18px 26px;
  border-left: 5px solid #EAA728;
  font-style: italic;
  border-radius: 14px;
  margin: 32px 0 16px 0;
}

/* --- CONTAINERS & LAYOUT --- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .content-wrapper {
    gap: 24px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(34,23,70,0.07), 0 2px 6px rgba(234,167,40,0.06);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 18px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus {
  box-shadow: 0 16px 36px rgba(34,23,70,0.17), 0 2px 12px rgba(234,167,40,0.10);
  transform: translateY(-4px) scale(1.03) rotate(-1deg);
}
.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;
  flex-direction: column;
}
@media(min-width: 768px) {
  .text-image-section {
    flex-direction: row;
  }
}
.testimonial-card {
  background: #fffdfa;
  color: #182246;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(234,167,40,0.14), 0 1px 4px rgba(24,34,70,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  min-width: 240px;
  min-height: 140px;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 2px solid #F3F5F8;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 14px 32px rgba(234,167,40,0.20), 0 3px 10px rgba(24,34,70,0.10);
  transform: scale(1.03) rotate(1.5deg);
  border-color: #EAA72877;
  z-index: 2;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- NAVIGATION --- */
header {
  background: #fff;
  border-bottom: 4px solid #EAA728;
  box-shadow: 0 4px 24px rgba(182,154,63,0.05);
  position: relative;
  z-index: 101;
}
.logo img { height: 38px; width: auto; }
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.main-nav {
  display: none;
}
@media (min-width: 900px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #182246;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 9px;
  background: none;
  transition: background 0.13s, color 0.13s;
}
.main-nav a:hover, .main-nav a.active {
  background: #EAA728;
  color: #fff;
}
/* --- CTA PRIMARY BUTTON --- */
.cta-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #EAA728;
  color: #fff;
  border: none;
  border-radius: 22px;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 10px 32px;
  box-shadow: 0 4px 20px rgba(234,167,40,0.14);
  margin-left: 14px;
  cursor: pointer;
  transition: background 0.13s, transform 0.12s, box-shadow 0.10s;
  position: relative;
}
.cta-primary:hover, .cta-primary:focus {
  background: #ffcb4e;
  color: #182246;
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 8px 28px rgba(234,167,40,0.25);
}
/* --- CTA SECONDARY (LINK) --- */
.cta-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fff;
  color: #EAA728;
  border: 2px solid #EAA728;
  border-radius: 22px;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 9px 24px;
  box-shadow: 0 2px 12px rgba(234,167,40,0.05);
  cursor: pointer;
  transition: background 0.13s, color 0.13s, border-color 0.13s, transform 0.13s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #EAA728;
  color: #fff;
  border-color: #EAA728;
  transform: scale(1.04) rotate(-1deg);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 2rem;
  color: #EAA728;
  cursor: pointer;
  padding: 10px 18px;
  z-index: 1040;
  transition: color 0.17s, background 0.09s;
}
.mobile-menu-toggle:active {
  background: #FFEAC1;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  max-width: 350px;
  background: #fffdfa;
  box-shadow: -8px 0 32px rgba(182,154,63,0.09);
  transform: translateX(110%);
  transition: transform 0.29s cubic-bezier(.77,.14,.41,.99);
  z-index: 1050;
  padding: 26px 18px 40px 28px;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  border: none;
  color: #EAA728;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 22px;
  transition: background 0.12s, color 0.13s;
}
.mobile-menu-close:active {
  background: #FFD965;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #182246;
  background: none;
  border-radius: 11px;
  font-size: 1.1rem;
  padding: 8px 14px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: #EAA728;
  color: #fff;
}
@media (min-width: 900px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- HERO SECTIONS --- */
.hero, .blog-hero, .gallery-hero, .contact-hero, .about, .thank-you {
  background: linear-gradient(102deg,#fffdfa 64%, #ffe6ad 100%);
  border-radius: 0 0 36px 36px;
  box-shadow: 0 4px 40px rgba(234,167,40,0.05);
  margin-bottom: 60px;
  min-height: 240px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero .cta-primary { margin-top: 18px; }
.hero h1, .gallery-hero h1, .blog-hero h1, .about h1 { font-size: 2.6rem; color: #EAA728; margin-bottom: 12px; }
.hero p, .gallery-hero p, .about p, .blog-hero p {
  font-size: 1.18rem;
  color: #182246;
}
.hero .container, .blog-hero .container, .gallery-hero .container, .about .container {
  display: flex;
  align-items: center;
}

/* slide-in decor: playful shapes */
.hero::after,.about::after {
  content: '';
  position: absolute;
  right: -45px; top: 20px;
  width: 140px; height: 80px;
  background: #EAA72822;
  border-radius: 80% 65% 60% 90%;
  z-index: 1;
  animation: floatShape 5s infinite alternate ease-in-out;
  pointer-events: none;
}
@keyframes floatShape {
  0% { transform: translateY(0) scale(1.1) rotate(-3deg); }
  100% { transform: translateY(15px) scale(1.18) rotate(2deg); }
}

/* --- FEATURES/ABOUT PREVIEW etc --- */
.features ul, .about-preview ul, .services-preview ul, .values ul, .brand-story ul, .faq ul, .newsletter-signup ul, .blog-categories-filter ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
  margin-bottom: 6px;
  padding-left: 18px;
  color: #182246;
}
.features ul li::before, .about-preview ul li::before, .services-preview ul li::before, .values ul li::before, .brand-story ul li::before, .newsletter-signup ul li::before {
  content: '• ';
  color: #EAA728;
  font-size: 1.15em;
  font-weight: bold;
  margin-right: 6px;
}

.features h2, .about-preview h2, .services-preview h2, .blog-preview h2, .testimonials-preview h2, .newsletter-signup h2 { color: #182246; }

.about-preview, .blog-preview, .services-preview {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(24,34,70,0.07), 0 1.5px 7px rgba(234,167,40,0.07);
  margin-bottom: 32px;
}
.about-preview .content-wrapper, .blog-preview .content-wrapper, .services-preview .content-wrapper {
  gap: 12px;
}

/* --- BLOG LIST & SIDEBAR --- */
.blog-listing .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 900px) {
  .blog-listing .content-wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }
}
.sidebar {
  background: #fffdfa;
  border-radius: 13px;
  padding: 18px 18px 22px 18px;
  box-shadow: 0 4px 18px rgba(34,23,70,0.06);
  min-width: 210px;
  margin-bottom: 20px;
}
.sidebar h3 {
  color: #EAA728;
  font-size: 1.12rem;
  margin-bottom: 12px;
}
.sidebar ul {
  margin-bottom: 18px;
  margin-left: 4px;
}
.sidebar ul li {
  color: #182246;
  font-size: 1rem;
  margin-bottom: 5px;
}
.search-field {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.search-field input[type="search"] {
  border: 1.5px solid #EAA728;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 1rem;
  transition: border-color 0.1s;
}
.search-field input[type="search"]:focus {
  outline: 2px solid #EAA72894;
  border-color: #182246;
}

.post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.post-grid article {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(24,34,70,0.07);
  padding: 16px 18px 15px 18px;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.15s, transform 0.12s;
}
.post-grid article:hover {
  box-shadow: 0 8px 24px rgba(234,167,40,0.16);
  transform: translateY(-4px) scale(1.04) rotate(-0.7deg);
}
.post-grid h3 { color: #182246; font-size: 1.13rem; margin: 0 0 2px 0; }
.post-grid p { color: #595372; font-size: 1rem; line-height: 1.4; }
.post-grid a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #EAA728;
  font-weight: bold;
  margin-top: 4px;
  transition: color 0.14s;
}
.post-grid a:hover { color: #182246; text-decoration: underline; }

/* --- NEWSLETTER SIGNUP --- */
.newsletter-signup {
  background: #ffeac1;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(234,167,40,0.09);
  margin-bottom: 36px;
}
.signup-form {
  display: flex;
  gap: 12px;
  margin: 16px 0 6px 0;
}
.signup-form input[type="email"] {
  border: 2px solid #EAA728;
  border-radius: 12px;
  padding: 9px 13px;
  font-size: 1rem;
  outline: none;
  min-width: 170px;
  transition: border-color 0.14s;
}
.signup-form input[type="email"]:focus { border-color: #182246; }
.signup-form button[type="submit"] {
  background: #EAA728;
  color: #fff;
  border: none;
  border-radius: 11px;
  padding: 10px 24px;
  font-weight: 800;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  cursor: pointer;
  transition: background 0.14s, color 0.13s, transform 0.14s;
}
.signup-form button:hover, .signup-form button:focus {
  background: #FFCB4E;
  color: #182246;
  transform: scale(1.06) rotate(-2deg);
}

/* --- SERVICES & FAQ --- */
.service-item {
  background: #fffdfa;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(234,167,40,0.09);
  padding: 18px 22px;
  margin-bottom: 20px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 5px solid #EAA72844;
  transition: box-shadow 0.15s, border-color 0.13s, transform 0.12s;
}
.service-item strong { color: #EAA728; }
.service-item:hover {
  box-shadow: 0 8px 32px rgba(234,167,40,0.17);
  border-left: 5px solid #EAA728;
  transform: scale(1.03) rotate(-1deg);
}
.faq ul {
  gap: 13px;
}
.faq ul li {
  padding-bottom: 10px;
}

/* --- CTA Section --- */
.cta-section, .cta-section .container, .cta-section .content-wrapper {
  background: #fffae5;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(234,167,40,0.07);
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cta-section h2 { color: #EAA728; font-size: 2rem; margin-bottom: 10px; }
.cta-section p { color: #182246; }
.cta-section .cta-primary {
  margin-top: 12px;
}

/* --- TESTIMONIALS --- */
.testimonials-section .content-wrapper, .testimonials-preview .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.testimonials-section .testimonial-card, .testimonials-preview .testimonial-card {
  flex: 1 1 250px;
}
.stars {
  color: #EAA728;
  font-size: 1.3rem;
  letter-spacing: 0.10em;
  margin-bottom: 0.5em;
}

/* --- GALLERY --- */
.gallery-hero, .gallery-hero .content-wrapper { background: #fffdfa; border-radius: 0 0 32px 32px; }

/* --- POLICY/RODO/TERMS/THANKYOU --- */
.policy, .rodo-section, .terms-section, .cookies-policy, .thank-you, .about, .brand-story, .values {
  background: #fafcff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(24,34,70,0.08);
  margin-bottom: 36px;
}
.policy h1, .rodo-section h1, .terms-section h1, .cookies-policy h1, .thank-you h1 {
  color: #EAA728;
}
.policy ul, .rodo-section ul, .terms-section ul, .cookies-policy ul {
  margin: 16px 0 0 16px;
  gap: 12px;
}
.policy ul li::before, .rodo-section ul li::before, .terms-section ul li::before, .cookies-policy ul li::before {
  content: '• ';
  color: #EAA728;
  font-weight: bold;
}

/* --- CONTACT --- */
.contact-details,
.address-hours,.map-location {
  background: #fffdfa;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(234,167,40,0.04);
  padding: 13px 15px;
  margin-bottom: 9px;
}
.contact-details strong { color: #EAA728; }

/* --- FOOTER --- */
footer {
  background: #182246;
  color: #fff;
  padding: 44px 0 20px 0;
  border-top-left-radius: 27px;
  border-top-right-radius: 27px;
  margin-top: 70px;
  box-shadow: 0 -7px 24px rgba(24,34,70,0.09);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 100%;
}
.footer-brand img { height: 48px; margin-bottom: 13px; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  transition: color 0.12s, background 0.12s;
  padding: 8px 16px;
  border-radius: 7px;
}
.footer-nav a:hover { color: #EAA728; background: #fff1dc; }
.footer-info {
  color: #f5f3eb;
  opacity: 0.94;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.5;
}
.footer-info a { color: #EAA728; font-size: 1.01rem; }
.footer-info a:hover { color: #fff; text-decoration: underline; }

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    gap: 8px;
  }
  .content-grid, .testimonials-section .content-wrapper, .testimonials-preview .content-wrapper {
    flex-direction: column;
  }
  .post-grid {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.16rem; }
  .hero, .blog-hero, .gallery-hero { min-height: 120px; border-radius: 0 0 18px 18px; }
  .container { padding-left: 6px; padding-right: 6px; }
  .section, section { margin-bottom: 40px !important; padding: 24px 8px !important; }
  .about-preview, .services-preview, .blog-preview, .newsletter-signup, .faq, .cta-section, .brand-story, .values { border-radius: 11px; }
  footer {
    padding: 30px 0 10px 0;
    border-top-left-radius: 13px;
    border-top-right-radius: 13px;
    margin-top: 30px;
  }
  .testimonial-card { min-width: 90vw; }
}
@media (max-width: 520px) {
  .hero h1, .gallery-hero h1, .about h1, .testimonials-section h1 { font-size: 1.25rem; }
  .cta-primary, .cta-secondary {
    font-size: 1rem;
    padding: 8px 13px;
  }
  .newsletter-signup .signup-form button, .newsletter-signup .signup-form input {
    font-size: 0.99rem;
  }
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.card, .testimonial-card, .service-item, .post-grid article {
  transition: box-shadow 0.18s, transform 0.16s;
}
.cta-primary, .cta-secondary, button {
  transition: background 0.15s, color 0.13s, box-shadow 0.18s, transform 0.14s;
}
/* Playful subtle hover bounce for major elements */
.card:hover, .testimonial-card:hover, .cta-primary:hover, .service-item:hover {
  animation: playful-bounce 0.33s cubic-bezier(.38,.8,.38,1.2);
}
@keyframes playful-bounce {
  0%   { transform: scale(1.0) rotate(-0.5deg); }
  50%  { transform: scale(1.04) rotate(2deg); }
  80%  { transform: scale(1.02) rotate(-2deg); }
  100% { transform: scale(1.0) rotate(0deg); }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fffdfa;
  color: #182246;
  box-shadow: 0 -4px 24px rgba(234,167,40,0.11);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 22px 7vw 18px 7vw;
  z-index: 9999;
  animation: banner-slide-in 0.7s cubic-bezier(.77,.14,.41,.91) both;
  border-top: 3px solid #eaa728cc;
}
@keyframes banner-slide-in {
  0% { transform: translateY(110%); opacity: 0; }
  85% { transform: translateY(-9px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 13px;
  padding: 9px 18px;
  cursor: pointer;
  background: #EAA728;
  color: #fff;
  margin: 0 5px;
  transition: background 0.13s, color 0.12s, transform 0.13s;
  box-shadow: 0 4px 16px rgba(234,167,40,0.11);
}
.cookie-banner button.cookie-settings {
  background: transparent;
  color: #EAA728;
  border: 2px solid #EAA728;
  padding: 8px 16px;
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: #FFEAC1;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #FFCB4E;
  color: #182246;
  transform: scale(1.05);
}
.cookie-banner .cookie-info {
  font-size: 1rem;
  margin-bottom: 2px;
}
@media (max-width:600px) {
  .cookie-banner {
    padding: 18px 6vw 13px 6vw;
    font-size: 0.95rem;
  }
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(24,34,70,0.26);
  z-index: 10010;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.27s cubic-bezier(.77,.14,.41,.94);
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal-content {
  background: #fffdfa;
  border-radius: 20px;
  box-shadow: 0 2px 26px rgba(234,167,40,0.18);
  padding: 34px 38px 28px 38px;
  width: 95vw;
  max-width: 380px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-slide 0.42s cubic-bezier(.77,.14,.41,.93);
}
@keyframes modal-slide {
  0% { transform: translateY(-32px) scale(0.98); }
  85% { transform: translateY(7px) scale(1.01); }
  100% { transform: translateY(0) scale(1); }
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 16px;
  background: none;
  border: none;
  color: #EAA728;
  font-size: 1.6rem;
  cursor: pointer;
}
.cookie-options-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 7px 0;
}
.cookie-category input[type="checkbox"] {
  accent-color: #EAA728;
  width: 20px; height: 20px;
  margin-top: 2px;
}
.cookie-category label {
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category .desc {
  font-style: italic;
  font-size: 0.95rem;
  margin-left: 4px;
}
.cookie-options-list .cookie-essential label::after {
  content: ' (wymagane)';
  color: #EAA728;
  font-size: 0.96em;
}

/* --- PLAYFUL DYNAMIC DETAILS --- */
section, .card, .testimonial-card, .service-item, .cta-section, .about-preview, .blog-preview, .newsletter-signup {
  /* Confetti/fun shadow effect via box-shadow */
  box-shadow: 0 4px 26px rgba(234,167,40,0.07), 0 1.5px 12px rgba(24,34,70,0.05);
}
.card, .testimonial-card, .service-item, .newsletter-signup, .cta-section, .about-preview, .blog-preview {
  border-radius: 20px 24px 16px 22px;
}
@media (max-width: 640px) {
  .card, .testimonial-card, .service-item, .newsletter-signup, .cta-section, .about-preview, .blog-preview {
    border-radius: 11px 14px 10px 15px;
  }
}

/* Playful font pop on hover for titles */
h1:hover, h2:hover {
  color: #182246;
  letter-spacing: 1.5px;
  transition: color 0.17s, letter-spacing 0.18s;
}

/* Animated fun underline for links on hover */
a:not(.cta-primary):not(.cta-secondary) {
  position: relative;
  overflow-x: hidden;
}
a:not(.cta-primary):not(.cta-secondary):hover::after {
  content: '';
  display: block;
  height: 3px;
  background: #ffcb4e;
  width: 100%;
  border-radius: 3px;
  margin-top: 4px;
  position: absolute;
  left: 0;
  animation: underline-pop 0.21s;
}
@keyframes underline-pop {
  0% { width: 0; opacity: 0; }
  100% { width: 100%; opacity: 1; }
}

/* --- UTILITIES */
.hide { display: none !important; }
.visible { display: block !important; }

/* --- ANIMATIONS FOR DECORATIVE BUBBLES/SHAPES --- */
.playful-bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.17;
  filter: blur(0.5px);
  z-index: 0;
  animation: playful-bubble-float 11s infinite alternate;
}
@keyframes playful-bubble-float {
  0% { transform: translateY(0) scale(1) rotate(0deg); }
  70% { transform: translateY(-10px) scale(1.2) rotate(13deg); }
  100% { transform: translateY(-25px) scale(1.25) rotate(-8deg); }
}


/* --- END --- */