/* ----------------------------------------------------
   Lunar Crypt - Gradient Modern CSS Theme (Mobile First)
   Author: Senior CSS Developer & UI Designer
-------------------------------------------------------
*/
/* CSS RESET + NORMALIZATION */
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;
  background: none;
  box-sizing: border-box;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}
footer span {
  color: white !important;
}
body {
  min-height: 100vh;
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.6;
  background: #F2EDEB; /* fallback for gradient */
  background: linear-gradient(135deg, #F2EDEB 0%, #E7ECEF 40%, #B7D3DF 100%);
  color: #252447;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #252447;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
a:hover, a:focus {
  color: #7DC3B8;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
  outline: none;
  border: none;
  background: none;
}
:focus {
  outline: 2px solid #7DC3B8;
  outline-offset: 2px;
}

/* TYPOGRAPHY SCALE */
h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 20px;
  color: #252447;
}
h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 600;
  color: #252447;
}
h3 {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #252447;
  margin-bottom: 8px;
}
p, li, span, .text-section {
  font-size: 1rem;
  color: #252447;
}
strong {
  font-weight: 600;
  color: #252447;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.25rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  p, li, .text-section {
    font-size: 1.125rem;
  }
}

/* CONTAINER & LAYOUT UTILITY */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-start;
}

/* SECTIONS SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media (min-width: 1024px) {
  section {
    padding: 60px 0 60px 0;
    margin-bottom: 80px;
  }
}

/* FLEXBOX CONTENT LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(37,36,71,0.07),0 0.5px 4px 0 rgba(57,140,129,0.03);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  max-width: 400px;
  padding: 24px 20px;
  transition: box-shadow 0.35s, transform 0.25s;
}
.card:hover {
  box-shadow: 0 6px 30px 0 rgba(37,36,71,0.13),0 1px 10px 0 rgba(57,140,129,0.07);
  transform: translateY(-6px) scale(1.015);
}
.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: 20px;
    align-items: stretch;
  }
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 0 20px 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2.5px 24px 0 rgba(37,36,71,0.08),0 1px 6px 0 rgba(57,140,129,0.05);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 600px;
  color: #252447;
}
.testimonial-card p {
  color: #252447;
  font-size: 1.15em;
  font-style: italic;
  margin-bottom: 4px;
}
.testimonial-card strong {
  color: #252447;
  font-weight: 600;
}
@media (min-width: 768px) {
  .testimonial-card {
    flex-direction: row;
    align-items: center;
    gap: 32px;
    padding: 28px 32px;
  }
}

/* MAIN NAVIGATION */
header {
  width: 100%;
  background: linear-gradient(120deg, #252447 0%, #7DC3B8 85%);
  box-shadow: 0 7px 20px -13px #25244733;
  position: relative;
  z-index: 50;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  padding: 12px 12px;
}
.main-nav a {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1rem;
  color: #fff;
  font-weight: 400;
  transition: color 0.15s, background 0.3s;
  padding: 7px 14px;
  border-radius: 7px;
}
.main-nav a.cta-btn {
  background: #7DC3B8;
  color: #252447;
  font-weight: 600;
  margin-left: 8px;
  transition: background 0.25s, color 0.25s;
  box-shadow: 0 2px 16px 0 rgba(37,36,71,0.12);
}
.main-nav a.cta-btn:hover {
  background: #fff;
  color: #252447;
  box-shadow: 0 4px 25px 0 rgba(37,36,71,0.19);
}
.main-nav a:hover:not(.cta-btn) {
  background: rgba(255,255,255,0.10);
}
.main-nav img {
  height: 40px;
  margin-right: 16px;
  vertical-align: middle;
}
@media (max-width: 990px) {
  .main-nav a:not(:first-child) {
    display: none;
  }
  .main-nav img {
    margin-right: 0;
  }
}

/* HAMBURGER MENU (MOBILE) */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: #fff;
  color: #252447;
  border-radius: 8px;
  border: none;
  width: 48px;
  height: 48px;
  margin: 10px 18px 10px auto;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 102;
  transition: background 0.2s,color 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #7DC3B8;
  color: #252447;
}
@media (min-width: 990px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 90vw;
  max-width: 360px;
  height: 100vh;
  background: #fff;
  box-shadow: -8px 0 30px 0 #25244725;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.40s cubic-bezier(.58,.12,.26,1.11);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #F2EDEB;
  color: #252447;
  border-radius: 100%;
  font-size: 2rem;
  padding: 3px 13px 0 13px;
  margin: 16px 16px 4px 0;
  border: none;
  transition: background 0.2s,color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #7DC3B8;
  color: #252447;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 38px 0 22px 0;
  padding: 0 32px;
}
.mobile-nav a {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1.15rem;
  color: #252447;
  border-radius: 8px;
  padding: 12px 8px;
  font-weight: 500;
  background: none;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #7DC3B8;
  color: #fff;
}
@media (min-width: 990px) {
  .mobile-menu { display: none; }
}

