/* =========================================================
   Vintage Retro CSS for KlarMoment Hamburg
   ========================================================= */

/* CSS RESET (Normalize + extra) */
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,
main, 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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: var(--color-secondary);
  font-family: var(--font-body), Arial, sans-serif;
  font-weight: 400;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}
button {
  cursor: pointer;
}

/* ========== CSS VARIABLES (VINTAGE RETRO PALETTE) ========== */
:root {
  --color-primary: #27446B; /* Navy */
  --color-secondary: #F9F6EF; /* Creamy paper */
  --color-accent: #E4B86B; /* Warm gold */
  --color-retro-red: #C84630; /* Nostalgic orange-red */
  --color-retro-green: #40644B;
  --color-retro-blue: #4B7DA2;
  --color-retro-brown: #947E5B;
  --color-grey: #ded3bb;
  --color-dark: #1F2833;
  --color-white: #fff;
  --color-card-bg: #fffdf6;
  --color-card-border: #E4B86B;

  --font-display: 'Montserrat', 'Arial Rounded MT Bold', 'Montserrat Alternates', sans-serif;
  --font-body: 'Roboto', 'Georgia', 'Serif', sans-serif;

  --shadow-main: 0 6px 24px rgba(39, 68, 107, 0.08);
  --shadow-card: 0 2px 8px rgba(39, 68, 107, 0.08), 0 1px 0 rgba(180, 164, 140, 0.05);

  --radius-main: 16px;
  --radius-card: 12px;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display), Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  color: var(--color-primary);
  text-shadow: 1px 2px 0 var(--color-accent), 0 1px 10px #cfaf6640;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  color: var(--color-retro-red);
  margin-bottom: 12px;
}
h3 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1rem;
  color: var(--color-retro-green);
  margin-bottom: 4px;
}
p, li, label, blockquote, span, input, textarea {
  font-family: var(--font-body), serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-dark);
}
blockquote {
  border-left: 5px solid var(--color-retro-red);
  background: #fff2e8;
  padding: 18px 28px;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--color-retro-brown);
  border-radius: 0 var(--radius-main) var(--radius-main) 0;
}
a {
  color: var(--color-retro-red);
  font-weight: 600;
  text-decoration: underline dotted;
  text-underline-offset: 3px;
  transition: color 0.15s, background 0.15s;
}
a:hover, a:focus {
  color: var(--color-primary);
  background: var(--color-accent);
  outline: none;
}
.link {
  color: var(--color-retro-red);
  font-family: var(--font-display), sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: underline;
  margin-top: 12px;
  display: inline-block;
  transition: color 0.2s;
}
.link:hover {
  color: var(--color-retro-green);
}
.read-time {
  font-size: 0.92rem;
  font-family: var(--font-body), serif;
  color: var(--color-retro-brown);
  background: #f4efe1;
  padding: 2px 8px;
  border-radius: 9px;
  margin-top: 6px;
  display: inline-block;
}
.category-tag {
  font-size: 0.95rem;
  font-family: var(--font-display);
  color: var(--color-white);
  background: var(--color-retro-brown);
  padding: 2px 11px 3px 11px;
  border-radius: 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: inline-block;
}

