/* RESET & BASE TYPOGRAPHY */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Georgia, serif;
  color: #243446;
  background: #F4F7FA;
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.01em;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #243446;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #EDB65B;
  text-decoration: none;
}
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 700;
  color: #243446;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
@media (min-width: 576px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.4rem;
  }
  h3 {
    font-size: 1.7rem;
  }
}
strong, b {
  font-weight: 700;
}

p, ul, ol, blockquote {
  margin-bottom: 1.2em;
  font-size: 1rem;
}

ul, ol {
  list-style: disc inside;
  padding-left: 0;
  margin-left: 0;
}
ul ul, ol ul {
  margin-top: 0.2em;
  margin-bottom: 0.2em;
}

blockquote {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: #243446;
  background: #fff;
  border-left: 3px solid #EDB65B;
  padding: 24px 32px 24px 24px;
  margin-bottom: 1.5em;
  border-radius: 8px;
  box-shadow: 0 1px 7px 0 rgba(36,52,70,0.07);
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(36,52,70,0.06);
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 28px 8px;
  }
}

/* HEADER/NAV */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 8px 0 rgba(36,52,70,0.04);
  position: sticky;
  top: 0;
  z-index: 101;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
header .container, header .logo, header nav {
  display: flex;
  align-items: center;
}
header .logo {
  margin-right: 28px;
  padding: 8px 0 8px 16px;
  height: 54px;
}
header .logo img {
  height: 40px;
  width: auto;
}
header nav {
  flex: 1;
  gap: 20px;
  justify-content: flex-start;
}
header nav a {
  font-family: 'Montserrat', serif;
  font-size: 1.07rem;
  color: #243446;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: #EDB65B28;
  color: #EDB65B;
  outline: none;
}
.btn-primary, .btn-secondary {
  font-family: 'Montserrat', serif;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  border-radius: 28px;
  padding: 14px 30px;
  cursor: pointer;
  margin-left: 18px;
  outline: none;
  transition: background 0.23s, color 0.18s, box-shadow 0.25s;
  box-shadow: 0 1px 8px 0 rgba(36,52,70,0.07);
  display: inline-block;
  text-align: center;
}
.btn-primary {
  background: #243446;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #EDB65B;
  color: #243446;
}
.btn-secondary {
  background: #EDB65B;
  color: #243446;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #243446;
  color: #fff;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2.2rem;
  color: #243446;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
  margin-left: auto;
  z-index: 202;
  transition: color 0.22s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #EDB65B;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,52,70,0.95);
  box-shadow: 0 2px 32px 0 rgba(36,52,70,0.19);
  transform: translateX(-100%);
  transition: transform 0.37s cubic-bezier(0.6,0.2,0.25,1);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  margin: 18px 0 8px 20px;
  cursor: pointer;
  align-self: flex-start;
  z-index: 904;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #EDB65B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin: 28px 0 0 28px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', serif;
  font-size: 1.3rem;
  padding: 12px 18px;
  border-radius: 10px;
  background: none;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #EDB65B;
  color: #243446;
}

@media (max-width: 1100px) {
  header nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 1101px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none!important;
  }
}

/* MAIN & SECTIONS */
main {
  flex: 1 1 auto;
  margin-top: 0;
}
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

.hero {
  background: #EDB65B10;
  border-radius: 0 0 36px 36px;
  margin-bottom: 60px;
  padding: 46px 0 44px 0;
}
.hero .container {
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  text-align: center;
  padding: 20px 0;
}
.hero h1 {
  font-size: 2.2rem;
  color: #243446;
  margin-bottom: 16px;
}
.hero p {
  color: #3E4E61;
  font-size: 1.2rem;
  margin-bottom: 32px;
}

