/* ------------------------------------------------- */
/* 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.5;
  background: #FAFAF7;
  color: #24405C;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  border-style: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  border: none;
  background: none;
}
button, [type="button"], [type="reset"], [type="submit"] {
  cursor: pointer;
  background: none;
}
:focus {
  outline: 2px solid #234E70;
  outline-offset: 2px;
}
* {
  box-sizing: border-box;
}

/* ------------------------------------------------- */
/* BRAND & SCANDINAVIAN CLEAN BASES                 */
/* ------------------------------------------------- */
:root {
  --color-primary: #234E70;
  --color-secondary: #F8CA4D;
  --color-background: #FAFAF7;
  --color-accent: #FFFFFF;
  --color-text: #24405C;
  --color-subtle: #EEF2F6;
  --color-border: #E7EAEF;
  --color-focus: #234E70;
  --shadow-card: 0 4px 18px rgba(35,78,112,0.07);
  --shadow-hover: 0 8px 22px rgba(35,78,112,0.11);
  --radius-base: 16px;
  --radius-btn: 22px;
  --font-display: "Montserrat", Arial, Helvetica, sans-serif;
  --font-body: "Roboto", Arial, Helvetica, sans-serif;
}

body {
  font-family: var(--font-body), Arial, Helvetica, sans-serif;
  color: var(--color-text);
  background: var(--color-background);
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ------------------------------------------------- */
/* TYPOGRAPHY                                       */
/* ------------------------------------------------- */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.3rem;
  line-height: 1.14;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1.22;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 8px;
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
}
p, ul li, ol li, td, th {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.7;
}

strong {
  color: var(--color-primary);
  font-weight: 600;
}

.tagline {
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 500;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  h1, .h1 { font-size: 1.5rem; }
  h2, .h2 { font-size: 1.18rem; }
  .tagline { font-size: 1rem; }
}

/* ------------------------------------------------- */
/* HEADER & NAVIGATION                              */
/* ------------------------------------------------- */
header {
  background: var(--color-accent);
  box-shadow: 0 1px 0 var(--color-border);
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
header img {
  height: 46px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: var(--radius-base);
  transition: background 0.18s, color 0.18s;
}
.main-nav a:not(.btn-primary):hover,
.main-nav a:not(.btn-primary):focus {
  background: var(--color-subtle);
  color: var(--color-secondary);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 10px 26px;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-card);
  display: inline-block;
  border: none;
  transition: background 0.19s, color 0.19s, box-shadow 0.19s, transform 0.12s;
  cursor: pointer;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.03);
}

/* Mobile Nav Button */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  font-size: 2rem;
  padding: 8px;
  border-radius: 8px;
  border: none;
  color: var(--color-primary);
  transition: background 0.18s;
  z-index: 1001;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-subtle);
}

/* ----------------------------------------------- */
/* MOBILE MENU OVERLAY                            */
/* ----------------------------------------------- */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  height: 100vh;
  background: var(--color-accent);
  box-shadow: 0 3px 16px rgba(35,78,112,0.09);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.77,0.2,0.05,1.0);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  padding: 26px 32px 12px 8px;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: var(--color-primary);
  transition: color 0.17s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 40px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-primary);
  padding: 20px 8px 8px 8px;
  border-radius: var(--radius-base);
  font-weight: 600;
  transition: color 0.17s, background 0.17s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-subtle);
  color: var(--color-secondary);
}

@media (max-width: 1020px) {
  .main-nav .btn-primary { padding-left: 12px; padding-right: 12px; }
}
@media (max-width: 860px) {
  .main-nav a { font-size: 0.97rem; }
  .main-nav .btn-primary { font-size: 0.97rem; padding: 8px 13px; }
}
@media (max-width: 720px) {
  .main-nav { gap: 8px; }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ------------------------------------------------- */
/* MAIN CONTENT SECTIONS                            */
/* ------------------------------------------------- */
main {
  min-height: 62vh;
  background: transparent;
}
section {
  width: 100%;
  background: transparent;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;
  max-width: 900px;
  background: none;
}

/* Texto-Bild oder flexierte Bereiche */
.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* Cards / Flexbox Container */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-accent);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
  transition: box-shadow 0.22s, transform 0.13s;
}
.card:hover,
.card:focus-within {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px) scale(1.02);
  z-index: 10;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 0;
}

/* ------------------------------------------------- */
/* FEATURES LIST/GRID                               */
/* ------------------------------------------------- */
.features-list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.feature {
  background: var(--color-accent);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-card);
  padding: 32px 20px 26px 20px;
  flex: 1 1 calc(22% - 24px);
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.22s, transform 0.13s;
}
.feature:hover,
.feature:focus-within {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px) scale(1.02);
  z-index: 10;
}
.feature img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
}
@media (max-width: 980px) {
  .features-list {
    gap: 20px;
  }
  .feature {
    flex-basis: calc(45% - 20px);
    min-width: 195px;
  }
}
@media (max-width: 600px) {
  .features-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature {
    flex-basis: 100%;
    min-width: initial;
  }
}

