/* --------------------------------------------
   CSS RESET & BASIC NORMALIZATION
---------------------------------------------*/
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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  color: #191A1B;
  background: #FFFFFF;
  min-height: 100vh;
  line-height: 1.5;
  font-size: 1rem;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #E04962;
  text-decoration: none;
  transition: color 0.1s;
}
a:hover, a:focus {
  color: #191A1B;
}
ul, ol {
  margin-left: 24px;
}
strong, b {
  font-weight: 600;
}

/* --------------------------------------------
   BRAND TYPOGRAPHY
---------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #191A1B;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
p, .text-section p {
  font-size: 1.0625rem;
  margin-bottom: 16px;
  color: #303234;
}
.text-section ul, .text-section ol {
  margin-bottom: 16px;
  font-size: 1rem;
}
.highlight {
  color: #E04962;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 8px;
}

/* --------------------------------------------
   LAYOUT CONTAINERS & RESPONSIVE
---------------------------------------------*/
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(25,26,27,0.04);
}
@media (max-width: 768px) {
  .section {
    padding: 32px 8px;
    margin-bottom: 40px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(25,26,27,0.04);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px 28px 24px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(25,26,27,0.10);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .content-grid {
    flex-direction: column;
    gap: 24px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: #F7F8FA;
  border-left: 5px solid #E04962;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(25,26,27,0.05);
  margin-bottom: 20px;
}
.testimonial-card p {
  font-style: italic;
  color: #191A1B;
}
.testimonial-card span {
  color: #606368;
  font-size: 1rem;
  font-weight: 500;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 18px 16px 18px 16px;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(25,26,27,0.05);
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-top: 20px;
}
.features-grid li {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #F7F8FA;
  border-radius: 12px;
  padding: 32px 18px 24px 18px;
  min-width: 210px;
  max-width: 280px;
  box-shadow: 0 2px 14px rgba(25,26,27,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 20px;
  gap: 10px;
}
.features-grid li:hover, .features-grid li:focus-within {
  box-shadow: 0 8px 32px rgba(25,26,27,0.15);
  transform: translateY(-3px) scale(1.025);
}
.features-grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  opacity: 0.9;
}
.features-grid h3 {
  font-size: 1.17rem;
  margin-bottom: 4px;
  color: #191A1B;
  font-weight: 700;
}
.features-grid p {
  font-size: 1rem;
  color: #44474A;
}

@media (max-width: 1024px) {
  .features-grid {
    justify-content: flex-start;
  }
  .features-grid li {
    flex-basis: 230px;
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  .features-grid {
    flex-direction: column;
    gap: 20px;
  }
  .features-grid li {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
  }
}

/**********************************************
 HEADER & NAVIGATION
**********************************************/
header {
  width: 100%;
  background: #fff;
  padding: 0 0 0 0;
  border-bottom: 1px solid #ECEDEE;
  box-shadow: 0 2px 8px rgba(25,26,27,0.03);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 990;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  margin-left: 16px;
  height: 48px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 28px;
  margin-left: 32px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #191A1B;
  letter-spacing: 0.01em;
  padding: 5px 2px;
  border-radius: 3px;
  position: relative;
  transition: color 0.2s, background 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #E04962;
  background: #F7F8FA;
}
.cta-btn {
  margin-left: auto;
  margin-right: 18px;
  padding: 10px 24px;
  background: #E04962;
  color: #fff !important;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border-radius: 26px;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 4px 14px rgba(224,73,98,0.11);
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 0.02em;
  outline: none;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #D83552;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 30px rgba(224,73,98,0.13);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #191A1B;
  background: none;
  border: none;
  margin-right: 14px;
  margin-left: 12px;
  cursor: pointer;
  z-index: 1201;
  padding: 6px 8px;
  border-radius: 5px;
  transition: background 0.14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #EEEFF0;
}
@media (max-width: 1040px) {
  .main-nav {
    gap: 18px;
    margin-left: 18px;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 9px 19px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-right: 10px;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/***************************************************/
/* MOBILE MENU OVERLAY (SIDEBAR)                   */
/***************************************************/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(25,26,27,0.95);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.53,.01,.36,1.04);
  width: 100vw; /* fallback for overlay */
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  cursor: pointer;
  padding: 12px 12px 5px 6px;
  margin: 14px 16px 8px 0;
  align-self: flex-end;
  border-radius: 5px;
  transition: background 0.14s;
  z-index: 1302;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #232425;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin: 36px 24px 0 24px;
}
.mobile-nav a {
  color: #FFFFFF;
  text-decoration: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  padding: 11px 8px 11px 10px;
  border-radius: 6px;
  transition: background 0.17s, color 0.21s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E04962;
  color: #fff;
}
@media (max-width: 900px) {
  .mobile-menu {
    display: flex;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/**********************************************/
/* HERO SECTIONS AND GENERAL PADDING/STYLE */
/**********************************************/
.hero, .about-hero, .services-hero, .lookbook-hero, .blog-hero, .contact-hero, .thank-you-hero {
  min-height: 330px;
  background: #F7F8FA;
  display: flex;
  align-items: center;
  padding-top: 36px;
  padding-bottom: 36px;
  border-radius: 0 0 32px 32px;
  margin-bottom: 24px;
}
.hero h1, .about-hero h1, .services-hero h1, .lookbook-hero h1, .blog-hero h1, .contact-hero h1, .thank-you-hero h1 {
  color: #191A1B;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
.hero .cta-btn {
  margin-top: 10px;
}

/******************************************
  ABOUT & TEXT SECTIONS
******************************************/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.text-section ul, .text-section ol {
  padding-left: 17px;
  margin-bottom: 4px;
}
.text-section li {
  font-size: 1rem;
  color: #303234;
  margin-bottom: 3px;
}

/******************************************
  LEGAL PAGES
******************************************/
.legal {
  background: #fff;
  padding: 48px 24px 40px 24px;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(25,26,27,0.04);
  margin-bottom: 56px;
}
.legal h1 {
  font-size: 2.1rem;
  margin-bottom: 16px;
}
.legal h2 {
  font-size: 1.18rem;
  margin-bottom: 5px;
}

/******************************************
  FOOTER
******************************************/
footer {
  background: #F7F8FA;
  border-top: 1px solid #ECEDEE;
  padding: 30px 0 0 0;
  margin-top: 80px;
}
.footer-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px 14px 20px;
}
.footer-menu nav {
  display: flex;
  gap: 16px;
}
.footer-menu nav a {
  color: #606368;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
  border-radius: 3px;
  padding: 4px 6px;
  transition: color 0.12s, background 0.15s;
}
.footer-menu nav a:hover, .footer-menu nav a:focus {
  color: #E04962;
  background: #ECEDEE;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 5px rgba(25,26,27,0.07);
  transition: background 0.18s;
}
.social-links a:hover, .social-links a:focus {
  background: #E04962;
}
.social-links img {
  width: 18px;
  height: 18px;
}
.footer-legal {
  border-top: 1px solid #ECEDEE;
  margin-top: 8px;
  padding: 12px 20px 11px 20px;
  text-align: center;
  color: #8D929C;
  font-size: 0.98rem;
}

@media (max-width: 700px) {
  .footer-menu {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 0 8px 14px 8px;
  }
  .footer-legal {
    font-size: 0.93rem;
    padding: 10px 8px 10px 8px;
  }
}

/******************************************
  BUTTONS & LINK MICRO-INTERACTIONS
******************************************/
button,
input[type='button'],
input[type='submit'] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
button:focus-visible,
a:focus-visible,
.cta-btn:focus-visible {
  outline: 2px solid #E04962;
  outline-offset: 2px;
}

/******************************************
  RESPONSIVE UTILITIES
******************************************/
@media (max-width: 768px) {
  .hero, .about-hero, .services-hero, .lookbook-hero, .blog-hero, .contact-hero, .thank-you-hero {
    border-radius: 0 0 18px 18px;
    min-height: auto;
    padding-top: 22px;
    padding-bottom: 22px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.44rem;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  .section {
    padding: 23px 3px 23px 3px;
  }
}

/******************************************
  SPACING/CONSISTENCY CLASSES
******************************************/
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-32 { margin-top: 32px !important; }
.mt-auto { margin-top: auto !important; }
.mb-auto { margin-bottom: auto !important; }
.gap-20 { gap: 20px !important; }
.gap-24 { gap: 24px !important; }

/******************************************
  COOKIE CONSENT BANNER
******************************************/
.cookie-banner {
  position: fixed;
  z-index: 2000;
  left: 10px;
  right: 10px;
  bottom: 22px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(25,26,27,0.18);
  padding: 20px 36px 20px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  min-width: 250px;
  max-width: 620px;
  min-height: 60px;
  transition: transform 0.32s, opacity 0.28s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
}
.cookie-banner p {
  color: #191A1B;
  font-size: 1rem;
  margin-bottom: 0;
  margin-right: 10px;
}
.cookie-buttons {
  display: flex;
  gap: 13px;
}
.cookie-btn, .cookie-btn-settings {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #E04962;
  color: #fff;
  border: none;
  border-radius: 22px;
  font-size: 1rem;
  padding: 8px 22px;
  font-weight: 600;
  margin-left: 0;
  cursor: pointer;
  transition: background 0.18s, transform 0.11s, box-shadow 0.19s;
  box-shadow: 0 1px 8px rgba(224,73,98,0.12);
}
.cookie-btn.secondary {
  background: #F7F8FA;
  color: #191A1B;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #D83552;
  color: #fff;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 4px 16px rgba(224,73,98,0.16);
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #ECEDEE;
  color: #E04962;
}
.cookie-btn-settings {
  padding: 8px 16px;
  background: #F7F8FA;
  color: #191A1B;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #ECEDEE;
  color: #E04962;
}

@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    max-width: 98vw;
    padding: 16px 10px 14px 10px;
  }
  .cookie-buttons {
    gap: 9px;
    margin-top: 5px;
  }
}

/******************************************
 COOKIE PREFERENCES MODAL
******************************************/
.cookie-modal-backdrop {
  position: fixed;
  z-index: 2500;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(25,26,27,0.50);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.24s;
}
.cookie-modal-backdrop.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  padding: 38px 28px 32px 28px;
  max-width: 420px;
  width: 95vw;
  box-shadow: 0 8px 48px rgba(25,26,27,0.18);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInModal 0.34s cubic-bezier(.23,1.02,.35,.97);
}
@keyframes fadeInModal {
  from { opacity: 0; transform: translateY(40px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.44rem;
  margin-bottom: 7px;
  color: #191A1B;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 7px;
}
.cookie-modal label {
  font-size: 1.05rem;
  color: #232425;
}
.cookie-modal .toggle {
  appearance: none;
  width: 36px;
  height: 19px;
  background: #D7D9DD;
  border-radius: 20px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.21s;
}
.cookie-modal .toggle:checked {
  background: #E04962;
}
.cookie-modal .toggle:before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left 0.21s;
}
.cookie-modal .toggle:checked:before {
  left: 19px;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
}
.cookie-modal .cookie-btn {
  padding: 8px 20px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 15px;
  right: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #E04962;
  cursor: pointer;
  z-index: 14;
}
.cookie-modal .close-modal:hover {
  color: #191A1B;
}

/******************************************
  FORMS (if any in future)
******************************************/
input, textarea {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 1rem;
  color: #191A1B;
  background: #F7F8FA;
  border: 1px solid #D7D9DD;
  border-radius: 8px;
  padding: 9px 13px;
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.14s;
}
input:focus, textarea:focus {
  border-color: #E04962;
}

/******************************************
  SPECIAL CLASSES / UTILITY
******************************************/
.hide { display: none !important; }

/******************************************
  SCANDINAVIAN MICRO-INTERACTIONS
******************************************/
.card, .testimonial-card, .features-grid li {
  transition: box-shadow 0.17s, transform 0.13s;
}
.card:hover, .testimonial-card:hover, .features-grid li:hover {
  box-shadow: 0 10px 32px rgba(25,26,27,0.11);
  transform: translateY(-2px) scale(1.025);
}

/*******************************************
  PRINT STYLES
*******************************************/
@media print {
  header, .mobile-menu, footer, .cookie-banner, .cookie-modal-backdrop { display: none !important; }
  .section, .container, body { background: #fff !important; color: #191A1B !important; }
}