/**** BUTTONS ****/
.cta-button, .mobile-nav a.button, .cookie-banner .cookie-btn {
  font-family: var(--font-display), sans-serif;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 12px 32px;
  box-shadow: 0 2px 8px #e4b86b33;
  border: 2px solid var(--color-primary);
  letter-spacing: 0.05em;
  margin-top: 14px;
  display: inline-block;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cta-button:hover, .cta-button:focus, .cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--color-primary);
  color: var(--color-accent);
  box-shadow: 0 4px 16px #27446b33;
  text-decoration: none;
}
button, input[type="submit"] {
  border: 2px solid var(--color-primary);
  border-radius: 7px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 1rem;
  padding: 9px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
button:hover, button:focus, input[type="submit"]:hover, input[type="submit"]:focus {
  background: var(--color-primary);
  color: var(--color-accent);
  box-shadow: 0 3px 10px #27446b22;
}

/**** LAYOUT CONTAINERS & SPACING ****/
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-card-bg);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-card-bg);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 2px solid var(--color-card-border);
  padding: 24px;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.card:hover {
  box-shadow: 0 6px 18px #27446b16;
  border-color: var(--color-retro-red);
  z-index: 1;
}
.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;
  background: #fff9f2;
  box-shadow: 0 2px 8px #27446b11;
  border: 2px solid var(--color-retro-red);
  border-radius: var(--radius-card);
  padding: 20px;
  min-width: 280px;
  max-width: 420px;
  margin-bottom: 20px;
  color: var(--color-primary);
}
.testimonial-card p {
  color: var(--color-dark);
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--color-retro-blue);
  font-weight: bold;
  margin-left: auto;
  font-family: var(--font-display);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fbeecc;
  border-radius: var(--radius-card);
  box-shadow: 0 1px 6px #e4b86b22;
  border: 2px solid var(--color-retro-brown);
  padding: 20px 18px 22px 18px;
  gap: 15px;
  max-width: 360px;
  min-width: 240px;
  transition: box-shadow 0.18s;
}
.feature-item:hover {
  box-shadow: 0 4px 14px #e4b86b44;
}
.feature-item img {
  width: 54px;
  height: 54px;
  margin-bottom: 12px;
  filter: saturate(0.7) sepia(0.3);
}

/**** FLEX-BASED GRIDS & LISTS ****/
.feature-grid,
.service-grid,
.article-teasers,
.article-list,
.team-grid,
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.team-grid .team-member {
  background: #f9eee1;
  border-radius: var(--radius-card);
  padding: 22px 18px;
  box-shadow: 0 1px 4px #947E5B22;
  border-left: 5px solid var(--color-retro-green);
  flex: 0 1 280px;
  margin-bottom: 20px;
}
.service-grid .service-card {
  background: #fffdf7;
  border: 2px solid var(--color-retro-brown);
  border-radius: var(--radius-card);
  padding: 24px 20px;
  box-shadow: 0 1px 6px #947e5b17;
  flex: 1 1 240px;
  min-width: 240px;
  max-width: 350px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.16s, border-color 0.16s;
}
.service-card:hover {
  box-shadow: 0 6px 14px #947e5b33;
  border-color: var(--color-retro-red);
}
.article-teasers .article-teaser,
.article-list .article-list-item {
  background: #f6f4ea;
  border: 2px solid #e4b86b85;
  border-radius: var(--radius-card);
  box-shadow: 0 1px 6px #e4b86b18;
  flex: 1 1 280px;
  max-width: 335px;
  min-width: 210px;
  padding: 20px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.article-teasers .article-teaser:hover,
.article-list .article-list-item:hover {
  box-shadow: 0 5px 13px #e4b86b30;
  border-color: var(--color-retro-red);
}

.team-grid, .testimonial-list, .feature-grid, .service-grid, .article-teasers, .article-list {
  margin-bottom: 20px;
}

/**** HERO SECTION ****/
.hero {
  background: var(--color-retro-blue);
  color: var(--color-white);
  padding: 60px 0 40px 0;
  min-height: 250px;
  margin-bottom: 48px;
  box-shadow: 0 4px 32px #27446b09;
  border-bottom: 8px double var(--color-accent);
  font-family: var(--font-display);
}
.hero h1 {
  color: var(--color-white);
  text-shadow: 2px 2px 0 #22354c, 0 2px 16px #ffd36b55;
}
.hero p {
  color: var(--color-secondary);
  font-size: 1.15rem;
}
.hero .cta-button {
  margin-top: 16px;
  background: var(--color-white);
  color: var(--color-retro-red);
  border: 2px solid var(--color-retro-red);
  box-shadow: 0 2px 8px #c8463036;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.hero .cta-button:hover {
  background: var(--color-retro-red);
  color: var(--color-white);
}

/**** HEADER & NAVIGATION ****/
header {
  background: var(--color-secondary);
  border-bottom: 3px solid var(--color-accent);
  box-shadow: 0 1.5px 0 #e4b86b88;
  z-index: 100;
  position: sticky;
  top: 0;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}
.logo-link img {
  height: 48px;
  width: auto;
  margin-right: 10px;
  filter: saturate(0.8) sepia(0.12); /* subtle aging effect */
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}
.main-nav a {
  color: var(--color-retro-red);
  padding: 5px 18px;
  border-radius: 13px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-retro-red);
  color: var(--color-white);
}
.cta-button {
  margin-left: 18px;
}
.mobile-menu-toggle {
  display: none;
  background: var(--color-retro-red);
  color: var(--color-white);
  border-radius: 100px;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 2px 8px #c8463020;
  transition: background 0.18s, color 0.18s;
  z-index: 1200;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:hover {
  background: var(--color-accent);
  color: var(--color-retro-red);
}

/**** MOBILE MENU ****/
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-card-bg);
  box-shadow: 2px 0 32px #27446b12;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-102vw);
  transition: transform 0.34s cubic-bezier(0.77, 0, 0.175, 1);
  padding: 32px 26px 32px 28px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: var(--color-retro-red);
  color: var(--color-white);
  border-radius: 50%;
  align-self: flex-end;
  margin-bottom: 12px;
  margin-right: 6px;
  border: none;
  width: 48px;
  height: 48px;
  box-shadow: 0 2px 8px #c8463020;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 21px;
  align-items: flex-start;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.12rem;
  color: var(--color-retro-red);
  background: none;
  padding: 14px 0 7px 11px;
  border-radius: 14px;
  font-family: var(--font-display);
  border-left: 5px solid var(--color-retro-brown);
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-retro-red);
}

