/* --- CSS RESET & NORMALIZE --- */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  min-height: 100vh;
  background: #FAF6F3;
  color: #37374C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #FAF6F3;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
a {
  color: #ECAEA6;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #37374C;
}
ul, ol {
  padding-left: 22px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #37374C;
  margin-bottom: 18px;
  letter-spacing: .01em;
}
h1 { font-size: 2.5rem; line-height: 1.2; }
h2 { font-size: 2rem; line-height: 1.3; }
h3 { font-size: 1.3rem; }
h4, h5, h6 { font-size: 1.1rem; }
p, li, address, blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #37374C;
}
strong { font-weight: bold; }

/* --- SPACING & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 24px 0 rgba(236, 174, 166, 0.08);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* --- HEADER & NAV --- */
header {
  background: #fff;
  width: 100%;
  box-shadow: 0 2px 20px 0 rgba(57,28,65,0.06);
  position: sticky;
  top: 0;
  z-index: 200;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 14px 18px;
}
header img {
  height: 48px;
  border-radius: 10px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #37374C;
  padding: 5px 8px;
  border-radius: 12px;
  transition: background .19s, color .19s;
  position: relative;
}
.main-nav a.cta-btn {
  background: #ECAEA6;
  color: #37374C;
  padding: 8px 22px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 1.06rem;
  margin-left: 18px;
  letter-spacing: .02em;
  box-shadow: 0 2px 12px 0 rgba(236,174,166,0.13);
  border: none;
  outline: none;
  cursor: pointer;
  transition: background .15s, color .15s, box-shadow .18s;
}
.main-nav a.cta-btn:hover, .main-nav a.cta-btn:focus {
  background: #E2D6EC;
  color: #37374C;
  box-shadow: 0 4px 18px 0 rgba(57, 28, 65, 0.09);
}
.main-nav a:hover:not(.cta-btn), .main-nav a:focus:not(.cta-btn) {
  background: #FDF2EF;
  color: #ECAEA6;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #ECAEA6;
  cursor: pointer;
  padding: 6px 9px 4px 9px;
  border-radius: 8px;
  transition: background .15s, color .15s;
  z-index: 300;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FDEAE6;
  color: #37374C;
}
@media (max-width: 1050px) {
  .main-nav { gap: 14px; }
  header .container { padding-left: 8px; padding-right: 8px; }
}
@media (max-width: 900px) {
  .main-nav { gap: 8px; }
}
@media (max-width: 860px) {
  .main-nav a { font-size: 15px; }
  header img { height: 38px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(57,28,65,0.87);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform .37s cubic-bezier(.68,-0.55,.27,1.55);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  padding: 14px 18px;
  cursor: pointer;
  border-radius: 12px;
  transition: background .18s, color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ECAEA6;
  color: #37374C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 28px 0 28px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 10px 0;
  border-radius: 12px;
  width: 100%;
  transition: background .16s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ECAEA6;
  color: #37374C;
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* --- HERO & SECTION STYLES --- */
.hero {
  background: #E2D6EC;
  border-radius: 0 0 36px 36px;
  padding: 56px 0 56px 0;
  margin-bottom: 50px;
  box-shadow: 0 2px 28px 0 rgba(236,174,166,0.11);
}
.hero .content-wrapper { align-items: center; }
.hero h1 { color: #37374C; margin-bottom: 14px; }
.hero-sub, .hero .subtitle, .hero .subheadline {
  font-size: 1.23rem;
  font-weight: 400;
  color: #374056;
  margin-bottom: 22px;
  line-height: 1.5;
}

.subheadline, .subtitle {
  color: #7F6A8F;
  font-size: 1.11rem;
}

@media (max-width: 650px) {
  .hero { padding: 36px 0 36px 0; }
  .section { padding: 24px 7px; margin-bottom: 36px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}

/* --- FEATURE GRID / FLEX CARDS --- */
.features, .services-list, .about-team, .why-us, .planning-process, .faq-block, .next-steps, .thank-you-hero {
  margin-bottom: 60px;
}
.features .content-wrapper, .about-team .content-wrapper, .why-us .content-wrapper {
  gap: 24px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}
.feature-grid > div {
  background: #fff;
  flex: 1 1 220px;
  max-width: 320px;
  min-width: 180px;
  padding: 32px 20px;
  border-radius: 22px;
  box-shadow: 0 2px 16px 0 rgba(236,174,166,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  text-align: center;
}
.feature-grid img {
  margin-bottom: 10px;
  width: 42px;
  height: 42px;
}
.feature-grid h3 {
  font-size: 1.15rem;
  color: #374056;
}
.feature-grid p {
  font-size: 1rem;
  color: #3F3342;
}

/* --- CARDS & FLEX CONTAINERS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(236,174,166,0.11);
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  min-width: 200px;
  max-width: 350px;
  transition: box-shadow .18s, transform .18s;
  border: 1px solid #F4E9F5;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 32px 0 rgba(57,28,65,0.09);
  transform: translateY(-2px) scale(1.018);
  z-index: 5;
}
.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;
  justify-content: center;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(236,174,166,0.12);
  margin-bottom: 22px;
  min-width: 0;
  flex-wrap: wrap;
  position: relative;
}
.testimonial-card blockquote {
  color: #37374C;
  font-size: 1.15rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  line-height: 1.5;
  border-left: 5px solid #ECAEA6;
  padding-left: 16px;
}
.testimonial-meta {
  color: #899;
  font-size: .98rem;
  margin-left: 12px;
  font-style: italic;
  margin-top: 6px;
}
@media (max-width: 900px) {
  .feature-grid { gap: 12px; }
  .feature-grid > div { flex: 1 1 80vw; max-width: 100%; }
}
@media (max-width: 768px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 17px 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}

/* --- GENERAL LISTS & FEATURE ITEMS --- */
.feature-item, .about-team ul li, .why-us ul li, .features ul li, .services-list ul li, .planning-process ul li, .next-steps ul li, .faq-list .faq-item, .privacy-policy ul li, .gdpr-info ul li, .cookie-policy ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: none;
  border-radius: 0;
  margin-bottom: 19px;
  font-size: 1rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
}
.faq-item h3 {
  color: #ECAEA6;
  font-size: 1.12rem;
  margin-bottom: .2em;
}
.faq-item p {
  color: #37374C;
}
.quick-contact-cta { margin-top: 16px; }

/* --- CTA BUTTONS --- */
.cta-btn, .cookie-accept-btn, .cookie-reject-btn, .cookie-settings-btn {
  background: #ECAEA6;
  color: #37374C;
  border: none;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  padding: 11px 30px;
  margin: 9px 2px;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(236,174,166,0.13);
  transition: background .15s, color .13s, box-shadow .16s, transform .12s;
  outline: none;
  display: inline-block;
  letter-spacing: .01em;
}
.cta-btn:hover, .cta-btn:focus,
.cookie-accept-btn:hover, .cookie-accept-btn:focus {
  background: #E2D6EC;
  color: #37374C;
  box-shadow: 0 4px 18px 0 rgba(57,28,65, 0.10);
  transform: translateY(-2px) scale(1.025);
}
.cta-link {
  color: #ECAEA6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-decoration: underline;
  font-size: 1.05rem;
  margin-top: 11px;
  border-radius: 14px;
  transition: color .16s, background .14s;
  padding: 6px 14px;
}
.cta-link:hover, .cta-link:focus {
  color: #fff;
  background: #ECAEA6;
}

/* Cookie Banner Buttons */
.cookie-accept-btn {
  background: #ECAEA6;
  color: #37374C;
}
.cookie-reject-btn {
  background: #E2D6EC;
  color: #37374C;
  margin-left: 0;
}
.cookie-settings-btn {
  background: #fff;
  color: #37374C;
  border: 1px solid #E2D6EC;
  margin-left: 0;
}
.cookie-reject-btn:hover, .cookie-reject-btn:focus {
  background: #FFD9D0;
  color: #37374C;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #E2D6EC;
  color: #37374C;
}

/* --- FOOTER --- */
footer {
  background: #37374C;
  color: #fff;
  padding-top: 32px;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  box-shadow: 0 -2px 24px 0 rgba(236, 174, 166, 0.08);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 17px;
  border-bottom: 1px solid #5C5068;
}
.footer-top img {
  width: 56px;
  height: 56px;
  border-radius: 20px;
}
.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-top nav a {
  color: #ECAEA6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .98rem;
  font-weight: 500;
  border-radius: 12px;
  padding: 4px 10px;
  transition: background .17s, color .15s;
}
.footer-top nav a:hover, .footer-top nav a:focus {
  background: #ECAEA6;
  color: #37374C;
}
.footer-details {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px 0 14px 0;
}
.footer-details address {
  font-style: normal;
  color: #E2D6EC;
  font-size: .96rem;
  line-height: 1.5;
  margin-bottom: 0;
}
.footer-details a {
  color: #ECAEA6;
  text-decoration: underline;
  transition: color .15s;
}
.footer-details a:hover, .footer-details a:focus { color: #fff; }
.copyright {
  color: #E2D6EC;
  font-size: .92rem;
  text-align: right;
}
@media (max-width: 900px) {
  .footer-details { flex-direction: column; gap: 18px; align-items: flex-start; }
}
@media (max-width: 700px) {
  .footer-top { flex-direction: column; gap: 13px; align-items: flex-start; }
  .footer-details { flex-direction: column; gap: 18px; align-items: flex-start; }
  footer .container { gap: 14px; }
}

/* --- PAGE SPECIAL SECTIONS --- */
.about-preview, .about-team, .about-team ul,
.services-overview, .services-list, .service-process-preview, .consultation,
.testimonials, .contact-teaser, .contact-details,
.why-us, .planning-process, .faq-block, .thank-you-hero, .next-steps,
.privacy-policy, .gdpr-info, .terms-info, .cookie-policy {
  margin-bottom: 60px;
}
.contact-card {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(236,174,166,0.07);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 18px;
  min-width: 220px;
  max-width: 480px;
  margin: 0 auto;
  align-items: flex-start;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  list-style: none;
  padding: 0;
}
.social-links li {
  display: flex;
  gap: 8px;
  align-items: center;
  background: none;
  padding: 0;
}
.social-links a {
  color: #ECAEA6;
  font-size: 1rem;
  transition: color .13s;
}
.social-links a:hover, .social-links a:focus { color: #37374C; }
.map-location {
  margin-top: 12px;
  color: #5C5068;
}
.map-location img {
  width: 20px; margin-right: 7px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fff;
  color: #37374C;
  box-shadow: 0 -2px 24px 0 rgba(236,174,166,.17), 0 -1px 0 #ECAEA6;
  z-index: 5000;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 16px;
  flex-wrap: wrap;
  transition: transform .27s;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  font-size: 1rem;
  animation: cookieIn .4s;
}
@keyframes cookieIn {
  0% { transform: translateY(200%); }
  45% { transform: translateY(-12px); }
  70% { transform: translateY(7px); }
  100% { transform: translateY(0); }
}
.cookie-banner .cookie-text {
  flex: 2 1 320px;
  min-width: 200px;
  font-size: .99rem;
  max-width: 600px;
  color: #5C5068;
}
.cookie-banner .cookie-actions {
  flex: 1 1 180px;
  min-width: 180px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-banner button {
  margin: 3px 0 3px 0;
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top:0; left: 0; right:0; bottom:0;
  background: rgba(57,28,65,0.44);
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 28px 0 rgba(236,174,166,0.21);
  max-width: 98vw;
  width: 380px;
  padding: 28px 18px 24px 18px;
  color: #37374C;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: .98rem;
  animation: cookieModalIn .3s;
}
@keyframes cookieModalIn {
  0% { transform: scale(.7); opacity: 0; }
  70% { transform: scale(1.02); opacity: .98; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.22rem;
}
.cookie-modal .cookie-pref {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}
.cookie-toggle {
  width: 34px;
  height: 20px;
  background: #E2D6EC;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background .14s;
  display: inline-block;
}
.cookie-toggle[data-enabled="true"] {
  background: #ECAEA6;
}
.cookie-toggle .toggle-knob {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 1px;
  transition: left .20s;
  box-shadow: 0 1px 4px #E2D6EC;
}
.cookie-toggle[data-enabled="true"] .toggle-knob {
  left: 14px;
}
.cookie-modal .close-cookie-modal {
  background: none;
  border: none;
  font-size: 1.35rem;
  color: #ECAEA6;
  position: absolute;
  right: 18px;
  top: 18px;
  cursor: pointer;
}
.cookie-modal .close-cookie-modal:hover, .cookie-modal .close-cookie-modal:focus {
  color: #37374C;
}

/* --- ANIMATIONS/MICROINTERACTIONS --- */
button, .cta-btn, .cta-link, .main-nav a, .card, .cookie-toggle {
  transition: box-shadow .15s, background .16s, color .13s, transform .13s;
}

/* --- MISC GENERAL STYLES --- */
blockquote {
  font-size: 1.16rem;
  font-family: 'Playfair Display', serif;
  color: #37374C;
  border-left: 5px solid #ECAEA6;
  padding-left: 13px;
  margin-bottom: 20px;
  font-style: italic;
  background: none;
}
section {
  margin-bottom: 60px;
  padding-top: 0;
}

@media (max-width: 600px) {
  .footer-top img { width: 38px; height: 38px; }
  .container { padding-left: 4px; padding-right: 4px; }
  .cookie-modal { width: 96vw; max-width: 96vw; padding: 17px 4vw 16px 4vw; }
}

/* --- FORM ELEMENTS --- */
input, textarea, select {
  border-radius: 12px;
  border: 1px solid #E2D6EC;
  padding: 10px 14px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fff;
  margin-bottom: 15px;
  box-sizing: border-box;
  width: 100%;
  color: #37374C;
  transition: border .18s, box-shadow .16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #ECAEA6;
  box-shadow: 0 0 0 2px #FDEAE6;
  outline: none;
}

label {
  font-size: .96rem;
  color: #374056;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

/* --- SPECIFIC ELEMENTS --- */
address {
  font-style: normal;
  color: #6D5278;
}
/* icon helpers */
ul li img, li > img {
  vertical-align: middle;
  margin-right: 7px;
  width: 19px;
  height: 19px;
}

/* --- OVERLAY Z-INDEX GUARD --- */
.mobile-menu, .mobile-menu.open, .cookie-banner, .cookie-modal-overlay, .cookie-modal {
  z-index: 5000;
}

/* --- Print styles --- */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
}
