/* 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: 'Roboto', Arial, Helvetica, sans-serif;
  background: #FAF6EE;
  color: #3E2C23;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #203864;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A7452E;
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}
input, button, select, textarea {
  font-family: inherit;
}

/* BRAND COLORS & FONTS (with retro palette) */
:root {
  --primary: #203864; /* Brand Primary */
  --secondary: #50B2C0; /* Brand Secondary */
  --accent: #F4F7FA; /* Brand Accent */
  --retro-bg: #FBF4E2; /* Warm vintage beige */
  --retro-brown: #B08B4F; /* 70s brown */
  --retro-red: #A7452E;
  --retro-mustard: #D4A823;
  --retro-green: #49735A;
  --retro-blue: #256877;
  --retro-orange: #FF9954;
  --neutral: #3E2C23;
  --header-shadow: 0 2px 14px 0 rgba(55,35,10,0.08);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
}
h1 { font-size: 2.5rem; letter-spacing: -1.5px; color: var(--retro-brown); }
h2 { font-size: 2rem; color: var(--retro-red); }
h3 { font-size: 1.4rem; color: var(--retro-blue); }
h4 { font-size: 1.1rem; color: var(--retro-green); }
p, ul, ol, li, span, label {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--neutral);
  line-height: 1.7;
}
ul, ol { margin-left: 18px; margin-bottom: 16px; }
ul li, ol li {
  padding-left: 6px;
  margin-bottom: 8px;
}
strong { font-weight: bold; }

/* RETRO EFFECTS: patterns, borders, subtle shadows */
body {
  background: var(--retro-bg) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><rect x="0" y="0" width="40" height="40" fill="none"/><circle fill="%23F4E6C0" r="2" cx="30" cy="30"/></svg>') repeat;
}

/* REUSABLE CONTAINERS */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  background: #FFF9F2;
  border-radius: 22px;
  box-shadow: 0 3px 18px 0 rgba(80,40,0,0.07);
  padding: 40px 20px;
  margin-bottom: 60px;
  position: relative;
}
.cta-section {
  background: var(--retro-mustard);
  border: 2.5px dashed var(--retro-orange);
  box-shadow: 0 2px 12px 0 rgba(130,90,30,0.11);
}

/* SECTION SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* CARD & FLEX LAYOUTS */
.card-container, .service-cards, .service-list, .team-section, .card-grid, .faq-list, .course-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card, .service-card, .service-block, .team-member, .faq-item, .course-highlight {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
  background: #FFF8EE;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(143, 95, 25, 0.07);
  border: 2px solid var(--retro-brown);
  padding: 28px 20px 22px 20px;
}
.card:last-child, .service-card:last-child, .service-block:last-child, .team-member:last-child, .faq-item:last-child { margin-bottom: 0; }

.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;
  padding: 20px;
  background: #FFF;
  border-left: 8px solid var(--retro-mustard);
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(55,35,10,0.06);
}
.testimonial-card p {
  font-size: 1.12rem;
  color: #30240C;
  font-family: 'Roboto Slab', 'Roboto', Arial, sans-serif;
  font-style: italic;
}
.testimonial-user {
  font-size: 0.97rem;
  color: var(--retro-blue);
  margin-left: auto;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* UTILITY */
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }

/* BUTTONS */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--retro-red);
  color: #fff;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  padding: 13px 38px;
  border: none;
  border-radius: 38px;
  cursor: pointer;
  box-shadow: 0 4px 16px 0 rgba(120, 80, 40, 0.07);
  text-shadow: 0 2px 2px rgba(180,70,20,0.08);
  letter-spacing: .02em;
  transition: background 0.2s, color 0.2s, box-shadow 0.24s, transform 0.17s;
  margin-top: 20px;
  margin-bottom: 4px;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--retro-brown);
  color: #fff0d9;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px 0 rgba(150,105,47,0.13);
}
.btn-secondary {
  background: var(--retro-mustard);
  color: var(--neutral);
  border: 2px solid var(--retro-orange);
  text-shadow: none;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--retro-orange);
  border-color: var(--retro-brown);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* MAIN NAV */