/* SERVICES & SERVICE CARDS (Leistungen) */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 0 20px 0;
}
.services-list li {
  background: var(--color-accent);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-card);
  flex: 1 1 calc(48% - 20px);
  min-width: 220px;
  padding: 26px 18px 22px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  align-items: flex-start;
  transition: box-shadow 0.22s, transform 0.16s;
}
.services-list li:hover,
.services-list li:focus-within {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px) scale(1.01);
  z-index: 10;
}
.services-list li span {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 8px;
  margin-top: 4px;
}
.services-list li a {
  font-size: 1rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
  margin-top: 4px;
  transition: color 0.16s;
}
.services-list li a:hover, .services-list li a:focus {
  color: var(--color-secondary);
}
@media (max-width: 960px) {
  .services-list {
    gap: 14px;
  }
  .services-list li {
    flex-basis: 100%;
  }
}
@media (max-width: 600px) {
  .services-list {
    flex-direction: column;
    gap: 12px;
  }
  .services-list li { min-width: initial; }
}

/* SERVICE CARDS FOR SEPARATE PAGE */
.service-card {
  background: var(--color-accent);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-card);
  padding: 28px 18px 24px 18px;
  margin-bottom: 20px;
  flex: 1 1 calc(45% - 20px);
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  transition: box-shadow 0.19s, transform 0.15s;
}
.service-card:hover,
.service-card:focus-within {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px) scale(1.01);
}
.service-card span {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1.08rem;
  margin-top: 2px;
}
@media (max-width: 960px) {
  .service-card {
    flex-basis: 100%;
  }
}

/* ------------------------------------------------- */
/* TESTIMONIALS                                     */
/* ------------------------------------------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 26px 22px 26px;
  background: var(--color-accent);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-base);
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
  transition: box-shadow 0.2s, transform 0.10s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-content p {
  color: var(--color-text);
  font-size: 1.03rem;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-content span {
  display: inline-block;
  font-size: 1.04rem;
  margin-bottom: 2px;
  color: #F3AF2C;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.testimonial-content strong {
  font-size: 0.95rem;
  color: var(--color-primary);
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 12px 18px 12px;
    gap: 7px;
  }
}

/* ------------------------------------------------- */
/* PRICING TABLES                                   */
/* ------------------------------------------------- */
.pricing-table {
  width: 100%;
  background: var(--color-accent);
  border-collapse: collapse;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  margin-bottom: 24px;
}
.pricing-table th {
  background: var(--color-secondary);
  font-family: var(--font-display);
  font-size: 1.05rem;
  padding: 16px 8px;
  color: var(--color-primary);
  font-weight: 700;
  text-align: left;
}
.pricing-table td {
  padding: 15px 8px;
  border-bottom: 1px solid var(--color-border);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-accent);
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 600px) {
  .pricing-table th, .pricing-table td { font-size: 0.93rem; padding: 8px 3px; }
}

/* ------------------------------------------------- */
/* TEAM SECTION (About)                             */
/* ------------------------------------------------- */
.team-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.team-member {
  background: var(--color-accent);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-card);
  padding: 20px 18px 22px 18px;
  flex: 1 1 calc(32% - 24px);
  min-width: 170px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.13s;
}
.team-member:hover,
.team-member:focus-within {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.01);
  z-index: 10;
}
@media (max-width: 768px) {
  .team-section {
    flex-direction: column;
    gap: 12px;
  }
}

/* ------------------------------------------------- */
/* CONTACT SECTION                                  */
/* ------------------------------------------------- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 10px;
}
.opening-hours {
  margin-bottom: 16px;
}
.no-form-message {
  background: var(--color-subtle);
  border-radius: var(--radius-base);
  padding: 16px 14px;
  margin-bottom: 18px;
  color: var(--color-text);
  font-size: 1rem;
}

/* ------------------------------------------------- */
/* FOOTER                                           */
/* ------------------------------------------------- */
footer {
  background: var(--color-accent);
  border-top: 1px solid var(--color-border);
  padding: 28px 0 20px 0;
  margin-top: 42px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 7px 6px;
  border-radius: 6px;
  transition: color 0.12s, background 0.12s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--color-secondary);
  background: var(--color-subtle);
}
.footer-contact {
  color: var(--color-primary);
  font-size: 0.98rem;
  font-family: var(--font-body);
  line-height: 1.7;
}
.footer-contact img {
  width: 15px;
  vertical-align: -3px;
  margin-right: 2px;
}
@media (max-width: 820px) {
  footer .container {
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 16px;
  }
}