.features, .services-overview, .outfit-inspiration, .trend-overview, .how-to-wear, .advice-grid, .tips, .benefits, .values {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(36,52,70,0.055);
  margin-bottom: 60px;
  padding: 40px 18px;
}
.features ul, .values ul, .trend-overview ul, .how-to-wear ul, .outfit-inspiration ul, .benefits ul, .advice-grid ul, .services-overview ul, .tips ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-bottom: 18px;
  align-items: center;
}
.features ul li, .services-overview ul li, .values ul li, .trend-overview ul li, .how-to-wear ul li, .advice-grid ul li, .outfit-inspiration ul li, .benefits ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.07rem;
  background: #F4F7FA;
  border-radius: 12px;
  box-shadow: 0 1px 4px 0 rgba(36,52,70,0.035);
  padding: 16px 20px;
  min-width: 170px;
  min-height: 75px;
  position: relative;
}
.features ul li img, .contact-cta ul li img, .contact .text-section img {
  width: 32px;
  height: 32px;
  margin-bottom: 6px;
}
.contact-cta ul, .contact .text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
}

.text-section {
  margin-bottom: 32px;
}

.about-short, .cta-booking, .thank-you, .faq-short {
  background: #EDB65B08;
  border-radius: 18px;
  box-shadow: 0 4px 16px 0 rgba(36,52,70,0.045);
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (max-width: 768px) {
  .content-wrapper, .container {
    padding: 0 8px;
  }
  .features ul, .values ul, .trend-overview ul, .how-to-wear ul, .outfit-inspiration ul, .benefits ul, .advice-grid ul, .services-overview ul, .tips ul {
    flex-direction: column;
    gap: 18px;
  }
  .features ul li, .services-overview ul li, .values ul li, .trend-overview ul li, .how-to-wear ul li, .advice-grid ul li, .outfit-inspiration ul li, .benefits ul li {
    min-width: 0;
    width: 100%;
    align-items: flex-start;
    padding: 14px 14px;
  }
}

.section:last-child, .features:last-child, .about-short:last-child, .cta-booking:last-child, .thank-you:last-child, .outfit-inspiration:last-child, .trend-overview:last-child, .how-to-wear:last-child, .advice-grid:last-child, .tips:last-child {
  margin-bottom: 0 !important;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(36,52,70,0.10);
  position: relative;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 28px 0 rgba(36,52,70,0.17);
  transform: translateY(-3px) scale(1.012);
}

.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: 20px;
  }
}

