/* RESET & BASE STYLES */
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F6F1EE;
  color: #2A3756;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
strong { font-weight: 700; }
em { font-style: italic; }

/* RETRO/VINTAGE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Impact, Arial Black, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.015em;
  color: #2A3756;
  text-wrap: balance;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  text-shadow: 0 3px 0 #E8B572, 0 7px 12px rgba(42, 55, 86, 0.08);
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: #26314c;
}
h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
h4, h5, h6 { font-size: 1rem; }
p, li, a, span {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #3e2b13;
}

/* RETRO COLOR PALETTE */
:root {
  --primary: #2A3756;
  --primary-dark: #222941;
  --secondary: #86AAE0;
  --secondary-light: #B2D5F9;
  --accent: #EDEDED;
  --retro-yellow: #FFD379;
  --retro-orange: #FF9862;
  --retro-navy: #233058;
  --retro-bg: #F6F1EE;
  --retro-brown: #C4B391;
  --retro-rose: #E4B3A1;
  --retro-green: #91A093;
  --testimonials-bg: #F9EFE4;
  --card-shadow: rgba(70, 60, 40, 0.10);
  --footer-bg: #EBE6DB;
  --pattern-stripes: repeating-linear-gradient(135deg, #FFD379, #FFD379 8px, #F6F1EE 8px, #F6F1EE 16px);
}

/* UTILITY / CONTAINERS */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

/* SECTION SPACING & MANDATORY SPACING */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .section, section {
    padding: 32px 8px;
    margin-bottom: 36px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--retro-bg);
  border-radius: 16px;
  box-shadow: 0 1px 8px var(--card-shadow);
  padding: 28px 22px;
  min-width: 220px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(44,44,18,0.10);
  transform: translateY(-4px) scale(1.025);
}
.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: 18px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--testimonials-bg);
  border-radius: 16px;
  border: 2px solid var(--retro-yellow);
  box-shadow: 0 2px 9px rgba(241,182,36,0.14);
  max-width: 420px;
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #3f3321;
  font-size: 1.12rem;
  font-style: italic;
  display: block;
}
.testimonial-card span {
  color: #2A3756;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fffbe8;
  border-radius: 14px;
  padding: 20px 16px;
  box-shadow: 0 1px 10px rgba(200,180,100,0.13);
}

