/* =============================================================
   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, 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #18191B;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  color: inherit;
  text-decoration: none;
}
img {
  border: 0;
  display: block;
  max-width: 100%;
}
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* =============================================================
   FONTS & TYPOGRAPHY
   ============================================================= */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700&display=swap');

body {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  color: #18191B;
  background: #fff;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #111112;
  margin-bottom: 16px;
  margin-top: 0;
  line-height: 1.18;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}
h2 {
  font-size: 2rem;
  letter-spacing: -0.01em;
}
h3 {
  font-size: 1.4rem;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, li, .subtitle {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 1rem;
  color: #333;
  margin-bottom: 12px;
}
.subtitle {
  font-size: 1.2rem;
  color: #555;
  font-weight: 400;
}
strong {
  font-weight: 700;
  color: #0e0e0f;
}

/* =============================================================
   COLORS -- LumiSparkle Monochrome Sophisticated
   ============================================================= */
:root {
  --color-bg: #fff;
  --color-bg-alt: #f6f7f8;
  --color-black: #18191B;
  --color-dark: #222326;
  --color-gray: #787876;
  --color-light-gray: #ededed;
  --color-divider: #dedede;
  --color-primary: #18191B; /* monochrome: was #24566B */
  --color-secondary: #ededed; /* monochrome: was #EAF2F1*/
  --color-accent: #999; /* monochrome override, pastel accent muted */
  --color-link: #0e0e0f;
  --color-card-bg: #fafafa;
  --color-btn-bg: #18191B;
  --color-btn-text: #fff;
  --color-btn-hover-bg: #fff;
  --color-btn-hover-text: #18191B;
  --color-shadow: rgba(24,24,30,0.14);
  --color-shadow-soft: rgba(24,24,30,0.04);
  --color-toast-bg: #222226;
}


/* =============================================================
   GENERAL LAYOUT & CONTAINER
   ============================================================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 22px;
  padding-right: 22px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

main {
  min-height: 60vh;
  padding-bottom: 48px;
}

/* =============================================================
   HEADER & NAVIGATION
   ============================================================= */
header {
  position: relative;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-divider);
  z-index: 40;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
  filter: grayscale(95%) brightness(1.03) contrast(1.18);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-black);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: color 0.18s;
  padding: 2px 2px;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-accent);
  outline: none;
}
.primary-btn {
  background: var(--color-btn-bg);
  color: var(--color-btn-text);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
  border-radius: 26px;
  padding: 10px 32px;
  border: 1.5px solid var(--color-btn-bg);
  margin-left: 20px;
  box-shadow: 0 2px 12px var(--color-shadow-soft);
  transition: background 0.26s, color 0.26s, border 0.2s;
  display: inline-block;
}
.primary-btn:hover, .primary-btn:focus {
  background: var(--color-btn-hover-bg);
  color: var(--color-btn-hover-text);
  border: 1.5px solid var(--color-black);
}

/* Hide nav on mobile by default */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .primary-btn {
    display: none;
  }
}

/* =============================================================
   MOBILE MENU
   ============================================================= */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: var(--color-black);
  background: none;
  border: none;
  padding: 7px 7px 4px 7px;
  border-radius: 8px;
  z-index: 110;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-light-gray);
}
@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 24px;
    top: 20px;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 380px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 24px 2px var(--color-shadow);
  z-index: 2002;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.55,.03,.33,1);
  display: flex;
  flex-direction: column;
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu .mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  color: var(--color-black);
  background: transparent;
  border: none;
  margin: 24px 24px 0 0;
  padding: 6px;
  border-radius: 7px;
  transition: background 0.2s;
}
.mobile-menu .mobile-menu-close:hover, .mobile-menu .mobile-menu-close:focus {
  background: var(--color-light-gray);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 38px 30px 0 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-black);
  font-weight: 600;
  font-size: 1.22rem;
  letter-spacing: 0.01em;
  padding: 9px 0;
  transition: color 0.17s;
  border-radius: 4px;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-accent);
  background: var(--color-secondary);
}

/* Hide menu by default on desktop */
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* Overlay for mobile menu */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,24,27,0.32);
  z-index: 2001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open ~ .mobile-menu-overlay {
  display: block;
  opacity: 1;
  pointer-events: all;
}

/* =============================================================
   HERO SECTIONS, GENERAL SPACING
   ============================================================= */
.hero {
  background: var(--color-bg-alt);
  padding: 56px 0 40px 0;
  min-height: 270px;
  border-bottom: 1.7px solid var(--color-divider);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 12px;
}
.hero .subtitle,
.hero p {
  font-size: 1.2rem;
  color: #363738;
  margin-bottom: 18px;
}
.hero .primary-btn {
  margin-top: 12px;
  margin-left: 0;
}

@media (max-width: 768px) {
  .hero {
    padding: 38px 0 24px 0;
    min-height: 110px;
  }
  .hero h1 {
    font-size: 1.53rem;
  }
}

/* =============================================================
   SECTIONS, CARDS, FEATURE ITEMS
   ============================================================= */
