/* ===== CSS RESET & BASE SETUP ===== */
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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6F7F9;
  color: #22334C;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #85A6C9;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #22334C;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}

/* ===== BRAND FONTS ===== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #22334C;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}
p, li {
  font-family: 'Roboto', 'Arial', sans-serif;
  font-size: 1rem;
}
.subheadline {
  font-family: 'Roboto', 'Arial', sans-serif;
  font-size: 1.125rem;
  color: #85A6C9;
  margin-bottom: 24px;
  font-weight: 500;
}
.brand-story {
  color: #22334C;
  font-size: 1.05rem;
  margin-bottom: 22px;
  line-height: 1.8;
}

/* ===== GENERAL CONTAINERS & SPACING ===== */
.container {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ====== HEADER & NAVIGATION ====== */
header {
  width: 100%;
  padding: 18px 20px;
  background: #22334C;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(34,51,76,0.08);
}
header a img { max-height: 45px; }
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  margin-left: 40px;
  align-items: center;
}
.main-nav a {
  color: #F6F7F9;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 6px 4px;
  border-radius: 3px;
  position: relative;
  transition: color 0.16s;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #85A6C9, #F6F7F9);
  transition: width 0.2s;
  border-radius: 1px;
}
.main-nav a:hover:after {
  width: 100%;
}
.main-nav a:hover, .main-nav a:focus {
  color: #85A6C9;
}

.cta-btn {
  background-color: #85A6C9;
  color: #22334C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(133, 166, 201, 0.10),0 1px 3px rgba(34,51,76,0.05);
  letter-spacing: 0.04em;
  text-shadow: 0 0 4px #F6F7F9, 0 0 2px #85A6C9;
  margin-left: 24px;
  transition: background 0.18s, box-shadow 0.18s;
  outline: none;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background-color: #22334C;
  color: #F6F7F9;
  box-shadow: 0 8px 24px rgba(34, 51, 76, 0.22),0 2px 6px rgba(133,166,201,0.10);
}

.secondary-link {
  color: #85A6C9;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: underline;
  margin-top: 10px;
  letter-spacing: 0.02em;
  transition: color 0.18s;
}
.secondary-link:hover, .secondary-link:focus {
  color: #22334C;
}

/* ===== MOBILE NAV BUTTON ===== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #85A6C9;
  position: absolute;
  top: 16px;
  right: 22px;
  z-index: 21;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.18s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #22334C;
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #22334C;
  z-index: 1001;
  transform: translateX(-110vw);
  transition: transform 0.38s cubic-bezier(.85,.01,.39,1.03);
  padding: 28px 18px 18px 28px;
  box-shadow: 0 6px 32px rgba(34,51,76,0.20);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  color: #85A6C9;
  font-size: 2rem;
  background: none;
  border: none;
  align-self: flex-end;
  margin-bottom: 18px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.18s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #85A6C9;
  color: #22334C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  color: #F6F7F9;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.02em;
  padding: 10px 2px 10px 8px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
  width: 100%;
  display: block;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #F6F7F9;
  color: #22334C;
}

/* =========== HERO & SECTIONS =========== */
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  display: flex;
  justify-content: center;
  position: relative;
  background: transparent;
}
section:first-of-type {
  min-height: 250px;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, #22334C 78%, #85A6C9 100%);
  color: #F6F7F9;
}
section:first-of-type h1, section:first-of-type p, section:first-of-type .cta-btn {
  color: #F6F7F9;
}
section:nth-of-type(odd):not(:first-of-type) {
  background: #F6F7F9;
}
section:nth-of-type(even):not(:first-of-type) {
  background: #e2eaf3;
}

