/* RESET & BASE TYPOGRAPHY
––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
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,
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;
  vertical-align: baseline;
  box-sizing: border-box;
  font-size: 100%;
  font: inherit;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #181A1D;
  color: #F6F5EE;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #7DB1B7;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover, a:focus {
  color: #F6F5EE;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  color: inherit;
  outline: none;
}

/* BRAND FONTS & HEADINGS
––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #E0E1E3;
  margin-bottom: 16px;
  line-height: 1.15;
  text-transform: none;
  letter-spacing: 0.013em;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.18rem;
  margin-bottom: 15px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 12px;
}
@media (min-width: 600px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.35rem; }
}

p, li, dt, dd, small {
  color: #F6F5EE;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
}
p.subheadline {
  color: #7DB1B7;
  font-size: 1.25rem;
  margin-bottom: 28px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
small, .legal-section small {
  color: #A4A7AE;
  font-size: 0.95rem;
}

/* LAYOUT & CONTAINERS
––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* SPACING: Sections, Cards, Grids (MANDATORY PATTERNS) */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container, .content-grid, .blog-index .article-cards, .article-preview-list, .service-list, .event-overview, .footer-menu, .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card, .article-card, .event-card, .testimonial-card, .services-detail .service-list > div, .blog-index .article-cards > div, .service-list > div {
  margin-bottom: 20px;
  background: #23262C;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(39,43,52,0.15);
  padding: 28px 24px;
  position: relative;
  border: 1.5px solid #383B41;
  min-width: 220px;
  flex: 1 1 290px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.16s;
}
.card:hover, .article-card:hover, .event-card:hover, .testimonial-card:hover, .service-list > div:hover {
  border-color: #7DB1B7;
  box-shadow: 0 6px 24px 0 rgba(125,177,183,0.08);
  transform: translateY(-3px) scale(1.012);
  z-index: 1;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F6F5EE;
  color: #272B34;
  border-left: 4px solid #7DB1B7;
  border-radius: 12px;
  padding: 24px 24px 18px 28px;
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #22232B;
  font-size: 1.09rem;
}
.testimonial-card span {
  color: #7DB1B7;
  font-weight: 700;
}
/* Adjust list/card grids for mobile */
@media (max-width: 900px) {
  .card-container, .content-grid, .blog-index .article-cards, .article-preview-list, .service-list, .event-overview {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 7px;
  }
  .content-wrapper {
    gap: 17px;
  }
  .section, section {
    margin-bottom: 38px;
    padding: 24px 8px;
  }
  .card, .article-card, .event-card, .testimonial-card, .services-detail .service-list > div {
    min-width: 0;
    padding: 18px 10px;
  }
}

/* HEADER: DESKTOP/Main Navigation
––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
header {
  background: #23262C;
  box-shadow: 0 2px 8px 0 rgba(29,30,32,0.1);
  z-index: 999;
  width: 100%;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0 28px;
  padding: 22px 0 17px 0;
  background: none;
  position: relative;
}
.main-nav > a {
  color: #F6F5EE;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.045em;
  padding: 7px 0;
  transition: color 0.18s;
  display: flex;
  align-items: center;
}
.main-nav > a:not(.cta-button):hover, .main-nav > a:not(.cta-button):focus {
  color: #7DB1B7;
}
.main-nav > a img {
  height: 32px;
  width: auto;
  margin-right: 15px;
  filter: grayscale(70%) brightness(97%);
}

.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #7DB1B7;
  color: #181A1D;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 20px;
  font-size: 1rem;
  letter-spacing: 0.04em;
  box-shadow: 0 3px 15px 0 rgba(125,177,183,0.08);
  border: none;
  transition: background 0.18s, color 0.16s, box-shadow 0.23s, transform 0.13s;
  margin-left: 10px;
  cursor: pointer;
  outline: none;
  text-transform: uppercase;
  display: inline-block;
}
.cta-button.primary,
.cta-section .cta-button.primary {
  background: #7DB1B7;
  color: #23262C;
}
.cta-button:not(.primary) {
  background: transparent;
  border: 2px solid #7DB1B7;
  color: #7DB1B7;
}
.cta-button:hover, .cta-button:focus {
  background: #F6F5EE;
  color: #181A1D;
  box-shadow: 0 7px 25px 0 rgba(125,177,183,0.11);
  transform: translateY(-2px) scale(1.035);
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: #F6F5EE;
  color: #23262C;
}
@media (max-width: 900px) {
  .main-nav {
    gap: 0 18px;
    padding: 16px 0 10px 0;
  }
  .main-nav > a img {
    height: 27px;
    margin-right: 7px;
  }
  .cta-button, .cta-button.primary {
    padding: 9px 15px;
    font-size: 0.93rem;
  }
}

/* HIDE Desktop Nav on Mobile */
@media (max-width: 825px) {
  .main-nav {
    display: none !important;
  }
}

