/* ============================================
   CSS RESET & BASELINE
   ============================================ */
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, menu, 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,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 100%;
  font: inherit;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background: #F4F7FA;
  color: #3b2a22;
  min-height: 100vh;
  position: relative;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #224766;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #a36322;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
input[type="text"],
input[type="email"],
input[type="search"],
textarea {
  padding: 10px 14px;
  border-radius: 6px;
  border: 1.5px solid #b3a78b;
  background: #FAF4EA;
  color: #3b2a22;
  font-size: 1rem;
  outline: none;
  transition: border-color .2s;
}
input:focus, textarea:focus {
  border-color: #224766;
}
strong, b {
  font-weight: 700;
}
hr {
  border: 0;
  border-top: 1px dashed #b3a78b;
  margin: 32px 0;
}

/* ============================================
   BRAND: VINTAGE RETRO COLOR & TYPOGRAPHY SCALE
   ============================================ */
:root {
  --color-primary: #224766;
  --color-secondary: #759136;
  --color-accent: #F4F7FA;
  --color-retro-bg: #FCF7EE;
  --color-retro-card: #fff7eb;
  --color-retro-pattern: #f2e6c7;
  --color-retro-orange: #a36322;
  --color-retro-brown: #3b2a22;
  --color-retro-blue: #2E5F88;
  --color-shadow: rgba(60,40,10,0.10);
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local('Montserrat'), local('Montserrat-Regular'),
    url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), local('OpenSans-Regular'),
    url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-weight: 700;
  color: #224766;
  letter-spacing: -0.03em;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

@media (min-width: 600px) {
  h1 { font-size: 2.7rem; }
  h2 { font-size: 2.0rem; }
  h3 { font-size: 1.25rem; }
}

p, ul, ol {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #3b2a22;
  line-height: 1.7;
}


/* ============================================
   LAYOUT CONTAINER STYLES
   ============================================ */
.container {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.accent {
  background: var(--color-retro-bg);
  box-shadow: 0 5px 24px var(--color-shadow);
  border-top: 6px double var(--color-retro-pattern);
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* FLEX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-retro-card);
  border-radius: 18px;
  box-shadow: 0 4px 16px var(--color-shadow);
  padding: 28px 20px;
  border: 2.5px solid var(--color-retro-pattern);
  min-width: 260px;
  flex: 1 1 260px;
  transition: box-shadow .22s, transform .18s;
}
.card:hover {
  box-shadow: 0 8px 24px var(--color-shadow);
  transform: translateY(-2px) scale(1.01);
}
.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: #fffdf5;
  box-shadow: 0 1.5px 8px var(--color-shadow);
  border-radius: 12px;
  border: 2px solid var(--color-retro-pattern);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-meta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-retro-brown);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-retro-card);
  border-radius: 14px;
  box-shadow: 0 3px 12px var(--color-shadow);
  padding: 22px 18px;
  min-width: 220px;
  margin-bottom: 18px;
  border: 1.5px solid var(--color-retro-pattern);
  transition: box-shadow .2s, border-color .2s;
}
.feature-item img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 3px 3px #f2e6c7);
}
.feature-item:hover {
  border-color: var(--color-retro-orange);
  box-shadow: 0 6px 30px var(--color-shadow);
}

