/* RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F3E6E8;
  color: #321D29;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin: 0 0 16px 18px;
  padding-left: 0;
}
ol {
  list-style-type: decimal;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #321D29;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; line-height: 1.1; }
h2 { font-size: 2rem; margin-bottom: 16px; line-height: 1.2; }
h3 { font-size: 1.4rem; margin-bottom: 10px; line-height: 1.3; }
h4, h5, h6 { margin-bottom: 10px; }
p { margin-bottom: 14px; }
a {
  color: #B45765;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #c06d7a;
  text-decoration: underline;
}
strong {
  font-weight: 700;
}
small {
  font-size: 0.85em;
  color: #A27886;
}

/* CONTAINER PATTERNS */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0px 4px 24px 0px rgba(192, 109, 122, 0.05);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 12px rgba(192,109,122,0.12);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff9fa;
  border-radius: 18px;
  box-shadow: 0 1px 7px rgba(192,109,122,0.08);
  margin-bottom: 20px;
  color: #321D29;
  transition: box-shadow 0.3s, transform 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px rgba(192, 109, 122, 0.16);
  transform: translateY(-3px) scale(1.01);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* HERO */
.hero {
  background: linear-gradient(110deg, #F3E6E8 65%, #fff4f6 100%);
  padding: 60px 0 40px 0;
  border-radius: 0 0 36px 36px;
  box-shadow: 0px 4px 32px rgba(192,109,122,.1);
  margin-bottom: 40px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  font-size: 2.5rem;
  color: #321D29;
  letter-spacing: -1px;
}
.hero h2 {
  font-family: 'Lato', Arial, sans-serif;
  color: #B45765;
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.hero .cta-btn {
  margin-top: 18px;
}

/* BUTTONS */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  background: #B45765;
  color: #fff;
  border: none;
  border-radius: 22px;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 600;
  letter-spacing: .03em;
  cursor: pointer;
  box-shadow: 0px 1px 8px rgba(192,109,122,0.09);
  transition: background 0.18s, box-shadow 0.18s, transform 0.16s;
  text-decoration: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #c06d7a;
  box-shadow: 0 4px 18px rgba(192,109,122,.18);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* NAV */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 16px 18px 16px 14px;
  background: #fff;
  box-shadow: 0 1px 8px rgba(192,109,122,0.07);
  border-radius: 0 0 18px 18px;
  z-index: 10;
  position: relative;
}
.main-nav img {
  height: 46px;
}
.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin: 0;
}
.main-nav ul li {
  display: flex;
}
.main-nav ul li a {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #321D29;
  padding: 6px 13px;
  border-radius: 12px;
  transition: background 0.19s, color 0.18s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: #F3E6E8;
  color: #B45765;
}
/* Hide nav on mobile, replaced by mobile menu */
@media (max-width: 900px) {
  .main-nav ul, .main-nav .cta-btn { display: none; }
}

/* MOBILE MENU */
.mobile-menu-toggle {
  position: fixed;
  top: 18px;
  right: 22px;
  background: #B45765;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  z-index: 1021;
  cursor: pointer;
  box-shadow: 0px 2px 12px rgba(192,109,122,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, box-shadow 0.18s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #c06d7a;
}
@media (min-width: 901px) {
  .mobile-menu-toggle { display: none; }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(50,29,41,0.87);
  z-index: 1020;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.7,.2,.25,1), opacity 0.18s;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: #B45765;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-self: flex-end;
  margin: 16px 18px 18px 0;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(192,109,122,0.14);
  transition: background 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #c06d7a;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 0 34px;
  margin-top: 16px;
}
.mobile-nav a {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.19rem;
  font-weight: 600;
  color: #fff;
  padding: 13px 0;
  border-radius: 14px;
  width: 100%;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F3E6E8;
  color: #B45765;
}
@media (min-width: 901px) {
  .mobile-menu { display: none!important; }
}

