/* RESET & BASE TYPOGRAPHY ------------------------------------------------ */
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #233242;
  background: #F6F6F9;
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: #233242;
  margin-bottom: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 10px; }
h4, h5, h6 { margin-bottom: 8px; font-size: 1.1rem; }
p, ul, ol, blockquote {
  margin-bottom: 18px;
  font-size: 1rem;
}
ul, ol {
  padding-left: 24px;
}
a {
  color: #E2A6B4;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus { color: #BB7C95; text-decoration: underline; }
blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  color: #233242;
  padding-left: 18px;
  border-left: 3px solid #E2A6B4;
  font-style: italic;
}
cite {
  display: block;
  margin-top: 10px;
  font-size: 0.95rem;
  color: #9B9B9B;
  font-family: 'Montserrat', Arial, sans-serif;
}
hr {
  border: none;
  border-top: 1px solid #E2A6B4;
  margin: 32px 0;
}

button, .cta, .mobile-menu-close, .mobile-menu-toggle {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  cursor: pointer;
}
input, textarea {
  font-family: inherit;
}

strong { font-weight: 700; }
em { font-style: italic; }

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

/* HEADER & MAIN NAV ---------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(35,50,66,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 12px 0;
  gap: 28px;
}
.main-nav a img {
  height: 44px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.main-nav ul li a {
  padding: 7px 2px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  color: #233242;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-bottom 0.18s;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  color: #E2A6B4;
  border-bottom: 2px solid #E2A6B4;
}
.main-nav .cta.primary {
  margin-left: 22px;
}

/* CTA BUTTONS ---------------------------------------------------------- */
.cta {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 32px;
  border: none;
  transition: all 0.18s cubic-bezier(.44,.38,.17,.94);
  font-size: 1.09rem;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(35,50,66,0.07);
  text-align: center;
}
.cta.primary {
  background: #E2A6B4;
  color: #233242;
  border: 1.5px solid #E2A6B4;
}
.cta.primary:hover, .cta.primary:focus {
  background: #f5d3db;
  color: #233242;
  border-color: #BB7C95;
  box-shadow: 0 4px 16px rgba(226,166,180,0.20);
}
.cta.secondary {
  background: transparent;
  color: #E2A6B4;
  border: 1.5px solid #E2A6B4;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #E2A6B4;
  color: #fff;
}
.cta.small {
  font-size: 0.96rem;
  padding: 8px 26px;
  border-radius: 28px;
  margin-top: 6px;
}

/* HERO SECTION --------------------------------------------------------- */
.hero {
  background: #F6F6F9;
  padding: 44px 0 16px 0;
  margin-bottom: 60px;
  display: flex;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero h1 {
  color: #233242;
  font-size: 2.4rem;
  margin-bottom: 14px;
}
.hero p {
  font-size: 1.17rem;
  color: #4B4F56;
  max-width: 670px;
}
.hero .cta {
  margin-top: 28px;
}

/* SECTIONS GENERIC SPACING/LAYOUT (MANDATORY) ------------------------- */
.section,
.features, .about, .services, .contact, .testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { background: #fff; border-radius: 18px; box-shadow: 0 4px 20px rgba(35,50,66,0.06); padding: 30px 26px; margin-bottom: 20px; position: relative; transition: box-shadow 0.18s; }
.card:hover { box-shadow: 0 8px 32px rgba(226,166,180,0.17); }
.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;
}

/******** Feature List Styling ********/
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  list-style: none;
  margin-top: 14px;
}
.features ul li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(35,50,66,0.04);
  flex: 1 1 260px;
  min-width: 210px;
  padding: 30px 20px 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s;
}
.features ul li:hover {
  box-shadow: 0 8px 32px rgba(226,166,180,0.15);
}
.features ul li img {
  width: 44px;
  height: 44px;
  margin-bottom: 4px;
}
.features ul li h3, .features ul li strong {
  font-size: 1.23rem;
  font-family: 'Playfair Display', serif;
  color: #233242;
  margin-bottom: 6px;
}
.features ul li p, .features ul li span {
  color: #4B4F56;
  font-size: 1.03rem;
}

