/* ===============================
   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 {
  box-sizing: border-box;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #FFF;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}

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

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
b, strong {
  font-weight: 600;
}
ul, ol {
  list-style: none;
}

/* ===============================
   BRAND FONTS – luxury, premium
   =============================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500;700&display=swap');

:root {
  --brand-primary: #6D4D9C;
  --brand-primary-dark: #56407b;
  --brand-accent-gold: #F7E484;
  --brand-accent-gold-dark: #dfc942;
  --brand-white: #ffffff;
  --brand-text: #2C2244;
  --shadow-soft: 0 4px 24px rgba(44,34,68,.08);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 7px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--brand-primary);
  font-weight: 700;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 18px;
  line-height: 1.17;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  line-height: 1.2;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
.subtitle {
  color: var(--brand-primary-dark);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.125rem;
  margin-bottom: 14px;
  line-height: 1.5;
}

p {
  margin-bottom: 14px;
  font-size: 1rem;
}

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.text-section {
  margin-bottom: 12px;
}

/* =========================
   HEADER / NAVIGATION
   ========================= */
header {
  background: var(--brand-white);
  box-shadow: 0 2px 18px rgba(68,60,97,.05);
  padding: 0;
  position: relative;
  z-index: 100;
}

header .container {
  padding: 0 16px;
}
header .content-wrapper {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}
header a img {
  max-height: 40px;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav a {
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 0px;
  position: relative;
  transition: color .18s;
}
nav a:hover, nav a:focus {
  color: var(--brand-accent-gold);
}
nav a.active {
  color: var(--brand-accent-gold);
  border-bottom: 2.5px solid var(--brand-accent-gold);
}

.cta-btn {
  background: linear-gradient(96deg, var(--brand-accent-gold), var(--brand-accent-gold-dark) 89%);
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 32px;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  margin-left: 12px;
  transition: background .23s, color .18s, box-shadow .21s;
  outline: none;
  letter-spacing: .05em;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--brand-primary);
  color: var(--brand-accent-gold);
  box-shadow: 0 8px 24px rgba(109,77,156,0.07), 0 2px 8px 0 rgba(240, 227, 120, 0.11);
}

/* =========================
   MOBILE BURGER MENU
   ========================= */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--brand-primary);
  z-index: 101;
  cursor: pointer;
  margin-left: 16px;
  transition: color .18s;
}
.mobile-menu-toggle:focus {
  color: var(--brand-accent-gold);
  outline: 2px solid var(--brand-accent-gold);
}

.mobile-menu {
  display: none;
}
@media (max-width: 992px) {
  header nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--brand-white);
    z-index: 400;
    transform: translateX(-120%);
    transition: transform .35s cubic-bezier(.87,0,.13,1);
    box-shadow: 2px 0 24px rgba(109,77,156,.22);
    opacity: 0.99;
    padding-left: 0;
    padding-top: 0;
  }
  .mobile-menu.open {
    transform: translateX(0);
    transition: transform .37s cubic-bezier(.24,1.04,0,1);
  }
  .mobile-menu-close {
    background: none;
    border: none;
    color: var(--brand-primary);
    font-size: 2.1rem;
    align-self: flex-end;
    margin: 30px 34px 24px 0;
    cursor: pointer;
    padding: 0;
    transition: color .15s;
    z-index: 410;
  }
  .mobile-menu-close:focus {
    color: var(--brand-accent-gold);
    outline: 2px solid var(--brand-accent-gold);
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    margin-top: 20px;
    padding: 0 40px;
  }
  .mobile-nav a {
    font-size: 1.25rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    color: var(--brand-primary);
    padding: 22px 0 4px 0;
    border-bottom: 1px solid #ebe8f2;
    width: 100%;
    transition: color .2s, background .2s;
    margin-bottom: 6px;
    border-radius: 0;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    color: var(--brand-accent-gold);
    background: #f8f6fb;
    outline: none;
  }
}

@media (max-width: 440px) {
  .mobile-menu {
    padding-left: 0;
  }
  .mobile-nav {
    padding: 0 16px;
  }
}

