/* === CSS RESET & NORMALIZE (Meyer Reset + Tweaks) === */
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 {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #2c2329;
  background: #F7F7F7;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, svg {
  max-width: 100%;
  display: block;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea {
  font: inherit;
}

:focus {
  outline: 2px dashed #EDAB1D;
  outline-offset: 2px;
}


/* === BRAND VARIABLE FALLBACKS === */
:root {
  --primary: #1C334F;
  --secondary: #F7F7F7;
  --accent: #EDAB1D;
  --text-dark: #2c2329;
  --text-vintage: #40312d;
  --text-light: #f7f7f7;
  --bg-vintage: #fff6e9;
  --bg-faded: #f8e9d2;
  --bg-card: #fffbf5;
  --bg-shadow: #dbc3a0;
  --border-vintage: #c4a772;
}


/* === TYPOGRAPHY: Vintage/Retro Style === */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Georgia, serif;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.18;
}
h1 {
  font-size: 2.5rem; /* 40px */
  text-shadow: 2px 4px 0 #fff6e9, 2px 6px 8px rgba(60,36,14,0.13);
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  font-weight: 900;
}
h3 {
  font-size: 1.4rem; /* for .card, .feature */
  letter-spacing: 0.5px;
}
h4 { font-size: 1.15rem; font-weight: 700; }
p, ul, li { font-size: 1rem; color: var(--text-vintage); }
.subheadline {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 20px;
}
strong { color: var(--primary); font-weight: 700; }


/* === LAYOUT: CONTAINER & SPACING === */
.container {
  width: 100%;
  padding: 0 18px;
  max-width: 1140px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section, main section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--bg-card);
  border-radius: 16px;
  box-shadow: 0 4px 14px 0 rgba(81,61,38,0.07);
  border: 2px solid var(--border-vintage);
  padding: 28px 22px 22px 22px;
  min-width: 260px;
  flex: 1 1 260px;
  transition: transform .18s cubic-bezier(.45,.65,0,1), box-shadow .14s;
}
.card:hover {
  transform: translateY(-6px) scale(1.02) rotate(-2deg);
  box-shadow: 0 10px 32px -2px var(--bg-shadow);
  z-index: 3;
}

.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;
  background: #fff6e9;
  border: 1.5px solid var(--border-vintage);
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(197,168,130,0.07);
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.section:last-child, main section:last-child { margin-bottom: 0; }


/* === HEADER & NAVIGATION === */
header {
  background-color: var(--bg-vintage);
  border-bottom: 3px solid var(--border-vintage);
  padding: 0 0;
  height: 74px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
}
.logo {
  margin-left: 22px;
  display: flex;
  align-items: center;
  gap: 11px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 42px;
  flex: 1 1 auto;
}
.main-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.07rem;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 600;
  position: relative;
  transition: background .15s, color .14s;
}
.main-nav a.active, .main-nav a:hover, .footer-menu a.active, .footer-menu a:hover {
  background: var(--accent);
  color: var(--primary);
}
.button.primary {
  margin-left: 36px;
  margin-right: 20px;
  font-size: 1.12rem;
  font-family: 'Montserrat', Georgia, serif;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 9px;
  box-shadow: 0 3px 12px rgba(237,171,29,.08), 0 0px 0 #0000;
  padding: 13px 26px;
  font-weight: 700;
  cursor: pointer;
  transition: background .19s, color .18s, box-shadow .17s, transform .17s;
}
.button.primary:hover, .button.primary:focus {
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 12px 24px rgba(28,51,79,0.13);
  transform: translateY(-2px) scale(1.04) rotate(-1.5deg);
}
.button.secondary {
  background: var(--primary);
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 9px;
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 11px 22px;
  margin-top: 10px;
  margin-bottom: 0;
  margin-left: 0;
  cursor: pointer;
  transition: background .13s, color .16s, border .14s, box-shadow .12s, transform .13s;
}
.button.secondary:hover, .button.secondary:focus {
  background: var(--accent);
  color: var(--primary);
  border: 2px solid var(--primary);
  transform: scale(1.03) rotate(-2deg);
  box-shadow: 0 3px 15px rgba(237,171,29,.14);
}
.button.small {
  font-size: .98rem;
  padding: 6px 16px;
  border-radius: 7px;
  line-height: 1.45;
  background: var(--bg-faded);
  color: var(--primary);
  border: 2px solid var(--border-vintage);
  font-family: 'Montserrat', Georgia, serif;
  margin-left: 6px;
  font-weight: 500;
  transition: background .11s, color .14s, border .14s;
}
.button.small:hover, .button.small:focus {
  background: var(--accent);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: var(--primary);
  cursor: pointer;
  outline: none;
  margin-left: 18px;
  z-index: 120;
}