/* MOBILE MENU
––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 22px;
  right: 20px;
  z-index: 1201;
  background: #7DB1B7;
  color: #181A1D;
  font-size: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 11px;
  border: none;
  box-shadow: 0 1px 7px 0 rgba(35,38,44,0.11);
  transition: background 0.2s, color 0.2s;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #23262C;
  color: #7DB1B7;
}

@media (max-width: 825px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1400;
  background: #23262C;
  box-shadow: 0 0 80px 18px rgba(24,26,29,0.59);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.36s cubic-bezier(.8,0,.2,1), opacity 0.23s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: #7DB1B7;
  color: #23262C;
  font-size: 2.1rem;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 12px;
  margin: 29px 18px 0 0;
  transition: background 0.15s, color 0.14s;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1402;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #23262C;
  color: #7DB1B7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  padding: 32px 44px 10px 44px;
}
.mobile-nav a {
  color: #F6F5EE;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.19rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 15px 0 10px 11px;
  border-bottom: 1px solid #393C44;
  transition: color 0.15s, background 0.13s;
  border-radius: 5px;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #7DB1B7;
  color: #23262C;
}
@media (max-width: 520px) {
  .mobile-nav { padding: 30px 18px 10px 18px; }
  .mobile-nav a { font-size: 1rem; padding-left: 7px; }
}

/* HERO / BANNER
––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
.hero {
  background: linear-gradient(120deg, #272B34 65%, #22242C 100%);
  border-bottom: 2px solid #32343C;
  margin-bottom: 0;
  padding-top: 52px;
  padding-bottom: 52px;
}
.hero .container {
  align-items: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 690px;
}
.hero h1 {
  color: #F6F5EE;
  text-shadow: 1px 2px 8px rgba(24,26,29,0.28);
}
@media (max-width: 600px) {
  .hero { padding-top: 32px; padding-bottom: 28px; }
}

/* FEATURES UL LIST
––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.features li {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #23262C;
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F6F5EE;
  box-shadow: 0 2px 10px 0 rgba(39,43,52,0.13);
  border-left: 4px solid #7DB1B7;
  min-width: 230px;
  margin-bottom: 20px;
  font-weight: 500;
  transition: border-color 0.18s, box-shadow 0.16s;
}
.features li img {
  width: 32px;
  height: 32px;
  filter: grayscale(40%) brightness(98%);
  flex-shrink: 0;
}
.features li:hover { border-left-color: #F6F5EE; box-shadow: 0 4px 15px 0 rgba(125,177,183,0.10); }
@media (max-width: 600px) {
  .features ul {
    flex-direction: column;
    gap: 13px;
  }
  .features li { min-width: 0; }
}

/* SERVICES SECTION
––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
.services .service-list, .services-detail .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 26px;
}
.services .service-list > div, .services-detail .service-list > div {
  background: #23262C;
  border-radius: 15px;
  padding: 28px 24px;
  flex: 1 1 240px;
  min-width: 220px;
  border: 1.5px solid #393C44;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
  box-shadow: 0 1px 6px 0 rgba(39,43,52,0.13);
  transition: border-color 0.18s, box-shadow 0.16s, transform 0.15s;
}
.services .service-list > div:hover, .services-detail .service-list > div:hover {
  border-color: #7DB1B7;
  box-shadow: 0 3px 16px rgba(125,177,183,0.06);
  transform: translateY(-2px) scale(1.013);
  z-index: 1;
}
.services .service-list > div h3, .services-detail .service-list > div h2 {
  margin-bottom: 10px;
  color: #7DB1B7;
  font-size: 1.21rem;
}
.services .service-list > div span, .services-detail .service-list > div span {
  color: #F6F5EE;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 600;
  background: #272B34;
  padding: 3px 12px;
  border-radius: 14px;
  display: inline-block;
  align-self: flex-end;
}
.services-detail .service-list > div img {
  margin-bottom: 8px;
  width: 30px;
  height: 30px;
  filter: grayscale(35%) brightness(100%);
}
@media (max-width: 700px) {
  .service-list, .services-detail .service-list { flex-direction: column; gap: 14px; }
  .service-list > div, .services-detail .service-list > div { min-width: 0; }
}

/* ARTICLE CARDS & PREVIEW
––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
.article-preview-list, .blog-index .article-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 20px;
}
.article-card {
  background: #23262C;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(39,43,52,0.11);
  border: 1.5px solid #383B41;
  min-width: 215px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  padding: 22px 19px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.19s, border-color 0.14s, transform 0.13s;
}
.article-card:hover {
  border-color: #7DB1B7;
  box-shadow: 0 6px 22px rgba(125,177,183,0.10);
  transform: translateY(-2px) scale(1.013);
}
.article-card h3, .article-card h2 {
  color: #7DB1B7;
  font-size: 1.17rem;
  margin-bottom: 6px;
}
.article-card p {
  font-size: 1.02rem;
  color: #ECEAE2;
}
@media (max-width: 600px) {
  .article-preview-list, .blog-index .article-cards { flex-direction: column; gap: 14px; }
  .article-card { min-width: 0; }
}

/* CATEGORY FILTERS */
.category-filters {
  margin: 10px 0 30px 0;
  display: flex;
  gap: 18px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
}
.category-filters button {
  background: #2D323C;
  color: #7DB1B7;
  border: 1px solid #7DB1B7;
  padding: 7px 17px;
  border-radius: 16px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  margin-right: 7px;
  cursor: pointer;
  transition: background 0.13s, color 0.14s, box-shadow 0.11s;
}
.category-filters button:hover, .category-filters button:focus {
  background: #7DB1B7;
  color: #23262C;
  box-shadow: 0 4px 12px 0 rgba(125,177,183,0.07);
}