/* ===========================
   FLEXBOX LAYOUTS & SPACING
   =========================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 3px 16px rgba(44,34,68,.06);
  margin-bottom: 20px;
  padding: 26px 18px;
  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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #FAF7FF;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(45,28,83,.10);
  border: 1.5px solid var(--brand-accent-gold);
  max-width: 500px;
  transition: box-shadow .21s, transform .21s;
}
.testimonial-card p {
  margin-bottom: 8px;
}
.testimonial-card b, .testimonial-card strong {
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(109,77,156,.10);
  transform: translateY(-2px) scale(1.028);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========================
   LISTS, ICONS & FEATURES
   ======================== */
ul {
  margin-bottom: 12px;
}
ul li {
  padding-left: 0;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--brand-text);
}
ul li img {
  width: 28px;
  height: 28px;
  filter: grayscale(0) brightness(0.85) drop-shadow(0px 1.5px 0.5px #e6dbb1);
  margin-right: 3px;
}
.section ul {
  margin-top: 4px;
}
section h3 span {
  background: var(--brand-accent-gold);
  color: var(--brand-primary);
  border-radius: var(--radius-sm);
  padding: 2px 11px 2px 9px;
  font-size: 1rem;
  margin-left: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

/* ==========================
   BUTTONS & INTERACTIONS
   ========================== */
button, .cta-btn, input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background .19s, color .17s, box-shadow .15s;
}
button:disabled, input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ==========================
   FOOTER
   ========================== */
footer {
  background: var(--brand-primary);
  color: var(--brand-accent-gold);
  padding: 36px 0 0 0;
  border-top: 2px solid var(--brand-accent-gold-dark);
}
footer .container {
  padding: 0 18px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 32px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: var(--brand-accent-gold);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 4px;
  opacity: 0.98;
}
footer nav a:hover, footer nav a:focus {
  color: var(--brand-white);
  text-decoration: underline;
}
footer .text-section {
  color: var(--brand-accent-gold);
  font-size: 0.98rem;
  opacity: 0.97;
  line-height: 1.5;
}

@media (max-width: 768px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
  }
}

/* =========================
   RESPONSIVENESS
   ========================= */
@media (max-width: 992px) {
  .container {
    max-width: 100%;
    padding: 0 6vw;
  }
  .section {
    padding: 34px 10px;
    margin-bottom: 44px;
  }
  h1 {
    font-size: 1.67rem;
  }
  h2 {
    font-size: 1.27rem;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 7px;
  }
  .section {
    padding: 20px 2px 24px 2px;
    margin-bottom: 33px;
  }
  h1 {
    font-size: 1.29rem;
  }
  h2, .subtitle {
    font-size: 1.08rem;
  }
}

