/* 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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
* {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background-color: #F4E6DA;
  color: #3A2A1C;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.04em;
}
a {
  color: #865942;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #ab845e;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1em;
}
img {
  max-width: 100%;
  display: block;
}

/* TYPOGRAPHY (Luxury/Premium): Scale & Font-families */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  color: #3A2A1C;
  font-weight: 600;
  line-height: 1.18;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  font-weight: 500;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 500;
}
strong {
  font-weight: 600;
  color: #865942;
}
em {
  font-style: italic;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
}

/* CONTAINER & SECTIONS */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section,
main section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

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

/* HERO SECTION */
.hero {
  background: #fffdfa;
  border-radius: 22px;
  box-shadow: 0 2px 18px 0 rgba(180,150,120,.08);
  margin-bottom: 32px;
  padding: 56px 0 56px 0;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 20px;
}
.hero h1 {
  color: #865942;
  font-size: 2.6rem;
}
.hero p {
  color: #3A2A1C;
  font-size: 1.15rem;
}
@media (max-width: 768px) {
  .hero {
    padding: 40px 0;
  }
  .hero h1 {
    font-size: 2.1rem;
  }
}

/* NAVIGATION & HEADER */
header {
  background: #fffdfa;
  border-bottom: 1px solid #E6DACE;
  box-shadow: 0 2px 18px 0 rgba(180,150,120,.05);
}
.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  padding: 4px 10px;
  margin: 0 0 0 0;
  color: #865942;
  font-weight: 500;
  border-radius: 3px;
  transition: color .18s, background .18s;
}
header nav a:hover,
header nav a:focus {
  background: #f6ead7;
  color: #3A2A1C;
}
header .button-primary {
  margin-left: 10px;
}
.nav-header img {
  height: 46px;
  width: auto;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #865942;
  line-height: 1;
  cursor: pointer;
  margin-left: 14px;
  z-index: 120;
  transition: color .2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #A57E56;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 1500;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fffdfa;
  box-shadow: 0 0 60px 24px rgba(80,60,32,0.25);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: transform .5s cubic-bezier(.75,0,.2,1);
  transform: translateX(-100vw);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  animation: mobileMenuIn .4s ease-out;
}
@keyframes mobileMenuIn {
  from { transform: translateX(-100vw); }
  to { transform: translateX(0); }
}
.mobile-menu-close {
  position: absolute;
  top: 18px; right: 24px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #ab845e;
  cursor: pointer;
  z-index: 9999;
  transition: color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #865942;
}
.mobile-nav {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  align-items: flex-start;
  padding: 0 40px;
}
.mobile-nav a {
  font-size: 1.27rem;
  color: #865942;
  font-weight: 500;
  padding: 13px 0 13px 0;
  border-radius: 0;
  width: 100%;
  border-bottom: 1px solid #F4E6DA;
  transition: background .18s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #A57E56;
  background: #EFE7E0;
}

@media (max-width: 992px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  .nav-header {
    gap: 10px;
  }
}

/* BUTTONS - Luxury Style */
.button-primary, .button-secondary {
  display: inline-block;
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: 1.18rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 12px 34px;
  margin-top: 6px;
  margin-bottom: 6px;
  line-height: 1.2;
  box-shadow: 0 2px 8px 0 rgba(140,110,60,0.09);
  transition: background .22s, color .18s, box-shadow .2s;
}
.button-primary {
  background: #865942;
  color: #fff;
  border: 1.5px solid #CDB181;
  box-shadow: 0 3px 12px 0 rgba(190,170,120,0.14);
  position: relative;
}
.button-primary::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 2.5px;
  background: #CDB181;
  border-radius: 0 0 4px 4px;
  opacity: 0.77;
  transition: opacity .22s;
}
.button-primary:hover, .button-primary:focus {
  background: #bb9d73;
  color: #4e3522;
  box-shadow: 0 3px 22px 0 rgba(160,120,60,0.11), 0 1.5px 10px 0 rgba(205,177,129,0.11);
}
.button-secondary {
  background: #fffdfa;
  color: #765233;
  border: 1.5px solid #CDB181;
}
.button-secondary:hover, .button-secondary:focus {
  background: #f2e4d2;
  color: #865942;
  box-shadow: 0 2px 10px 0 rgba(170,140,80,0.12);
}