.features, .about, .services, .testimonials, .pricing, .contact, .cta, .thankyou, .legal {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features .content-wrapper, 
.services .content-wrapper, 
.testimonials .content-wrapper, 
.pricing .content-wrapper,
.legal .content-wrapper,
.contact .content-wrapper,
.about .content-wrapper,
.cta .content-wrapper,
.thankyou .content-wrapper {
  gap: 20px;
  padding: 0 0;
  align-items: flex-start;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-card-bg);
  box-shadow: 0 2px 18px var(--color-shadow-soft);
  border: 1.5px solid var(--color-divider);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
}

.feature-list, .highlights, .benefit-highlights, .accessible-feature-list, .detailed-service-list, .session-steps, .contact-details, .next-steps-info ul, .offer-comparison ul,
.value-icons ul, .typical-exercises ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 18px 0;
  list-style: none;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  background: var(--color-bg-alt);
  padding: 20px 18px;
  border-radius: 16px;
  border: 1.2px solid var(--color-divider);
}
.benefit-highlights li, .offer-comparison ul li {
  color: #050607;
  font-size: 1rem;
}
.value-icons ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.value-icons img {
  height: 28px; width: 28px;
  filter: grayscale(90%) brightness(1.06) contrast(1.2);
  margin: 0 8px 0 0;
}

/* SERVICES: Cards display */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 30px 0 8px 0;
}
.service-item {
  background: #f7f7f7;
  border: 1px solid var(--color-divider);
  border-radius: 16px;
  box-shadow: 0 2px 10px var(--color-shadow-soft);
  padding: 24px 20px 18px 20px;
  min-width: 210px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border 0.15s, transform 0.17s;
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 6px 22px var(--color-shadow);
  border-color: var(--color-black);
  transform: translateY(-4px) scale(1.015);
}

.detailed-service-list li {
  margin-bottom: 18px;
  background: var(--color-bg-alt);
  border-radius: 10px;
  padding: 18px 20px 10px 16px;
  border: 1px solid var(--color-divider);
}

/* ============================================
   TESTIMONIALS & ATTRIBUTIONS
   ============================================ */
.testimonials {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-divider);
}
.testimonials h2 {
  margin-top: 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 32px 16px 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px var(--color-shadow-soft);
  margin-bottom: 20px;
  border: 1.3px solid #dee0e2;
  min-width: 220px;
  max-width: 700px;
  transition: box-shadow 0.15s, border 0.15s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 24px var(--color-shadow);
  border: 1.6px solid var(--color-black);
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #111112;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  margin-bottom: 0;
}
.testimonial-card .author {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #56585b;
  font-weight: 600;
  margin-bottom: 2px;
}
.testimonial-card .stars {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
  color: #000; /* Best contrast */
  letter-spacing: 2px;
}

/* CTA */
.cta {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 18px var(--color-shadow-soft);
  margin-bottom: 36px;
}
.cta .content-wrapper {
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  padding: 12px 0;
}

/* =============================================================
   PRICING TABLES
   ============================================================= */
.price-table {
  width: 100%;
  border: 1.5px solid var(--color-divider);
  margin-bottom: 30px;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  font-size: 1rem;
}
.price-table th, .price-table td {
  padding: 15px 19px;
  border-bottom: 1px solid var(--color-divider);
  font-family: 'Montserrat', Arial, sans-serif;
}
.price-table th {
  background: var(--color-bg-alt);
  color: #151515;
  text-align: left;
  font-size: 1.08rem;
  font-weight: 700;
}
.price-table tbody tr:last-child td {
  border-bottom: none;
}
.price-table tr {
  transition: background 0.19s;
}
.price-table tr:hover {
  background: var(--color-secondary);
}

/* =============================================================
   LEGAL PAGES, SIMPLE SECTIONS
   ============================================================= */
.legal {
  background: #fff;
  border: 1.5px solid var(--color-divider);
  border-radius: 14px;
  box-shadow: 0 1px 10px var(--color-shadow-soft);
}
.legal ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 10px 0 0 0;
}

/* THANK YOU PAGE */
.thankyou .content-wrapper {
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

/* ADDRESS MAP, HOURS, NOTES */
.address-map {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-bg-alt);
  border-radius: 9px;
  padding: 14px 18px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: #232326;
}
.hours-info, .note {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #575757;
}
.note {
  color: #111;
}

/* =============================================================
   FOOTER
   ============================================================= */
footer {
  background: var(--color-bg);
  border-top: 1.5px solid var(--color-divider);
  padding: 36px 0 28px 0;
}
footer .container {
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 6px;
  justify-content: center;
  font-size: 0.97rem;
}
.footer-menu a {
  color: #212124;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.19s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--color-accent);
}
.contact-summary {
  font-size: 0.99rem;
  color: #656667;
  text-align: center;
  margin-bottom: 8px;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: center;
  margin-top: 10px;
}

