/* ==========================================================================
   CSS RESET & NORMALIZE
   ========================================================================== */
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;
  background: #fff;
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #23282e;
  -webkit-font-smoothing: antialiased;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  padding: 0;
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   ROOT VARIABLES (WITH FALLBACKS)
   ========================================================================== */
:root {
  --primary: #264653;
  --secondary: #E9C46A;
  --accent: #F4A261;
  --gray: #f6f6f9;
  --danger: #e63946;
  --success: #43aa8b;
  --font-display: 'Montserrat', 'Arial Rounded MT Bold', 'Comic Sans MS', cursive, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --border-radius: 18px;
  --box-shadow: 0 6px 16px rgba(36, 68, 83, 0.11), 0 1.5px 4px rgba(244, 162, 97, 0.08);
}
/* ==========================================================================
   LAYOUT CONTAINERS
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-sizing: border-box;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.text-section {
  align-items: center;
  text-align: center;
}

@media (max-width: 768px) {
  .container {
    padding-left: 7px;
    padding-right: 7px;
    max-width: none;
  }
  .content-wrapper {
    gap: 16px;
  }
  .text-section {
    align-items: flex-start;
    text-align: left;
  }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
header {
  background: var(--primary);
  color: #fff;
  position: relative;
  box-shadow: 0 2px 8px rgba(38,70,83,0.07);
}

header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 18px;
}

header img {
  max-height: 44px;
  min-width: 40px;
}

.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
}
.main-nav a {
  color: #fff;
  padding: 6px 12px;
  border-radius: 10px;
  transition: background 0.15s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.3rem;
  color: var(--accent);
  background: rgba(233,196,106,0.11);
  border-radius: 50%;
  border: 0;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  z-index: 1201;
  margin-left: 16px;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--accent);
  color: var(--primary);
}

.cta.primary {
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: var(--border-radius);
  padding: 11px 34px;
  font-size: 1.07rem;
  margin-left: 18px;
  box-shadow: var(--box-shadow);
  transition: background 0.15s, transform 0.12s;
  border: 2px solid transparent;
  letter-spacing: 0.02em;
  outline: none;
  display: inline-block;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--accent);
  color: #fff;
  border-color: var(--secondary);
  transform: scale(1.06) rotate(-1deg);
}

/*--- MOBILE NAVIGATION ---*/
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(38,70,83,0.975);
  box-shadow: 0 0 32px 4px rgba(36, 68, 83, 0.07);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  padding-top: 26px;
  transform: translateX(-105vw);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.76,.19,.41,.82), opacity 0.25s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  color: var(--accent);
  background: transparent;
  border: none;
  margin: 0 22px 18px 0;
  cursor: pointer;
  transition: color 0.13s;
  z-index: 1202;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 24px 0 0 40px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}
.mobile-nav a {
  color: #fff;
  padding: 9px 6px 9px 0px;
  border-radius: 12px 0 0 12px;
  border-left: 5px solid transparent;
  transition: background 0.14s, border 0.14s, color 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
  border-left: 5px solid var(--secondary);
}

@media (max-width: 1000px) {
  .main-nav {
    gap: 12px;
    font-size: 1rem;
  }
  .cta.primary {
    font-size: 0.98rem;
    padding: 10px 20px;
  }
}