/**** FOOTER ****/
footer {
  background: #f5e6c9;
  border-top: 5px double var(--color-retro-brown);
  color: var(--color-retro-brown);
  padding: 34px 0 16px 0;
  font-size: 1rem;
  margin-top: 70px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.footer-main {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-main img {
  height: 39px;
  filter: saturate(0.7) sepia(0.18);
}
.footer-main p {
  font-family: var(--font-display);
  color: var(--color-retro-green);
  font-size: 1rem;
  margin-top: 7px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 180px;
  align-items: flex-start;
}
.footer-nav a {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.01rem;
  padding: 4px 0;
  transition: color 0.17s;
}
.footer-nav a:hover {
  color: var(--color-retro-red);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 2;
  min-width: 200px;
}
.footer-contact p {
  display: flex;
  align-items: center;
  color: var(--color-retro-brown);
  font-family: var(--font-body);
  font-size: 1rem;
  gap: 10px;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  filter: grayscale(0.12) sepia(0.2); /* retro effect */
}

/**** ARTICLE & CARDS PREVIEW ****/
.articles-preview {
  background: var(--color-card-bg);
  border-bottom: 2px dashed var(--color-retro-brown);
  border-radius: var(--radius-main);
  box-shadow: 0 1px 8px #e4b86b24;
}
.article-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.article-teaser {
  flex: 1 1 240px;
}

/**** CTA SECTION ****/
.cta-section, .cta-membership {
  background: #e3e0d0;
  border-radius: var(--radius-main);
  box-shadow: 0 2px 15px #947e5b1a;
  border: 2px solid var(--color-retro-green);
  margin-bottom: 52px;
  padding: 44px 25px 42px 25px;
  text-align: center;
}
.cta-section h2, .cta-membership h2 {
  color: var(--color-retro-brown);
}
.cta-section .cta-button, .cta-membership .cta-button {
  margin-top: 20px;
}

/**** FORM ELEMENTS ****/
form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fffdf6;
  padding: 28px 16px;
  border-radius: var(--radius-card);
  border: 2px dashed var(--color-retro-brown);
  box-shadow: 0 1px 5px #e4b86b1a;
  margin-top: 12px;
}
label {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-retro-brown);
  margin-bottom: 4px;
}
input[type='text'], input[type='email'], textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 8px 13px;
  border: 2px solid var(--color-card-border);
  border-radius: 8px;
  background: #fff;
  margin-bottom: 8px;
  resize: vertical;
  color: var(--color-dark);
  transition: border 0.18s;
}
input[type='text']:focus, input[type='email']:focus, textarea:focus {
  border: 2px solid var(--color-retro-red);
}
.callback-row {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 7px;
}
input[type="checkbox"] {
  accent-color: var(--color-accent);
  width: 18px;
  height: 18px;
  border-radius: 4px;
}