header {
  background: #fff8ec;
  box-shadow: var(--header-shadow);
  border-bottom: 4px solid var(--retro-mustard);
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 17px 20px;
  position: relative;
}
.logo img {
  max-height: 46px;
  filter: sepia(.24) contrast(1.1) saturate(1.2);
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--retro-brown);
  border-bottom: 3px solid transparent;
  padding-bottom: 4px;
  transition: color 0.15s, border-color 0.17s;
  letter-spacing: .01em;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--retro-red);
  border-bottom: 3px solid var(--retro-red);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--retro-brown);
  color: #fffde5;
  font-size: 2.2rem;
  border: none;
  border-radius: 10px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 120;
  margin-left: 12px;
  box-shadow: 0 2px 10px 0 rgba(180,120,50,0.10);
  transition: background 0.2s;
}
.mobile-menu-toggle:focus,.mobile-menu-toggle:hover {
  background: var(--retro-mustard);
  color: var(--retro-red);
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(255, 250, 230, 0.94);
  z-index: 200;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.38s cubic-bezier(.71,-0.25,.44,1.43), opacity 0.22s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--retro-red);
  font-size: 2.7rem;
  font-weight: 700;
  margin: 26px 0 0 24px;
  cursor: pointer;
  z-index: 210;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--retro-brown);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 45px 38px 28px 32px;
  width: 100vw;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  color: var(--retro-brown);
  font-weight: 600;
  padding: 15px 8px 10px 8px;
  border-radius: 10px;
  transition: background 0.15s, color 0.11s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--retro-mustard);
  color: var(--retro-red);
}

/* Hide main-nav, show burger on mobile */
@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Only show mobile menu when open */
@media (max-width: 1000px) {
  .mobile-menu {
    display: flex;
  }
}

/* HERO & USP LISTS */
ul li img {
  height: 29px;
  width: 29px;
  margin-right: 11px;
  vertical-align: middle;
  filter: drop-shadow(0 1px 1px #e7cfb8);
}

/* SERVICE CARDS */
.service-cards, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-card, .service-block {
  background: #FFF8EE;
  border: 1.8px solid var(--retro-brown);
  border-radius: 14px;
  box-shadow: 0 3px 18px 0 rgba(110,70,20,0.07);
  padding: 28px 20px 18px 20px;
  min-width: 260px;
  flex: 1 1 260px;
  position: relative;
  transition: box-shadow 0.23s, transform 0.23s;
}
.service-card:hover, .service-block:hover {
  box-shadow: 0 7px 28px 0 rgba(170,95,30,0.11);
  transform: scale(1.03) translateY(-4px);
}
.price {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--retro-mustard);
  color: var(--retro-red);
  font-weight: 700;
  font-size: 1.07rem;
  border-radius: 9px;
  padding: 4px 14px;
  margin: 15px 0 0 0;
  display: inline-block;
  box-shadow: 0 2px 8px 0 #ffd08021;
  border: 1px solid #f1dec0;
}

/* TEAM SECTION */
.team-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.team-member {
  background: #FFF8E3;
  border-radius: 13px;
  border: 1.5px solid var(--retro-green);
  box-shadow: 0 2px 8px 0 rgba(55,120,64,0.07);
  padding: 20px 16px 16px 16px;
  flex: 1 1 240px;
  min-width: 220px;
  margin-bottom: 20px;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 8px;
}
.faq-item {
  background: #fff;
  border-left: 6px solid var(--retro-green);
  border-radius: 13px;
  box-shadow: 0 1px 7px 0 rgba(100,140,120,0.04);
  padding: 22px 18px 16px 20px;
  transition: box-shadow 0.17s;
}
.faq-item h2 {
  font-size: 1.22rem;
  color: var(--retro-green);
  margin-bottom: 10px;
}
.faq-item p {
  margin-bottom: 2px;
}

/* CTAS & BLOCKS */
.cta-block {
  background: var(--retro-orange);
  border-radius: 12px;
  border: none;
  padding: 24px 18px;
  box-shadow: 0 3px 20px 0 rgba(255, 180, 100, 0.09);
  color: #fff;
  margin-top: 26px;
  text-align: center;
}
.cta-block a {
  margin-top: 15px;
}

.map-block {
  background: #F4E6C9;
  border-radius: 10px;
  border: 1.5px solid var(--retro-brown);
  padding: 10px 18px 16px;
  margin-bottom: 17px;
  box-shadow: 0 1px 9px 0 rgba(200, 170, 120, .06);
}
.business-hours {
  border-radius: 10px;
  background: #FFF6E0;
  padding: 8px 18px;
  border: 1.2px dashed var(--retro-orange);
  margin-bottom: 16px;
  font-size: 0.99rem;
}

/* COURSE HIGHLIGHT */
.course-highlight {
  background: var(--retro-mustard);
  border-left: 8px solid var(--retro-red);
  color: var(--primary);
  border-radius: 17px;
  box-shadow: 0 2px 18px 0 #e7ab451a;
  padding: 30px 36px 20px 26px;
}

/* FOOTER */
footer {
  background: #FFF6E2;
  border-top: 4px solid var(--retro-brown);
  padding: 0 0 0 0;
}
footer .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 20px 12px 20px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--retro-brown);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.13s;
  text-decoration: underline dashed 1.2px #e5b25a;
}
.footer-nav a:hover {
  color: var(--retro-red);
  text-decoration: underline solid 1.7px var(--retro-red);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  color: var(--retro-red);
  font-size: 1.05rem;
}
.footer-brand img {
  max-height: 32px;
}