@media (max-width: 860px) {
  .main-nav, .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (min-width: 861px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ==========================================================================
   HERO SECTIONS / GENERAL SECTIONS
   ========================================================================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  transition: background 0.22s;
}
section:nth-of-type(even) {
  background: var(--gray);
}
@media (max-width: 768px) {
  section {
    padding: 26px 7px 32px 7px;
    margin-bottom: 34px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.6rem;
  color: var(--accent);
  margin-bottom: 14px;
  animation: swing-in 0.7s .07s both;
}
h2 {
  font-size: 2.05rem;
  margin-bottom: 10px;
  color: var(--secondary);
}
h3 {
  font-size: 1.37rem;
  margin-bottom: 8px;
  color: var(--accent);
}
@media (max-width: 700px) {
  h1 {
    font-size: 1.67rem;
  }
  h2 {
    font-size: 1.24rem;
  }
  h3 {
    font-size: 1.06rem;
  }
}
p, li, ul, ol {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #373e46;
  line-height: 1.65;
}
p {
  margin-bottom: 12px;
}
strong {
  font-weight: bold;
  color: var(--primary);
}

/* ==========================================================================
   VISUAL ELEMENTS (CARDS, FEATURE-GRID, ETC.)
   ========================================================================== */

.feature-grid, .team-grid, .workshop-list, .course-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 12px;
}
.feature-grid > div, .team-grid > div, .workshop-list > .workshop-detail-card, .course-list > .course-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 32px 22px 26px 22px;
  flex: 1 1 275px;
  min-width: 240px;
  margin-bottom: 20px;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
  border-left: 8px solid var(--accent);
  cursor: pointer;
  animation: float-in 0.7s 0.08s both;
}
.feature-grid > div:hover,
.team-grid > div:hover,
.workshop-list > .workshop-detail-card:hover,
.course-list > .course-card:hover {
  transform: translateY(-7px) scale(1.035) rotate(-1deg);
  box-shadow: 0 12px 26px rgba(244,162,97,0.13), 0 2px 6px rgba(38,70,83,.10);
  background: var(--gray);
}
.feature-grid img, .benefit-icons img {
  max-width: 54px;
  margin-bottom: 11px;
  filter: none;
  animation: pop-in 0.5s both;
}
@media (max-width: 900px) {
  .feature-grid,.team-grid,.workshop-list, .course-list {
    gap: 16px;
  }
  .feature-grid > div, .team-grid > div,
  .workshop-list > .workshop-detail-card, .course-list > .course-card {
    min-width: 185px;
  }
}
@media (max-width: 600px) {
  .feature-grid,.team-grid,.workshop-list, .course-list {
    flex-direction: column;
    gap: 17px;
  }
  .feature-grid > div,.team-grid > div,
  .workshop-list > .workshop-detail-card,.course-list > .course-card {
    min-width: 0;
    width: 100%;
    margin-bottom: 9px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 26px 22px;
}

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

/* ==========================================================================
   SERVICE-LIST, TABLES, FAQ, ICONS
   ========================================================================== */
.service-list, .contact-info, .benefit-icons {
  margin-bottom: 24px;
}
.service-list li {
  font-size: 1.08rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
  background: #fff7ec;
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 1px 7px #f4a26122;
  transition: background 0.16s, border 0.16s;
}
.service-list li span {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 600;
  margin-left: auto;
  white-space: nowrap;
}
.benefit-icons {
  display: flex;
  gap: 14px;
  margin-bottom: 13px;
  align-items: center;
  justify-content: flex-start;
}

/*--- Table Styles ---*/
table {
  width: 100%;
  background: #fff;
  border-radius: var(--border-radius);
  margin-bottom: 32px;
  box-shadow: 0 2px 12px #e9c46a22;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  font-family: var(--font-body);
}
thead {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
}
thead th {
  padding: 14px 18px;
  font-size: 1.06rem;
}
tbody td {
  padding: 14px 18px;
  font-size: 0.99rem;
  border-top: 1px solid #eee;
}
tr {
  transition: background 0.17s;
}
tbody tr:hover {
  background: #fff4e8;
}

/*--- FAQ Accordion ---*/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}
.faq-accordion > div {
  background: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 1.5px 10px #e9c46a24;
  margin-bottom: 10px;
  animation: pop-in 0.6s both;
}
.faq-accordion h3 {
  font-size: 1.13rem;
  margin-bottom: 4px;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 17px #e9c46a18;
  margin-bottom: 20px;
  border-left: 7px solid var(--secondary);
  font-family: var(--font-body);
  transition: box-shadow 0.2s, background 0.17s;
  color: #23333f;
}
.testimonial-card:hover {
  background: #fffbe5;
  box-shadow: 0 9px 28px #f4a2611c;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #23333f;
  font-style: italic;
  margin: 0;
  flex: 1 1 auto;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 500;
  margin-left: 12px;
}
@media (max-width:600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 17px 10px;
  }
}

/* ==========================================================================
   OL/UL/LI, LISTS, FEATURES
   ========================================================================== */
ul, ol {
  margin-bottom: 14px;
  padding-left: 0;
  list-style: none;
}
ul li, ol li {
  margin-bottom: 9px;
  padding-left: 0;
  position: relative;
}
ul li:before {
  content: '●';
  color: var(--accent);
  font-size: 1.1em;
  margin-right: 10px;
  vertical-align: middle;
}
ul li strong, .feature-item strong {
  color: var(--accent);
}

