/* CSS RESET & NORMALIZE */
* { box-sizing: border-box; padding: 0; margin: 0; }
html, body { height: 100%; font-size: 16px; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fcfaed;
  scroll-behavior: smooth;
}
body {
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  color: #34302b;
  background: #fcfaed;
  min-height: 100vh;
  position: relative;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', Impact, Arial, sans-serif; font-weight: 700; letter-spacing: 0.01em; color: #1a1625; }
p { line-height: 1.7; margin-bottom: 16px; }
strong { font-weight: 700; }
::-webkit-input-placeholder { color: #8f8373; }
::-moz-placeholder { color: #8f8373; }
:-ms-input-placeholder { color: #8f8373; }
::placeholder { color: #8f8373; }

/* VINTAGE RETRO COLOR PALETTE */
:root {
  --ee-primary: #072445;
  --ee-secondary: #2C84B8;
  --ee-accent: #FFD166;
  --ee-bg: #fcfaed;
  --ee-white: #fff9e6;
  --ee-card: #f7efd2;
  --ee-orange: #ea9156;
  --ee-brown: #73503c;
  --ee-text: #34302b;
  --ee-link: #2C84B8;
  --ee-link-hover: #ea9156;
}

/* TYPOGRAPHY SCALE (Retro Inspired) */
h1 { font-size: 2.8rem; margin-bottom: 24px; text-shadow: 2px 2px 0 #FFD166; }
h2 { font-size: 2rem; margin-bottom: 16px; text-shadow: 1px 1px 0 #FFD16622; }
h3 { font-size: 1.35rem; margin-bottom: 8px; font-family: 'Montserrat', Impact, Arial, sans-serif; color: var(--ee-brown); }
h4 { font-size: 1.1rem; margin-bottom: 8px; font-family: 'Montserrat', Impact, Arial, sans-serif; }
.section, section { margin-bottom: 60px; padding: 40px 20px; }

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}

/****************** HEADER ******************/
header {
  background: var(--ee-primary);
  color: #fff;
  box-shadow: 0 2px 12px 0 #07244530;
  position: sticky; top: 0; z-index: 500;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 12px;
}
.logo img { height: 38px; }

.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Impact, Arial, sans-serif;
  color: #ffeab6;
  padding: 9px 0;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--ee-accent);
  border-bottom: 2px solid var(--ee-accent);
}

.cta-btn {
  font-family: 'Montserrat', Impact, Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 11px 32px;
  border-radius: 30px;
  background: var(--ee-accent);
  color: var(--ee-primary);
  box-shadow: 0 4px 16px #FFD16625, 0 1.5px 0 #B5A06C;
  border: none;
  letter-spacing: 0.09em;
  cursor: pointer;
  margin-left: 22px;
  margin-right: 12px;
  transition: background 0.22s, transform 0.12s;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--ee-orange);
  color: #fff;
  transform: translateY(-2px) scale(1.025);
}

.mobile-menu-toggle {
  font-family: inherit;
  font-size: 2.25rem;
  background: none;
  border: none;
  color: var(--ee-accent);
  cursor: pointer;
  margin-left: 18px;
  display: none;
  z-index: 999;
  line-height: 1;
  padding: 6px 11px;
  border-radius: 12px;
  transition: background 0.16s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #ffeab6;
  color: var(--ee-primary);
}

/****************** MOBILE MENU ******************/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: #fcfaedee;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-110%);
  transition: transform 0.35s cubic-bezier(.68,-0.55,.27,1.55);
  box-shadow: 3px 0 18px 0 #2c84b814;
  overflow-y: auto;
  padding: 30px, 22px;
}
.mobile-menu.open { transform: translateX(0%); }
.mobile-menu-close {
  font-size: 2.1rem;
  color: var(--ee-primary);
  background: none;
  border: none;
  align-self: flex-end;
  margin: 12px 18px 8px 0;
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 20px 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', Impact, Arial, sans-serif;
  font-size: 1.15rem;
  color: var(--ee-primary);
  padding: 12px 0;
  border-bottom: 1.5px dotted var(--ee-accent);
  transition: color 0.16s, background 0.13s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--ee-accent);
  color: var(--ee-primary);
}

/***** Hide/Show Main Nav on Mobile *****/
@media (max-width: 1020px) {
  .main-nav { display: none; }
  .cta-btn { margin-left: 6px; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 1021px) {
  .mobile-menu { display: none !important; }
}

/****************** HERO SECTION ******************/
.hero {
  background: linear-gradient(90deg,#ffeab6 5%, #f7efd2 50%, #fcfaed 100%);
  border-bottom: 4px solid #73503c11;
  position: relative;
}
.hero .container {
  min-height: 370px;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 660px;
  gap: 28px;
  padding: 38px 0 38px 0;
}
.hero h1 {
  color: var(--ee-primary); font-size: 2.6rem;
  font-family: 'Montserrat', Impact, Arial, sans-serif;
  text-shadow: 3px 2px 0 #FFD16660;
}
.hero p {
  color: var(--ee-brown);
  font-size: 1.14rem;
  line-height: 1.7;
  max-width: 540px;
}

/****************** FEATURES SECTION ******************/
.features .content-wrapper > ul,
.features .content-wrapper > ol {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 18px;
}
.features .content-wrapper > ul > li, .features .content-wrapper > ol > li {
  background: var(--ee-card);
  border-radius: 16px;
  box-shadow: 0 3px 18px 0 #07244516;
  padding: 28px 22px 20px 22px;
  flex: 1 1 210px;
  min-width: 195px;
  max-width: 340px;
  border: 2.5px dashed var(--ee-accent);
  margin-bottom: 20px;
  /* retro pattern background via svg? subtle stripes */
  background-image: repeating-linear-gradient(135deg,#ffeab642 0 8px,transparent 9px 16px);
}
.features .content-wrapper > ul > li img {
  width: 45px;
  margin-bottom: 10px;
}
.features .content-wrapper > ul > li h3 {
  color: var(--ee-orange);
  font-size: 1.18rem;
}
.features .content-wrapper > ul > li p {
  color: #665433;
  font-size: 1rem;
}

/****************** CARDS & SERVICES ******************/
.services-grid, .service-list, .workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0 26px 0;
  justify-content: space-between;
}
.service-card, .service-item, .workshop-card {
  background: var(--ee-card);
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 #2c84b814;
  border: 1.5px solid #b5a06c38;
  padding: 26px 20px 22px 20px;
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 320px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.22s, box-shadow 0.23s;
}
.service-card:hover,
.service-item:hover,
.workshop-card:hover {
  transform: translateY(-7px) scale(1.025);
  box-shadow: 0 6px 24px 0 #2C84B837;
}
.service-card h3, .service-item h3, .workshop-card h3 {
  color: var(--ee-brown);
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-family: 'Montserrat', Impact, Arial, sans-serif;
  letter-spacing: 0.02em;
}
.service-card strong, .service-item strong, .workshop-card strong {
  color: var(--ee-primary);
  font-weight: 700;
}

/****************** TESTIMONIALS ******************/
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--ee-white);
  border-left: 6px solid var(--ee-accent);
  border-radius: 16px;
  box-shadow: 0 2px 9px 0 #2C84B822;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #262219;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover { box-shadow: 0 6px 28px #FFD16633; }
.testimonial-card p {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 1.09rem;
  color: #25211a;
  font-style: italic;
  line-height: 1.6;
}
.testimonial-meta {
  font-family: 'Montserrat', Impact, Arial, sans-serif;
  font-size: 1em;
  color: var(--ee-brown);
  margin-left: 26px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/****************** CTA SECTION ******************/
.cta {
  background: repeating-linear-gradient(135deg,#ffd16608 0 24px,transparent 25px 46px), var(--ee-accent);
  text-align: center;
  border-radius: 22px;
  box-shadow: 0 3px 18px #2c84b81a;
}
.cta .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.cta h2 {
  color: var(--ee-primary);
  margin-bottom: 0.6em;
  font-size: 2rem;
  text-shadow: 1px 1px 0 #EAB36612;
}

/****************** ABOUT & TEAM ******************/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.values-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-left: 0;
}
.values-grid li {
  background: #ffeab6;
  color: var(--ee-brown);
  border-radius: 12px;
  padding: 14px 22px;
  font-family: 'Montserrat', Impact, Arial, sans-serif;
  font-size: 1rem;
  min-width: 190px;
  margin-bottom: 8px;
  border: 2px dotted #ebc074;
}
.team-bio {
  background: #f7efd2;
  border-left: 4px solid var(--ee-orange);
  border-radius: 12px;
  box-shadow: 0 2px 6px #ead7b433;
  padding: 16px 20px 10px 18px;
  margin-bottom: 12px;
}

/****************** INSIGHTS & ARTICLES ******************/
.insights .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.category-filter {
  font-family: 'Montserrat', Impact, Arial, sans-serif;
  font-size: 1.03rem;
  color: var(--ee-primary);
  margin-bottom: 12px;
}
.category-filter a {
  color: var(--ee-link);
  text-decoration: underline;
  transition: color 0.18s;
  font-weight: 600;
}
.category-filter a:hover {
  color: var(--ee-link-hover);
}
.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.article-list article {
  flex: 1 1 240px;
  background: #f7efd2;
  border-radius: 14px;
  box-shadow: 0 2px 8px #99732617;
  padding: 22px 18px;
  border-left: 4px solid var(--ee-accent);
  margin-bottom: 12px;
}
.featured-articles ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
}
.featured-articles li {
  background: #ffeab6;
  color: #665433;
  border-radius: 8px;
  padding: 8px 12px;
}

/****************** NEWSLETTER ******************/
.newsletter .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

/****************** CONTACT ******************/
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info strong { color: var(--ee-primary); }
.contact-info a { color: var(--ee-link); font-weight: 600; }
.contact-info a:hover { color: var(--ee-link-hover); }

/****************** LEGAL POLICY ******************/
.legal-policy .content-wrapper {
  background: var(--ee-card);
  border-radius: 16px;
  box-shadow: 0 3px 16px #eee7d891;
  padding: 36px 28px;
  margin-top: 40px;
  font-size: 1.04rem;
  color: #4f463b;
}
.legal-policy h1 { font-size: 2rem; }
.legal-policy h2 { font-size: 1.18rem; }

/****************** FOOTER ******************/
footer {
  background: var(--ee-primary);
  color: #fff9e6;
  padding: 32px 0 18px 0;
  position: relative;
  margin-top: 40px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-nav nav a {
  color: #ffeab6;
  font-family: 'Montserrat', Impact, Arial, sans-serif;
  font-size: 1rem;
  opacity: 0.88;
  padding: 2px 0;
  margin-right: 18px;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  transition: opacity 0.17s, border-color 0.22s;
}
.footer-nav nav a:hover {
  opacity: 1;
  border-bottom: 2px dotted var(--ee-accent);
}
.footer-info {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-info img { height: 34px; }
.footer-info p { margin: 0; font-size: 0.96rem; color: #ffeab6bb; }

/****************** EMBEDDED MAP ******************/
.embedded-map {
  background: #fffbe2;
  border: 2px dashed var(--ee-accent);
  border-radius: 10px;
  padding: 40px 18px;
  margin-top: 8px;
  text-align: center;
}
.embedded-map p em { color: #A2A2A2; }

/****************** THANK YOU / CONFIRMATION ******************/
.confirmation .content-wrapper {
  background: #f7efd2;
  border-radius: 20px;
  box-shadow: 0 3px 18px #99732641;
  padding: 36px 28px;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.confirmation a.cta-btn {
  margin: 0 auto;
}

/****************** COOKIE BANNER ******************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 22222;
  background: #f7efd2ee;
  border-top: 3px solid var(--ee-accent);
  box-shadow: 0 -2px 24px #73503c29;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 14px;
  font-size: 1.02rem;
  animation: slideUpCookie 0.9s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes slideUpCookie {
  0% { transform: translateY(120%); opacity: 0; }
  75% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Montserrat', Impact, Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 20px;
  border: none;
  padding: 8px 22px;
  margin-left: 8px;
  background: var(--ee-secondary);
  color: #fffbe2;
  cursor: pointer;
  transition: background 0.14s, transform 0.13s;
  box-shadow: 0 2.5px 8px #2c84b811;
}
.cookie-banner button.settings {
  background: var(--ee-accent);
  color: var(--ee-primary);
}
.cookie-banner button.reject {
  background: #c3b486;
  color: var(--ee-brown);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--ee-orange);
  color: #fff;
  transform: scale(1.04);
}

/****************** COOKIE MODAL ******************/
.cookie-modal {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #07244566;
  animation: fadeInModal 0.42s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes fadeInModal {
  0% {opacity:0;}
  100% {opacity: 1;}
}
.cookie-modal .cookie-modal-content {
  background: #fcfaed;
  border-radius: 18px;
  padding: 38px 26px 26px 26px;
  min-width: 310px;
  max-width: 96vw;
  box-shadow: 0 6px 30px #99732638;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h3 {
  font-size: 1.24rem;
  color: var(--ee-brown);
}
.cookie-modal .category-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal .category-list label {
  display: flex;
  align-items: center;
  font-size: 1.02rem;
  gap: 12px;
}
.cookie-modal .category-list input[type="checkbox"] {
  accent-color: var(--ee-accent);
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .modal-buttons button {
  font-family: 'Montserrat', Impact, Arial, sans-serif;
  font-weight: 600;
  border-radius: 20px;
  border: none;
  padding: 8px 22px;
  background: var(--ee-secondary);
  color: #fffbe2;
  cursor: pointer;
  transition: background 0.14s, transform 0.13s;
}
.cookie-modal .modal-buttons button.settings {
  background: var(--ee-accent);
  color: var(--ee-primary);
}
.cookie-modal .modal-buttons button.reject {
  background: #c3b486;
  color: var(--ee-brown);
}
.cookie-modal .modal-buttons button:hover, .cookie-modal .modal-buttons button:focus {
  background: var(--ee-orange);
  color: #fff;
  transform: scale(1.04);
}
.cookie-modal .close-modal {
  position: absolute;
  top: 13px; right: 22px;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: var(--ee-secondary);
  cursor: pointer;
}

/****************** FLEXBOX LAYOUT MANDATORY PROPERTIES ******************/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/****************** RESPONSIVE STYLES ******************/
@media (max-width: 991px) {
  .footer-nav { flex-direction: column; gap: 20px; align-items: flex-start; }
  .values-grid { flex-direction: column; gap: 12px; }
  .service-card, .service-item, .workshop-card { min-width: 90%; max-width: 98vw; }
  .values-grid li { min-width: unset; width: 100%; }
}
@media (max-width: 768px) {
  .container { padding: 0 12px; }
  .section, section { padding: 30px 6px; }
  .footer-nav { flex-direction: column; gap: 13px; }
  .hero .container { min-height: unset; }
  .hero .content-wrapper { padding: 24px 0; }
  .features .content-wrapper > ul, .features .content-wrapper > ol, .services-grid, .service-list, .workshop-list, .values-grid, .article-list { flex-direction: column; gap: 15px; }
  .testimonial-card { flex-direction: column; gap: 8px; align-items: flex-start; }
  .content-grid, .text-image-section { flex-direction: column; gap: 15px; }
  .cta-btn { margin-right: 0; margin-left: 0; }
}
@media (max-width: 520px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.19rem; }
  .service-card, .service-item, .workshop-card, .article-list article { padding: 15px 7px; }
  .section, section { padding: 22px 2px; }
  .footer-info img { height: 28px; }
  .cookie-modal .cookie-modal-content { padding: 15px 8px; }
}

/****************** UTILITY CLASSES ******************/
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 8px !important; }
.mt-3 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 8px !important; }
.mb-3 { margin-bottom: 16px !important; }
.d-none { display: none !important; }

/****************** MICRO-INTERACTIONS ******************/
a, button, .cta-btn, .main-nav a, .mobile-nav a, .cookie-banner button {
  transition-property: background, color, border, box-shadow, transform;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(.68,-0.55,.27,1.55);
}
.card, .service-card, .service-item, .workshop-card, .article-list article {
  transition: box-shadow 0.19s, transform 0.19s;
}
.card:hover, .service-card:hover, .service-item:hover, .workshop-card:hover, .article-list article:hover {
  box-shadow: 0 10px 30px #ffd1664a,0 0.5px 2px #a6794a1e;
  transform: scale(1.023) translateY(-3px);
}

::-webkit-scrollbar { width: 8px; background: #f7efd2; }
::-webkit-scrollbar-thumb { background: #b5a06c99; border-radius: 8px; }

/***** End of CSS *****/