.testimonial-preview {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(36,52,70,0.07);
  margin-bottom: 60px;
  padding: 44px 18px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #FAF7F1;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(36,52,70,0.04);
  font-size: 1.05rem;
  color: #243446;
  position: relative;
  flex-direction: column;
}
.testimonial-card blockquote {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  font-size: 1.13rem;
  color: #243446;
  margin-bottom: 8px;
}
.testimonial-card footer {
  color: #96703e;
  font-size: 1rem;
  font-family: 'Montserrat', Georgia, serif;
  font-style: normal;
  align-self: flex-end;
}
@media (min-width: 700px) {
  .testimonial-card {
    flex-direction: row;
    gap: 42px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Legal (for polityka, rodo, regulamin, etc.) */
.legal {
  background: #fff;
  border-radius: 16px;
  padding: 40px 20px;
  margin-bottom: 60px;
  box-shadow: 0 2px 14px 0 rgba(36,52,70,0.055);
}
.legal .text-section h2 {
  font-size: 1.22rem;
  margin-top: 18px;
}

/* Footer */
footer {
  background: #fff;
  padding: 32px 0 14px 0;
  border-top: 1px solid #e0ddd9;
  margin-top: 60px;
  box-shadow: 0 0.5px 14px 0 rgba(36,52,70,0.10);
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  justify-content: center;
  align-items: center;
  margin-bottom: 22px;
}
footer nav a {
  color: #243446;
  font-family: 'Montserrat', serif;
  font-size: 1.03rem;
  text-decoration: none;
  transition: color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #EDB65B;
}
footer .company-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  font-size: 1rem;
  color: #7F7050;
}
footer .company-info img {
  width: 42px;
  height: auto;
  margin-bottom: 4px;
}

@media (max-width: 700px) {
  footer {
    padding: 22px 0 7px 0;
    margin-top: 32px;
  }
  footer nav {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
  }
  footer .company-info {
    font-size: 0.93rem;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #243446;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 22px 16px 22px 16px;
  z-index: 2000;
  box-shadow: 0 -2px 16px 0 rgba(36,52,70,0.15);
  font-size: 1.03rem;
  animation: bannerIn 0.55s cubic-bezier(0.7,0.18,0.32,1);
}
@keyframes bannerIn {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner .btn-cookie {
  padding: 10px 24px;
  border-radius: 22px;
  border: none;
  font-family: 'Montserrat', serif;
  font-size: 1.1rem;
  font-weight: 600;
  background: #EDB65B;
  color: #243446;
  cursor: pointer;
  transition: background 0.23s, color 0.11s;
  margin: 0;
  outline: none;
}
.cookie-banner .btn-cookie:hover, .cookie-banner .btn-cookie:focus {
  background: #fff;
  color: #EDB65B;
}
.cookie-banner .btn-cookie.settings {
  background: #3E4E61;
  color: #fff;
}
.cookie-banner .btn-cookie.settings:hover, .cookie-banner .btn-cookie.settings:focus {
  background: #EDB65B;
  color: #243446;
}
@media (max-width: 900px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    font-size: 0.98rem;
    padding: 18px 7px;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36,52,70,0.63);
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.19s;
}
.cookie-modal {
  background: #fff;
  color: #243446;
  border-radius: 20px;
  max-width: 95vw;
  width: 440px;
  box-shadow: 0 8px 48px rgba(36,52,70,0.22);
  padding: 36px 26px 28px 26px;
  animation: modalIn 0.33s cubic-bezier(0.6,0.18,0.22,1);
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
}
@keyframes modalIn {
  from { transform: translateY(100px) scale(0.96); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.4rem;
  color: #243446;
  font-family: 'Montserrat', serif;
  margin-bottom: 12px;
}
.cookie-modal-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.06rem;
}
.cookie-modal-category input[type='checkbox'][disabled] {
  accent-color: #243446;
  opacity: 0.8;
}
.cookie-modal .btn-cookie {
  margin-top: 14px;
  width: 100%;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 14px; right: 16px;
  border: none;
  background: none;
  color: #244;
  font-size: 1.6rem;
  padding: 2px 4px;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: #EDB65B;
}

@media (max-width: 500px) {
  .cookie-modal {
    width: 98vw;
    padding: 18px 8px 12px 8px;
  }
  .cookie-modal h2 {
    font-size: 1.09rem;
  }
}

/* RESPONSIVE FLEX UTILS - applied to main layout classes */
@media (max-width: 900px) {
  .card-container, .content-grid, .features ul, .outfit-inspiration ul, .trend-overview ul, .how-to-wear ul, .advice-grid ul, .benefits ul, .feature-item {
    flex-direction: column !important;
    gap: 14px !important;
  }
}

/* UTILITIES & MICRO-INTERACTIONS */
.card, .testimonial-card {
  transition: box-shadow 0.23s cubic-bezier(0.4,0.2,0.2,1), transform 0.17s;
}
.card:hover, .card:focus, .testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 36px 0 rgba(36,52,70,0.14);
  transform: translateY(-5px) scale(1.02);
}
.btn-primary, .btn-secondary, .btn-cookie {
  transition: background 0.23s, color 0.18s, box-shadow 0.22s, transform 0.15s;
}
.btn-primary:active, .btn-secondary:active, .btn-cookie:active {
  transform: scale(0.97);
}

/* FOCUS STATES */
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus {
  outline: 2px dashed #EDB65B;
  outline-offset: 3px;
}

/* MISC */
hr {
  border: none;
  border-top: 1px solid #EDB65B38;
  margin: 32px 0;
}
::selection {
  background: #EDB65B66;
  color: #243446;
}

/* Hide visually, for helpers (e.g., cookie modal hidden by default) */
[hidden] {
  display: none !important;
}

/* END CSS */