/* ------------------------------------------------- */
/* GENERAL LISTS                                    */
/* ------------------------------------------------- */
ul, ol {
  margin: 0 0 8px 0;
  padding: 0 0 0 1.1em;
}
ul li, ol li {
  margin-bottom: 6px;
  list-style: disc;
}
@media (max-width: 520px) {
  ul, ol { padding-left: 0.7em; }
}

/* ------------------------------------------------- */
/* BUTTONS                                          */
/* ------------------------------------------------- */
.btn-primary,
button.btn-primary {
  background: var(--color-primary);
  color: var(--color-accent) !important;
  padding: 9px 26px;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-card);
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.10s;
  cursor: pointer;
  display: inline-block;
  margin-top: 8px;
  margin-bottom: 6px;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--color-secondary);
  color: var(--color-primary) !important;
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.035);
}

/* Additional Button (secondary, for banners/modals) */
.btn-secondary {
  background: var(--color-accent);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: none;
  margin-right: 10px;
  margin-bottom: 6px;
  transition: background 0.18s, color 0.1s, border 0.13s;
  cursor: pointer;
  display: inline-block;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--color-subtle);
  color: var(--color-primary);
  border: 1px solid var(--color-secondary);
}

.btn-settings {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 1px solid var(--color-secondary);
  padding: 10px 18px;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 6px;
  transition: background 0.10s, color 0.11s;
  display: inline-block;
}
.btn-settings:hover,
.btn-settings:focus {
  background: var(--color-accent);
  color: var(--color-secondary);
}

/* ------------------------------------------------- */
/* COOKIE CONSENT BANNER                            */
/* ------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--color-accent);
  color: var(--color-text);
  box-shadow: 0 -2px 18px rgba(35,78,112,0.09);
  border-top: 1px solid var(--color-border);
  padding: 26px 12vw 20px 12vw;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  z-index: 1100;
  transition: transform 0.39s;
  font-size: 1.02rem;
}
.cookie-banner.hide { transform: translateY(120%); }
.cookie-banner.show { transform: translateY(0); }
.cookie-banner-text {
  flex: 2 1 300px;
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-banner-actions {
  flex: 1 1 180px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 980px) {
  .cookie-banner {
    padding-left: 5vw;
    padding-right: 5vw;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .cookie-banner-actions {
    justify-content: flex-start;
  }
}
@media (max-width: 600px) {
  .cookie-banner {
    padding: 14px 2vw 14px 2vw;
    font-size: 0.94rem;
  }
}

/* Cookie Modal Popup */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(33, 44, 56, 0.16);
  z-index: 1150;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  animation: fadeIn 0.19s;
}
.cookie-modal.hide {
  display: none;
}
.cookie-modal .cookie-modal-content {
  background: var(--color-accent);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-hover);
  min-width: 320px;
  max-width: 99vw;
  padding: 38px 28px 24px 28px;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: dropIn 0.23s;
}
.cookie-modal h3 {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 9px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-toggle {
  accent-color: var(--color-secondary);
  width: 21px;
  height: 21px;
}
.cookie-category label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
}
.cookie-category.essential label {
  color: #808080;
  font-style: italic;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 15px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 9px; right: 17px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-primary);
  cursor: pointer;
  transition: color 0.17s;
  z-index: 2;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: var(--color-secondary);
}
@media (max-width: 600px) {
  .cookie-modal .cookie-modal-content { padding: 24px 8px 18px 8px; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes dropIn {
  from { transform: scale(0.92) translateY(32px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}

/* ------------------------------------------------- */
/* MISCELLANEOUS, UTILITIES, AND ANIMATIONS         */
/* ------------------------------------------------- */
::-webkit-scrollbar {
  width: 12px;
  background: var(--color-subtle);
}
::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 6px;
}

/* Helpers */
.mt-8 { margin-top: 8px !important; }
.mb-12 { margin-bottom: 12px !important; }
.mb-32 { margin-bottom: 32px !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }

@media (max-width: 768px) {
  .section { padding: 28px 8px; margin-bottom: 36px; }
}

/* Hide overflows for animation smoothness on menus */
body.menu-open {
  overflow: hidden;
}

/* Prevent unwanted overflow */
main, .content-wrapper, .container {
  overflow-x: visible;
}

/* Make toast and alert classes if used (modern look) */
.toast-success {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-card);
  padding: 12px 22px;
  font-family: var(--font-display);
  font-size: 1rem;
  position: fixed;
  top: 24px; right: 24px;
  z-index: 1200;
  animation: slideInRight 0.33s;
}
@keyframes slideInRight {
  from { right: -320px; opacity: 0; }
  to { right: 24px; opacity: 1; }
}

/* ------------------------------------------------- */
/* PRINT STYLES                                     */
/* ------------------------------------------------- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  .container { max-width: none; padding: 0; }
}
