/* 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, main, 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;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}

body {
  line-height: 1.5;
  background: #F2EFEA;
  color: #263042;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}

*, *::before, *::after {
  box-sizing: inherit;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
}

a {
  color: #263042;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover, a:focus {
  color: #D0B094;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* TYPOGRAPHY */
h1, .hero h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  color: #263042;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #263042;
  letter-spacing: -0.5px;
}

h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: #263042;
  margin-bottom: 8px;
}

.subheadline, .brand-promise, .seasonal-teaser, .lookbook-intro, .service-teaser {
  font-size: 1.2rem;
  color: #263042;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 8px;
}

p, li, .faq-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #263042;
}

strong, b {
  font-weight: 700;
  color: #263042;
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.15rem; }
}

/* HEADER & NAV */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 3px solid #D0B094;
  padding: 12px 0;
  position: relative;
  z-index: 999;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 18px;
}
.logo-area img {
  height: 56px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 18px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #D0B094;
  color: #fff;
}
.btn-primary {
  display: inline-block;
  background: #263042;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 28px;
  border: none;
  border-radius: 28px;
  box-shadow: 0 4px 14px rgba(38,48,66,0.06);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.16s;
  letter-spacing: 1px;
  margin-left: 18px;
  margin-top: 0;
}
.btn-primary:hover, .btn-primary:focus {
  background: #D0B094;
  color: #263042;
  transform: translateY(-2px) scale(1.03);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 12px;
  }
  .btn-primary {
    padding: 10px 18px;
    margin-left: 8px;
  }
}

@media (max-width: 900px) {
  header {
    flex-wrap: wrap;
    gap: 12px;
  }
  .logo-area { flex: 1 0 120px; }
  .main-nav { flex-wrap: wrap; }
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1202;
  background: #263042;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(38,48,66,0.15);
  transition: background 0.18s, color 0.18s;
  align-items: center;
  justify-content: center;
}
.mobile-menu-toggle:focus {
  outline: 3px solid #D0B094;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100vh;
  background: #263042;
  transform: translateX(100vw);
  transition: transform 0.32s cubic-bezier(0.6,0.1,0.4,1);
  z-index: 1201;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 20px 30px 0 0;
  align-self: flex-end;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 24px 0 0 32px;
  width: 70vw;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.27rem;
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 1px solid rgba(208,176,148,0.23);
  transition: color 0.15s, background 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #D0B094;
  background: rgba(208,176,148,0.08);
}