/* =============================================================
   COOKIE CONSENT BANNER
   ============================================================= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 1.5px solid var(--color-divider);
  box-shadow: 0 2px 18px var(--color-shadow-soft);
  z-index: 3003;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 21px 16px 18px 32px;
  justify-content: space-between;
  font-size: 1rem;
  animation: cookiefadein 0.5s cubic-bezier(.55,0,.33,1);
}
@keyframes cookiefadein {
  from { opacity: 0; transform: translateY(65px); }
  to { opacity: 1; transform: none; }
}
.cookie-banner__msg {
  max-width: 670px;
  color: #272728;
  font-size: 1rem;
}
.cookie-banner__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  min-width: 110px;
  padding: 7px 18px;
  background: var(--color-btn-bg);
  border: 1.3px solid var(--color-black);
  border-radius: 22px;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 600;
  margin-left: 0;
  margin-bottom: 0;
  transition: background 0.16s, color 0.16s;
}
.cookie-btn.accept {
  background: var(--color-black);
  color: #fff;
  border: 1.5px solid var(--color-black);
}
.cookie-btn.reject {
  background: #fff;
  color: var(--color-black);
  border: 1.5px solid var(--color-black);
}
.cookie-btn.settings {
  background: var(--color-secondary);
  color: var(--color-black);
  border: 1.3px solid var(--color-divider);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #0e0e0f;
  color: #F7F7F7;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--color-accent);
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #ededed;
  color: var(--color-black);
  border-color: var(--color-black);
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 18px 10px;
    font-size: 0.98rem;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(29,29,33,0.26);
  z-index: 5005;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookiebgfade 0.25s cubic-bezier(.55,.03,.33,1);
}
@keyframes cookiebgfade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid var(--color-divider);
  box-shadow: 0 8px 40px var(--color-shadow);
  padding: 40px 32px 20px 32px;
  width: 95vw;
  max-width: 420px;
  z-index: 5050;
  animation: cookiemodalfade 0.33s cubic-bezier(.55,.03,.33,1);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes cookiemodalfade {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h3 {
  font-size: 1.21rem;
  margin-bottom: 4px;
  color: #0e0e0f;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.cookie-cat input[type="checkbox"] {
  width: 21px;
  height: 21px;
  accent-color: #18191b;
  margin-right: 8px;
  border-radius: 4px;
}
.cookie-cat[aria-disabled="true"] input[type="checkbox"] {
  opacity: 0.46;
}
.cookie-cat[aria-disabled="true"] {
  color: #a3a3a7;
}
.cookie-modal-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  justify-content: flex-end;
}

/* =============================================================
   RESPONSIVE LAYOUT & FLEXBOX RULES
   ============================================================= */
.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-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

@media (max-width: 960px) {
  .container { max-width: 99vw; padding-left: 12px; padding-right: 12px; }
  .service-list { gap: 15px; }
}
@media (max-width: 768px) {
  .container { padding-left: 6px; padding-right: 6px; }
  .service-item { min-width: 150px; padding: 16px 9px 12px 9px; }
  .section { margin-bottom: 26px; padding: 26px 4px; }
  .features, .about, .services, .testimonials, .pricing, .contact, .cta, .thankyou, .legal { padding: 28px 6px; margin-bottom: 30px; }
  .content-wrapper { gap: 16px; }
  .card-container { gap: 13px; }
  .card { padding: 14px 7px; border-radius: 9px; }
  .testimonial-card { padding: 13px 11px 9px 10px; border-radius: 9px; }
  .price-table th, .price-table td { padding: 7px 8px; font-size: 0.97rem; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
  .cta .content-wrapper, .thankyou .content-wrapper { gap: 10px; }
}

/* =============================================
   MICRO-INTERACTIONS & ANIMATION HINTS
   ============================================= */
.primary-btn, .cookie-btn {
  transition: background 0.18s, color 0.18s, border 0.18s, transform 0.13s;
}
.primary-btn:hover, .primary-btn:focus {
  transform: scale(1.025);
  outline: none;
}

a, .main-nav a, .mobile-nav a { transition: color 0.17s, background 0.17s; }
.service-item:active, .card:active, .testimonial-card:active {
  transform: scale(0.985);
}

/* =============================================================
   UTILITIES & EXTRAS
   ============================================================= */
::-webkit-input-placeholder { color: #a3a3a3; }
::-moz-placeholder { color: #a3a3a3; }
:-ms-input-placeholder { color: #a3a3a3; }
::placeholder { color: #a3a3a3; }

hr {
  border: none;
  border-top: 1.5px solid var(--color-divider);
  margin: 22px 0;
}

/* Success / info flash */
.flash-success, .flash-info {
  background: var(--color-secondary);
  color: #222;
  border-radius: 11px;
  padding: 14px 23px;
  margin-bottom: 18px;
  border: 1.3px solid var(--color-divider);
  font-size: 1.04rem;
}

/* Accessibility: Focus outlines */
a:focus-visible, button:focus-visible, .primary-btn:focus-visible, .cookie-btn:focus-visible {
  outline: 2.5px solid #222;
  outline-offset: 2px;
  border-radius: 8px;
}

/* =============================================================
   PRINT STYLES
   ============================================================= */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal, .cookie-modal-overlay { display: none !important; }
  body { color: #18191B; background: #fff; }
  main { padding: 0 !important; }
}
