/* =============================================================
   RESET & BASE (Normalize, cross-browser consistency)
   ============================================================= */
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; margin: 0; padding: 0; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, blockquote, dl, dd {
  margin: 0; padding: 0;
}
ul, ol { list-style: none; }
img { max-width: 100%; display: block; border: 0; }
input, button, textarea, select { font: inherit; }
button { border: none; background: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid #EDC531; outline-offset: 2px; }

/* =============================================================
   TYPOGRAPHY
   ============================================================= */
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:400,700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #232323;
  background: #F5F5F5;
  line-height: 1.6;
  letter-spacing: 0.01em;
  min-height: 100vh;
}

h1, .h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #171717;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
@media (max-width: 768px) {
  h1, .h1 { font-size: 1.8rem; }
}
h2, .h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #232323;
  margin-bottom: 16px;
  line-height: 1.2;
}
h3, .h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.25rem;
  color: #2B2D42;
  margin-bottom: 10px;
  line-height: 1.3;
}
h4, .h4 {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
}
p, li, address, label, span {
  font-size: 1rem;
  color: #232323;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.7;
}
blockquote {
  border-left: 4px solid #2B2D42;
  padding-left: 18px;
  font-style: italic;
  color: #444;
  background: #fff;
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
}
.lead {
  font-size: 1.25rem;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* =============================================================
   PALETTE (Monochrome, dramatic contrast + brand accent)
   ============================================================= */
:root {
  --primary: #2B2D42;
  --secondary: #F9F9F6;
  --accent: #EDC531;
  --text-main: #232323;
  --text-dark: #171717;
  --text-light: #FAFAFA;
  --bg-main: #F5F5F5;
  --bg-dark: #18181B;
  --bg-card: #fff;
  --border-light: #E5E6EC;
  --border-dark: #262626;
}

/* =============================================================
   CONTAINERS & GENERIC LAYOUTS
   ============================================================= */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 900px) {
  .container { padding-left: 12px; padding-right: 12px; }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width: 600px) {
  .section {
    margin-bottom: 32px;
    padding: 26px 6px;
  }
  .content-wrapper { gap: 16px; }
}

/* =============================================================
   HEADER & NAVIGATION
   ============================================================= */
header {
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 4px rgba(40,40,40,0.05);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 80px;
  padding: 0 20px;
}
.logo-link {
  display: flex;
  align-items: center;
  height: 52px;
}
.logo-link img {
  width: auto;
  max-height: 48px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 6px;
  color: #2B2D42;
  transition: color 0.23s cubic-bezier(.4,0,.2,1);
  border-radius: 2px;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--accent);
  background: rgba(43,45,66, 0.07);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  padding: 10px 28px;
  border-radius: 24px;
  font-weight: 500;
  box-shadow: 0 1.5px 4px rgba(43,45,66,0.06);
  text-align: center;
  transition: background 0.22s, color 0.18s, box-shadow 0.22s;
  margin-left: 18px;
}
.cta-btn.primary {
  background: var(--primary);
  color: var(--text-light);
  border: none;
}
.cta-btn.primary:hover,
.cta-btn.primary:focus {
  background: #181922;
  box-shadow: 0 4px 16px rgba(43,45,66,0.15);
  color: var(--accent);
}
.cta-btn.secondary {
  background: var(--secondary);
  color: var(--primary);
  border: 1px solid var(--primary);
}
.cta-btn.secondary:hover,
.cta-btn.secondary:focus {
  background: var(--primary);
  color: var(--accent);
  border: 1px solid var(--primary);
}

/* Hamburger (Mobile) */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: none;
  color: var(--primary);
  line-height: 1;
  z-index: 1002;
  border-radius: 3px;
  transition: background 0.16s;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: rgba(43,45,66,0.08);
  color: var(--accent);
}

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

/* =============================================================
   MOBILE MENU OVERLAY
   ============================================================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18,19,20, 0.97);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.7,0,.3,1);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 48px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 2.2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2200;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100vw;
  align-items: flex-start;
  padding: 32px 24px;
}
.mobile-nav a {
  font-size: 1.4rem;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
  background: none;
  border-radius: 3px;
  padding: 10px 8px;
  transition: background 0.19s, color 0.17s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--accent);
  color: #171717;
}

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

/* =============================================================
   HERO
   ============================================================= */