/******** Services Section ********/
.services ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  margin-top: 12px;
}
.services ul li {
  background: #fff;
  border-radius: 15px;
  padding: 24px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(35,50,66,0.04);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.services ul li strong {
  font-size: 1.11rem;
  color: #233242;
  font-family: 'Playfair Display', serif;
}
.services ul li span {
  font-size: 1rem;
  color: #4B4F56;
}
.services ul li em {
  color: #E2A6B4;
  font-style: italic;
  font-size: 0.98rem;
  margin-top: 4px;
}

/* Text Section / About Section  -------------------------------------- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 800px;
}
.text-section ul {
  list-style: disc inside;
  gap: 14px;
  display: flex;
  flex-direction: column;
}
.text-section p {
  color: #233242;
}

.about {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(35,50,66,0.05);
}

/* TESTIMONIALS ------------------------------------------------------ */
.testimonials {
  background: #F6F6F9;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(35,50,66,0.05);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials .content-wrapper {
  gap: 29px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 22px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(35,50,66,0.06);
  margin-bottom: 20px;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(226,166,180,0.12);
}
.testimonial-card blockquote {
  color: #233242;
}
.testimonial-card cite {
  color: #9B9B9B;
}

/* CONTACT SECTION --------------------------------------------------- */
.contact .text-section {
  margin-top: 4px;
  font-size: 1.05rem;
}
.contact a.cta {
  margin-top: 15px;
}
.contact .text-section a {
  color: #E2A6B4;
  word-break: break-all;
}

/* FOOTER ------------------------------------------------------------ */
footer {
  background: #233242;
  color: #fff;
  padding: 42px 0 18px 0;
  box-shadow: 0 -2px 15px rgba(35,50,66,0.08);
  font-size: 1rem;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 18px;
}
.footer-links a {
  color: #fff;
  font-size: 1rem;
  opacity: 0.9;
  transition: color 0.15s, opacity 0.18s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #E2A6B4;
  opacity: 1;
}
.newsletter-signup {
  flex: 1 1 230px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
}
.newsletter-signup p {
  color: #fff;
  font-size: 1.03rem;
}
.newsletter-signup .cta.small {
  background: #E2A6B4;
  color: #233242;
  border: none;
  box-shadow: 0 1px 13px rgba(226,166,180,0.12);
  transition: background 0.16s, color 0.15s;
}
.newsletter-signup .cta.small:hover {
  background: #fff;
  color: #E2A6B4;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.social-links a img {
  width: 32px;
  height: 32px;
  opacity: 0.85;
  transition: opacity 0.15s;
}
.social-links a:hover img {
  opacity: 1;
  filter: drop-shadow(0 3px 8px rgba(226,166,180,0.11));
}

/* MOBILE NAVIGATION -------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: #E2A6B4;
  border: none;
  color: #233242;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  right: 18px;
  z-index: 1200;
  box-shadow: 0 2px 10px rgba(35,50,66,0.08);
  transition: box-shadow 0.15s, background 0.18s;
}
.mobile-menu-toggle:active {
  background: #f5d3db;
}
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,50,66,0.92);
  backdrop-filter: blur(4px);
  transition: transform 0.4s cubic-bezier(.46,1.2,.58,1.0);
  transform: translateX(-100%);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  animation: slideInMenu 0.38s cubic-bezier(.30,1.20,.28,.90);
}
@keyframes slideInMenu {
  from { transform: translateX(-100%); }
  to { transform: translateX(0%); }
}
.mobile-menu-close {
  background: transparent;
  color: #E2A6B4;
  border: none;
  font-size: 2.2rem;
  position: absolute;
  top: 16px;
  right: 24px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 2020;
  border-radius: 50%;
  transition: background 0.13s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #fff;
  color: #233242;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  margin-top: 106px;
  padding: 0 40px 40px 40px;
  box-sizing: border-box;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.4rem;
  font-family: 'Playfair Display', Georgia, serif;
  padding: 12px 0;
  border-bottom: 1px solid rgba(226,166,180, 0.08);
  transition: color 0.19s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E2A6B4;
}

@media (max-width: 991px) {
  .main-nav ul { gap: 16px; }
  .main-nav .cta.primary { margin-left: 8px; padding: 10px 22px; font-size: 1rem; }
  .footer-links { gap: 14px; }
  .container { padding: 0 10px; }
}
@media (max-width: 820px) {
  .hero h1 { font-size: 1.7rem; }
  h2 { font-size: 1.13rem; }
  .card, .features ul li, .services ul li, .about, .testimonials {
    padding: 16px 10px;
  }
}
@media (max-width: 768px) {
  .main-nav ul, .main-nav .cta.primary {
    display: none;
  }
  .main-nav {
    padding: 20px 0 10px 0;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .container {
    padding: 0 8px;
    max-width: 100vw;
  }
  .footer-links, footer .container, .social-links, .newsletter-signup {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  footer .container { gap: 20px; }
  .newsletter-signup { margin-bottom: 0; }
  .hero .content-wrapper, .content-wrapper, .text-section {
    align-items: flex-start;
    text-align: left;
  }
  .hero {
    padding: 26px 0 8px 0;
  }
  .features ul {
    flex-direction: column;
    gap: 18px;
  }
  .card-container, .content-grid, .card {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.2rem; }
  h2 { font-size: 1rem; }
  .cta, .cta.primary, .cta.secondary, .cta.small {
    font-size: 0.95rem;
    padding: 10px 16px;
  }
  .mobile-nav {
    margin-top: 76px;
    padding: 0 12px 24px 12px;
  }
}

/* COOKIE CONSENT BANNER ---------------------------------------------- */
.cookie-banner {
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3050;
  background: #fff;
  box-shadow: 0 -2px 20px rgba(35,50,66,0.09);
  padding: 22px 12px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 1rem;
  animation: slideCookieIn 0.42s cubic-bezier(.32,1.2,.51,.87);
}
@keyframes slideCookieIn {
  from { transform: translateY(80px); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-banner__text {
  flex: 2 1 320px;
  color: #233242;
}
.cookie-banner__buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 22px;
  border-radius: 22px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(35,50,66,0.06);
  transition: background 0.15s, color 0.15s;
  margin-right: 6px;
}
.cookie-btn.accept {
  background: #233242;
  color: #fff;
}
.cookie-btn.accept:hover {
  background: #E2A6B4;
  color: #233242;
}
.cookie-btn.reject {
  background: #fff;
  color: #E2A6B4;
  border: 1.3px solid #E2A6B4;
}
.cookie-btn.reject:hover {
  background: #E2A6B4;
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: #233242;
  border: 1.3px solid #233242;
}
.cookie-btn.settings:hover {
  background: #233242;
  color: #fff;
}

/* Cookie Modal ----------- */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 3100;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,50,66, 0.55);
  display: none;
  align-items: flex-end;
  justify-content: center;
  transition: background 0.18s;
}
.cookie-modal-backdrop.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 0 35px rgba(35,50,66,0.25);
  padding: 32px 32px 26px 32px;
  max-width: 440px;
  width: 100%;
  animation: slideUpModal 0.34s cubic-bezier(.35,1.4,.62,1.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
@keyframes slideUpModal {
  from { transform: translateY(120px); opacity:0; }
  to   { transform: translateY(0);  opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.36rem;
  color: #233242;
  margin-bottom: 8px;
}
.cookie-modal__category {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cookie-modal__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #233242;
  font-family: 'Montserrat', Arial,sans-serif;
}
.cookie-modal__toggle {
  accent-color: #E2A6B4;
  margin-right: 4px;
}
.cookie-modal__category[data-essential] .cookie-modal__toggle {
  pointer-events: none;
  opacity: 0.5;
}
.cookie-modal__desc {
  font-size: 0.93rem;
  color: #4B4F56;
}
.cookie-modal__actions {
  align-self: flex-end;
  display: flex;
  gap: 15px;
}
.cookie-modal__close {
  position: absolute;
  top: 11px;
  right: 19px;
  background: none;
  color: #E2A6B4;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 4750;
}
.cookie-modal__close:hover {
  background: #eee;
  color: #233242;
}

@media (max-width: 520px) {
  .cookie-modal {
    padding: 18px 6px 11px 14px;
    max-width: 98vw;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 12px 5px;
    font-size: 0.95rem;
  }
}

/* MISCELLANEOUS ------------------------------------------------------ */
::-webkit-scrollbar {
  width: 8px;
  background: #F6F6F9;
}
::-webkit-scrollbar-thumb {
  background: #E2A6B4;
  border-radius: 8px;
}
::-webkit-input-placeholder { color: #B6B6B6; }
::-moz-placeholder { color: #B6B6B6; }
:-ms-input-placeholder { color: #B6B6B6; }
::placeholder { color: #B6B6B6; }

/* SELECTION COLOR ---------------------*/
::selection {
  background: #E2A6B4;
  color: #fff;
}

/* FORM FIELDS -------------------------------------------------------- */
input, textarea {
  background: #fff;
  border: 1.5px solid #E2A6B4;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 1rem;
  color: #233242;
  margin-bottom: 16px;
  transition: border 0.17s;
}
input:focus, textarea:focus {
  outline: none;
  border-color: #233242;
}

/* CONSISTENCY/LAYOUT OVERRIDES --------------------------------------- */
.section + .section, .features + .about, .about + .services, .testimonials + .about, .about + .contact, .features + .services, .services + .features, .services + .contact, .contact + .features {
  margin-top: 40px;
}
.card + .card, .testimonial-card + .testimonial-card, .features ul li + .features ul li, .services ul li + .services ul li {
  margin-top: 20px;
}

/* VISUAL EFFECTS ----------------------------------------------------- */
.card, .features ul li, .services ul li, .testimonial-card, .about {
  box-shadow: 0 2px 14px rgba(35,50,66,0.07);
  transition: box-shadow 0.15s, transform 0.13s;
}
.card:hover, .features ul li:hover, .services ul li:hover {
  box-shadow: 0 6px 32px rgba(226,166,180,0.13);
  transform: translateY(-4px) scale(1.012);
}
.testimonial-card:hover {
  box-shadow: 0 6px 20px rgba(226,166,180,0.10);
}

/**** REMOVE UNWANTED OVERLAPS ON WRAPPING ****/
.card-container, .content-grid, .features ul {
  gap: 24px;
  margin-bottom: 20px;
}

/**** INTERACTIVE BUTTONS/FOCUS OUTLINE ****/
button:focus, .cta:focus, a:focus {
  outline: 2px solid #E2A6B4;
  outline-offset: 2px;
}