/* EVENTS SECTION */
.event-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 15px;
}
.event-card {
  background: #23262C;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(39,43,52,0.11);
  border: 1.5px solid #383B41;
  min-width: 220px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  padding: 22px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.16s, border-color 0.13s, transform 0.13s;
}
.event-card h2 {
  font-size: 1.09rem;
  color: #7DB1B7;
}
.event-card p {
  color: #ECEAE2;
}
.event-card .cta-button {
  align-self: flex-end;
  font-size: 0.97rem;
}
.event-card:hover {
  border-color: #7DB1B7;
  box-shadow: 0 7px 22px 0 rgba(125,177,183,0.10);
  transform: translateY(-1.5px) scale(1.013);
}
@media (max-width: 700px) {
  .event-overview { flex-direction: column; gap: 13px; }
  .event-card { min-width: 0; }
}

/* CTA SECTION */
.cta-section {
  background: #272B34;
  border-radius: 14px;
  margin: 0 auto 60px auto;
  padding: 35px 21px;
  box-shadow: 0 2px 12px 0 rgba(39,43,52,0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta-section h2 {
  color: #7DB1B7;
}
.cta-section p {
  max-width: 540px;
  text-align: center;
}
.cta-section .cta-button {
  margin-top: 7px;
}

/* FAQ SECTION */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin: 22px 0 0 0;
}
.faq-list dt {
  font-weight: 700;
  color: #7DB1B7;
  font-size: 1.09rem;
  margin-bottom: 5px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.faq-list dd {
  margin-left: 0;
  margin-bottom: 6px;
  color: #ECEAE2;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
}

/* BRAND-CONTACT BLOCKS */
.brand-contact {
  margin-top: 23px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}
.brand-contact img {
  width: 44px;
  height: 44px;
  filter: grayscale(80%) contrast(105%);
}
.brand-contact p, .brand-contact a {
  color: #B3BDC4;
  font-size: 1rem;
  line-height: 1.5;
}
.brand-contact a {
  color: #7DB1B7;
  font-weight: 600;
  transition: color 0.12s;
}
.brand-contact a:hover { color: #ECEAE2; }
.brand-contact-details p {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 8px;
  color: #ECEAE2;
  font-size: 1rem;
}
.brand-contact-details img {
  width: 22px;
  height: 22px;
  filter: grayscale(80%) brightness(98%);
}

.footer-menu {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #393C44;
  padding-bottom: 13px;
}
.footer-menu a {
  color: #7DB1B7;
  font-size: 1rem;
  letter-spacing: 0.017em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: color 0.13s;
  padding: 3.5px 0;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #F6F5EE;
}

.social-links {
  margin: 28px 0 10px 0;
  display: flex;
  gap: 19px;
  align-items: center;
}
.social-links a img {
  width: 32px;
  height: 32px;
  filter: grayscale(100%) brightness(98%);
  opacity: 0.74;
  transition: filter 0.13s, opacity 0.14s;
}
.social-links a:hover img {
  filter: none;
  opacity: 1;
}
@media (max-width: 550px) {
  .brand-contact-details, .brand-contact, .footer-menu, .social-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
}

/* BLOG/LEGAL/CONFIRMATION SECTIONS */
.legal-section, .confirmation-section, .contact-section {
  background: #23262C;
  border-radius: 13px;
  margin: 0 auto 60px auto;
  padding: 36px 21px;
  box-shadow: 0 2px 12px 0 rgba(39,43,52,0.14);
  display: flex;
  flex-direction: column;
}
.legal-section h1, .confirmation-section h1, .contact-section h1 {
  color: #7DB1B7;
  margin-bottom: 20px;
}
.legal-section .text-section, .confirmation-section .text-section, .contact-section .text-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

/* MAP EMBED */
.map-embed {
  background: #1B1E22;
  padding: 18px 11px;
  border-radius: 10px;
  margin: 13px 0 24px 0;
  color: #7DB1B7;
  font-weight: 500;
  font-size: 1rem;
}

/* FORM CONTROLS */
input, textarea, select {
  background: #23262C;
  color: #F6F5EE;
  border: 1.5px solid #393C44;
  border-radius: 10px;
  padding: 12px 13px;
  font-size: 1rem;
  margin-bottom: 15px;
  transition: border 0.13s;
}
input:focus, textarea:focus, select:focus {
  border-color: #7DB1B7;
}

/* COOKIE BANNER & CONSENT MODAL
––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
#cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #23262C;
  color: #F6F5EE;
  z-index: 2300;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  box-shadow: 0 -2px 20px 0 rgba(24,26,29,0.21);
  padding: 23px 11px 23px 11px;
  gap: 17px;
  font-size: 1rem;
  border-top: 2.5px solid #7DB1B7;
  animation: cookie-slide-up 0.44s cubic-bezier(.57,.53,.67,.99);
}
@keyframes cookie-slide-up {
  0% { transform: translateY(80px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
#cookie-consent-banner p {
  color: #F6F5EE;
  margin-right: 10px;
  max-width: 420px;
  font-size: 1rem;
}
.cookie-options {
  display: flex;
  gap: 13px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #7DB1B7;
  color: #23262C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 16px;
  padding: 9px 18px;
  font-size: 1rem;
  margin-right: 5px;
  cursor: pointer;
  transition: background 0.14s, color 0.12s, transform 0.13s;
}
.cookie-btn.reject {
  background: #23262C;
  color: #F6F5EE;
  border: 1.5px solid #7DB1B7;
}
.cookie-btn.settings {
  background: #272B34;
  color: #7DB1B7;
  border: 1.5px solid #7DB1B7;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #F6F5EE;
  color: #23262C;
  transform: translateY(-1px) scale(1.018);
}
@media (max-width: 600px) {
  #cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 6px 12px 8px;
  }
  .cookie-options {
    margin-top: 7px;
    gap: 9px;
  }
}

/* Cookie Modal */
#cookie-consent-modal {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(39,43,52,0.97);
  z-index: 2400;
  align-items: center;
  justify-content: center;
  animation: modal-fade-in 0.42s cubic-bezier(.37,.54,.66,1);
}
#cookie-consent-modal.open {
  display: flex;
}
@keyframes modal-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #F6F5EE;
  color: #23262C;
  border-radius: 18px;
  box-shadow: 0 7px 32px 0 rgba(39,43,52,0.13);
  padding: 30px 26px 26px 28px;
  min-width: 90vw;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: modal-content-pop 0.34s cubic-bezier(.72,0,.35,1);
}
@keyframes modal-content-pop {
  0% { transform: scale(0.92) translateY(35px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-content h3 {
  color: #7DB1B7;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: #7DB1B7;
  width: 18px;
  height: 18px;
}
.cookie-category.essential label {
  color: #23262C;
  opacity: 0.7;
  font-style: italic;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal-actions .cookie-btn {
  padding: 8px 18px;
  min-width: 94px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1.12rem;
  background: none;
  color: #7DB1B7;
  border: none;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #23262C;
}

/* RESPONSIVE FLEXBOX 
––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width: 825px) {
  .content-grid, .card-container, .service-list, .event-overview, .blog-index .article-cards, .article-preview-list {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 19px; }
}

/* UTILITY CLASSES & MICRO-INTERACTIONS
––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.d-none { display: none !important; }
.d-flex { display: flex !important; }

/* TRANSITIONS */
*:focus {
  outline: 2px solid #7DB1B7;
  outline-offset: 1.5px;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 9px;
  background: #1B1E22;
}
::-webkit-scrollbar-thumb {
  background: #383B41;
  border-radius: 15px;
}

/* Miscellaneous Accessibility and Helpers */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* END */