/* =========================
   COOKIE CONSENT BANNER
   ========================= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: rgba(253,252,249,0.99);
  border-top: 2px solid var(--brand-accent-gold);
  box-shadow: 0 -2px 30px rgba(44,34,68,.18);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 10000;
  padding: 20px 34px 20px 24px;
  animation: ccb-slidein 0.55s cubic-bezier(.77,0,.18,1);
}
@keyframes ccb-slidein { from { transform: translateY(200px); opacity: 0; } to { transform: none; opacity: 1; } }
.cookie-banner .cookie-banner-text {
  color: var(--brand-text);
  font-size: 1rem;
  max-width: 550px;
  margin-right: 22px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 23px;
  margin: 0 2px;
  border-radius: var(--radius-md);
  background: var(--brand-accent-gold);
  color: var(--brand-primary);
  border: none;
  box-shadow: 0 2px 8px rgba(68,60,97,.07);
  transition: background .17s, color .13s, box-shadow .14s;
  cursor: pointer;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: var(--brand-primary);
  color: var(--brand-accent-gold);
}
.cookie-btn.secondary {
  background: var(--brand-primary);
  color: var(--brand-accent-gold);
}
.cookie-btn.secondary:focus, .cookie-btn.secondary:hover {
  background: var(--brand-accent-gold-dark);
  color: var(--brand-primary);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    padding: 24px 3vw 14px 3vw;
    gap: 18px;
    align-items: flex-start;
  }
  .cookie-banner .cookie-banner-text {
    margin-bottom: 8px;
  }
}

/* =========================
   COOKIE PREFERENCES MODAL
   ========================= */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44,34,68,0.37);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ccb-fadein 0.35s cubic-bezier(.4,0,.6,1);
}
@keyframes ccb-fadein { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: #fffdfa;
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 48px rgba(44,34,68,.11);
  max-width: 375px;
  width: 92vw;
  padding: 38px 24px 32px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: ccb-modalup 0.36s cubic-bezier(.36,1.06,.09,1);
}
@keyframes ccb-modalup { from { transform: scale(0.75) translateY(70px); opacity: 0; } to { transform: none; opacity: 1; } }
.cookie-modal h2 {
  color: var(--brand-primary);
  font-size: 1.2rem;
  margin-bottom: 2px;
}
.cookie-modal .cookie-categories {
  margin: 17px 0 20px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 10px 0 10px 0;
  border-bottom: 1px solid #ece6e8;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category .cookie-toggle {
  margin-left: auto;
}
.cookie-category p {
  margin-bottom: 0;
  margin-top: 0;
  color: var(--brand-primary-dark);
  font-size: 1rem;
}
.cookie-toggle-switch {
  width: 40px;
  height: 22px;
  border-radius: 11px;
  background: #ece6e8;
  position: relative;
  cursor: pointer;
  transition: background .2s;
  flex-shrink: 0;
  border: 1.5px solid var(--brand-accent-gold);
}
.cookie-toggle-switch.enabled {
  background: var(--brand-accent-gold);
  border-color: var(--brand-primary);
}
.cookie-toggle-handle {
  position: absolute;
  top: 2.5px;
  left: 2px;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  transition: left .19s, background .14s;
}
.cookie-toggle-switch.enabled .cookie-toggle-handle {
  left: 21px;
  background: var(--brand-primary);
}
.cookie-modal-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}
.cookie-modal-close {
  position: absolute;
  top: 19px;
  right: 23px;
  background: none;
  border: none;
  color: var(--brand-primary);
  font-size: 1.45rem;
  cursor: pointer;
  transition: color .17s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  color: var(--brand-accent-gold);
  outline: none;
}

/* =========================
   LUXURY/PREMIUM DETAILS
   ========================= */
hr, .divider {
  border: none;
  border-top: 1.5px solid var(--brand-accent-gold);
  margin: 36px 0;
}
.card, .testimonial-card {
  border: 1.5px solid var(--brand-accent-gold);
}
.card {
  background: linear-gradient(98deg,#fff 85%, #f7f4ff 100%);
}

/* Buttons with gold outlines */
.outline-gold {
  background: #fff;
  color: var(--brand-primary);
  border: 2px solid var(--brand-accent-gold);
  border-radius: var(--radius-md);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 26px;
  transition: background .16s, color .18s;
}
.outline-gold:hover, .outline-gold:focus {
  background: var(--brand-accent-gold);
  color: var(--brand-primary);
}

/* =========================
   MICRO-INTERACTIONS
   ========================= */
a, .cta-btn, button, .card, .testimonial-card {
  transition: box-shadow .22s, color .14s, background .16s, transform .21s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(109,77,156,.10);
  transform: translateY(-2px) scale(1.015);
  border-color: var(--brand-primary);
}

/* =========================
   UTILITIES & ACCESSIBILITY
   ========================= */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; border: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; clip-path: inset(50%); }

/* Success/confirmation alert for thank you page */
.alert-success {
  color: var(--brand-primary);
  background: #F7E48411;
  border: 1.3px solid var(--brand-accent-gold);
  border-radius: var(--radius-md);
  padding: 20px;
  font-size: 1.2rem;
  text-align: center;
}

/* =========================
   PRINT MINIMAL STYLESHEET
   ========================= */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body, main, .container { background: #fff!important; color: #222!important; }
}