/* COOKIE CONSENT BANNER */
#cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #FFFCF3;
  border-top: 3px solid var(--retro-brown);
  box-shadow: 0 -2px 22px 0 rgba(100,70,14,0.12);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 36px;
  z-index: 3000;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--retro-red);
  animation: banner-slide-up 0.58s cubic-bezier(.83,-0.18,.4,1.14);
}
@keyframes banner-slide-up {
  0% { transform: translateY(100%); opacity: 0; }
  60% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
#cookie-consent-banner .cookie-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-btn {
  padding: 8px 22px;
  border-radius: 21px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  cursor: pointer;
  margin-left: 2px;
  font-size: 1.03rem;
  background: var(--retro-red);
  color: #fff8ec;
  transition: background 0.16s, color 0.12s, box-shadow 0.24s;
  box-shadow: 0 2px 10px 0 #cf8b3e15;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--retro-mustard);
  color: var(--retro-red);
}
.cookie-btn.secondary {
  background: #fff8ec;
  color: var(--retro-red);
  border: 2px solid var(--retro-red);
}
.cookie-btn.secondary:hover {
  background: var(--retro-red);
  color: #fff8ec;
}

/* COOKIE MODAL */
#cookie-modal {
  display: none;
  position: fixed;
  z-index: 4000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(50,20,0,0.27);
  justify-content: center;
  align-items: center;
}
#cookie-modal.open {
  display: flex;
  animation: modal-slide-in 0.35s cubic-bezier(.83,-0.18,.4,1.14);
}
@keyframes modal-slide-in {
  0% { opacity: 0; transform: scale(.93) translateY(30px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-content {
  background: #FFF9F0;
  border-radius: 20px;
  box-shadow: 0 12px 60px 0 rgba(88,58,14,0.12);
  padding: 42px 35px 28px 30px;
  min-width: 295px;
  max-width: 98vw;
  color: var(--neutral);
  position: relative;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal-content h3 {
  font-size: 1.4rem;
  color: var(--retro-red);
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 1rem;
}
.cookie-toggle {
  width: 36px; height: 22px;
  border-radius: 16px;
  position: relative;
  background: #E6D4A5;
  outline: none;
  border: none;
  cursor: pointer;
  transition: background 0.18s;
  margin-right: 3px;
}
.cookie-toggle:checked {
  background: var(--retro-mustard);
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  top: 2.5px; left: 3px;
  width: 15px; height: 17px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.23s, background 0.13s;
}
.cookie-toggle:checked::before {
  transform: translateX(12px);
  background: #FFEDB5;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 15px; right: 20px;
  background: none;
  border: none;
  color: var(--retro-red);
  font-size: 2rem;
  cursor: pointer;
  transition: color .17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--retro-brown);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
    padding: 0 10px;
  }
  .content-wrapper {
    padding: 28px 9px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.28rem; }
  .container {
    padding: 0 4vw;
  }
  .main-nav {
    display: none;
  }
  .content-grid,
  .card-container,
  .service-cards,
  .service-list,
  .team-section,
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  section {
    padding: 30px 0 0 0;
  }
  .content-wrapper, section {
    margin-bottom: 38px;
    padding: 18px 4vw;
  }
  .service-card, .service-block, .card {
    min-width: unset;
    padding: 20px 10px 15px 10px;
  }
  .testimonial-card,
  .faq-item {
    flex-direction: column;
    gap: 10px;
    padding: 17px 10px;
  }
  .footer-nav {
    gap: 10px;
  }
  #cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px;
    gap: 10px;
    font-size: .99rem;
  }
  .cookie-modal-content {
    padding: 23px 8px 22px 10px;
    min-width: unset;
  }
}
@media (max-width: 600px) {
  .main-nav {
    display: none !important;
  }
  header .container { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .footer-brand {
    flex-direction: column;
    gap: 5px;
  }
}

/* SMALL ANIMATIONS & MICRO-INTERACTIONS */
.btn-primary, .btn-secondary {
  will-change: transform;
}
.testimonial-card, .faq-item, .service-card, .service-block, .card, .team-member {
  transition: box-shadow 0.22s, transform 0.17s;
}
.testimonial-card:hover, .faq-item:hover, .service-card:hover, .service-block:hover,
.card:hover, .team-member:hover {
  box-shadow: 0 6px 24px 0 rgba(209,181,77,0.09);
  transform: translateY(-6px) scale(1.018);
}

/* VISIBILITY & CONTRAST IN TESTIMONIALS */
.testimonial-card {
  color: #2b220d;
  background: #fffbe7;
  border-left: 8px solid var(--retro-mustard);
}
.testimonial-card p, .testimonial-card .testimonial-user {
  color: #2c1805;
  background: none;
}

/* ACCESSIBLE FOCUS */
:focus {
  outline: 2.5px dashed var(--retro-brown);
  outline-offset: 2px;
}

/* END OF CSS */