/* HEADER/NAVIGATION */
header {
  width: 100%;
  background: var(--pattern-stripes);
  border-bottom: 3px solid var(--retro-navy);
  position: sticky;
  top: 0;
  z-index: 60;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 18px 14px 18px;
  justify-content: space-between;
}
.main-nav > a img {
  height: 48px;
  display: block;
  filter: drop-shadow(0 1px 0 #ffae57);
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 12px;
  background: transparent;
  color: var(--primary);
  font-weight: 700;
  transition: background 0.17s, color 0.17s;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  background: var(--retro-yellow);
  color: var(--retro-navy);
}

/* --- MOBILE NAV --- */
.mobile-menu-toggle {
  display: none;
  background: var(--retro-yellow);
  border: none;
  font-size: 2.0rem;
  width: 48px;
  height: 48px;
  border-radius: 100px;
  color: var(--primary);
  position: fixed;
  right: 18px;
  top: 18px;
  z-index: 120;
  box-shadow: 0 2px 10px rgba(42,55,86,0.08);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--retro-orange);
  color: #fff;
}
@media (max-width: 1020px) {
  .main-nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--retro-yellow);
  box-shadow: 0 2px 44px rgba(0,0,0,0.17);
  z-index: 200;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(.93,.02,.67,1.24), opacity 0.23s;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary-dark);
  font-size: 2.3rem;
  align-self: flex-end;
  margin: 24px 24px 6px 0;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--retro-rose);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  align-items: flex-start;
  padding: 22px 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  margin-bottom: 2px;
  font-weight: 700;
  color: var(--primary-dark);
  border-radius: 12px;
  padding: 7px 16px;
  width: 100%;
  transition: background 0.15s, color 0.14s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--accent);
  color: var(--retro-orange);
}
@media (min-width: 1021px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO SECTION */
.hero {
  background: var(--accent);
  background-image: radial-gradient(circle 600px at 60% 0px, #FFD37910 12%, transparent 60%),
    repeating-linear-gradient(120deg, #FFD37918 0, #FFD37918 8px, transparent 8px, transparent 16px);
  border-radius: 0 0 40px 40px;
  box-shadow: 0 2px 22px rgba(255,211,121,0.08);
  margin-bottom: 48px;
  min-height: 290px;
}
.hero .content-wrapper {
  align-items: flex-start;
  padding: 10px 0 12px 0;
}
.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
  color: var(--primary-dark);
}
.hero p {
  font-size: 1.18rem;
  margin-bottom: 20px;
}

/* CTA PRIMARY BUTTON */
.cta-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 14px 34px;
  margin-top: 8px;
  background: var(--retro-yellow);
  color: var(--primary-dark);
  border-radius: 100px;
  outline: none;
  border: 2.5px solid var(--primary-dark);
  box-shadow: 0 3px 0 #C4B3912e, 0 7px 14px #E4B3A108;
  cursor: pointer;
  text-shadow: 0 2px 0 #fffbe8;
  transition: background 0.15s, color 0.19s, box-shadow 0.15s, transform 0.16s;
}
.cta-primary:hover,
.cta-primary:focus {
  background: var(--retro-orange);
  color: #fff;
  box-shadow: 0 12px 36px #FFD37933, 0 5px 10px #FFD37922;
  transform: scale(1.035) translateY(-2px);
}

/* SECTIONS & TYPO */
section ul {
  padding-left: 24px;
  margin: 0 0 16px 0;
}
section ul li {
  list-style-type: disc;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #4c3a1e;
}
.text-section p, .text-section ul {
  margin-bottom: 12px;
  color: #3f3321;
}
.text-section h3 {
  margin: 18px 0 7px 0;
  color: var(--retro-navy);
  font-size: 1.05rem;
}

/* FEATURES GRID & CARDS */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 24px;
  margin-bottom: 20px;
}
.features .feature-grid li {
  flex: 1 1 245px;
  background: #fffbe8;
  border-radius: 16px;
  box-shadow: 0 1px 8px #FFD3790d;
  padding: 22px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 200px;
  gap: 9px;
}
.features .feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 2px;
  filter: sepia(30%) saturate(112%) hue-rotate(-10deg) drop-shadow(0 2px 0 #EDEDED);
}
.features .feature-grid h3 {
  font-size: 1.04rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

/* ABOUT/VALUES/TEAM SECTION */
.about-short, .about, .values, .team, .gdpr-policy, .privacy-policy, .cookie-policy, .terms-of-use, .thank-you {
  background: var(--accent);
  border-radius: 24px;
  box-shadow: 0 0px 7px #C4B39118;
}
.values ul li, .about ul li, .team ul li {
  margin-bottom: 8px;
  color: #574516;
}

/* TESTIMONIALS */
.testimonials {
  background: var(--testimonials-bg) url('data:image/svg+xml;utf8,<svg width="48" height="48" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="24" r="4" fill="%23FFD379"/><circle cx="38" cy="16" r="3" fill="%2386AAE0"/></svg>') right 12vw bottom 6vh repeat-y;
  border-radius: 24px;
}
@media (max-width: 570px) {
  .testimonials {
    background-position: right 2vw bottom 8vh;
  }
}

/* SERVICES */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 18px 0 16px 0;
}
.services-list li {
  flex: 1 1 270px;
  background: #fffdf5;
  border: 1.5px dashed #FFD379;
  border-radius: 17px;
  box-shadow: 0 1px 7px #FFD37912;
  padding: 22px 16px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  transition: box-shadow 0.17s, transform 0.16s;
}
.services-list li:hover {
  box-shadow: 0 16px 42px #FFD37933;
  transform: scale(1.025) translateY(-2px);
}
.service-price {
  color: var(--retro-orange);
  font-size: 1.06rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 0.03em;
  background: #FFD37940;
  border-radius: 8px;
  padding: 2px 10px;
  margin-top: 7px;
}

/* BENEFITS SECTION (SERVICES) */
.benefits ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.benefits ul li {
  flex: 1 1 245px;
  background: #F9EFE4;
  border: 2px solid #FFD379;
  border-radius: 16px;
  padding: 19px 15px 15px;
  box-shadow: 0 1px 14px #FFD3791d;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  min-width: 190px;
}
.benefits ul img {
  width: 32px;
  margin-bottom: 1px;
}