/**** TABLES (for workshops) ****/
.workshop-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff9ed;
  margin-bottom: 24px;
  border-radius: var(--radius-main);
  overflow: hidden;
  box-shadow: 0 1px 7px #947e5b1a;
}
.workshop-table th, .workshop-table td {
  padding: 13px 11px;
  font-size: 1rem;
  text-align: left;
  font-family: var(--font-body);
}
.workshop-table th {
  background: var(--color-retro-brown);
  color: var(--color-white);
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}
.workshop-table tr:nth-child(odd) td {
  background: #f9f6ef;
}
.workshop-table tr:nth-child(even) td {
  background: #f4efe1;
}
.workshop-table td {
  border-bottom: 1px solid #e4b86b65;
}
.workshop-table tr:last-child td {
  border-bottom: none;
}

/**** FAQ LIST ****/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-top: 14px;
}
.faq-list li {
  background: #f6f4ea;
  border-left: 5px solid var(--color-retro-red);
  padding: 14px 18px;
  border-radius: 0 var(--radius-main) var(--radius-main) 0;
  box-shadow: 0 1px 3px #e4b86b11;
}
.faq-list strong {
  font-family: var(--font-display);
  color: var(--color-retro-green);
  font-weight: 700;
}

/**** MAP PLACEHOLDER ****/
.map-embed-placeholder {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #efe1bf;
  border-radius: var(--radius-card);
  padding: 19px 12px;
  box-shadow: 0 1px 5px #947e5b1a;
}
.map-embed-placeholder img {
  width: 48px;
  height: 48px;
  filter: sepia(0.18) brightness(0.98);
}

/**** PRICE BADGES ****/
.price {
  font-size: 1.12rem;
  color: var(--color-retro-red);
  font-family: var(--font-display);
  background: #fff0c5;
  border-radius: 9px;
  padding: 3px 11px;
  margin-top: 7px;
  font-weight: 700;
  display: inline-block;
}

/**** SPECIAL SECTION LAYOUT ****/
.our-values ul, .our-team ul, .contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: 9px;
  margin-bottom: 13px;
}
.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-retro-brown);
  font-family: var(--font-body);
  font-size: 1.01rem;
}
.contact-info-list img {
  width: 20px;
  height: 20px;
  filter: grayscale(0.18) sepia(0.09) brightness(0.98);
}