@media (max-width: 900px) {
  .main-nav, .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header {
    padding-right: 70px;
  }
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* SECTION SPACING & CREATIVE LAYOUTS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.features, .trend-features, .services-detail, .about, .services, .location, .legal, .team, .contact-info, .faq, .lookbook-benefits, .outfit-ideas, .cta, .thank-you-message {
  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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
}

/* HERO SECTION & ARTISTIC TOUCH */
.hero {
  display: flex;
  background: #D0B094;
  background-position: center;
  background-size: cover;
  min-height: 330px;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero .container {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero h1 {
  color: #263042;
  font-size: 2.7rem;
  letter-spacing: -1.5px;
}
.hero p {
  color: #263042;
}
.hero .btn-primary {
  margin-top: 20px;
  background: #263042;
  color: #fff;
}

@media (max-width: 768px) {
  .hero {
    min-height: 220px;
    padding: 32px 0;
  }
  .hero .container {
    padding: 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/* FEATURE GRID & ITEMS */
.feature-grid, .outfit-ideas, .trend-highlights, .service-list, .service-details, .faq-list, .lookbook-benefits ul, .service-scope-list, .prozess-uebersicht, .styling-tips, .about ul, .team ul, .location ul, .cta ul, .contact-info ul, .faq-accordion, .address-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  flex-direction: column;
  margin: 16px 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 22px;
  padding: 32px 26px 22px 26px;
  box-shadow: 0 4px 16px rgba(38,48,66,0.09);
  gap: 15px;
  min-width: 220px;
  max-width: 375px;
  border-left: 8px solid #D0B094;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-item img {
  width: 44px;
  height: 44px;
}
.feature-item:hover {
  box-shadow: 0 8px 30px rgba(208,176,148,0.16);
  transform: translateY(-4px) scale(1.036);
}
@media (min-width: 601px) {
  .feature-grid {
    flex-direction: row;
    gap: 28px;
  }
}

/* TESTIMONIALS */
.testimonials {
  background: #fff;
  border-radius: 36px;
  padding: 48px 18px 48px 18px;
  margin-bottom: 60px;
  box-shadow: 0 8px 32px rgba(38,48,66,0.045);
}
.testimonial-slider {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #F2EFEA;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(38,48,66,0.09);
  min-width: 280px;
  max-width: 380px;
  margin-bottom: 20px;
  border-left: 6px solid #D0B094;
  transition: box-shadow 0.16s, transform 0.16s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 10px 34px rgba(38,48,66,0.10);
  transform: translateY(-2px) scale(1.028);
}
.testimonial-card p {
  color: #263042;
  font-size: 1.12rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.client-name {
  color: #263042;
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
}

@media (max-width: 768px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }
}

/* CARDS & CTA */
.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 28px;
  padding: 38px 20px;
  box-shadow: 0 6px 22px rgba(208,176,148,0.07);
  margin-bottom: 60px;
  gap: 20px;
}
.faq-brief, .faq-list, .faq-accordion, .lookbook-benefits {
  margin-top: 16px;
  background: #F2EFEA;
  padding: 18px 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(38,48,66,0.07);
}
.faq-item, .faq-accordion > div {
  margin-bottom: 18px;
}
.faq-item strong {
  display: block;
  margin-bottom: 6px;
  color: #263042;
}
.faq-item p {
  color: #263042;
}

/* LOOKBOOK IDEAS */
.outfit-ideas h3,
.lookbook-benefits ul li {
  color: #263042;
  margin-bottom: 8px;
}
.outfit-ideas p,
.lookbook-benefits ul li {
  font-size: 1.07rem;
}

.lookbook-benefits ul {
  gap: 14px;
}

/* SERVICE PRICING */
.service-list, .service-scope-list {
  gap: 12px;
}
.service-list span, .service-scope-list span {
  background: #D0B094;
  color: #fff;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 12px;
  margin-left: 8px;
  font-size: 1rem;
}

/* ORDERED & UNORDERED LISTS */
ul {
  margin-left: 18px;
}
ol {
  margin-left: 22px;
  list-style-type: decimal;
}
ol li {
  margin-bottom: 6px;
}

/* CONTACT & INFO */
.contact-info {
  gap: 10px;
}
.address-details {
  gap: 12px;
}
.map-embed {
  padding: 12px 0;
  color: #263042;
}

/* ARTISTIC EFFECTS */
.section, .features, .about, .services, .testimonials, .contact, .hero, .cta, .trend-features, .legal, .team, .location, .lookbook-benefits, .faq {
  position: relative;
  z-index: 1;
}
.section::before, .section::after, .hero::before, .hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
  opacity: 0.11;
}
.hero::before {
  left: -30px;
  top: -50px;
  width: 120px;
  height: 120px;
  background: #F2EFEA;
  border-radius: 51% 49% 44% 56%/55% 45% 60% 40%;
  z-index: 0;
}
 
 
 
 

/* LEGAL SECTION */
.legal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 22px rgba(38,48,66,0.07);
  padding: 38px 18px 38px 18px;
  margin-bottom: 60px;
}
.legal h1, .legal h2 {
  color: #263042;
}

/* FOOTER */
footer {
  padding: 34px 18px 20px 18px;
  background: #263042;
  color: #fff;
  border-radius: 30px 30px 0 0;
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.footer-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #D0B094;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.14s;
  border-bottom: 1.5px solid transparent;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  border-bottom: 1.5px solid #fff;
}
.footer-logo img {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px auto;
}
footer p {
  font-size: 0.98rem;
  opacity: 0.92;
  margin-top: 10px;
  color: #F2EFEA;
}

@media (max-width: 650px) {
  .footer-nav { flex-direction: column; gap: 9px; align-items:center; }
  footer { padding: 30px 4vw 20px 4vw; }
}


/* ---- COOKIE CONSENT BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  background: #fff;
  border-top: 3px solid #D0B094;
  box-shadow: 0 -2px 25px rgba(38,48,66,0.09);
  z-index: 1500;
  padding: 20px 22px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  font-family:'Roboto', Arial, sans-serif;
  animation: bannerIn 0.58s cubic-bezier(0.57,0.12,0.42,1);
}
@keyframes bannerIn {
  from { transform: translateY(90px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-banner p {
  color: #263042;
  font-size: 1rem;
  margin-bottom: 10px;
}
.cookie-banner .banner-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner button {
  padding: 10px 20px;
  border-radius: 18px;
  border: none;
  font-size: 1rem;
  font-family:'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.14s;
}
.cookie-banner .accept {
  background: #263042;
  color: #fff;
  border: none;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #D0B094;
  color: #263042;
}
.cookie-banner .reject {
  background: #F2EFEA;
  color: #263042;
  border: 1.5px solid #263042;
}
.cookie-banner .reject:hover {
  background: #D0B094;
  color: #fff;
}
.cookie-banner .settings {
  background: none;
  color: #263042;
  border: 1.5px solid #D0B094;
}
.cookie-banner .settings:hover {
  background: #D0B094;
  color: #fff;
}
@media (max-width:650px){
  .cookie-banner{flex-direction:column;gap:16px;align-items:stretch;}
  .cookie-banner .banner-actions{justify-content:flex-start;gap:8px;}
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(38,48,66,0.41);
  z-index: 1510;
  display: flex;
  align-items: center;
  justify-content: center;
  animation:modalIn .35s cubic-bezier(.62,.14,.38,1);
}
@keyframes modalIn {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal {
  background: #fff;
  padding: 32px 18px 20px 26px;
  border-radius: 24px;
  box-shadow: 0 6px 40px rgba(38,48,66,0.25);
  width: 95vw;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h2 {
  color: #263042;
  font-family:'Montserrat',Arial,sans-serif;
  font-size: 1.35rem;
}
.cookie-modal ul {
  gap: 14px;
  margin: 12px 0;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #263042;
}
.cookie-modal input[type="checkbox"]:not(:disabled) {
  accent-color: #D0B094;
}
.cookie-modal .close-modal {
  align-self: flex-end;
  border: none;
  background: transparent;
  color: #263042;
  font-size: 2rem;
  cursor: pointer;
}
.cookie-modal .btn-row {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 10px;
}
.cookie-modal .btn-row .accept,
.cookie-modal .btn-row .reject {
  width: 100%;
  font-size: 1rem;
  border-radius: 18px;
  cursor: pointer;
}


/* INTERACTIVITY & TRANSITIONS */
button, .btn-primary, .mobile-menu-toggle, .mobile-menu-close,.cookie-banner button, .cookie-modal .btn-row button {
  outline: none;
  transition: background 0.17s, color 0.17s, box-shadow 0.12s;
}
button:focus-visible, .btn-primary:focus-visible, .mobile-menu-toggle:focus-visible, .mobile-menu-close:focus-visible{
  outline: 3px solid #D0B094;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgb(208,176,148,0.18);
}

input, select, textarea {
  border-radius: 5px;
  border: 1px solid #D0B094;
  padding: 8px 12px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 14px;
  background: #fff;
  color: #263042;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid #D0B094;
}

/* RESPONSIVE & FLEX ADJUSTMENTS */
@media (max-width: 900px){
  header {
    flex-direction: row;
    justify-content: flex-start;
    gap: 14px;
    padding-bottom: 20px;
  }
}
@media (max-width:650px){
  .container { padding: 0 8px; }
  .feature-item{min-width:unset;max-width:100%;padding:20px 11px;}
}

@media (max-width:500px){
  .hero{padding:21px 0;}
  .footer-logo img{width:36px;height:36px;}
}

/* FORMS - For Future Extension */
form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-bottom: 18px;
}
form label {
  font-weight: 500;
  color: #263042;
}
form input[type="submit"], form button[type="submit"] {
  background: #263042;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.18s, color 0.18s;
}
form input[type="submit"]:hover, form button[type="submit"]:hover {
  background: #D0B094;
  color: #fff;
}

/* Misc artistic icons */
.feature-item::before, .feature-item::after {
  content: '';
  position: absolute;
  border-radius: 40% 60% 55% 45%/60% 40% 60% 40%;
  opacity: 0.09;
}
.feature-item::before {
  top: -14px; left: -18px; width: 44px; height: 44px; background: #F2EFEA; z-index: 0; }
.feature-item::after {
  bottom: -14px; right: -18px; width: 38px; height: 38px; background: #D0B094; z-index: 0; }

/* ENSURE GAP BETWEEN ALL CARDS/SECTIONS */
section + section {
  margin-top: 60px;
}

/* HIDE UNWANTED GRID & COLUMNS */
[style*="display: grid"],
[style*="grid-template"],
[style*="columns"],
[style*="column-count"] {
  display: block !important;
}

/* END OF CSS */
