/* RESET & BASE STYLES */
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  background: #FAF8F4;
  color: #333721;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: #6E9689;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D7BFA6;
  outline: none;
}

ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
strong { font-weight: bold; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #4A4F36;
  margin-bottom: 16px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.25rem; margin-bottom: 20px; }
h2 { font-size: 1.75rem; margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 10px; font-weight: 600; }
h4 { font-size: 1.125rem; margin-bottom: 8px; }
h5, h6 { font-size: 1rem; margin-bottom: 8px; }
p, .subheadline {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  color: #333721;
  margin-bottom: 12px;
}
.subheadline {
  font-size: 1.15rem;
  color: #6E9689;
  font-style: italic;
  margin-bottom: 16px;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEX LAYOUT HELPERS */
.card-container,
.feature-grid,
.service-cards,
.testimonial-cards,
.content-grid,
.footer-menu,
.footer-contact,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-item, .testimonial-card, .service-card {
  margin-bottom: 20px;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 20px;
  min-width: 260px;
  padding: 20px 26px 20px 24px;
  box-shadow: 0px 6px 32px rgba(106, 163, 112, 0.10), 0 1px 5px #D7BFA6;
  margin-bottom: 20px;
  border: 2px solid #D7BFA6;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F3EFE7;
  border-radius: 18px;
  padding: 28px 18px;
  min-width: 240px;
  box-shadow: 0 2px 10px #8CABA10D;
  border-left: 4px solid #6E9689;
  transition: box-shadow 0.28s, transform 0.23s;
  margin-bottom: 20px;
}
.feature-item:hover,
.service-card:hover {
  box-shadow: 0px 10px 32px rgba(145, 161, 100,0.16), 0 1px 6px #D7BFA6;
  transform: translateY(-6px) scale(1.02) rotate(-2deg);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(93deg, #E4E6DB 53%, #D7BFA6 90%);
  color: #4A4F36;
  padding: 60px 0 40px 0;
  position: relative;
  margin-bottom: 48px;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 655px;
  margin-top: 15px;
  gap: 0;
}

/* BUTTONS & LINKS */
.cta-btn, button.cta-btn, .cta-btn.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #4A4F36;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.10rem;
  padding: 14px 36px;
  border-radius: 38px;
  border: none;
  box-shadow: 0 4px 18px #6E96890A;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.07em;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 10px;
  transition: background 0.23s, color 0.23s, transform 0.15s;
  outline: none;
}
.cta-btn.secondary {
  background: #D7BFA6;
  color: #4A4F36;
  border: 1.5px solid #4A4F36;
  box-shadow: 0 2px 8px #D7BFA630;
}
.cta-btn:hover, .cta-btn:focus {
  background: #6E9689;
  color: #fff;
  transform: scale(1.045);
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: #4A4F36;
  color: #fff;
}

.read-more {
  font-family: 'Lato', sans-serif;
  color: #6E9689;
  font-weight: 700;
  border-bottom: 1.5px dashed #8CABA1;
  padding: 2.5px 0;
  transition: color 0.19s, border-color 0.19s;
}
.read-more:hover,
.read-more:focus {
  color: #4A4F36;
  border-color: #4A4F36;
}

.price {
  font-family: 'Playfair Display', serif;
  color: #6E9689;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 16px;
  letter-spacing: 0.01em;
}

/* SERVICE CARDS */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  margin-top: 8px;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 15px #6E96891A;
  padding: 28px 18px 26px 22px;
  min-width: 255px;
  max-width: 370px;
  border-left: 5px solid #4A4F36;
  margin-bottom: 20px;
  transition: box-shadow 0.25s, transform 0.17s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}

/* FEATURE GRID */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 12px;
}

/* TESTIMONIALS */
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.stars {
  font-size: 1.23rem;
  color: #D7BFA6;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.025em;
  margin-bottom: 6px;
}
.client {
  color: #6E9689;
  font-size: 0.98rem;
  font-style: italic;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  margin-top: 4px;
}

/* ABOUT & BRAND SECTIONS */
.about-section, .about-hero, .brand-features, .team-section, .process-section, .highlights-section, .legal-section, .thank-you-section, .contact-section, .inspiration-list, .blog-list {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F3EFE7;
  border-radius: 18px;
  box-shadow: 0 1px 7px #8CABA11A;
}