/* === MOBILE NAV MENU OVERLAY === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--primary);
  color: var(--accent);
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.71,0,.25,1);
  box-shadow: -10px 0 40px 0 rgba(40,33,26,0.11);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px; right: 23px;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2.1rem;
  cursor: pointer;
  z-index: 10001;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 86px;
  margin-left: 34px;
  font-size: 1.22rem;
  font-family: 'Montserrat', Georgia, serif;
}
.mobile-nav a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: color .13s, border-bottom .15s;
}
.mobile-nav a:active, .mobile-nav a.active, .mobile-nav a:hover {
  color: var(--primary);
  background: var(--accent);
  border-radius: 6px;
  border-bottom: 2px solid var(--primary);
  padding-left: 8px;
}

/* === HERO, FEATURES, CARDS, SERVICES ETC === */
.hero, .services, .features, .about, .contact {
  background: var(--bg-vintage);
  border-radius: 16px;
  box-shadow: 0 8px 40px -9px rgba(69,49,19,0.08);
  border: 1.5px solid var(--border-vintage);
  margin-bottom: 60px;
  padding: 46px 0 46px 0;
  position: relative;
}
.hero {
  background: linear-gradient(115deg, #fff6e9 65%, #e7d2be 100%);
  min-height: 312px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}
.hero .content-wrapper {
  gap: 12px;
  align-items: flex-start;
}

.features ul, .feature_grid {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  padding: 0;
}
.features li, .feature_grid li {
  background: var(--bg-card);
  border-radius: 15px;
  border: 1.5px solid var(--border-vintage);
  padding: 25px 20px 21px 20px;
  box-shadow: 0 2px 8px 0px rgba(69,49,19,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 210px;
  flex: 1 1 210px;
  font-size: 1rem;
  transition: transform .17s, box-shadow .12s;
  margin-bottom: 20px;
}
.features li img, .feature_grid li img {
  width: 34px;
  height: 34px;
  margin-bottom: 13px;
  border-radius: 6px;
  background: var(--bg-shadow);
  padding: 4px;
}
.features li:hover, .feature_grid li:hover {
  background: var(--accent);
  color: var(--primary);
  transform: scale(1.03) rotate(-1deg);
  box-shadow: 0 10px 24px rgba(237,171,29,.17);
}
.features li h3, .feature_grid li h3 {
  color: var(--primary);
  font-size: 1.17rem;
  margin-bottom: 2px;
}
.features li p, .feature_grid li p {
  margin-bottom: 0;
}


.services ul, .service_list, .detailed_service_list, .workshop_calendar ul, .coach_profiles ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.services li, .service_list li, .detailed_service_list > div,
.workshop_calendar li, .coach_profiles li {
  background: var(--bg-card);
  border-radius: 13px;
  border: 1.5px solid var(--border-vintage);
  box-shadow: 0 2px 8px 0px rgba(69,49,19,0.04);
  padding: 23px 17px 20px 17px;
  flex: 1 1 210px;
  min-width: 210px;
  margin-bottom: 20px;
  transition: box-shadow .17s, background .16s, transform .13s;
}
.services li:hover, .detailed_service_list > div:hover {
  background: #efe2ca;
  transform: translateY(-4px) scale(1.018);
  box-shadow: 0 6px 16px rgba(81,61,38,0.11);
}
.services li h3, .service_list li h3, .detailed_service_list h2 {
  font-family: 'Montserrat', Georgia, serif;
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 7px;
}
.service_list .price, .detailed_service_list .price_tag {
  color: var(--accent);
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.02rem;
  font-weight: 700;
  margin-top: 3px;
}
.workshop_calendar ul {
  flex-direction: column;
  gap: 22px;
}
.workshop_calendar li {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.program_highlights, .success-metrics, .before_after_cases {
  background: #fffbe7;
  border-radius: 13px;
  border: 1px solid var(--border-vintage);
  margin-top: 6px;
  margin-bottom: 12px;
  padding: 18px 20px 17px 20px;
  box-shadow: 0 2px 7px 0px rgba(211,185,126,0.07);
  font-size: 1rem;
}
.program_highlights ul, .success-metrics ul, .before_after_cases ul {
  padding: 0 0 0 18px;
  margin: 0;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.coach_profiles li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.coach_profiles img {
  width: 37px;
  height: 37px;
}


/* === TESTIMONIALS === */
.testimonials {
  background: #ded4c1;
  border-radius: 18px;
  border: 2px dashed var(--accent);
  box-shadow: 0 8px 34px -11px rgba(120,100,62,0.08);
  margin-bottom: 60px;
  padding: 38px 0 43px 0;
  position: relative;
}
.testimonials h2 {
  color: var(--primary);
  text-shadow: 1px 2px 0 #fff6e9;
  margin-bottom: 23px;
}
.testimonial-slider, .testimonial-list, .client_testimonies {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  border: 2px solid var(--border-vintage);
  box-shadow: 0 6px 18px 0px rgba(88, 58, 26, 0.09);
  padding: 23px 20px 17px 20px;
  color: #2c2329;
  min-width: 260px;
  max-width: 372px;
  font-size: 1.05rem;
  position: relative;
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .18s, transform .15s;
}
.testimonial-card:hover {
  transform: translateY(-6px) scale(1.03) rotate(-1.5deg);
  box-shadow: 0 12px 30px rgba(28,51,79,0.14);
  z-index: 2;
}
.testimonial-author {
  color: var(--primary);
  font-weight: 700;
  margin-top: 13px;
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.07rem;
}
.star_ratings {
  color: #edab1d;
  font-size: 1.2rem;
  letter-spacing: 2.2px;
  margin: 7px 0 0 0;
}
.client_logos {
  display: flex;
  gap: 25px;
  margin-top: 30px;
  align-items: center;
}
.client_logos img {
  background: #fff8df;
  border-radius: 10px;
  border: 1px solid #e6c594;
  padding: 7px 9px;
  width: 48px;
  height: 48px;
}

/* === RESOURCE, FAQ, TEMPLATES, COMMUNITY === */
.resource-list ul, .guides_and_articles ul, .faq_section ul {
  list-style: disc inside;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 0 0 0 12px;
}
.resource-list li, .guides_and_articles li, .faq_section li {
  background: transparent;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  padding: 0 0 0 0;
  font-size: 1rem;
}
.resource-list a {
  color: var(--primary);
  text-decoration: underline;
  transition: color .14s;
}
.resource-list a:hover {
  color: var(--accent);
}

.templates_download, .community_forum_link, .newsletter_signup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  margin-top: 14px;
}

.newsletter_signup {
  padding-top: 13px;
}


/* === FOOTER === */
footer {
  background: var(--primary);
  color: var(--accent);
  border-top: 3px solid var(--accent);
  padding: 38px 0 34px 0;
  font-size: 1rem;
  position: relative;
}
footer .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 22px;
}
footer .content-wrapper {
  flex-direction: row;
  gap: 38px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-menu a {
  color: var(--accent);
  opacity: 0.93;
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 600;
  font-size: .99rem;
  transition: color .13s, background .11s;
  padding: 7px 7px 7px 0;
  border-radius: 6px;
}
.footer-menu a:hover { background: var(--accent); color: var(--primary); }

.brand_info, .contact_info, .social_links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}
.brand_info img {
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
}
.brand_info span {
  font-family: 'Montserrat', Georgia, serif;
  color: var(--accent);
  font-size: 1.07rem;
  font-weight: 700;
}
.contact_info p, .contact_info a {
  color: var(--accent);
  font-size: .98rem;
  opacity: 0.88;
}
.social_links {
  flex-direction: row;
  gap: 13px;
  margin-top: 14px;
}
.social_links a {
  background: #fff8df;
  border-radius: 6px;
  border: 1.5px solid #e6c594;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s, box-shadow .14s, transform .13s;
}
.social_links a:hover {
  background: var(--accent);
  box-shadow: 0 2px 14px #ffebc7ee;
  transform: scale(1.06) rotate(-5deg);
}
.social_links img {
  width: 22px; height: 22px;
}


/* === COOKIE CONSENT BANNER & MODAL === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  z-index: 10020;
  background: #fffdea;
  color: var(--primary);
  border-top: 2px solid var(--accent);
  box-shadow: 0 -2px 22px rgba(33,18,1,.15);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  justify-content: center;
  padding: 26px 10px 18px 10px;
  font-size: 1rem;
  transition: transform .35s cubic-bezier(.71,0,.25,1);
  transform: translateY(110%);
}
.cookie-banner.active {
  transform: translateY(0);
  transition: transform .35s cubic-bezier(.71,0,.25,1);
}
.cookie-banner p {
  color: var(--primary);
  font-size: 1.02rem;
  margin: 0 16px 0 0;
}
.cookie-banner .cookie-button {
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 700;
  margin-left: 9px;
  padding: 9px 18px;
  margin-top: 4px;
  cursor: pointer;
  transition: background .12s, color .11s, transform .09s;
}
.cookie-banner .cookie-button:hover, .cookie-banner .cookie-button:focus {
  background: var(--primary);
  color: var(--accent);
  transform: scale(1.06);
}
.cookie-banner .cookie-settings {
  background: var(--primary);
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 6px;
  font-weight: 600;
  padding: 9px 18px;
  margin-left: 12px;
  transition: background .12s, color .13s, border .13s;
}
.cookie-banner .cookie-settings:hover {
  background: var(--accent);
  color: var(--primary);
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  z-index: 20001;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(28,51,79,0.24);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow-y: auto;
  transition: opacity .18s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  border-radius: 18px 18px 0 0;
  border: 2px solid var(--border-vintage);
  box-shadow: 0 2px 40px #a88436c7;
  max-width: 360px;
  margin-bottom: 0;
  margin-top: auto;
  padding: 30px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  animation: popin .36s cubic-bezier(.95,-0.08,.78,1.01);
}
@keyframes popin {
  0%{ transform: translateY(100%); opacity:0; }
  90%{ transform: translateY(-18px); opacity:1; }
  100%{ transform: translateY(0); }
}
.cookie-modal h2 {
  color: var(--primary);
  margin-bottom: 6px;
}
.cookie-modal label {
  font-family: 'Montserrat', Georgia, serif;
  color: var(--primary);
  font-size: 1.07rem;
  display: flex;
  align-items: center;
  gap: 7px;
}
.cookie-modal input[type='checkbox'] {
  accent-color: var(--accent);
  width: 18px;
  height: 18px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 20px;
  margin-top: 14px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal .cookie-button {
  margin: 0;
}


/* === GENERAL UTILITY & SPACING === */
::-webkit-scrollbar { width: 7px; background: #efe2ca; }
::-webkit-scrollbar-thumb { background: #d4bd94; border-radius: 12px; }

ul,ol { margin-bottom: 12px; }
section ul, section ol { padding-left: 18px; margin-bottom: 9px; }
li { margin-bottom: 7px; }

.text-section, .policy_details, .gdpr_text, .terms_details, .cookies_policy_text {
  background: transparent;
  font-size: 1rem;
  color: var(--text-vintage);
  line-height: 1.6;
  padding-right: 7px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.map_location {
  background: #fff6e9;
  border-radius: 10px;
  border: 1px solid #d4bd94;
  padding: 18px 14px;
  margin-top: 12px;
  color: #40312d;
}
.confirmation_text { font-size: 1.17rem; margin: 12px 0 0 0; }


/* === RESPONSIVE DESIGN (MOBILE FIRST, DESKTOP @ 768px && 1200px) === */
@media (max-width: 1200px) {
  .container { max-width: 92vw; padding-left: 8px; padding-right: 8px; }
  .footer .content-wrapper { gap: 19px; }
}
@media (max-width: 980px) {
  .main-nav {
    gap: 13px;
    margin-left: 14px;
  }
  .footer .content-wrapper { gap: 14px; }
}
@media (max-width: 850px) {
  header {
    flex-direction: row;
    height: 64px;
    padding: 0;
  }
  .logo { margin-left: 12px; }
  .button.primary { margin-left: 12px; margin-right: 7px; font-size: 1rem; padding: 10px 17px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.27rem; }
  .hero, .about, .contact, .services, .features, .testimonials, .section {
    padding: 24px 5vw;
    margin-bottom: 36px;
    border-radius: 11px;
  }
  .main-nav, .button.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
  }
  .container {
    max-width: 97vw;
    padding: 0 6px;
  }
  .content-wrapper {
    gap: 19px;
  }
  .card, .feature_grid li, .services li, .detailed_service_list > div {
    min-width: 98%;
    padding: 16px 12px 14px 12px;
    margin-bottom: 11px;
  }
  .card-container, .feature_grid, .service_list, .detailed_service_list, .workshop_calendar ul, .testimonial-slider, .testimonial-list, .client_testimonies {
    gap: 11px;
  }
  .content-grid { gap: 10px; flex-direction: column; }
  .testimonial-card {
    padding: 13px 10px 12px 13px;
    min-width: 93vw;
    max-width: 100vw;
    margin-bottom: 13px;
  }
  .testimonials, .program_highlights, .success-metrics, .before_after_cases {
    padding: 13px 2vw 17px 2vw;
    margin-bottom: 38px;
  }
  .features ul, .feature_grid, .service_list, .detailed_service_list, .coach_profiles ul {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 550px) {
  header, .hero, .section, .testimonials, .about, .services, .features {
    padding-left: 0; padding-right: 0;
    border-radius: 0;
  }
}

/* Text-image sections: column direction on mobile */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* Footer responsive */
@media (max-width: 768px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-menu {
    flex-direction: row;
    gap: 14px;
    margin-bottom: 7px;
  }
}

/* Cookie banner and modal mobile */
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
    padding: 18px 5px 10px 5px;
    font-size: 0.98rem;
  }
  .cookie-modal .cookie-modal-content { max-width: 96vw; padding: 18px 8px 12px 9px; }
}

/* ==== RETRO/VINTAGE DECORATIONS & PATTERNS ==== */
.section:before, .hero:before, .about:before, .testimonials:before, .footer:before {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: -7px;
  width: 98px; height: 7px;
  background: repeating-linear-gradient(90deg,#edab1d 0 14px,#fff6e9 14px 28px);
  border-radius: 11px 11px 0 0;
  opacity: 0.45;
}
.section:after, .hero:after, .about:after, .testimonials:after, .footer:after {
  content: '';
  display: block;
  position: absolute;
  right: 0; bottom: -7px;
  width: 98px; height: 7px;
  background: repeating-linear-gradient(90deg,#fff6e9 0 14px,#edab1d 14px 28px);
  border-radius: 0 0 11px 11px;
  opacity: .45;
}

/* Subtle shadow under sticky/fixed banners */
section, .hero, .about, .testimonials { position: relative; z-index: 0; }

/* =========== MICRO-INTERACTIONS ============ */
a, button { transition: color .12s, background .16s, border .13s, box-shadow .12s, transform .13s; }

input[type='checkbox'] {
  accent-color: #edab1d;
  width: 18px;
  height: 18px;
}

/* ========== SPECIFIC CLASSES (ensures HTML mapping) ========== */
.content-wrapper, .content-grid, .testimonial-slider, .testimonial-list, .client_testimonies, .feature_grid, .service_list, .detailed_service_list, .workshop_calendar ul, .coach_profiles ul, .before_after_cases ul, .faq_section ul, .resource-list ul, .guides_and_articles ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/***** HIDE DEFAULT SCROLLBAR FOR SLIDES (for .testimonial-slider if JS slides) *****/
.testimonial-slider::-webkit-scrollbar, .testimonial-list::-webkit-scrollbar {
  height: 0;
  background: transparent;
}

/***** HOVER STATES FOR LINKS & CARDS *****/
a, .footer-menu a, .main-nav a, .mobile-nav a, .button {
  outline: none;
}
a:focus-visible, .button:focus-visible {
  outline: 2px solid var(--accent);
}
a:active, .button:active {
  transform: scale(0.98);
}

/***** Patterned Background Option - subtle dots *****/
body {
  background-color: #F7F7F7;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='4' y='4' width='2' height='2' fill='%23edab1d' fill-opacity='0.12'/%3E%3C/svg%3E");
}

/***** Other utility classes for exact selector mapping *****/
.price, .price_tag { color: var(--accent); font-weight: 700; font-family: 'Montserrat', Georgia, serif; }

/**************************************
* Custom Prop Fallbacks & Accessibility  *
***************************************/
@media (prefers-color-scheme: dark) {
  body {
    background: #211b13;
    color: #f7f7f7;
  }
  .hero, .section, .about, .features, .services, .testimonials {
    background: #342a1b;
    color: #f7f7f7;
    border-color: #a88436;
  }
  .footer, footer {
    background: #120c03;
    color: var(--accent);
  }
  .testimonial-card, .card, .feature_grid li, .program_highlights, .success-metrics, .before_after_cases {
    background: #282114;
    color: #f7f7f7;
    border-color: #a88436;
  }
}

/*********************************************************
* END OF STYLE.CSS                                       *
*********************************************************/