/* SECTIONS SPACING PATTERN (MANDATORY) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f6f7f9;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(34,51,76,0.06);
  border: 1.5px solid #e3e7ef;
  position: relative;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Feature Grid (on home page) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0;
}
.feature-grid li {
  background: #22334C;
  color: #F6F7F9;
  padding: 24px 20px 20px 20px;
  border-radius: 18px;
  box-shadow: 0 1px 16px rgba(34, 51, 76, 0.10);
  flex: 1 1 270px;
  min-width: 240px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.18s, box-shadow 0.18s;
  margin-bottom: 20px;
}
.feature-grid li:hover, .feature-grid li:focus {
  transform: translateY(-6px) scale(1.023);
  box-shadow: 0 6px 24px #85A6C9bb;
}
.feature-grid img {
  margin-bottom: 14px;
  height: 34px;
  width: 34px;
}
.feature-grid h3 {
  font-size: 1.15rem;
  color: #85A6C9;
  margin-bottom: 8px;
}
.feature-grid p {
  color: #F6F7F9;
}

.service-list,
.outfit-ideas-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.service-item {
  background: #22334C;
  color: #F6F7F9;
  border-radius: 18px;
  padding: 22px 22px 16px;
  flex: 1 1 230px;
  min-width: 210px;
  box-shadow: 0 2px 10px #85A6C970;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  margin-bottom: 20px;
  border: 1.5px solid #e3eaf8;
}
.service-item h2 {
  font-size: 1.25rem;
  color: #85A6C9;
}
.service-price {
  color: #F6F7F9;
  background: #85A6C9;
  border-radius: 16px;
  padding: 4px 16px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  align-self: flex-end;
  letter-spacing: 0.05em;
  font-weight: 700;
  box-shadow: 0 2px 6px #22334C33;
  margin-bottom: 0;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  background: #F6F7F9;
  border-radius: 12px;
  overflow: hidden;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 2px 14px #85A6C940;
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 13px 18px;
  border-bottom: 1px solid #E9EFF6;
  color: #22334C;
}
.pricing-table th {
  background: #22334C;
  color: #F6F7F9;
  font-size: 1.05rem;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.blog-list article {
  background: #e2eaf3;
  border-radius: 16px;
  box-shadow: 0 2px 8px #85A6C935;
  padding: 18px 16px 13px;
  flex: 1 1 220px;
  min-width: 180px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.blog-list article:hover, .blog-list article:focus {
  box-shadow: 0 6px 16px #22334C33, 0 0 0 2px #85A6C930;
  transform: translateY(-5px);
}
.featured-post {
  background: #22334C;
  color: #F6F7F9;
  border-radius: 17px;
  margin-bottom: 22px;
  padding: 20px 18px 14px;
  box-shadow: 0 2px 10px #85A6C940;
}

.style-highlights, .seasonal-trends {
  background: #f6f7f9;
  border-radius: 12px;
  padding: 18px 14px;
  margin-bottom: 16px;
  box-shadow: 0 1px 8px #22334C17;
}
.style-highlights h3, .seasonal-trends h3 {
  color: #22334C;
  font-size: 1.05rem;
  margin-bottom: 7px;
}

.categories {
  margin-bottom: 20px;
}
.categories ul {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 7px;
}
.categories li {
  padding: 5px 12px;
  background: #e2eaf3;
  border-radius: 8px;
  color: #22334C;
  font-size: 0.97rem;
  font-family: 'Roboto', Arial, sans-serif;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}
.contact-info div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #22334C;
}
.address-block, .opening-hours {
  margin-bottom: 14px;
  font-size: 1.05rem;
}
.phone-email {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.phone-email div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.opening-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #22334C;
  font-size: 1.02rem;
}

.cta-banner {
  background: linear-gradient(90deg, #85A6C9, #F6F7F9);
  border-radius: 17px;
  padding: 42px 20px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  box-shadow: 0 2px 12px #22334C22;
}

/* ====== SLIDER (Testimonials) ====== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  padding: 20px 20px 14px;
  background: #F6F7F9;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(34,51,76,0.08);
  border: 1.5px solid #e2eaf3;
}
.testimonial-card p {
  color: #22334C;
  font-size: 1.07rem;
  margin-bottom: 2px;
}
.testimonial-meta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  color: #22334C;
  font-weight: 600;
}
.star-rating {
  color: #85A6C9;
  font-size: 1.2em;
  margin-left: 8px;
}

/* ====== FOOTER ====== */
footer {
  background: #22334C;
  color: #F6F7F9;
  width: 100%;
  padding: 34px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #85A6C9;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.6px;
  transition: color 0.18s;
}
.footer-nav a:focus, .footer-nav a:hover {
  color: #F6F7F9;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 1rem;
  line-height: 1.8;
}
.footer-contact img {
  max-width: 36px;
  margin-bottom: 3px;
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #22334C;
  color: #F6F7F9;
  width: 100vw;
  z-index: 1600;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -4px 38px #22334C72;
  padding: 22px 10px 18px 10px;
  transition: transform 0.36s ease, opacity 0.18s;
  gap: 17px;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: #F6F7F9;
  margin-bottom: 4px;
}
.cookie-buttons {
  display: flex;
  gap: 15px;
}
.cookie-btn, .cookie-btn.settings {
  font-size: 1rem;
  border: none;
  outline: none;
  padding: 10px 22px;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  background: #85A6C9;
  color: #22334C;
  box-shadow: 0 2px 6px #85A6C950;
}
.cookie-btn.settings {
  background: #F6F7F9;
  color: #22334C;
}
.cookie-btn.accept:hover {
  background: #4bb07e;
  color: #F6F7F9;
}
.cookie-btn.reject {
  background: #F32C43;
  color: #fff;
}
.cookie-btn.reject:hover {
  background: #c8172f;
}
.cookie-btn.settings:hover {
  background: #85A6C9;
  color: #F6F7F9;
}