/* FOOTER */
footer {
  background: #F3E6E8;
  padding: 28px 0 10px 0;
  box-shadow: 0 -1px 10px rgba(192,109,122,0.04);
  border-radius: 18px 18px 0 0;
  margin-top: 50px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #B45765;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  text-decoration: underline;
  color: #321D29;
}
footer p {
  font-size: .98rem;
  color: #A27886;
}

/* TABLES */
table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 18px;
  background: #fff8fa;
  box-shadow: 0 1px 8px rgba(192,109,122,0.08);
}
thead {
  background: #F3E6E8;
}
th, td {
  padding: 12px 15px;
  text-align: left;
  font-size: 1rem;
}
th {
  color: #B45765;
  font-weight: 700;
}
td {
  border-bottom: 1px solid #f3e6e8;
}
tr:last-child td {
  border-bottom: none;
}

/* MICRO-ANIMATIONS */
.card, .testimonial-card, .cta-btn, .mobile-menu, .mobile-menu-toggle, .mobile-nav a, .main-nav ul li a {
  transition: box-shadow 0.18s, transform 0.14s, background 0.16s, color 0.16s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(192,109,122,0.20);
  transform: translateY(-3px) scale(1.015);
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff8fa;
  color: #321D29;
  box-shadow: 0 -1px 16px rgba(192,109,122,0.08);
  padding: 28px 22px;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 1rem;
  border-radius: 24px 24px 0 0;
  transition: transform 0.35s cubic-bezier(.67,.3,.47,1), opacity 0.21s;
}
.cookie-consent-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-consent-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-consent-btn {
  background: #B45765;
  color: #fff;
  border: none;
  border-radius: 15px;
  padding: 9px 22px;
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0px 1px 5px rgba(192,109,122,0.08);
  transition: background 0.17s, transform 0.14s;
  outline: none;
}
.cookie-consent-btn.secondary {
  background: #fff;
  border: 1px solid #B45765;
  color: #B45765;
}
.cookie-consent-btn:hover, .cookie-consent-btn:focus {
  background: #c06d7a;
  color: #fff;
  transform: translateY(-1px) scale(1.03);
}
.cookie-consent-btn.secondary:hover, .cookie-consent-btn.secondary:focus {
  background: #F3E6E8;
  color: #B45765;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(50,29,41,.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  transition: opacity 0.22s;
}
.cookie-modal {
  background: #fff;
  color: #321D29;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(192,109,122,0.23);
  max-width: 96vw;
  width: 380px;
  padding: 34px 28px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  animation: cookie-pop 0.24s cubic-bezier(.4,1.3,.50,1) both;
}
@keyframes cookie-pop {
  0% { opacity: 0; transform: scale(0.86) translateY(45px); }
  85% { opacity: 1; transform: scale(1.07) translateY(-9px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h3 {
  font-size: 1.3rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}
.cookie-modal-close {
  position: absolute;
  right: 19px;
  top: 18px;
  background: #fff;
  color: #B45765;
  border: none;
  font-size: 1.7rem;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  line-height: 34px;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-modal-close:hover {
  background: #f7ecee;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 17px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  padding: 10px 0;
  border-bottom: 1px solid #f3e6e8;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-switch,
.cookie-switch input[type="checkbox"] {
  appearance: none;
  outline: none;
  margin: 0;
  padding: 0;
}
.cookie-switch {
  display: flex;
  align-items: center;
  width: 38px;
  height: 22px;
  background: #fadbe0;
  border-radius: 11px;
  cursor: pointer;
  position: relative;
  transition: background 0.15s;
}
.cookie-switch input[type="checkbox"] {
  position: absolute;
  width: 100%; height: 100%; left: 0; top: 0;
  opacity: 0;
  cursor: pointer;
}
.cookie-switch .slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.15s, background 0.14s;
  box-shadow: 0 1px 6px rgba(192,109,122,0.13);
}
.cookie-switch input[type="checkbox"]:checked ~ .slider {
  left: 18px;
  background: #B45765;
}
.cookie-switch input[type="checkbox"]:disabled ~ .slider {
  background: #d2c2c9;
}
.cookie-category[data-essential] .cookie-switch {
  background: #ffe5ea;
}
.cookie-category[data-essential] label {
  color: #B45765;
  cursor: not-allowed;
}
.cookie-category[data-essential] input[type="checkbox"] {
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
  margin-top: 16px;
}
/* [ End Cookie Components ] */

/* LISTS */
ul, ol {
  padding-left: 22px;
  margin-bottom: 18px;
  color: #321D29;
}
ul li, ol li {
  margin-bottom: 9px;
  font-size: 1rem;
  line-height: 1.6;
}
ul li:last-child, ol li:last-child { margin-bottom: 0; }

/* HEADERS */
header {
  background: transparent;
  position: relative;
  z-index: 103;
}

/* SECTIONS */
section {
  width: 100%;
  margin-bottom: 60px;
  display: flex;
}
section:last-child {
  margin-bottom: 0;
}

/* FORM ELEMENTS */
input[type='text'], input[type='email'], textarea, select {
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.8px solid #fadbe0;
  border-radius: 10px;
  background: #fff;
  font-family: 'Lato', Arial, sans-serif;
  margin-bottom: 16px;
  box-shadow: 0 1px 3px rgba(192,109,122,0.04);
  transition: border 0.13s, box-shadow 0.11s;
}
input[type='text']:focus, input[type='email']:focus, textarea:focus, select:focus {
  border: 1.8px solid #B45765;
  box-shadow: 0 2px 12px rgba(192,109,122,0.08);
}
button:focus, .cta-btn:focus {
  outline: 2px solid #B45765;
  outline-offset: 2px;
}

/* SOCIAL / DECORATIVE ICONS */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff9fa;
  color: #B45765;
  font-size: 1.25rem;
  width: 34px;
  height: 34px;
}

/* TYPOGRAPHY SCALE & RULES */
.display {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 18px;
  color: #321D29;
}
.subtitle {
  font-size: 1.35rem;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 500;
  color: #B45765;
}

/* RESPONSIVE (Mobile First) ------------------- */
@media (max-width: 768px) {
  .container { padding: 0 12px; }
  .section, section { padding: 28px 10px; gap: 18px; }
  .hero { padding: 32px 0 18px 0; border-radius: 0 0 18px 18px; }
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.2rem; }
  .cta-btn { width: 100%; justify-content: center; font-size: 1rem; padding: 11px 8px; }
  .testimonial-card { flex-direction: column; align-items: flex-start; gap: 8px; padding: 13px 8px; font-size: 1rem; }
  .main-nav { padding: 12px 8px 10px 7px; gap: 10px; }
  .footer-nav { gap: 11px; font-size: .98rem; }
  .mobile-menu-toggle { top: 12px; right: 10px; width: 40px; height: 40px; font-size: 1.55rem; }
  .mobile-menu-close { width: 36px; height: 36px; font-size: 1.17rem; }
  table th, table td { font-size: 0.95rem; padding: 8px 7px; }
}

@media (max-width: 430px) {
  .section, section {
    padding: 14px 3px; gap: 15px;
    margin-bottom: 34px;
  }
  .hero { padding-top: 18px; padding-bottom: 9px; }
  .cta-btn { padding: 8px 0; font-size: .99rem; border-radius: 16px; }
  .mobile-nav a { padding: 8px 0; }
  .testimonial-card { font-size: 0.95rem; }
}

/* FLEX DIRECTION SWITCHES */
@media (max-width: 768px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .feature-item { gap: 11px; }
}

/* Hide cookie modal/overlay when not active */
.cookie-modal-overlay[hidden] { display: none!important; }

/* Z-Index Management */
header, .main-nav, .mobile-menu-toggle { z-index: 1001; }
.mobile-menu { z-index: 1021; }
footer { z-index: 2; }
/* Utility Spacing (for custom layouts) */
.spacer-20 { height: 20px; width: 100%; }
.spacer-40 { height: 40px; width: 100%; }

/* ACCESSIBILITY FOCUS STATE */
a:focus, button:focus, .cta-btn:focus, .cookie-consent-btn:focus {
  outline: 2px solid #B45765;
  outline-offset: 2px;
}

/* END STYLES */