/* MAIN LAYOUT CARDS & BUTTONS */
.cta-btn {
  display: inline-block;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 600;
  background: #7DC3B8;
  color: #252447;
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 rgba(37,36,71,0.09);
  padding: 14px 34px;
  margin-top: 10px;
  margin-bottom: 12px;
  text-align: center;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s, transform 0.18s;
  cursor: pointer;
}
.cta-btn:focus,
.cta-btn:hover {
  background: #252447;
  color: #fff;
  box-shadow: 0 6px 24px 0 #7DC3B855, 0 1.5px 10px 0 rgba(37,36,71,0.10);
  transform: translateY(-2px) scale(1.02);
}

/* FEATURE/INSPIRATION LISTS */
ul li, ol li {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  gap: 12px;
  padding-left: 0;
  position: relative;
}
ul li img {
  margin-right: 8px;
  width: 32px;
  height: 32px;
}

/* FOOTER */
footer {
  background: linear-gradient(111deg, #252447 3%, #252447 51%, #7DC3B8 110%);
  color: #fff;
  width: 100%;
  border-top-left-radius: 34px;
  border-top-right-radius: 34px;
  box-shadow: 0 -4px 36px 0 #25244733;
  margin-top: 90px;
}
.footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
  justify-content: center;
  padding: 38px 0 10px 0;
  width: 100%;
}
.footer-wrapper nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 8px;
}
.footer-wrapper nav a {
  color: #fff;
  font-size: 1rem;
  opacity: 0.92;
  transition: color 0.18s, opacity 0.18s;
}
.footer-wrapper nav a:hover {
  color: #7DC3B8;
  opacity: 1;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  justify-content: flex-start;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
}
.contact-info img {
  height: 20px;
  width: 20px;
  margin-right: 7px;
  vertical-align: middle;
}
.brand-signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.brand-signature img {
  height: 34px;
  margin-bottom: 2px;
}
.brand-signature span {
  font-family: 'Playfair Display', serif;
  font-size: 1.04rem;
  color: #fff;
  text-align: center;
  font-weight: 600;
  opacity: 0.96;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 4px;
}
.social-links a img {
  width: 24px;
  height: 24px;
  filter: brightness(96%) grayscale(22%);
  transition: filter 0.24s, transform 0.14s;
}
.social-links a:hover img {
  filter: brightness(122%) grayscale(0%);
  transform: scale(1.11);
}
@media (min-width: 700px) {
  .footer-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
  }
  .brand-signature {
    align-items: flex-end;
    margin-top: 0;
  }
  .contact-info{
    min-width: 235px;
    font-size: 1.08rem;
  }
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 20000;
  background: #fff;
  color: #252447;
  border-radius: 18px;
  box-shadow: 0 6px 36px 0 #25244733;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 18px 16px 18px;
  gap: 14px;
  font-size: 1rem;
  opacity: 1;
  transition: opacity 0.38s, transform 0.38s;
  max-width: 440px;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 10px;
}
.cookie-banner button {
  padding: 8px 22px;
  font-size: 1rem;
  border-radius: 12px;
  border: none;
  margin-top: 0;
  margin-bottom: 0;
  background: #7DC3B8;
  color: #252447;
  font-weight: 600;
  box-shadow: 0 2px 10px 0 #25244718;
  transition: background 0.18s,color 0.18s, transform 0.15s;
}
.cookie-banner button:hover {
  background: #252447;
  color: #fff;
  transform: translateY(-2px);
}
.cookie-banner .cookie-settings-btn {
  background: #F2EDEB;
  color: #252447;
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 20001;
  background: rgba(37,36,71,0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.34s;
  opacity: 1;
  pointer-events: all;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 40px 0 #25244740;
  width: 92vw;
  max-width: 420px;
  padding: 36px 22px 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.cookie-modal h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: #252447;
}
.cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 20px;
  font-size: 1.6rem;
  color: #252447;
  border-radius: 50%;
  padding: 2px 10px 0 10px;
  border: none;
  background: #F2EDEB;
  transition: background 0.18s,color 0.18s;
}
.cookie-modal-close:hover {
  background: #7DC3B8;
  color: #fff;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 14px;
}
.cookie-category .switch {
  width: 40px;
  height: 22px;
  display: inline-block;
  background: #E7ECEF;
  border-radius: 16px;
  position: relative;
}
.cookie-category .switch input[type="checkbox"] {
  opacity: 0;
  width: 40px;
  height: 22px;
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  z-index: 1;
  cursor: pointer;
}
.cookie-category .slider {
  display: block;
  width: 40px;
  height: 22px;
  border-radius: 16px;
  background: #E7ECEF;
  position: absolute;
  left: 0;
  top: 0;
  box-shadow: 0 2px 8px 0 #25244712;
  transition: background 0.18s;
}
.cookie-category .switch input[type="checkbox"]:checked + .slider {
  background: #7DC3B8;
}
.cookie-category .slider:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 7px 0 #25244724;
  transition: transform 0.18s;
}
.cookie-category .switch input[type="checkbox"]:checked + .slider:before {
  transform: translateX(18px);
}