.hero {
  background: linear-gradient(to bottom, #fff 60%, #F5F5F5 100%);
  padding: 56px 0 36px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 660px;
  gap: 18px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.4rem;
}
.hero .cta-btn {
  margin-top: 22px;
}
@media (max-width: 768px) {
  .hero { padding: 36px 0 18px 0; }
  .hero h1 { font-size: 1.4rem; }
  .hero .cta-btn { margin-top: 15px; }
}

/* =============================================================
   SECTION: Features & Cards
   ============================================================= */
.features, .services-overview {
  background: var(--secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.feature-grid, .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-card, .service-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border-light);
  box-shadow: 0 3px 18px rgba(50,50,50,0.08);
  padding: 32px 24px;
  flex: 1 1 260px;
  min-width: 230px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.21s, border-color 0.19s;
}
.feature-card:hover, .service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(43,45,66,0.15);
}
.feature-card img, .service-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 10px;
}
.price {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.12rem;
  margin-top: 12px;
}
@media (max-width: 900px) {
  .feature-grid, .services-grid {gap: 16px;}
  .feature-card, .service-card {padding: 18px 12px;}
}
@media (max-width: 690px) {
  .feature-grid, .services-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature-card, .service-card {
    max-width: 100%;
    min-width: 0;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(43,45,66,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonials {
  background: #fff;
  border-bottom: 1px solid var(--border-light);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.testimonial-card {
  background: #F9F9F6;
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(43,45,66,0.08);
  border: 1px solid var(--border-light);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 280px;
  max-width: 420px;
  margin-bottom: 20px;
  transition: box-shadow 0.21s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(43,45,66,0.14);
}
.testimonial-content {
  flex: 1 1 65%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-content p {
  color: #1F1F1F;
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 400;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.97rem;
  color: #232323;
}
.testimonial-footer img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F5F5F5;
  border: 1.5px solid #EDEDED;
}
@media (max-width: 590px) {
  .testimonial-slider, .testimonial-card { flex-direction: column; }
  .testimonial-card { align-items: flex-start; gap: 14px; min-width: unset; max-width: 100%; }
}

/* Make review/testimonial text always readable */
.testimonials, .testimonial-card, .testimonial-content p {
  background: #fff;
  color: #18181B;
}

/* =============================================================
   GENERAL FLEX CONTENT PATTERNS
   ============================================================= */
.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;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 22px; align-items: flex-start; }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =============================================================
   ABOUT / TEAM / TIMELINE
   ============================================================= */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team-member {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: 0 2.5px 8px rgba(40,40,40,0.10);
  padding: 22px 16px;
  flex: 1 1 210px;
  min-width: 180px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.team-member img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 4px;
  border: 2px solid var(--primary);
  background: #F9F9F9;
}
.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
}
.team-role {
  font-size: 1rem;
  color: #555555;
  margin-bottom: 6px;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.timeline-item {
  background: #F5F5F5;
  border-left: 4px solid var(--primary);
  padding: 18px 18px 18px 24px;
  border-radius: 8px;
  min-width: 180px;
}

.history-quotes blockquote {
  margin-bottom: 14px;
  background: #fff;
  border-left: 2.5px solid var(--accent);
  color: #3d3d3d;
  font-style: italic;
}

/* =============================================================
   BOOK LISTS, BLOG & BLOG FEED
   ============================================================= */
.book-list-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.book-list-card {
  flex: 1 1 260px;
  min-width: 190px;
  max-width: 330px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 10px rgba(43,45,66,0.08);
  padding: 26px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.20s;
}
.book-list-card:hover {
  box-shadow: 0 7px 20px rgba(43,45,66,0.10);
}
.book-list-card ul li strong { color: var(--primary); }
@media (max-width: 730px) {
  .book-list-grid { flex-direction: column; gap: 14px; }
  .book-list-card { max-width: 100%; }
}

.literature-trends { margin-bottom: 14px; }
.literature-quotes blockquote {
  color: #444;
  background: #f9f9f9;
  border-left: 3px solid var(--primary);
}

/* BLOG FEED */
.blog-feed .blog-posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.blog-post {
  flex: 1 1 260px;
  min-width: 210px;
  max-width: 340px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 14px rgba(43,45,66,0.07);
  padding: 24px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.20s;
}
.blog-post:hover {
  box-shadow: 0 6px 24px rgba(43,45,66,0.14);
}

.blog-categories {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.blog-categories ul {
  display: flex;
  gap: 18px;
}
.blog-categories a {
  font-size: 1rem;
  color: #2B2D42;
  padding: 3px 10px;
  border-radius: 13px;
  background: #F5F5F5;
  transition: background 0.13s, color 0.13s;
}
.blog-categories a:hover {
  background: var(--accent);
  color: #1D1D1F;
}

/* =============================================================
   FORMS & NEWSLETTER
   ============================================================= */
input[type="email"] {
  border: 1px solid var(--border-light);
  background: #fff;
  color: #232323;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 1rem;
  margin: 0 10px 0 0;
  margin-bottom: 8px;
  outline: none;
  width: 202px;
  transition: border-color 0.16s;
}
input[type="email"]:focus {
  border-color: var(--primary);
}
button[type="submit"] {
  padding: 10px 20px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.16s;
  border: none;
  font-size: 1rem;
}
button[type="submit"]:hover, button[type="submit"]:focus {
  background: var(--accent);
  color: var(--primary);
}
label {
  font-weight: 500;
  margin-bottom: 4px;
  display: inline-block;
  color: #222;
}
.footer-newsletter {
  margin-top: 12px;
  margin-bottom: 8px;
}
.footer-newsletter form {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  .footer-newsletter form {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  input[type="email"] { width: 100%; min-width: 0; }
}

/* =============================================================
   FAQ (Accordion not JS-driven here, simple for visuals)
   ============================================================= */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #F9F9F6;
  border-radius: 10px;
  padding: 18px 16px;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 6px rgba(43,45,66,0.07);
}
.faq-item h3 { margin-bottom: 7px; font-size: 1.1rem; font-weight: 600; }
.faq-item p { color: #444; font-size: 1rem; }

/* -------------------------------------------------------------
   CONTACT INFO & DATENSCHUTZ HINWEIS
   ------------------------------------------------------------- */
.contact-details {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 18px 18px 5px 18px;
  margin-bottom: 16px;
}
.datenschutz-hinweis {
  font-size: 0.98rem;
  background: #f9f7ee;
  color: #333;
  border-left: 2.5px solid var(--accent);
  padding: 14px 14px 12px 18px;
  margin-bottom: 16px;
  border-radius: 7px;
}

/* -------------------------------------------------------------
   CTAS, NOTES, HIGHLIGHTED BANNERS
   ------------------------------------------------------------- */
.cta {
  background: #232323;
  padding: 44px 0;
  color: #fff;
}
.cta .container, .cta .content-wrapper { align-items: center; }
.cta-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cta-banner h2 { color: #fff; font-size: 2rem; }
.cta-banner p { color: #eeeaed; }
.cta-banner .cta-btn {
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
}
.cta-banner .cta-btn:hover,
.cta-banner .cta-btn:focus { background: var(--primary); color: var(--accent); }

.note {
  background: #fffdea;
  color: #543a00;
  border-left: 2.5px solid var(--accent);
  border-radius: 7px;
  padding: 12px 20px;
  margin: 18px 0 12px 0;
}

/* =============================================================
   FOOTER
   ============================================================= */
footer {
  background: var(--primary);
  color: #F3F3F3;
  padding: 0;
}
footer .container {
  padding-top: 40px;
  padding-bottom: 28px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img {
  width: 42px; height: 42px;
}
.footer-brand span {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  color: #fff;
  font-weight: 700;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-links a {
  color: #e8e8e8;
  font-size: 1rem;
  padding: 2px 0;
  transition: color 0.13s;
}
.footer-links a:hover { color: var(--accent); }

.footer-contact {
  font-size: 0.97rem;
  color: #e9e7ea;
  margin-bottom: 7px;
}
.footer-social {
  display: flex; align-items: center;
  margin-top: 8px;
}
.footer-social a img {
  width: 26px; height: 26px;
  filter: grayscale(1) brightness(1.8);
  transition: filter 0.18s;
}
.footer-social a:hover img {
  filter: grayscale(0.15) brightness(1) drop-shadow(0 2px 5px #EDC53180);
}

@media (max-width: 870px) {
  footer .content-wrapper { flex-direction: column; gap: 18px; align-items: flex-start; }
}

/* =============================================================
   LEGAL SECTIONS
   ============================================================= */
.legal {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #EAEAEA;
  padding: 40px 30px;
  margin: 38px 0;
  color: #222;
}
.legal h1, .legal h2, .legal h3 { color: #171717; }
.legal ul {
  margin-left: 17px;
}
.legal ul li {
  list-style: disc;
  margin-bottom: 5px;
}

/* =============================================================
   THANK YOU PAGE
   ============================================================= */
.thankyou h1 {
  font-size: 2.1rem;
  color: var(--primary);
}
.thankyou p {
  margin-top: 10px;
  margin-bottom: 24px;
  font-size: 1.13rem;
  color: #3d3d3d;
}

/* =============================================================
   COOKIE CONSENT BANNER & MODAL
   ============================================================= */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: rgba(34,34,34,0.97);
  color: #fff;
  z-index: 2400;
  box-shadow: 0 -3px 20px rgba(43,45,66,0.20);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  font-size: 1rem;
  transition: transform 0.35s cubic-bezier(.7,0,.3,1);
  transform: translateY(0);
}
.cookie-consent-banner.hide {
  transform: translateY(100%);
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-consent-banner .cookie-btn {
  padding: 9px 20px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.14s, color 0.13s;
}
.cookie-consent-banner .cookie-btn.accept {
  background: var(--accent);
  color: var(--primary);
}
.cookie-consent-banner .cookie-btn.accept:hover {
  background: #fff;
  color: var(--primary);
}
.cookie-consent-banner .cookie-btn.reject {
  background: #232323;
  color: #fff;
  border: 1.5px solid #fff;
}
.cookie-consent-banner .cookie-btn.reject:hover {
  background: #343535;
  color: var(--accent);
}
.cookie-consent-banner .cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--accent);
}
.cookie-consent-banner .cookie-btn.settings:hover {
  background: var(--accent);
  color: #232323;
}

/* Consent Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(30, 29, 27, 0.73);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.hide {
  opacity: 0; pointer-events: none;
}
.cookie-modal {
  background: #fcfcfb;
  border-radius: 19px;
  box-shadow: 0 4px 40px 0 rgba(80,80,80,0.15);
  padding: 38px 30px 28px 30px;
  min-width: 320px;
  max-width: 380px;
  color: #222;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 2520;
  animation: fadeInModal 0.27s cubic-bezier(.6,0,.3,1);
}
@keyframes fadeInModal {
  from { transform: scale(.96) translateY(36px); opacity:0; }
  to   { transform: scale(1) translateY(0); opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
  color: #232323;
  margin-bottom: 8px;
}
.cookie-modal label {
  font-weight: 500;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 17px; right: 19px;
  font-size: 1.5rem;
  color: #999;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .modal-close:hover { color: var(--primary); }

.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 8px 0 4px 0;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
  margin: 0 4px 0 0;
}
.cookie-category label { font-size: 1rem; }
.cookie-category.essential label {
  color: #888; font-style: italic;
}

@media (max-width: 600px) {
  .cookie-modal {
    min-width: 96vw;
    padding: 22px 9vw 14px 9vw;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 10px;
  }
}

/* =============================================================
   UTILITIES & MICRO-INTERACTIONS
   ============================================================= */
.transition {
  transition: all 0.18s cubic-bezier(.5,0,.4,1);
}
.shadow-hover {
  transition: box-shadow 0.18s;
}
.shadow-hover:hover {
  box-shadow: 0 7px 26px rgba(43,45,66,0.14);
}
.rounded-10 { border-radius: 10px; }
.rounded-14 { border-radius: 14px; }
.gap-12 { gap: 12px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }

/* =============================================================
   SCROLLBAR & SELECTION
   ============================================================= */
::-webkit-scrollbar { width: 11px; background: #E5E6EC; }
::-webkit-scrollbar-thumb { background: #B6B8C3; border-radius: 9px; }
::selection {
  background: var(--accent);
  color: #222;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1200px) {
  .container { max-width: 97vw; }
}
@media (max-width: 900px) {
  h1, .h1 {font-size:2rem;}
  h2, .h2 {font-size:1.4rem;}
  .footer-brand span {font-size: 1rem;}
}
@media (max-width: 480px) {
  .footer-brand span { font-size: 0.95rem; }
}

/* =============================================================
   PRINT
   ============================================================= */
@media print {
  header, .mobile-menu, .cookie-consent-banner, .cta, footer { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
}