/* FLEX LAYOUT REQUIREMENTS */
.services-list, .service-list, .pricing-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  justify-content: flex-start;
}
.service-card {
  background: #fffdfa;
  border-radius: 14px;
  box-shadow: 0 3px 10px 0 rgba(155,117,65,0.07);
  border: 1.3px solid #E6DACE;
  padding: 30px 25px;
  flex: 1 1 270px;
  min-width: 220px; 
  max-width: 322px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
  position: relative;
  transition: transform .19s, box-shadow .19s;
  z-index: 1;
}
.service-card:hover {
  transform: translateY(-7px) scale(1.021);
  box-shadow: 0 14px 24px 0 rgba(130,95,60,0.13);
  z-index: 2;
}
.service-card h3 {
  font-size: 1.23rem;
  color: #865942;
  margin-bottom: 10px;
}
.service-card p {
  margin-bottom: 6px;
}

/* FEATURE (icon-list) FLEXBOX LAYOUT */
.feature-grid, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 16px;
  flex-direction: row;
}
.feature-grid li, .feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background: #fffdfa;
  border-radius: 10px;
  padding: 16px 16px 16px 13px;
  font-size: 1rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #3A2A1C;
  min-width: 200px;
  flex: 1 1 220px;
  margin-bottom: 0;
  border: 1px solid #EFE7E0;
  box-shadow: 0 2px 10px 0 rgba(130,90,65,0.03);
  position: relative;
}
.feature-grid img, .feature-list img {
  width: 30px; height: 30px;
  flex: 0 0 30px;
  margin-top: 2px;
  filter: saturate(0.8) brightness(1.04);
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fdf8f2;
  border-radius: 18px;
  border: 1.2px solid #E4CDA7;
  box-shadow: 0 2px 20px 0 rgba(210, 183, 130, 0.07);
  padding: 28px 28px 22px 28px;
  margin-bottom: 20px;
  position: relative;
  max-width: 720px;
  color: #382412;
}
.testimonial-card p {
  color: #2f1d0e;
  font-size: 1.12rem;
  margin-bottom: 0;
}
.testimonial-card strong {
  color: #865942;
  font-size: 0.98rem;
}

/* OTHER TEXT ALIGNMENT (content-grid, text-section, text-image-section) */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: flex-start;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* THANK YOU PAGE */
.thank-you-section {
  background: #fffdfa;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(200,170,120,.08);
  padding: 48px 0;
  text-align: center;
}
.thank-you-next-steps {
  margin-bottom: 24px;
  margin-left: 0;
  list-style: disc inside;
  text-align: left;
  padding-left: 20px;
  color: #6f533c;
}

