/* VEXTRAL INSIGHT STYLE.CSS – Warm_Friendly, Flexbox-Only, Mobile-First, Brand-Compliant */

/* RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #FFF8F1;
  color: #26445B;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.7;
  font-size: 1rem;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #26445B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F4B942;
}
ul, ol {
  margin-left: 1.4em;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}
:focus-visible {
  outline: 2px solid #F4B942;
  outline-offset: 2px;
}

/* SCROLLBAR (optional, subtle) */
::-webkit-scrollbar {
  width: 8px;
  background: #fff6e9;
}
::-webkit-scrollbar-thumb {
  background: #fae2af;
  border-radius: 6px;
}

/* BRAND COLORS AS CSS VARS */
:root {
  --color-primary: #26445B;
  --color-secondary: #F4B942;
  --color-accent: #FFFFFF;
  --color-bg: #FFF8F1;
  --color-bg-card: #FFF;
  --color-shadow: 0 2px 16px 0 rgba(244,185,66,0.08), 0 1.5px 6px 0 rgba(38,68,91,0.06);
  --color-text: #26445B;
  --color-link: #26445B;
  --color-link-hover: #F4B942;
  --color-neutral-light: #FFF6E9;
  --color-neutral-lighter: #FFFAF2;
  --color-border: #f1e9dc;
}

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600&display=swap');
h1, h2, h3, h4, .brand-tagline {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  letter-spacing: 0.01em;
  font-weight: 700;
}
h1 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.17;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  line-height: 1.22;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
  line-height: 1.25;
}
h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.15;
}
p, li, span, label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-text);
}
.subheadline {
  font-size: 1.18rem;
  color: var(--color-primary);
  margin-bottom: 20px;
  font-weight: 600;
}
.brand-tagline {
  font-size: 1.14rem;
  color: var(--color-secondary);
  font-weight: 600;
}

/* CONTAINER & GENERAL SPACING */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 16px;
  position: relative;
}
.content-wrapper {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* FLEXBOX MANDATORY LAYOUTS */
.card-container, .card-grid, .feature-grid, .service-list, .service-cards, .workshop-list, .article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--color-bg-card);
  border-radius: 18px;
  box-shadow: var(--color-shadow);
  margin-bottom: 20px;
  min-width: 220px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* NAVIGATION */
header {
  width: 100%;
  background: var(--color-bg-card);
  box-shadow: 0 8px 28px rgba(244,185,66,0.07);
  position: relative;
  z-index: 50;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px 0 14px 0;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  padding: 8px 14px;
  color: var(--color-primary);
  font-weight: 600;
  transition: background 0.16s, color 0.16s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--color-neutral-light);
  color: var(--color-secondary);
}
.main-nav .cta.primary {
  background: var(--color-secondary);
  color: var(--color-primary);
  margin-left: 12px;
  box-shadow: 0 2px 10px rgba(244,185,66,0.17);
  border-radius: 24px;
  font-weight: 700;
  transition: background 0.18s, color 0.18s, box-shadow 0.19s;
}
.main-nav .cta.primary:hover {
  background: #ffd77f;
  color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(244,185,66,0.23);
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: var(--color-primary);
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 210;
  box-shadow: 0 4px 18px rgba(38,68,91,0.08);
  transition: background 0.17s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:hover {
  background: #ffdf91;
  color: var(--color-primary);
}

/* MOBILE MENU (OVERLAY) */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(246,191,73,0.92);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.3s cubic-bezier(.7,.15,.56,1.01);
  will-change: transform;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 24px 0 0;
  font-size: 2.3rem;
  color: var(--color-primary);
  background: var(--color-bg-card);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  border: none;
  box-shadow: 0 2px 8px rgba(38,68,91,0.12);
  transition: background 0.13s;
}
.mobile-menu-close:hover {
  background: #ffe8ae;
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin: 32px 0 0 32px;
  gap: 19px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  padding: 13px 0;
  color: var(--color-primary);
  border-radius: 18px;
  font-weight: 700;
  transition: background 0.16s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--color-accent);
  color: var(--color-secondary);
}