/* COOKIE CONSENT - CATEGORY LABELS */
.cookie-category label {
  font-size: 1.08rem;
  color: #252447;
  cursor: pointer;
}
.cookie-category .cookie-essential {
  color: #999;
  font-size: .95em;
  font-style: italic;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-modal .cookie-actions button {
  padding: 8px 22px;
  font-size: 1rem;
  border-radius: 12px;
  border: none;
}

/* BUTTON/INPUT: DISABLE STYLE */
button:disabled, .disabled, .cookie-category .switch input[disabled] + .slider {
  pointer-events: none;
  opacity: 0.7;
  background: #ddd !important;
  color: #aaa;
}

/* MODAL ANIMATION */
@media (max-width: 768px) {
  .cookie-modal .cookie-modal-content {
    padding: 28px 8px 20px 8px;
  }
}

/* WHITE SPACE & GAPS */
.text-section, .content-wrapper > p, .content-wrapper > ul {
  margin-bottom: 14px;
}
.text-section ul {
  margin-bottom: 10px;
}
.text-section ul li {
  margin-bottom: 6px;
}
.card + .card, .testimonial-card + .testimonial-card {
  margin-top: 20px !important;
}

/* HIERARCHY & SPACING */
.content-wrapper > h1, .content-wrapper > h2 {
  margin-bottom: 14px;
}
.content-wrapper > a {
  margin-top: 10px;
}

/* SCROLLBAR STYLING */
::-webkit-scrollbar {
  width: 9px;
  background: #E6E6EA;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #B7D3DF;
  border-radius: 8px;
}

/* ACCESSIBLE FOCUS */
:focus-visible {
  outline: 2px solid #7DC3B8;
  outline-offset: 1.5px;
}

/* ----------- RESPONSIVE BREAKPOINTS ----------- */
@media (min-width: 800px) {
  .container {
    padding: 0 38px;
  }
}
@media (max-width: 480px) {
  body, p, li {
    font-size: 0.98rem;
  }
  h1 {
    font-size: 1.6rem;
  }
}

/* --------- MICRO-INTERACTIONS / TRANSITIONS --------- */
a, button, .cta-btn, .main-nav a, .mobile-nav a, .cookie-banner button, .cookie-modal-close, .cookie-category .switch input[type="checkbox"] + .slider {
  transition: background 0.18s, color 0.18s, box-shadow 0.20s, transform 0.15s;
}

/* ----------- DARK TEXT ENSURED ON LIGHT BG ----------- */
.testimonial-card, .cookie-banner, .cookie-modal-content {
  color: #252447;
}
/* ----------- END ----------- */
