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

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: #F8F5F2;
  color: #29335C;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

a {
  color: #8C5E58;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #29335C;
  text-decoration: underline;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #29335C;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  font-weight: 600;
}
h4 {
  font-size: 1.1rem;
}
strong, b {
  font-weight: 700;
}
p, li {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #29335C;
  margin-bottom: 12px;
}
blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: #8C5E58;
  background: #F8F5F2;
  padding: 16px 22px;
  border-left: 3px solid #8C5E58;
  margin-bottom: 16px;
}

hr {
  border: none;
  border-top: 1px solid #e6e1da;
  margin: 32px 0;
}

/* --- BUTTONS --- */
.button-primary, .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  border-radius: 32px;
  padding: 12px 30px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(44,41,52,0.08);
  margin-bottom: 8px;
}
.button-primary {
  background: #29335C;
  color: #F8F5F2;
  border: 1px solid #29335C;
}
.button-primary:hover, .button-primary:focus {
  background: #8C5E58;
  color: #fff;
  border-color: #8C5E58;
}
.button-secondary {
  background: #fff;
  color: #8C5E58;
  border: 1px solid #8C5E58;
}
.button-secondary:hover, .button-secondary:focus {
  background: #8C5E58;
  color: #fff;
}

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  box-shadow: 0 2px 10px rgba(44,41,52,0.06);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1001;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px 14px 12px;
}
header nav img {
  height: 45px;
  margin-right: 24px;
  padding: 0;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #29335C;
  padding: 8px 12px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}