/* HERO SECTIONS */
section:first-of-type {
  background: var(--color-neutral-light);
  border-radius: 0 0 36px 36px;
  margin-bottom: 54px;
  box-shadow: 0 6px 28px rgba(244,185,66,0.07);
}
/* HERO BUTTONS */
.cta, .cta.primary {
  display: inline-block;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  border-radius: 24px;
  background: var(--color-secondary);
  color: var(--color-primary);
  text-align: center;
  border: none;
  outline: none;
  box-shadow: 0 2px 10px rgba(244,185,66,0.18);
  cursor: pointer;
  transition: background 0.19s, color 0.18s, box-shadow 0.19s, transform 0.19s;
  margin-top: 16px;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.cta.primary:hover, .cta:hover {
  background: #ffd77f;
  color: var(--color-primary);
  box-shadow: 0 4px 22px rgba(244,185,66,0.25);
  transform: translateY(-2px) scale(1.03);
}
.cta:active {
  background: #ffdf91;
  color: var(--color-primary);
}

/* CARDS & CARD LAYOUTS */
.card, .service-card, .feature-card, .workshop-card, .article-card, .service-highlight {
  background: var(--color-bg-card);
  border-radius: 22px;
  box-shadow: var(--color-shadow);
  padding: 24px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
  max-width: 350px;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.18s;
  border: 1px solid var(--color-border);
}
.feature-card:hover, .service-card:hover, .workshop-card:hover, .article-card:hover, .service-highlight:hover {
  box-shadow: 0 6px 24px rgba(244,185,66,0.20);
  transform: translateY(-2px) scale(1.015);
}
.feature-card img, .service-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
  border-radius: 12px;
  background: #FFFAF2;
  padding: 7px;
}
.price {
  color: var(--color-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.duration {
  color: #96721d;
  font-weight: 600;
  font-size: 1rem;
}

/* ARTICLE CARDS */
.article-list {
  gap: 24px;
}
.article-card {
  min-width: 220px;
  max-width: 340px;
}
.article-card h3 {
  font-size: 1.08rem;
  margin-bottom: 7px;
}
.article-card a {
  margin-top: 0px;
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--color-secondary);
  font-weight: 700;
  text-decoration: underline;
  border-radius: 8px;
  background: none;
  transition: background 0.13s, color 0.13s;
  padding: 4px 8px;
}
.article-card a:hover {
  background: #ffefbf;
  color: var(--color-primary);
}

/* TESTIMONIALS & SLIDER */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 10px 0;
}
.testimonial-card p {
  color: var(--color-primary);
  font-size: 1.09rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 6px;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #5b4117;
  font-size: 0.98rem;
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}
.faq-item {
  background: var(--color-accent);
  border-radius: 18px;
  box-shadow: var(--color-shadow);
  padding: 18px;
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
.faq-item h3 {
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 9px;
  cursor: pointer;
  color: var(--color-primary);
}
.faq-item .answer {
  font-size: 1rem;
  color: var(--color-text);
  transition: max-height 0.18s;
  overflow: hidden;
}

/* CONTACT LIST */
.contact-list {
  margin: 0 0 18px 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
.contact-list li {
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 600;
}

/* VALUES/FEATURE LISTS */
.values-list, .feature-list {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  color: var(--color-primary);
}
.values-list li, .feature-list li {
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 3px;
}

/* FOOTER */
footer {
  background: var(--color-primary);
  color: var(--color-accent);
  border-radius: 36px 36px 0 0;
  margin: 32px 0 0 0;
  box-shadow: 0 -6px 26px rgba(244,185,66,0.07);
  padding: 32px 0 18px 0;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 18px;
}
.footer-top img {
  width: 45px;
  border-radius: 14px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.footer-nav a {
  color: var(--color-accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 7px;
  background: none;
  padding: 7px 12px;
  transition: background 0.12s, color 0.12s;
}
.footer-nav a:hover {
  color: var(--color-secondary);
  background: #fcf2dc;
}
.footer-nav .cta.primary {
  background: var(--color-secondary);
  color: var(--color-primary);
  margin-left: 12px;
}
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.footer-social img {
  width: 28px;
  transition: filter 0.19s, transform 0.17s;
  filter: grayscale(18%);
}
.footer-social img:hover {
  filter: grayscale(0%);
  transform: scale(1.12);
}

/* BRAND STORY & LEGAL PAGES */
.brand-story,
.text-section {
  background: var(--color-neutral-lighter);
  border-radius: 18px;
  padding: 22px 18px;
  margin-top: 14px;
  margin-bottom: 4px;
  color: var(--color-text);
  font-size: 1rem;
  box-shadow: 0 1px 6px rgba(244,185,66,0.04);
}
.brand-story p, .text-section p, .text-section ul {
  margin-bottom: 12px;
}
.text-section ul {
  margin-left: 1.25em;
  font-size: 1rem;
  color: var(--color-primary);
  list-style: disc;
}
.text-section li {
  margin-bottom: 4px;
}

/* MODAL OVERLAY (Cookie Settings) */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(38,68,91,0.47);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.open {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal {
  background: #fffdfa;
  border-radius: 26px;
  padding: 30px 28px;
  box-shadow: 0 4px 36px rgba(38,68,91,0.17);
  max-width: 380px;
  width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 4010;
  position: relative;
}
.cookie-modal h2 {
  margin-bottom: 8px;
}
.cookie-modal label {
  font-size: 1rem;
  font-weight: 600;
  padding: 7px 0 7px 0;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
/* cookie toggle switches */
.cookie-toggle {
  width: 38px;
  height: 22px;
  background: #fde7be;
  border-radius: 11px;
  position: relative;
  margin-right: 5px;
  transition: background 0.17s;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle span {
  display: block;
  width: 18px;
  height: 18px;
  background: var(--color-secondary);
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: left 0.16s, background 0.13s;
}
.cookie-toggle input:checked + span {
  left: 18px;
  background: var(--color-primary);
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  padding: 10px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 18px;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.15s, color 0.13s, box-shadow 0.13s;
}
.cookie-modal-actions button:hover {
  background: #ffd77f;
  color: var(--color-primary);
  box-shadow: 0 1px 4px rgba(244,185,66,0.13);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: var(--color-accent);
  color: var(--color-primary);
  z-index: 2999;
  display: flex;
  flex-direction: column;
  box-shadow: 0 -4px 26px rgba(244,185,66,0.11);
  border-radius: 16px 16px 0 0;
  padding: 20px 18px 16px 18px;
  align-items: flex-start;
  gap: 13px;
  transition: transform 0.27s cubic-bezier(.62,.13,.43,.97);
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner strong {
  color: var(--color-primary);
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 12px;
  margin-top: 9px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 18px;
  padding: 8px 18px;
  border: none;
  transition: background 0.12s, color 0.11s, box-shadow 0.13s;
  cursor: pointer;
}
.cookie-banner button:hover:not(:disabled) {
  background: #ffd77f;
  color: var(--color-primary);
  box-shadow: 0 1px 6px rgba(244,185,66,0.17);
}
.cookie-banner button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ANIMATIONS */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(44px); }
  to { opacity: 1; transform: translateY(0); }
}
main section, .testimonial-card, .feature-card, .service-card, .workshop-card, .article-card, .faq-item, .brand-story {
  animation: fadeSlideIn 0.66s cubic-bezier(.19,.78,.43,1.13) backwards;
}

/* RESPONSIVE: MOBILE-FIRST  (max-width: 768px = tablet & phone) */
@media (max-width: 1200px) {
  .container {
    max-width: 900px;
    padding: 0 12px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 95vw;
    padding: 0 7vw;
  }
  .card, .service-card, .feature-card, .workshop-card, .article-card {
    max-width: 96vw;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1rem; }
  .subheadline, p, li, .brand-tagline { font-size: 1rem; }

  .section {
    margin-bottom: 38px;
    padding: 26px 4vw;
  }
  .content-wrapper {
    gap: 18px;
  }
  /* Nav: collapse into burger */
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  /* Mobile flex-direction: column for layout cards */
  .feature-grid, .service-list, .service-cards, .workshop-list, .article-list, .content-grid, .testimonial-slider {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .footer-nav {
    flex-direction: column;
    gap: 14px;
  }
  .footer-top {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  section:first-of-type {
    border-radius: 0 0 28px 28px;
    margin-bottom: 23px;
  }
  .card, .service-card, .feature-card, .workshop-card, .article-card, .service-highlight {
    max-width: 98vw;
    min-width: 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 540px) {
  .container {
    padding: 0 4vw;
  }
  .footer-nav {
    gap: 11px;
  }
  .cookie-banner {
    padding: 16px 7px 12px 8px;
  }
}

/* Extra: Hide scroll when mobile menu/modal is open */
body.menu-open, body.cookie-modal-open {
  overflow-y: hidden;
}

/* Z-INDEX SAFETY */
header, .mobile-menu, .cookie-modal-overlay, .cookie-banner {
  z-index: 200;
}
.mobile-menu {
  z-index: 2000;
}
.cookie-modal-overlay {
  z-index: 3999;
}
.cookie-modal {
  z-index: 4010;
}

/* Prevent content overlap */
.card, .card-container > *:not(:last-child), .service-list > *:not(:last-child) {
  margin-bottom: 20px;
}

/* UTILITIES */
.rounded {
  border-radius: 22px !important;
}
.shadow {
  box-shadow: var(--color-shadow);
}

/* END VEXTRAL INSIGHT STYLES */