/* WORKSHOPS LIST */
.workshops {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.workshops li {
  flex: 1 1 290px;
  background: #fffdf7;
  border-radius: 14px;
  box-shadow: 0 1px 8px #FFD37913;
  padding: 20px 17px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
  border-left: 5px solid #86AAE0;
}
.workshops li h3 {
  color: var(--primary-dark);
  font-size: 1.08rem;
  margin-bottom: 4px;
}

/* BLOG POST GRID */
.blog-post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 12px 0 15px 0;
}
.blog-post-grid li {
  flex: 1 1 290px;
  background: #fffbe8;
  border-radius: 16px;
  box-shadow: 0 1px 10px #FFD37910;
  padding: 20px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 200px;
}
.blog-post-grid li h3 {
  font-size: 1.09rem;
  color: var(--retro-navy);
  margin-bottom: 4px;
}
.blog-post-grid li a {
  color: var(--retro-yellow);
  font-weight: 700;
  margin-top: 6px;
  transition: color 0.16s;
}
.blog-post-grid li a:hover {
  color: var(--retro-orange);
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-accordion > div {
  background: #fffbe8;
  border-radius: 13px;
  border-left: 4px solid #86AAE0;
  box-shadow: 0 0px 12px #FFD3790d;
  padding: 18px 18px 12px 18px;
}
.faq-accordion h3 {
  margin-bottom: 7px;
  font-size: 1.05rem;
  color: var(--retro-navy);
}
.faq-accordion p {
  font-size: 1rem;
}

/* CTA SECTIONS */
.cta {
  background: #FFD37920;
  border-radius: 28px;
  box-shadow: 0 1px 14px #FFD37912;
  text-align: left;
  margin: 38px 0 45px 0;
  padding: 36px 18px 34px 18px;
}
.cta h2 {
  color: var(--primary-dark);
  margin-bottom: 7px;
}
.cta p {
  margin-bottom: 14px;
  font-size: 1.07rem;
}

/* FOOTER */
footer {
  background: var(--footer-bg);
  border-top: 3px solid var(--retro-navy);
  padding: 28px 0 24px 0;
  margin-top: 48px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
  margin-bottom: 9px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-menu li a {
  font-size: 1rem;
  color: var(--retro-navy);
  text-decoration: underline dotted;
  padding: 3px 7px;
  border-radius: 4px;
  transition: background 0.18s, color 0.15s;
}
.footer-menu li a:hover {
  color: var(--retro-yellow);
  background: #2A375627;
}
footer p {
  text-align: center;
  color: #7d6739;
  font-size: 0.96rem;
  margin: 0;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe8;
  border-top: 3px solid #FFD379;
  box-shadow: 0 -2px 22px #FFD37915;
  z-index: 99999;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 36px;
  padding: 18px 16px 18px 16px;
  font-size: 1rem;
  animation: cookieBannerIn 0.9s cubic-bezier(.12,.68,.69,1.08);
}
.cookie-banner p {
  flex: 1 1 340px;
  color: #5b4930;
  margin-bottom: 0;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 20px;
  border: 2px solid #FFD379;
  margin-right: 6px;
  margin-left: 0;
  padding: 7px 18px;
  background: #FFFCF3;
  color: #2A3756;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.13s, color 0.14s, border .14s;
}
.cookie-banner .cookie-btn.accept {
  background: var(--retro-yellow);
  color: var(--primary-dark);
}
.cookie-banner .cookie-btn.accept:hover { background: var(--retro-orange); color: #fff; }
.cookie-banner .cookie-btn.reject {
  background: #FFD37922;
  color: var(--retro-navy);
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus { background: #E4B3A1; color: #fff; }
.cookie-banner .cookie-btn.settings {
  background: none;
  color: var(--retro-yellow);
  border: 2px solid #FFD37955;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #FFD37921;
  color: var(--primary-dark);
}

@keyframes cookieBannerIn {
  from { opacity: 0; transform: translateY(70px); }
  to { opacity: 1; transform: none; }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 100000;
  background: #22294199;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s;
  overflow: auto;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fffbe8;
  border-radius: 16px;
  box-shadow: 0px 10px 40px #FFD37930;
  max-width: 370px;
  width: 100vw;
  padding: 38px 22px 28px 22px;
  position: relative;
  color: #31240e;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 20px;
  background: none;
  border: none;
  color: var(--retro-orange);
  font-size: 2.1rem;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { color: var(--retro-navy); }
.cookie-modal-content h3 {
  margin-bottom: 11px;
  color: var(--primary-dark);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 22px 0 17px 0;
}
.cookie-categories .cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #FFFCF9;
  border-radius: 10px;
  padding: 8px 10px;
}
.cookie-toggle {
  appearance: none;
  width: 44px;
  height: 24px;
  background: #EDEDED;
  border-radius: 100px;
  position: relative;
  outline: none;
  border: 2px solid #FFD37945;
  transition: background .16s, border .17s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: var(--retro-yellow);
  border: 2px solid #FFD379;
}
.cookie-toggle:before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 2px; top: 2px;
  box-shadow: 0 1px 4px #FFD37923;
  transition: transform .18s;
}
.cookie-toggle:checked:before {
  transform: translateX(20px);
}
.cookie-modal-content .cookie-btns {
  display: flex;
  gap: 16px;
  margin-top: 22px;
  justify-content: flex-end;
}
.cookie-modal-content .cookie-btn {
  border: 2px solid #FFD379;
  border-radius: 16px;
  background: var(--retro-yellow);
  color: var(--primary-dark);
  padding: 7px 20px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.12s, color 0.14s;
}
.cookie-modal-content .cookie-btn:hover {
  background: var(--retro-orange);
  color: #fff;
}

/* ANIMATIONS */
.card, .testimonial-card, .services-list li, .feature-item, .workshops li, .faq-accordion > div {
  transition: box-shadow 0.19s, transform 0.18s;
}
.card:hover, .testimonial-card:hover, .services-list li:hover, .feature-item:hover, .workshops li:hover, .faq-accordion > div:hover {
  box-shadow: 0 9px 28px #FFD37931;
  transform: scale(1.018) translateY(-2px);
}

/* RESPONSIVE FLEX/DESKTOP LAYOUTS */
@media (max-width: 1020px) {
  .main-nav {
    flex-direction: row;
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .features .feature-grid, .services-list, .benefits ul, .workshops, .blog-post-grid {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 6px;
  }
  .main-nav > a img {
    height: 38px;
  }
  .testimonial-slider, .features .feature-grid, .card-container, .services-list, .benefits ul, .workshops, .blog-post-grid {
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper {
    gap: 13px;
  }
  .testimonial-card { max-width: 100%; }
  .card, .services-list li, .benefits ul li, .workshops li, .blog-post-grid li, .faq-accordion > div {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.28rem; margin-bottom: 11px; }
  h2 { font-size: 1.07rem; }
  .section, section { padding: 18px 3px; }
  .main-nav { padding: 8px 3px 8px 3px; }
  .hero { min-height: 180px; }
  .cta { padding: 19px 6px 19px 6px; border-radius: 17px; }
  footer { padding: 19px 0 14px 0; }
}

/* ENSURE NO OVERLAPPING (SPACING ENFORCED) */
section, .card, .testimonial-card, .services-list li, .feature-item, .workshops li, .blog-post-grid li, .faq-accordion > div {
  margin-bottom: 20px;
}
/* Remove margin-bottom from last elements in a flex wrap, to prevent extra space at bottom. */
.features .feature-grid li:last-child, .services-list li:last-child, .workshops li:last-child, .blog-post-grid li:last-child, .benefits ul li:last-child, .faq-accordion > div:last-child, .testimonial-card:last-child {
  margin-bottom: 0;
}

/* FORMATS FOR TEXT-LINKS IN RESOURCES, PRIVACY ETC. */
.text-section a {
  color: var(--retro-yellow);
  text-decoration: underline dashed;
  font-weight: 700;
  transition: color 0.17s, background 0.14s;
  border-radius: 4px;
  padding: 2px 6px;
}
.text-section a:hover { color: var(--retro-orange); background: #FFD37925; }

a:focus, .cta-primary:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus { outline: 2.5px dotted #FF9862; outline-offset: 2.3px; }

/* MISC RETRO PATTERNS/DETAILS */
section {
  position: relative;
  overflow: visible;
}
section::before {
  content: '';
  display: block;
  position: absolute;
  left: -18px; top: 13px;
  width: 14px; height: 97px;
  background: repeating-linear-gradient(120deg,#FFD37988 0, #FFD37988 9px, transparent 9px, transparent 18px);
  opacity: 0.18;
  pointer-events: none;
  border-radius: 7px;
}
.section:last-of-type::before { display: none; }

/* HIDE PATTERN FOR MOBILE (TO SAVE SPACE) */
@media (max-width: 500px) {
  section::before{display:none;}
}

/* THANK YOU SECTION */
.thank-you h1 {
  color: var(--primary-dark);
  font-size: 2rem;
  margin-bottom: 14px;
}


/* ----------------------------------------
   END CSS -- All rules above comply to the requirements:
   - No CSS Grid/columns (FLEXBOX ONLY)
   - Spacing and contrast enforced
   - All pages/classes included
   - Retro/Vintage stylish with brand palette
   - Responsive, accessible, interactive
   - Hamburger and cookie modal with animation
---------------------------------------- */