ol {
  counter-reset: number;
  padding-left: 4px;
}
ol li {
  counter-increment: number;
  padding-left: 26px;
}
ol li:before {
  content: counter(number) '. ';
  color: var(--secondary);
  font-family: var(--font-display);
  font-size: 1em;
  position: absolute;
  left: 0;
  top: 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #fffbe6;
  border-radius: 12px;
  box-shadow: 0 1.5px 7px #e9c46a23;
  margin-bottom: 12px;
}

/* Card grids and content grids */
.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; }
@media (max-width: 768px) {
  .card-container { flex-direction: column; gap: 14px; }
  .content-grid { flex-direction: column; gap: 14px; }
  .text-image-section { flex-direction: column; gap: 18px; align-items: flex-start; }
}

/* ==========================================================================
   BUTTONS, LINKS, CTAs
   ========================================================================== */
.cta, .cta.primary, .cta.secondary {
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: var(--border-radius);
  padding: 11px 26px;
  font-size: 1.07rem;
  box-shadow: var(--box-shadow);
  transition: background 0.16s, color 0.16s, transform 0.14s, box-shadow 0.11s;
  border: 2px solid transparent;
  letter-spacing: 0.02em;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  outline: none;
}
.cta:hover, .cta:focus {
  background: var(--accent);
  color: #fff;
  border-color: var(--secondary);
  transform: scale(1.04) rotate(1deg);
  box-shadow: 0 6px 18px #e9c46a33;
}
@media (max-width: 700px) {
  .cta, .cta.primary, .cta.secondary {
    font-size: 0.95rem;
    padding: 10px 16px;
  }
}
a {
  color: var(--accent);
  transition: color 0.13s;
}
a:hover, a:focus {
  color: var(--primary);
  text-decoration: underline wavy var(--secondary);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 0;
  box-shadow: 0 -2px 11px #e9c46a10;
  font-size: 0.99rem;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 36px;
  padding: 34px 18px 30px 18px;
  justify-content: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 37px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.06rem;
}
.footer-nav a {
  color: #fff;
  opacity: 0.83;
  transition: color 0.12s, opacity 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
  opacity: 1;
}
.footer-contact {
  flex: 1 1 140px;
  font-size: 0.95rem;
  margin-left: 36px;
}
.footer-contact a {
  color: var(--secondary);
  text-decoration: underline;
}
footer img {
  max-height: 42px;
  min-width: 38px;
  margin-right: 13px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 10px 18px 10px;
  }
  .footer-nav, .footer-contact {
    margin-left: 0;
  }
  footer img { margin-bottom: 16px; }
}

/* ==========================================================================
   COOKIE CONSENT BANNER & MODAL
   ========================================================================== */
#cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1300;
  background: #fffefa;
  color: #2d2d2d;
  border-top: 2px solid var(--secondary);
  box-shadow: 0 -4px 26px #f4a26122;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 10vw 20px 7vw;
  font-size: 1.04rem;
  font-family: var(--font-body);
  opacity: 0;
  pointer-events: none;
  transform: translateY(90px);
  transition: opacity 0.25s, transform 0.33s;
}
#cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}
#cookie-banner button {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 99px;
  border: 1.5px solid var(--accent);
  padding: 7px 16px;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 2px;
  min-width: 105px;
  outline: none;
  transition: background 0.18s, color 0.15s, box-shadow 0.14s;
  box-shadow: 0 1px 4px #e9c46a13;
}
#cookie-banner button:hover, #cookie-banner button:focus {
  background: var(--accent);
  color: #fff;
}
#cookie-banner .cookie-settings {
  background: #fff;
  color: var(--primary);
  border: 1.2px dashed var(--secondary);
  box-shadow: none;
  font-size: .96rem;
}
#cookie-banner .cookie-settings:hover {
  background: var(--secondary);
  color: var(--primary);
}
@media (max-width:700px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 6vw 17px 6vw;
    font-size: 0.97rem;
  }
  #cookie-banner .cookie-buttons {
    gap: 7px;
    width: 100%;
  }
}

/* COOKIE MODAL */
#cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(38,70,83,0.48);
  z-index: 1400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
#cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
#cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1501;
  width: 94vw;
  max-width: 420px;
  padding: 31px 25px 28px 25px;
  background: #fffefa;
  color: #293341;
  border-radius: 23px;
  transform: translate(-50%,-54%) scale(0.95);
  box-shadow: 0 16px 40px #26465340;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .31s;
}
#cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-54%) scale(1);
}
#cookie-modal h3 {
  font-size: 1.24rem;
  color: var(--accent);
  margin-bottom: 9px;
}
#cookie-modal .cookie-options {
  margin: 18px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
#cookie-modal label {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 9px;
}
#cookie-modal input[type=checkbox][disabled] {
  accent-color: var(--gray);
  opacity: 0.55;
  cursor: not-allowed;
}
#cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
#cookie-modal .close-cookie-modal {
  color: var(--danger);
  background: none;
  border: none;
  font-weight: 600;
  font-size: .95rem;
  margin-left: auto;
  margin-bottom: 5px;
  cursor: pointer;
  padding: 0 5px;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes pop-in {
  0% { opacity: 0; transform: scale(0.93) translateY(18px); }
  80% { transform: scale(1.04) translateY(-2px); }
  100% { opacity: 1; transform: scale(1.0) translateY(0); }
}
@keyframes swing-in {
  0% { opacity: 0; transform: rotate(-4deg) scale(.91); }
  75% { transform: rotate(2deg) scale(1.08); }
  100% { opacity: 1; transform: rotate(0deg) scale(1.0); }
}
@keyframes float-in {
  0% { opacity: 0; transform: translateY(38px) scale(.92); }
  70% { transform: translateY(-7px) scale(1.05); }
  100% { opacity: 1; transform: translateY(0) scale(1.0); }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.mb-8 { margin-bottom: 8px !important; } .mb-16 { margin-bottom: 16px !important; }
.mb-24 { margin-bottom: 24px !important; } .mb-32 { margin-bottom: 32px !important; }
.mt-8 { margin-top: 8px !important; } .mt-16 { margin-top: 16px !important; }
.mt-24 { margin-top: 24px !important; } .mt-32 { margin-top: 32px !important; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.gap-8 { gap: 8px !important; } .gap-20 { gap: 20px !important; }

/* ==========================================================================
   PLAYFUL & DYNAMIC DESIGN ACCENTS
   ========================================================================== */
section, .feature-grid > div, .card, .testimonial-card, .faq-accordion > div, .service-list li, .benefit-icons img, .workshop-detail-card, .course-card {
  border-radius: var(--border-radius);
}
.feature-grid > div, .team-grid > div, .workshop-detail-card, .course-card {
  border-left: 8px solid var(--accent);
  position: relative;
  overflow: visible;
}
.feature-grid > div:after, .team-grid > div:after {
  content: '';
  position: absolute;
  top: -16px; right: -16px;
  width: 32px; height: 32px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
  filter: blur(1.2px);
  animation: pop-in 0.8s 0.09s both;
}

/* Bouncy accent circles (decor) */
.feature-grid > div:before, .team-grid > div:before {
  content: '';
  position: absolute;
  bottom: -18px; left: -13px;
  width: 16px; height: 16px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.38;
  z-index: 0;
  filter: blur(0.8px);
  animation: swing-in 0.6s .12s both;
}

/* Playful font for major headings */
h1, h2, .cta, .cta.primary, .main-nav, .mobile-nav {
  font-family: var(--font-display);
  letter-spacing: -0.5px;
}

/* ==========================================================================
   RESPONSIVE / MOBILE-FIRST IMPROVEMENTS
   ========================================================================== */
@media (max-width: 600px) {
  .feature-grid > div:after, .team-grid > div:after, .feature-grid > div:before, .team-grid > div:before {
    display: none;
  }
}

/* ==========================================================================
   SCROLLBAR STYLING (for overlay/modal)
   ========================================================================== */
#cookie-modal::-webkit-scrollbar {
  width: 8px;
}
#cookie-modal::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 99px;
}

/* ==========================================================================
   Print Styles (minimal)
   ========================================================================== */
@media print {
  header, footer, #cookie-banner, #cookie-modal-overlay, #cookie-modal {
    display: none !important;
  }
  body {
    background: #fff;
    color: #222;
  }
}
.footer-contact p {
  color: #fff;
}
/* ==========================================================================
   END
   ========================================================================== */