/**** COOKIE CONSENT BANNER ****/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff8e0;
  color: var(--color-primary);
  font-family: var(--font-body);
  padding: 21px 18px 17px 18px;
  box-shadow: 0 -4px 32px #947e5b32;
  border-top: 4px double var(--color-accent);
  z-index: 2900;
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
  opacity: 1;
  transition: transform 0.33s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.2s;
  pointer-events: auto;
}
.cookie-banner.hidden {
  opacity: 0;
  transform: translateY(35px);
  pointer-events: none;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 10px;
}
.cookie-banner .cookie-btn {
  font-size: 1rem;
  padding: 8px 19px;
  border-radius: 999px;
  border: 2px solid var(--color-retro-red);
  background: var(--color-retro-red);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 700;
  margin-right: 6px;
  margin-top: 6px;
  transition: background 0.18s, color 0.18s, border 0.18s;
}
.cookie-banner .cookie-btn.settings {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.cookie-banner .cookie-btn:hover {
  background: var(--color-primary);
  color: var(--color-accent);
  border-color: var(--color-retro-red);
}
.cookie-banner .cookie-btn:active {
  opacity: 0.91;
}

/**** COOKIE PREFERENCES MODAL ****/
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32, 26, 14, 0.52);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.2s;
}
.cookie-modal.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff8e0;
  padding: 36px 29px 28px 29px;
  border-radius: var(--radius-main);
  min-width: 310px;
  max-width: 95vw;
  box-shadow: 0 8px 40px #947e5b44;
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h2 {
  color: var(--color-retro-red);
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 15px;
  background: var(--color-retro-red);
  color: var(--color-white);
  border: none;
  font-size: 1.6rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  line-height: 36px;
  text-align: center;
  box-shadow: 0 2px 8px #c8463020;
  cursor: pointer;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.cookie-category-row label {
  margin: 0;
  font-family: var(--font-display);
  color: var(--color-retro-brown);
  font-size: 1.05rem;
}
.cookie-category-row input[type="checkbox"] {
  accent-color: var(--color-retro-red);
  width: 20px;
  height: 20px;
  border-radius: 6px;
}
.cookie-modal .cookie-btn {
  margin-top: 13px;
}

/**** THANK YOU PAGE SPECIAL ****/
.thank-you-section {
  background: #fffbeb;
  border-radius: var(--radius-card);
  border: 2px dashed var(--color-accent);
  padding: 43px 18px;
  margin-top: 60px;
  box-shadow: 0 1px 7px #e4b86b1a;
  text-align: center;
}
.thank-you-section h1 {
  color: var(--color-retro-red);
}
.thank-you-section p {
  margin-bottom: 22px;
}
/* ------------ RESPONSIVE DESIGN ------------ */
@media (max-width: 1200px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 992px) {
  .feature-grid, .service-grid, .team-grid, .testimonial-list, .article-teasers, .article-list {
    flex-wrap: wrap;
    gap: 18px;
    justify-content: flex-start;
  }
  header .container, footer .container {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.45rem;
  }
  .hero {
    padding: 44px 0 28px 0;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-nav {
    gap: 9px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .container, main .container {
    padding-left: 11px;
    padding-right: 11px;
  }
  .section {
    padding: 22px 7px;
    margin-bottom: 38px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .feature-grid, .service-grid, .team-grid, .testimonial-list, .article-teasers, .article-list {
    flex-direction: column !important;
    gap: 15px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
    text-align: left;
  }
  .card, .feature-item, .service-card, .team-member, .testimonial-card, .article-teaser, .article-list-item {
    min-width: 0;
    max-width: 100%;
    padding: 14px 9px;
  }
  .footer-main, .footer-contact {
    min-width: 0;
  }
  .workshop-table th, .workshop-table td {
    font-size: 0.92rem;
    padding: 8px 4px;
  }
  .cookie-modal-content {
    padding: 19px 7px 16px 12px;
    min-width: 0;
  }
}
@media (max-width: 540px) {
  body {
    font-size: 0.97rem;
  }
  h1 {
    font-size: 1.24rem;
  }
  h2 {
    font-size: 1.01rem;
  }
  h3 {
    font-size: 1.01rem;
  }
  .cookie-banner {
    padding: 14px 7px 8px 7px;
    font-size: 0.92rem;
  }
}

/* =============== ANIMATIONS & MICRO-INTERACTION =============== */
.cta-button, .link, .main-nav a, .footer-nav a, .mobile-nav a, .card, .feature-item, .team-member, .service-card, .testimonial-card, .article-teaser, .article-list-item, .cookie-btn {
  transition: background 0.18s, color 0.22s, box-shadow 0.18s, border-color 0.18s, transform 0.15s;
}
.cta-button:hover, .link:hover, .main-nav a:hover, .footer-nav a:hover, .mobile-nav a:hover {
  transform: translateY(-2px) scale(1.03);
}
.card:hover, .service-card:hover, .feature-item:hover, .testimonial-card:hover, .article-teaser:hover, .article-list-item:hover {
  transform: scale(1.028);
  z-index: 2;
}
input:focus, textarea:focus {
  box-shadow: 0 0 0 2px #e4b86b80;
}

/**** VINTAGE NOISE/EFFECTS (subtle background) ****/
body {
  background: repeating-linear-gradient(135deg, #f9f6ef, #fffdf6 12px, #f9f6ef 24px);
}
.hero {
  background: repeating-linear-gradient(120deg, #4b7da2, #4b7da2 20%, #40644b 20%, #40644b 40%, #4b7da2 40%, #27446B 60%, #27446B 90%);
  background-size: 180vw 90vw;
}
/* Optional retro speckles overlay (only works with SVG/no extra requests)
body::before {
  content: "";
  pointer-events: none;
  position: fixed; left:0; top:0; right:0; bottom:0;
  z-index: 0;
  opacity: 0.06;
  background: url('data:image/svg+xml;utf8,<svg width="40" height="40" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="8" cy="12" r="1.2" fill="%23c84630"/><circle cx="30" cy="7" r="1" fill="%23947e5b"/><circle cx="19" cy="29" r="1.2" fill="%23e4b86b"/><circle cx="32" cy="33" r="0.7" fill="%234B7DA2"/></svg>');
  background-size: 70px 70px;
}
*/

/* ========= UTILITY CLASSES ========= */
.hide {
  display: none !important;
}

// End of CSS