/* CTA SECTION */
.cta-section {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 30px #8CABA110, 0 1px 5px #F3EFE7;
  padding: 46px 30px 43px 30px;
  margin-bottom: 60px;
  margin-top: 18px;
  text-align: center;
}
.cta-section h2 {color: #4A4F36;}
.cta-section p {color: #333721;}

/* BLOG STYLES */
.blog-list ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.blog-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px #D7BFA620;
  padding: 28px 22px 14px 24px;
  border-left: 5px solid #6E9689;
  margin-bottom: 10px;
}

/* FOOTER */
footer .footer-main {
  background: #E4E6DB;
  padding: 36px 0 0 0;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: flex-start;
}
.footer-logo {
  flex: 1 0 120px;
  min-width: 110px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}
.footer-menu {
  flex: 2 1 250px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-menu a {
  color: #4A4F36;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: color 0.18s, border-bottom 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #6E9689;
  border-bottom: 1px solid #6E9689;
}
.footer-contact {
  flex: 3 1 350px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #4A4F36;
  font-size: 1rem;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 8px;
}
.footer-social img {
  width: 30px; height: 30px;
  transition: filter .23s, transform .19s;
  filter: grayscale(28%);
}
.footer-social img:hover {
  filter: none;
  transform: scale(1.13) rotate(-7deg);
}
.footer-copyright {
  padding: 18px 0 14px 0;
  text-align: center;
  color: #333721;
  font-size: 0.93rem;
  opacity: 0.85;
}

/* LEGAL SECTIONS */
.legal-section ul {
  margin-left: 1.3em;
}
.legal-section li {
  margin-bottom: 10px;
}

/* THANK YOU PAGE */
.thank-you-section {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #4A4F36;
  cursor: pointer;
  margin-left: auto;
  outline: none;
  z-index: 51;
  transition: color 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #6E9689;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFF;
  box-shadow: 0 4px 28px #D7BFA610;
  padding: 21px 0 21px 0;
  position: relative;
  z-index: 50;
}
.logo-link img {
  width: 145px; height: auto;
  display: block;
}
.desktop-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.desktop-nav a {
  color: #4A4F36;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.05rem;
  border-bottom: 2px solid transparent;
  padding: 7px 6px;
  transition: color 0.15s, border-bottom 0.19s;
}
.desktop-nav a:hover, .desktop-nav a:focus {
  color: #6E9689;
  border-bottom: 2px solid #6E9689;
}
.desktop-nav .cta-btn {
  margin-left: 18px;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(234, 232, 225, 0.97);
  z-index: 130;
  transform: translateX(100%);
  transition: transform 0.39s cubic-bezier(.78,.09,.12,1.01);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-shadow: -8px 0 30px #D7BFA640;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 27px 25px 15px 0;
  background: none;
  border: none;
  font-size: 2rem;
  color: #4A4F36;
  cursor: pointer;
  z-index: 201;
  transition: color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #6E9689;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 15px;
  margin-left: 38px;
}
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #4A4F36;
  padding: 14px 0 10px 2px;
  border-bottom: 2px solid transparent;
  transition: color .19s, border-bottom .15s;
  font-weight: 700;
  width: max-content;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #8CABA1;
  border-bottom: 2px solid #8CABA1;
}

/* COOKIE BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: #fffbe7;
  border-top: 3px solid #D7BFA6;
  box-shadow: 0 -4px 24px #6E96891A;
  padding: 28px 16px 18px 16px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  transition: transform 0.36s cubic-bezier(.81,.1,.245,1.12), opacity 0.22s;
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
}
.cookie-banner p {
  font-size: 1rem;
  color: #4A4F36;
  margin: 0;
  flex: 2 1 320px;
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-btn, .cookie-btn.accept, .cookie-btn.reject {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  border: none;
  outline: none;
  border-radius: 28px;
  padding: 9px 25px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.22s, color 0.16s, box-shadow 0.18s;
  margin-right: 4px;
  margin-bottom: 3px;
}
.cookie-btn.accept {
  background: #6E9689;
  color: #fff;
  box-shadow: 0 2px 8px #6E968934;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #4A4F36;
}
.cookie-btn.reject {
  background: #D7BFA6;
  color: #4A4F36;
  border: 1.3px solid #4A4F36;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #fff;
  color: #6E9689;
  border-color: #6E9689;
}
.cookie-btn.settings {
  background: #fff;
  color: #6E9689;
  border: 1.5px solid #6E9689;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #6E9689;
  color: #fff;
}

.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(53, 61, 41, 0.19);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.24s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 64px #6E968930, 0 2px 12px #D7BFA648;
  padding: 35px 24px 26px 24px;
  min-width: 340px;
  max-width: min(95vw, 420px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cookie-modal-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #4A4F36;
  margin-bottom: 11px;
}
.cookie-modal-content input[type="checkbox"] {
  accent-color: #6E9689;
  width: 22px; height: 22px;
}
.cookie-modal-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #6E9689;
  font-size: 1.5rem;
  cursor: pointer;
}

/* DECORATIVE UNIQUE ELEMENTS */
.hero::before {
  content: '';
  display: block;
  position: absolute;
  top: 15%; left: 64%;
  width: 110px; height: 110px;
  background: #8CABA1;
  opacity: 0.12;
  border-radius: 32% 58% 40% 80% / 50% 50% 80% 70%;
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: '';
  display: block;
  position: absolute;
  left: 5%; bottom: 0;
  width: 220px; height: 40px;
  background: #D7BFA6;
  opacity: 0.18;
  border-radius: 80% 22% 50% 80% / 55% 30% 90% 70%;
  z-index: 0;
  pointer-events: none;
}

/* CARD DECORATION */
.feature-item::after {
  content: '';
  position: absolute;
  right: 8px; bottom: 8px;
  width: 26px; height: 26px;
  background: #6E9689;
  opacity: 0.08;
  border-radius: 50% 70% 60% 35%;
  z-index: 1;
  pointer-events: none;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .content-wrapper {
    max-width: 90vw !important;
  }
  .container {
    max-width: 90vw;
  }
  .footer-contact {min-width: 230px;}
}
@media (max-width: 900px) {
  .service-cards, .feature-grid, .testimonial-cards {
    gap: 16px;
  }
  .content-wrapper, .hero .content-wrapper {
    max-width: 98vw !important;
  }
  .footer-main .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-menu {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 10px;
  }
  .footer-contact {
    margin-top: 10px;
  }
}
@media (max-width: 800px) {
  .about-section, .about-hero, .brand-features, .team-section, .process-section, .highlights-section, .legal-section, .thank-you-section, .cta-section {
    padding: 24px 7px;
  }
}
@media (max-width: 800px) {
  .service-cards, .feature-grid, .testimonial-cards {
    gap: 10px;
  }
  .footer-menu {gap: 7px;}
}
@media (max-width: 768px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    padding: 26px 0 24px 0;
    margin-bottom: 30px;
    min-height: 225px;
  }
  .hero .content-wrapper {
    padding-right: 0;
    margin-top: 0;
  }
  .section {
    padding: 22px 10px;
    margin-bottom: 32px;
  }
  .testimonial-card,
  .service-card,
  .feature-item,
  .blog-list li {
    min-width: 100%;
    max-width: 99vw;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 1em;
  }
  .cta-section {
    padding: 21px 8px;
    margin-bottom: 24px;
    border-radius: 15px;
  }
  .footer-main .content-wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .content-grid {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 600px) {
  h1 {font-size: 1.49rem;}
  h2 {font-size: 1.18rem;}
  h3 {font-size: 1rem;}
  .cta-btn, .cta-btn.secondary {
    width: 100%;
    padding: 11px 0;
    font-size: 1em;
  }
  .mobile-menu {
    padding-left: 0;
  }
  .mobile-nav a {
    font-size: 1.09rem;
    min-width: 130px;
    padding-top: 10px; padding-bottom: 10px;
  }
  .cookie-modal-content {
    padding: 16px 7px 15px 7px;
  }
}

/* MISC */
::-webkit-input-placeholder {color: #8CABA1; opacity:1;}
::-moz-placeholder {color: #8CABA1; opacity:1;}
:-ms-input-placeholder {color: #8CABA1; opacity:1;}
::placeholder {color: #8CABA1; opacity:1;}

/* UNIQUE, CREATIVE, ARTISTIC ELEMENTS */
.feature-item, .service-card {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  position: relative;
  overflow: visible;
}
.feature-item img,
.service-card img {
  width: 38px;
  margin-bottom: 8px;
  filter: drop-shadow(1.5px 1.5px 1.5px rgba(142,186,155,.12));
}
.feature-item h3,
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #4A4F36;
  margin-bottom: 3px;
  font-weight: 700;
}

ul, ol { padding-left: 1.2em; }

/* Utility spacing for vertical content separation */
.section > *, .about-section > *, .legal-section > *, .brand-features > *, .team-section > *, .contact-section > *, .cta-section > *, .hero > * {
  margin-bottom: 13px;
}
.section > *:last-child,
.about-section > *:last-child,
.legal-section > *:last-child,
.brand-features > *:last-child,
.team-section > *:last-child,
.contact-section > *:last-child,
.cta-section > *:last-child, .hero > *:last-child {margin-bottom: 0;}

::-webkit-scrollbar {
  width: 12px; background: #E4E6DB;
}
::-webkit-scrollbar-thumb {
  border-radius: 7px;
  background: #6E968932;
}

/* FOCUS OUTLINE FOR ACCESSIBILITY */
a:focus, button:focus, .cta-btn:focus, .mobile-menu-close:focus, .read-more:focus,
.cookie-btn:focus, .cookie-btn.accept:focus, .cookie-btn.reject:focus, .cookie-btn.settings:focus {
  outline: 2px solid #6E9689;
  outline-offset: 2px;
}