/* Responsive grid fixes */
@media (max-width: 900px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper {
    gap: 11px;
  }
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
header {
  background: var(--color-retro-bg);
  box-shadow: 0 6px 22px var(--color-shadow);
  border-bottom: 8px double #f2e6c7;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  height: 80px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
nav {
  display: flex;
  gap: 22px;
  flex: 1 1 auto;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .06em;
  color: #224766;
  padding: 7px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .18s, color .1s;
}
nav a:hover,
nav a:focus,
.footer-links a:hover {
  color: var(--color-retro-orange);
  border-bottom: 2px solid var(--color-retro-orange);
}
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  outline: none;
  padding: 12px 32px;
  border-radius: 22px;
  font-size: 1.15rem;
  cursor: pointer;
  transition: background .15s, color .15s, box-shadow .18s, transform .18s;
  box-shadow: 0 2.5px 12px var(--color-shadow);
  margin-left: 16px;
  margin-bottom: 0;
  position: relative;
}
.btn-primary {
  background: var(--color-primary);
  color: #fcf7ee;
  border-bottom: 3px solid var(--color-retro-blue);
  letter-spacing: 0.05em;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--color-retro-orange);
  color: #fffbe0;
  transform: translateY(-1px) scale(1.04);
}
.btn-secondary {
  background: #fffbe0;
  color: var(--color-retro-orange);
  border: 2.5px solid var(--color-retro-orange);
  box-shadow: 0 1.5px 7px var(--color-shadow);
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--color-retro-orange);
  color: #fffbe0;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--color-retro-orange);
  border: none;
  font-size: 2.1rem;
  margin-left: 18px;
  padding: 7px 13px;
  border-radius: 8px;
  transition: background .14s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-retro-pattern);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(240,230,200,0.95);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.33,1.15,.88,1.11);
  padding: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-retro-orange);
  font-size: 2.1rem;
  position: absolute;
  top: 18px;
  right: 22px;
  cursor: pointer;
  z-index: 2020;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background .14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-retro-pattern);
}
.mobile-nav {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  width: 100vw;
  padding: 34px 30px;
  gap: 24px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #224766;
  background: #fcf7ee;
  border-radius: 8px;
  padding: 17px 10px 13px 18px;
  width: 100%;
  transition: background .13s, color .12s;
  margin-bottom: 12px;
  border-left: 4px solid transparent;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-retro-pattern);
  color: var(--color-retro-orange);
  border-left: 4px solid var(--color-retro-orange);
}

@media (max-width: 1060px) {
  header .container {
    gap: 12px;
  }
  nav {
    gap: 13px;
  }
}
@media (max-width: 900px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .btn-primary {
    margin-left: auto;
  }
}
@media (max-width: 470px) {
  .logo img {
    height: 37px;
  }
}

/* ============================================
   HERO & CTA
   ============================================ */
.hero {
  min-height: 320px;
  background: repeating-linear-gradient(135deg, #f2e6c7 0 9px, #FCF7EE 9px 54px);
  border-bottom: 6px dotted #a36322;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 0;
  margin-bottom: 0;
}
.hero .content-wrapper {
  max-width: 600px;
  align-items: flex-start;
  gap: 10px;
  text-shadow: 0 1px 0 #fffbe0;
}
.cta {
  background: var(--color-secondary);
  color: #fffbe0;
  padding: 40px 0;
  margin-bottom: 50px;
  border-radius: 20px;
  box-shadow: 0 5px 22px var(--color-shadow);
  display: flex;
  align-items: center;
}
 
.cta .btn-primary {
  box-shadow: 0 6px 18px var(--color-shadow);
  background: #a36322;
  border-bottom: 3px solid var(--color-retro-brown);
}
.cta .btn-primary:hover { background: var(--color-primary); }

/* ============================================
   FEATURES LISTS
   ============================================ */
.features {
  padding: 38px 0;
  margin-bottom: 60px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

/* ============================================
   ARTICLES & CARDS
   ============================================ */
.article-list-short,
.article-preview-grid,
.seminar-teaser-list,
.service-list,
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.article-list-short > article,
.article-preview-grid > article {
  background: #fff7eb;
  border-radius: 12px;
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 20px 17px;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 10px;
  border: 2px solid var(--color-retro-pattern);
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: box-shadow .17s, border-color .17s, transform .13s;
}
.article-list-short > article:hover,
.article-preview-grid > article:hover {
  box-shadow: 0 6px 18px var(--color-shadow);
  border-color: var(--color-retro-orange);
  z-index: 1;
  transform: translateY(-1.5px) scale(1.012);
}
.article-list-short a, .article-preview-grid a {
  margin-top: 7px;
  font-weight: 600;
  color: var(--color-retro-orange);
  text-decoration: underline dotted;
  font-family: 'Montserrat', Arial, sans-serif;
}
.article-list-short a:hover, .article-preview-grid a:hover {
  color: var(--color-secondary);
  text-decoration: underline solid;
}

.categories {
  border-top: 4px dashed #f2e6c7;
}
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.category-list li {
  background: var(--color-retro-card);
  color: #a36322;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 22px;
  border: 1.5px solid var(--color-retro-orange);
  font-size: 0.97rem;
  margin-bottom: 6px;
}

@media (max-width: 700px) {
  .article-list-short, .article-preview-grid, .seminar-teaser-list, .service-list, .testimonial-list, .feature-grid {
    flex-direction: column;
    gap: 14px;
  }
}

/* ============================================
   SEMINARS & SERVICES
   ============================================ */
.seminar-teaser-list,
.service-list {
  gap: 22px;
  margin-bottom: 12px;
}
.seminar-teaser,
.service-item {
  background: var(--color-retro-card);
  padding: 24px 18px 20px 19px;
  border-radius: 15px;
  box-shadow: 0 3px 11px var(--color-shadow);
  border: 1.5px solid var(--color-retro-pattern);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
  transition: box-shadow .15s, border-color .14s;
}
.seminar-teaser:hover,
.service-item:hover {
  border-color: var(--color-retro-orange);
  box-shadow: 0 9px 26px var(--color-shadow);
}
.seminar-teaser strong,
.service-item .service-price {
  color: var(--color-retro-orange);
  font-weight: 700;
  margin-right: 9px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials, .testimonial-list {
  background: none;
}
.testimonial-list {
  gap: 24px;
}
.testimonial-card {
  min-width: 260px;
  flex: 1 1 260px;
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #381e12;
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 0;
}
.testimonial-meta {
  margin-top: 0;
  color: #224766;
}
@media (max-width: 600px){
  .testimonial-list, .testimonial-card {
    flex-direction: column;
    gap: 14px;
  }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--color-retro-bg);
  padding: 36px 0 18px 0;
  border-top: 8px double #f2e6c7;
  box-shadow: 0 -5px 20px var(--color-shadow);
  margin-top: 80px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 150px;
  align-items: flex-start;
}
.footer-brand img {
  height: 41px;
  margin-bottom: 6px;
}
.footer-brand p {
  font-size: .98rem;
  color: #224766;
}
.footer-links {
  flex: 2 1 350px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
}
.footer-links a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-retro-orange);
  text-decoration: none;
  padding: 5px 0;
  margin-right: 16px;
  transition: color .14s;
}
.footer-links a:hover,
.footer-links a:focus {
  color: #224766;
  text-decoration: underline;
}
.footer-contact {
  flex: 1 1 170px;
  font-size: .97rem;
  color: #3b2a22;
  text-align: left;
}
.footer-contact a {
  color: #224766;
  text-decoration: underline;
  word-break: break-all;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
}