/* FOOTER */
footer {
  background: #fffdfa;
  border-top: 1px solid #E6DACE;
  padding-top: 34px;
  margin-top: 70px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
footer nav a {
  color: #865942;
  font-size: 1rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
footer nav a:hover, footer nav a:focus {
  text-decoration: underline;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  filter: grayscale(0.2) brightness(1.08);
  transition: filter .24s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: grayscale(0) brightness(1.23);
}
.footer-imprint {
  display: flex;
  align-items: center;
}
.footer-imprint a {
  color: #b09872;
  font-size: 0.97rem;
}
.footer-copy {
  border-top: 1px solid #EEE8DA;
  padding-top: 12px;
  text-align: center;
  color: #856c4b;
  font-size: 0.99rem;
}

/* FLEXBOX: Cookie Consent Banner */
.cookie-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: fixed;
  left: 0; bottom: 0; right: 0;
  width: 100vw;
  background: rgba(255,253,250,0.99);
  box-shadow: 0 -2.5px 30px 0 rgba(120,90,50,0.13);
  border-top: 2.5px solid #CDB181;
  padding: 20px 16px 20px 26px;
  z-index: 9000;
  animation: cookieBannerIn .5s;
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: .1; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  color: #4e3522;
  font-size: 1rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin-right: 10px;
  margin-bottom: 0;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  padding: 9px 26px;
  border-radius: 7px;
  font-size: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  border: 1px solid #CDB181;
  background: #fffdfa;
  color: #865942;
  margin: 0 2px;
  transition: background .17s, color .17s;
  cursor: pointer;
}
.cookie-banner .accept-btn {
  background: #CDB181;
  color: #fff;
  border: 1.5px solid #CDB181;
}
.cookie-banner .accept-btn:hover, .cookie-banner .accept-btn:focus {
  background: #b0975a;
  color: #fff;
}
.cookie-banner .reject-btn {
  background: #fffdfa;
  color: #bb9d73;
  border: 1.5px solid #CDB181;
}
.cookie-banner .reject-btn:hover, .cookie-banner .reject-btn:focus {
  background: #f8f0e7;
  color: #865942;
}
.cookie-banner .settings-btn {
  background: #fffdfa;
  color: #865942;
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus {
  background: #eee7df;
  color: #A57E56;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 9500;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(60,40,21,0.34);
  justify-content: center;
  align-items: center;
  animation: cookieModalFadeIn .35s;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fffdfa;
  border-radius: 22px;
  padding: 32px 32px 28px 32px;
  box-shadow: 0 9px 48px 0 rgba(151,120,75,0.19);
  min-width: 340px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.45rem;
}
.cookie-categories-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  color: #865942;
  font-weight: 500;
  margin-right: 10px;
}
.cookie-category input[type="checkbox"] {
  width: 23px; height: 23px;
  accent-color: #CDB181;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .btn {
  border-radius: 8px;
  padding: 10px 26px;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid #CDB181;
  background: #fffdfa;
  color: #865942;
}
.cookie-modal .btn.primary {
  background: #CDB181;
  color: #fff;
}
.cookie-modal .btn.primary:hover {
  background: #ac9466;
}
.cookie-modal .btn.close {
  background: transparent;
  color: #A57E56;
  border: none;
  position: absolute;
  top: 18px; right: 20px;
  font-size: 1.4rem;
  cursor: pointer;
}
.cookie-modal .btn.close:hover {
  color: #865942;
}

/* FORMATTED CONTENT & UTILS */
section ul, .thank-you-section ul {
  list-style: disc inside;
  margin-left: 1em;
  margin-bottom: 10px;
}
section ul li, .thank-you-section ul li, .thank-you-next-steps li {
  margin-bottom: 8px;
  padding-left: 0;
  font-size: 1rem;
}
section ul.feature-grid, section ul.feature-list {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

/* MEDIA QUERIES FOR RESPONSIVENESS */
@media (max-width: 1100px) {
  .container {
    max-width: 100vw;
  }
}
@media (max-width: 1060px) {
  .service-card, .feature-grid li {
    flex-basis: 47%;
    min-width: 170px;
    max-width: 99vw;
  }
}
@media (max-width: 900px) {
  .services-list, .service-list, .feature-grid, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .section, main section, section {
    padding: 30px 6px;
    margin-bottom: 40px;
  }
  .hero {
    padding: 34px 0;
    margin-bottom: 24px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .services-list, .service-list, .feature-grid, .content-grid, .testimonial-card {
    flex-direction: column;
    gap: 18px;
  }
  .service-card, .feature-grid li {
    min-width: 99px;
    flex-basis: 100%;
  }
  .testimonial-card {
    max-width: 99vw;
    padding: 18px 12px 14px 12px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* SPACING - Utility Classes (if needed) */
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.mb-20 { margin-bottom: 20px; }
.pt-40 { padding-top: 40px; }

/* SCROLLBAR (for luxury look) */
::-webkit-scrollbar {
  width: 12px;
  background: #F4E6DA;
}
::-webkit-scrollbar-thumb {
  background: #CDB181;
  border-radius: 7px;
}

/* LUXURY DETAILS: Gold/shine accent */
hr {
  border: 0;
  height: 2px;
  width: 40px;
  background: #CDB181;
  border-radius: 2px;
  margin: 28px auto 28px auto;
}

/* CARD CONTAINER FLEX */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}

/* MISC */
input, textarea {
  border: 1.4px solid #CDB181;
  border-radius: 7px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px;
  margin-bottom: 12px;
}
input:focus, textarea:focus {
  border-color: #865942;
  outline: none;
}

/* Z-INDEX UTILITIES */
.z-1 {z-index:1;}
.z-2 {z-index:2;}
.z-10 {z-index:10;}
.z-20 {z-index:20;}
.z-100 {z-index:100;}

/* Hide visually but keep accessible (for a11y, if needed) */
.sr-only {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  padding: 0;
  margin: -1px;
  border: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ----------- END ----------- */