header nav a.button-primary {
  margin-left: 18px;
  padding: 10px 20px;
}
header nav a:hover, header nav a:focus {
  background: #F8F5F2;
  color: #8C5E58;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  color: #8C5E58;
  font-size: 2rem;
  margin-left: auto;
  margin-right: 14px;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 1102;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover {
  background: #F8F5F2;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1500;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  box-shadow: 0 10px 32px rgba(44,41,52,0.10);
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu-close {
  background: none;
  border: none;
  color: #8C5E58;
  font-size: 2.2rem;
  padding: 18px 16px 4px 18px;
  cursor: pointer;
  align-self: flex-end;
  margin-right: 8px;
  margin-top: 4px;
  z-index: 1501;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover {
  background: #F8F5F2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0px;
  width: 100%;
  align-items: flex-start;
  padding: 12px 32px 32px 28px;
}
.mobile-nav a {
  padding: 18px 0;
  font-size: 1.13rem;
  color: #29335C;
  border-bottom: 1px solid #e4ded7;
  width: 100%;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F8F5F2;
  color: #8C5E58;
}

@media (min-width: 1025px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none;
  }
  header nav {
    display: flex !important;
  }
}
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

/* ---- LAYOUT CONTAINERS ---- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(44,41,52,0.06);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid #e3e0dc;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(44,41,52,0.06);
  padding: 20px 24px;
  margin-bottom: 22px;
  max-width: 600px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HERO SECTION --- */
.hero-section {
  background: #F8F5F2;
  padding: 54px 0 40px 0;
  border-bottom: 1px solid #ece7dc;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 12px;
}
.hero-section h1 {
  color: #29335C;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.18;
}
.hero-section p {
  font-size: 1.17rem;
  color: #8C5E58;
  max-width: 600px;
}

/* --- FEATURES / HIGHLIGHTS --- */
.feature-grid, .service-boxes, .approach-highlights, .unique-offers, .wedding-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.feature-box, .service-box, .unique-offers > div, .approach-highlights > div, .wedding-highlights > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  box-shadow: 0 2px 10px rgba(44,41,52,0.06);
  border-radius: 10px;
  padding: 24px 20px;
  min-width: 210px;
  max-width: 280px;
  border: 1px solid #f1ede8;
  gap: 10px;
  transition: transform 0.14s, box-shadow 0.15s;
}
.feature-box:hover, .service-box:hover, .unique-offers > div:hover, .approach-highlights > div:hover, .wedding-highlights > div:hover {
  box-shadow: 0 6px 30px rgba(44,41,52,0.11);
  transform: translateY(-4px) scale(1.024);
}
.feature-box img, .service-box img, .unique-offers img, .approach-highlights img, .wedding-highlights img {
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
}
.feature-box h3, .service-box h3 {
  font-size: 1.14rem;
  margin-bottom: 6px;
  color: #8C5E58;
}
.feature-box p, .service-box p {
  color: #29335C;
  font-size: 1rem;
}
.unique-offers > div, .approach-highlights > div, .wedding-highlights > div {
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border-radius: 8px;
  min-width: 200px;
  background: #F8F5F2;
  border: 1px solid #ece7dc;
  font-size: 1.06rem;
  color: #8C5E58;
}
.unique-offers > div img, .approach-highlights > div img, .wedding-highlights > div img {
  width: 30px;
  height: 30px;
}

/* --- ABOUT/TEAM BLOCKS --- */
.approach-highlights {
  gap: 22px;
}
.approach-highlights > div {
  min-width: 180px;
  background: #fff;
}

/* --- FAQ --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-list h3 {
  color: #8C5E58;
  margin-bottom: 5px;
  font-size: 1.11rem;
}
.faq-list p {
  margin-left: 0;
}

/* --- CONTACT --- */
.contact-info-block, .location-info-block {
  background: #fff;
  padding: 28px 22px;
  border-radius: 10px;
  border: 1px solid #ece7dc;
  box-shadow: 0 2px 10px rgba(44,41,52,0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.contact-info-block ul, .location-info-block ul {
  padding-left: 0;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.contact-info-block li, .location-info-block li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.contact-info-block img, .location-info-block img {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}

/* --- PROCESS/ABLAUF --- */
ol {
  margin-bottom: 16px;
  padding-left: 18px;
  list-style: decimal;
  color: #8C5E58;
}
ol li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.process-explanation ul {
  padding-left: 0;
  gap: 7px;
  display: flex;
  flex-direction: column;
}
.process-explanation li {
  margin-bottom: 0;
  font-size: 1rem;
}

/* --- FOOTER --- */
footer {
  background: #F8F5F2;
  border-top: 1px solid #ece7dc;
  margin-top: 40px;
  padding-top: 8px;
  padding-bottom: 40px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
  justify-content: space-between;
}
footer img {
  height: 38px;
  margin-bottom: 8px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
footer nav a {
  color: #8C5E58;
  font-size: 1rem;
  transition: color 0.2s;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
footer nav a:hover, footer nav a:focus {
  color: #29335C;
}
.footer-contact p {
  color: #29335C;
  font-size: 0.99rem;
  margin-bottom: 0;
}
.footer-contact a {
  color: #8C5E58;
  text-decoration: underline;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 8px;
}
.footer-social img {
  width: 28px;
  height: 28px;
}
.footer-disclaimer {
  font-size: 0.92rem;
  color: #997e73;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 1px solid #ece7dc;
  box-shadow: 0 -2px 14px rgba(44,41,52,0.08);
  z-index: 2200;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  padding: 28px 18px 22px 18px;
  transition: transform 0.3s cubic-bezier(.77,0,.18,1);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-consent-text {
  max-width: 620px;
  color: #29335C;
  margin-bottom: 8px;
}
.cookie-consent-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  margin-top: 0;
}
.cookie-consent-actions .button-primary,
.cookie-consent-actions .button-secondary {
  padding: 9px 22px;
  font-size: 1rem;
  min-width: 120px;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(41,51,92,0.28);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
}
.cookie-settings-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-settings-content {
  background: #fff;
  border-radius: 16px;
  max-width: 420px;
  width: 90vw;
  padding: 36px 28px 28px 28px;
  box-shadow: 0 6px 36px rgba(44,41,52,0.16);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-settings-content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #29335C;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #29335C;
  font-size: 1rem;
  margin-right: 12px;
}
.cookie-toggle {
  width: 40px;
  height: 22px;
  border-radius: 22px;
  background: #ece7dc;
  position: relative;
  display: inline-block;
  transition: background 0.2s;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle .toggle-slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #8C5E58;
  transition: left 0.2s, background 0.2s;
}
.cookie-toggle input:checked + .toggle-slider {
  left: 20px;
  background: #29335C;
}
.cookie-settings-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 6px;
  justify-content: flex-end;
}
.cookie-settings-actions .button-primary,
.cookie-settings-actions .button-secondary {
  font-size: 1rem;
}
/* Essential cookies always enabled */
.cookie-category .essential-label {
  color: #29335C;
  font-style: italic;
}

/* --- TESTIMONIALS --- */
.testimonial-card blockquote {
  color: #8C5E58;
  background: none;
  border-left: 3px solid #8C5E58;
  padding: 0 0 0 14px;
  margin-bottom: 6px;
  font-size: 1.13rem;
  font-style: italic;
}
.testimonial-card p {
  color: #29335C;
  font-size: 1rem;
}

/* --- LISTS --- */
ul {
  margin-bottom: 12px;
  padding-left: 0;
  gap: 8px;
}
ul li {
  margin-left: 0;
  margin-bottom: 4px;
  position: relative;
  padding-left: 22px;
  font-size: 1rem;
  color: #29335C;
}
ul li:before {
  content: '';
  position: absolute;
  left: 6px;
  top: 12px;
  width: 6px;
  height: 6px;
  background: #8C5E58;
  border-radius: 50%;
  display: inline-block;
  transform: translateY(-50%);
}
/* Remove bullet for feature box inner lists */
.feature-box ul, .service-box ul {
  padding-left: 0;
}
.feature-box li:before, .service-box li:before {
  display: none;
}

/* --- ANIMATIONS & TRANSITIONS --- */
.button-primary, .button-secondary, .feature-box, .service-box, .testimonial-card, .unique-offers > div, .approach-highlights > div, .wedding-highlights > div {
  transition: 
    box-shadow 0.22s cubic-bezier(.77,0,.18,1),
    transform 0.18s cubic-bezier(.77,0,.18,1),
    background 0.2s, color 0.2s, border 0.18s;
}

/* ---- RESPONSIVE BREAKPOINTS ---- */
@media (max-width: 1024px) {
  .feature-grid, .service-boxes, .approach-highlights, .unique-offers, .wedding-highlights, .footer .content-wrapper {
    flex-wrap: wrap;
    gap: 18px;
    justify-content: flex-start;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 7px;
  }
  .content-grid, .feature-grid, .service-boxes {
    flex-direction: column;
    gap: 18px;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .mobile-nav a { font-size: 1.06rem; }
}
@media (max-width: 768px) {
  .hero-section {
    padding: 32px 0 24px 0;
  }
  .hero-section h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .hero-section p {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .section {
    margin-bottom: 36px;
    padding: 24px 5px;
  }
  .feature-box, .service-box {
    min-width: unset;
    max-width: 100%;
    width: 100%;
    padding: 18px 12px;
  }
  .unique-offers > div,
  .approach-highlights > div,
  .wedding-highlights > div {
    min-width: unset;
    width: 100%;
    font-size: 0.98rem;
    padding: 13px 9px;
    gap: 10px;
  }
  .text-image-section { flex-direction: column; gap: 14px; }
  .testimonial-card { padding: 16px 7px; }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 12px;
    padding: 18px 8px 12px 8px;
    font-size: 0.97rem;
  }
  .cookie-settings-content {
    padding: 24px 9px 12px 9px;
    max-width: 98vw;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.13rem; }
  .testimonial-card { max-width: 98vw; }
  .cookie-consent-banner, .cookie-settings-content { font-size: 0.98rem; }
}

/* ---- UTILITY / HELPERS ---- */
.hide, .d-none { display: none !important; }
.flex { display: flex !important; }
.flex-col { display: flex !important; flex-direction: column !important; }
.gap-20 { gap: 20px !important; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }

/* ---- Z-INDEX LAYERING ---- */
header { z-index: 1001; }
.mobile-menu { z-index: 1500; }
.cookie-consent-banner { z-index: 2200; }
.cookie-settings-modal { z-index: 2500; }

/* ---- SCROLLBAR STYLING ---- */
::-webkit-scrollbar { width: 10px; background: #F8F5F2; }
::-webkit-scrollbar-thumb { background: #e0ded8; border-radius: 7px; }

/* --- PRINT OPTIMIZE (OPTIONAL) --- */
@media print {
  header, .mobile-menu, .cookie-consent-banner, .cookie-settings-modal, footer { display: none !important; }
}