/* ============================================
   LEGAL, CONFIRMATION & MISC SECTIONS
   ============================================ */
.legal, .confirmation, .about, .contact, .map {
  padding: 44px 0;
  margin-bottom: 30px;
  background: var(--color-retro-bg);
  border-radius: 13px;
}
.legal .text-section,
.confirmation .text-section {
  background: #fffbe0;
  border-radius: 10px;
  padding: 24px 18px;
  margin-bottom: 19px;
  box-shadow: 0 2px 7px var(--color-shadow);
  border: 1.5px solid var(--color-retro-pattern);
}
.confirmation .btn-primary {
  margin-left: 0;
}
.address {
  font-style: normal;
}

/* Cookie Consent Banner & Modal */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff7eb;
  color: #224766;
  border-top: 4px solid var(--color-retro-orange);
  border-radius: 13px 13px 0 0;
  box-shadow: 0 -4px 20px var(--color-shadow);
  padding: 18px 24px 20px 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: flex-start;
  transition: transform .3s ease, opacity .25s;
}
.cookie-banner.hide { opacity: 0; pointer-events: none; transform: translateY(120%); }
.cookie-banner.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.cookie-banner-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #a36322;
  font-size: 1.1rem;
  margin-bottom: 2px;
}
.cookie-banner-btns {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 5px;
}
.cookie-banner-btns .btn-primary,
.cookie-banner-btns .btn-secondary {
  font-size: 1rem;
  padding: 11px 21px;
  min-width: 125px;
  margin: 0;
}
.cookie-banner-btns .btn-secondary {
  background: #ffecc8;
  color: #a36322;
  border: 1.5px solid var(--color-retro-orange);
  margin-right: 0;
}
.cookie-banner-btns .btn-secondary:hover {
  background: #a36322;
  color: #fffbe0;
}
.cookie-settings-link {
  color: #2E5F88;
  text-decoration: underline;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 2px;
  margin-left: 12px;
}
.cookie-settings-link:hover { color: #a36322; }

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,71,102,0.18);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .25s;
}
.cookie-modal-overlay.hide { opacity: 0; pointer-events: none; }
.cookie-modal {
  background: #fffef6;
  border-radius: 16px;
  padding: 38px 23px 28px 23px;
  min-width: 295px;
  max-width: 94vw;
  border: 2.5px solid #f2e6c7;
  box-shadow: 0 12px 38px var(--color-shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 18px;
  font-size: 1.81rem;
  background: none;
  border: none;
  color: #a36322;
  padding: 4px 10px;
  border-radius: 7px;
  cursor: pointer;
  z-index: 2;
}
.cookie-modal-close:hover { background: #f2e6c7; }
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #224766;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 14px 0;
  border-top: 1px solid #f2e6c7;
  font-size: 1rem;
}
.cookie-category:first-child { border-top: none; }
.cookie-cat-title {
  font-weight: 600;
  color: #a36322;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-cat-desc {
  font-size: .94rem;
  color: #3b2a22;
}
.cookie-toggle {
  margin-left: auto;
  min-width: 55px;
  display: inline-flex;
  align-items: center;
}
.cookie-toggle input[type="checkbox"] {
  appearance: none;
  width: 39px;
  height: 19px;
  background: #ddd;
  border-radius: 19px;
  position: relative;
  outline: none;
  border: none;
  transition: background .21s;
}
.cookie-toggle input:checked {
  background: #759136;
}
.cookie-toggle input[type="checkbox"]:before {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 15px; height: 15px;
  background: #fff;
  border-radius: 50%;
  transition: left .18s;
}
.cookie-toggle input[type="checkbox"]:checked:before {
  left: 22px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 22px;
  justify-content: flex-end;
  margin-top: 7px;
}
.cookie-modal .btn-primary, .cookie-modal .btn-secondary {
  min-width: 120px;
  padding: 11px 24px;
  box-shadow: none;
}

@media (max-width: 700px) {
  .cookie-banner {
    padding: 14px 10px 16px 8px;
    font-size: .98rem;
  }
  .cookie-modal { padding: 19px 7px 18px 7px; }
}

/* ============================================
   UTILITIES & MISC
   ============================================ */
.text-section {
  margin-bottom: 17px;
}
.text-section p {
  font-size: 1.06rem;
}
.no-select {
  user-select: none;
}

::-webkit-scrollbar {
  width: 12px;
  background: #f2e6c7;
}
::-webkit-scrollbar-thumb {
  background: #ccc2a3;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb:hover {
  background: #b3a78b;
}

/* ============================================
   RETRO DESIGN DECORATIVE PATTERNS
   ============================================ */
.section, .accent, .legal, .about, .contact, .map, .confirmation {
  background: repeating-linear-gradient(140deg, #FCF7EE 0 48px, #FFE3B0 48px 98px, #FCF7EE 98px 120px);
}
@media (max-width: 600px) {
  .section, .accent, .legal, .about, .contact, .map, .confirmation {
    background: #FCF7EE;
  }
}

/* Subtle retro border for key cards */
.card, .feature-item, .seminar-teaser, .service-item, .testimonial-card, .article-list-short > article, .article-preview-grid > article {
  border-style: solid;
  border-width: 2.5px;
  border-color: #f2e6c7;
}

/* ============================================
   RESPONSIVE - GLOBAL
   ============================================ */
@media (max-width: 1060px) {
  .container { max-width: 96vw; }
  nav, .footer-links { gap: 8px; }
}
@media (max-width: 740px) {
  .container { max-width: 100vw; }
  .card, .feature-item, .seminar-teaser, .service-item {
    min-width: 95vw;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .btn-primary, .btn-secondary, .cookie-banner-btns .btn-primary, .cookie-banner-btns .btn-secondary {
    font-size: .98rem;
    padding: 10px 13px;
  }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.1rem; }
}

/* ============================================
   ACCESSIBILITY/FOCUS
   ============================================ */
a, button, input, textarea {
  outline: none;
  box-shadow: none;
  transition: box-shadow .15s;
}
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus {
  outline: 2px solid var(--color-retro-orange);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px #ffecc8;
}

/* ============================================
   PRINT OVERRIDE
   ============================================ */
@media print {
  header, footer, .mobile-menu, .cookie-banner {
    display: none !important;
  }
  .container, main, body {
    background: #fff !important;
    box-shadow: none !important;
  }
}