/* Cookie Consent Modal Popup */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0.93);
  background: #F6F7F9;
  color: #22334C;
  z-index: 2001;
  border-radius: 17px;
  box-shadow: 0 8px 40px #22334C50;
  padding: 38px 29px 26px 29px;
  min-width: 285px;
  width: 90vw;
  max-width: 480px;
  opacity: 1;
  display: none;
  flex-direction: column;
  gap: 17px;
  animation: cookie-modal-in 0.32s cubic-bezier(.51,1.8,.3,1) 1;
}
@keyframes cookie-modal-in {
  0% { transform: translate(-50%,-60%) scale(.8); opacity: 0; }
  90% { transform: translate(-50%,-50%) scale(1.03); opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: #22334C;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10px 0;
}
.cookie-category label {
  font-size: 1rem;
}
.cookie-category input[type='checkbox'] {
  accent-color: #85A6C9;
  width: 19px;
  height: 19px;
  margin-right: 7px;
}
.cookie-category.essential label {
  font-weight: bold;
  color: #22334C;
}
.cookie-modal .cookie-buttons {
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 19px;
  top: 14px;
  background: none;
  border: none;
  color: #22334C;
  font-size: 1.52rem;
  cursor: pointer;
  transition: color 0.18s;
  outline: none;
}
.cookie-modal-close:hover {
  color: #85A6C9;
}

/* =========== RESPONSIVE BREAKPOINTS =========== */
@media (max-width: 1200px) {
  .container {
    max-width: 970px;
  }
  .main-nav {
    gap: 16px;
    margin-left: 22px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 95vw;
    padding: 0 10px;
  }
  .main-nav {
    gap: 12px;
    margin-left: 8px;
  }
  header {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 14px 9px 14px 9px;
  }
  .main-nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .content-wrapper {
    padding-left: 0;
    padding-right: 0;
    gap: 17px;
  }
  .section, section {
    padding: 24px 0 0 0;
    margin-bottom: 38px;
  }
  .feature-grid,
  .service-cards,
  .blog-list,
  .testimonial-slider,
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .card-container {
    flex-direction: column;
    gap: 13px;
  }
  .footer-nav {
    gap: 12px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .footer-contact {
    gap: 2px;
    font-size: 0.98rem;
  }
  .service-cards,
  .feature-grid {
    gap: 14px;
  }
}

@media (max-width: 520px) {
  .container {
    max-width: 100vw;
    padding: 0 3vw;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  header a img {
    max-height: 30px;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 9px 14px;
    margin-left: 6px;
  }
  .service-item,
  .feature-grid li {
    padding: 14px 10px 12px 10px;
    min-width: 0;
    font-size: 0.97rem;
  }
  .testimonial-card {
    padding: 13px 11px 12px;
  }
  .footer-contact {
    font-size: 0.9rem;
  }
}

/* ============ ANIMATIONS & TRANSITIONS ============= */
.cta-btn, .secondary-link, .main-nav a, .feature-grid li, .blog-list article, .service-item, .mobile-menu, .mobile-nav a, .cookie-btn, .footer-nav a {
  transition: background 0.2s, box-shadow 0.2s, color 0.18s, transform 0.18s;
}

/* ===== ELEVATE FOCUS OUTLINES FOR ACCESSIBILITY ===== */
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus {
  outline: 2px solid #85A6C9;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px #85A6C950;
}

/* ===== UTILITY: CLEAR FLOATS/FLEX ISSUES IF ANY ===== */
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* ===== Z-INDEX LAYERS ===== */
header, .mobile-menu, .cookie-banner, .cookie-modal {
  z-index: 1000;
}

/* ===== SPECIAL CASES ===== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

/* No absolute positioning for main content cards/text (except for modal close)
   All layouts use flex (no grid, no columns) */
