/* Velvet Gaze - style.css - Creative Artistic, Flexbox only, Mobile First */

/* === 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, 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;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
html { scroll-behavior: smooth; }
body {
  background: #FDF9F2;
  color: #39322D;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
a {
  color: #8A7D6B;
  text-decoration: none;
  transition: color .2s;
  cursor: pointer;
}
a:hover, a:focus {
  color: #6B5B3E;
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.15;
  color: #39322D;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
h1 { font-size: 2.5rem;   /* 40px */ }
h2 { font-size: 2rem;     /* 32px */ }
h3 { font-size: 1.5rem;   /* 24px */ }
h4 { font-size: 1.25rem;  /* 20px */ }
h5 { font-size: 1.125rem; /* 18px */ }
h6 { font-size: 1rem;     /* 16px */ }
p, ul, ol, li { font-size: 1rem; }
.subheadline {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.125rem;
  color: #6B5B3E;
  margin-bottom: 28px;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* Artistic headline effect */
h1, h2, .hero h1 {
  text-shadow: 2px 5px 0 #CEC5B4, 0 2px 24px rgba(138,125,107,0.14);
  letter-spacing: 0.04em;
}

/* === LAYOUT CONTAINERS & FLEX RULES === */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 28px 0 rgba(138,125,107,0.08);
  position: relative;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(138,125,107,0.10);
  padding: 28px 24px;
  transition: box-shadow .24s, transform .18s;
}
.card:hover {
  box-shadow: 0 4px 30px 0 rgba(138,125,107,0.25);
  transform: translateY(-6px) scale(1.02) rotate(-2deg);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F7F3EC;
  border-radius: 18px;
  box-shadow: 0 1px 10px 0 rgba(57,50,45,.10);
  min-width: 0;
  margin-bottom: 20px;
  font-style: italic;
  color: #2e2822;
  border-left: 5px solid #8A7D6B;
  transition: box-shadow .2s, border-color .2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(138,125,107,0.14);
  border-left: 5px solid #6B5B3E;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === HEADER & NAVIGATION === */
header {
  width: 100%;
  background: #fff;
  border-bottom: 2.5px solid #CEC5B4;
  position: relative;
  z-index: 108;
  box-shadow: 0 2px 12px rgba(206,197,180,0.05);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 12px 18px;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #39322D;
  padding: 4px 12px;
  border-radius: 5px;
  transition: background .18s, color .15s;
}
.main-nav a:hover {
  background: #CEC5B4;
  color: #8A7D6B;
}
.cta-button {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  background: #8A7D6B;
  color: #fff;
  padding: 12px 30px;
  border-radius: 40px 10px 40px 10px / 20px 40px 10px 38px;
  box-shadow: 0 5px 24px 0 rgba(138,125,107,0.10);
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  display: inline-block;
  margin-left: 16px;
  transition: background .21s, color .14s, box-shadow .17s, transform .15s;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: #6B5B3E;
  color: #fff5e9;
  box-shadow: 0 8px 32px 0 rgba(138,125,107,0.25);
  transform: rotate(-2deg) scale(1.03);
}

/* Burger Menu Button */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #8A7D6B;
  cursor: pointer;
  display: none;
  margin-left: 14px;
  z-index: 129;
  transition: color .15s, transform .12s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #6B5B3E;
  transform: scale(1.12);
}

/* === MOBILE MENU (DRAWER) === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(57,50,45,0.995);
  z-index: 1999;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.4,1.5,.1,1), box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  overscroll-behavior: contain;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 4px 0 32px rgba(57,50,45,.22);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #CEC5B4;
  align-self: flex-end;
  margin: 0 24px 14px 0;
  cursor: pointer;
  z-index: 2102;
  transition: color .13s, transform .12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
  transform: scale(1.17);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 0 0 0;
  padding: 0 34px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  padding: 14px 3px;
  border-bottom: 1.3px solid rgba(206,197,180,0.13);
  transition: color .16s, border-bottom .2s;
  border-radius: 3px;
  text-align: left;
}
.mobile-nav a:hover {
  color: #CEC5B4;
  border-bottom: 2px solid #CEC5B4;
}

/* Hide Desktop Nav / Show Burger On Mobile */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .cta-button { margin-left: 10px; }
  .mobile-menu-toggle { display: block; }
}

/* Hide burger and show nav on desktop */
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* === HERO SECTIONS === */
.hero, .hero-service, .ankauf-hero, .raritaeten-hero, .galerie-hero {
  background: linear-gradient(95deg, #CEC5B4 60%, #FDF9F2 120%);
  padding: 46px 0 32px 0;
  min-height: 36vh;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.hero .content-wrapper,
.hero-service .content-wrapper,
.ankauf-hero .content-wrapper,
.raritaeten-hero .content-wrapper,
.galerie-hero .content-wrapper {
  align-items: flex-start;
  gap: 12px;
  padding: 0 8px;
}

/* === FEATURE GRIDS & SERVICE CARDS === */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 16px;
}
.features .feature-grid li {
  flex: 1 1 210px;
  background: #FFF8EF;
  border-radius: 16px;
  padding: 28px 20px 18px 20px;
  box-shadow: 0 2px 18px 0 rgba(206,197,180,0.10);
  text-align: center;
  list-style: none;
  min-width: 0;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .18s, transform .12s;
}
.features .feature-grid li:hover {
  box-shadow: 0 8px 36px rgba(138,125,107,0.15);
  transform: translateY(-4px) scale(1.012) rotate(2deg);
}
.features .feature-grid img {
  height: 54px; width: auto;
  margin-bottom: 13px;
  filter: drop-shadow(0 2px 6px #CEC5B4);
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.service-card {
  flex: 1 1 230px;
  background: #F7F3EC;
  border-radius: 16px 35px 16px 35px / 30px 12px 28px 24px;
  box-shadow: 0 2px 18px 0 rgba(206,197,180,0.14);
  margin-bottom: 20px;
  padding: 28px 21px 22px 21px;
  min-width: 0;
  position: relative;
  transition: box-shadow .14s, transform .11s;
}
.service-card:hover {
  box-shadow: 0 10px 40px 0 rgba(138,125,107,0.15);
  transform: rotate(-3deg) scale(1.031);
}
.price {
  display: inline-block;
  margin-top: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.07rem;
  color: #8A7D6B;
  font-weight: 600;
}

/* Lists with distinctive markers */
ul.values-list, ul.feature-list, ul.usp-bullets, ul.category-list, ul.benefit-bullets, ul.rarity-categories, ul.value-cards {
  list-style: none outside;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
ul.values-list li::before, ul.usp-bullets li::before, ul.benefit-bullets li::before, ul.feature-list li::before, ul.value-cards li::before, ul.category-list li::before {
  content: '★';
  color: #8A7D6B;
  margin-right: 9px;
  font-size: 1em;
  font-family: 'Playfair Display', serif;
}
ul.rarity-categories li::before {
  content: '●';
  color: #39322D;
  font-size: 0.7em;
  margin-right: 8px;
  display: inline-block;
}

/* TIMELINE / PHILOSOPHY */
.timeline {
  background: #FFF8EF;
  padding: 22px 22px 14px 34px;
  border-radius: 14px 33px 14px 20px / 25px 14px 32px 10px;
  margin-bottom: 24px;
  box-shadow: 0 2px 9px 0 rgba(206,197,180,0.08);
}
.timeline ul { list-style: none; padding: 0; margin: 0; gap: 9px; display: flex; flex-direction: column; }
.timeline ul li { position: relative; padding-left: 0; font-size: 1rem; }
.team-overview {
  background: #FFF8EF;
  padding: 20px 23px 13px 20px;
  border-radius: 18px 28px 18px 18px;
  box-shadow: 0 2px 8px 0 rgba(206,197,180,0.09);
}

/* PHILOSOPHY CARDS */
ul.value-cards li {
  padding: 15px 16px;
  background: #F7F3EC;
  border-radius: 12px;
  box-shadow: 0 1px 7px 0 rgba(138,125,107,0.09);
  font-size: 1.075rem;
}

.commitment-statement {
  margin-top: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.21rem;
  color: #6B5B3E;
  font-style: italic;
  padding: 7px 0;
  line-height: 1.38;
}

/* === TESTIMONIALS === */
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.testimonial-card span {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: #6B5B3E;
  font-style: normal;
  padding-left: 1px;
  margin-top: 10px;
}

/* === ABOUT/CONTACT/INFO SECTIONS === */
.about-preview, .about-main, .philosophy, .why-velvet-gaze, .services-overview, .service-features, .contact-home, .ankauf-contact, .raritaeten-cta, .galerie-cta, .other-request {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 22px 16px 24px 14px / 18px 28px 23px 16px;
  background: #fff;
  box-shadow: 0 2px 24px 0 rgba(206,197,180,0.06);
  position: relative;
}

/* Address Sections */
.address-details, .footer-contact {
  background: #FFF8EF;
  padding: 16px 16px 11px 20px;
  border-radius: 10px 30px 10px 18px;
  margin-bottom: 12px;
  font-size: 1rem;
}

/
* ================ FOOTER ================ */
footer {
  background: #39322D;
  color: #CEC5B4;
  padding: 34px 0 26px 0;
  border-top: 7px solid #CEC5B4;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 22px;
  justify-content: space-between;
  min-width: 0;
}
.footer-logo img {
  height: 36px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
  margin-top: 3px;
}
.footer-nav a {
  font-family: 'Playfair Display', serif;
  color: #CEC5B4;
  font-size: 1.05rem;
  padding: 2px 8px;
  border-radius: 4px;
  transition: background .14s, color .13s;
}
.footer-nav a:hover {
  background: #8A7D6B;
  color: #fff;
}
.footer-contact {
  font-size: 0.95rem;
  color: #CEC5B4;
  margin-top: 10px;
  word-break: break-word;
}
.footer-contact a {
  color: #CEC5B4;
  text-decoration: underline;
  transition: color .13s;
}
.footer-contact a:hover {
  color: #fff;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #39322D;
  box-shadow: 0 -2px 22px 2px rgba(138,125,107,0.10);
  padding: 22px 18px 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  z-index: 3900;
  font-size: 1rem;
  animation: fadein-bottom 0.4s;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  padding: 9px 28px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  margin-right: 2px;
  transition: background .16s, color .12s, box-shadow .18s;
}
.cookie-banner .accept {
  background: #8A7D6B;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #6B5B3E;
}
.cookie-banner .reject {
  background: #CEC5B4;
  color: #39322D;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #e5d7bf;
}
.cookie-banner .settings {
  background: #fff;
  color: #6B5B3E;
  border: 1.8px solid #8A7D6B;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #F7F3EC;
}

/* === Cookie Preferences Modal === */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(57,50,45,0.84);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein-bottom .4s;
}
.cookie-modal {
  background: #fff;
  color: #39322D;
  padding: 38px 30px 28px 30px;
  border-radius: 26px 36px 20px 10px / 18px 24px 32px 22px;
  min-width: 95vw;
  max-width: 456px;
  min-height: 420px;
  box-shadow: 0 4px 40px 0 rgba(138,125,107,0.20);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: riseIn .45s cubic-bezier(.19,1.09,.4,1.28);
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  margin-top: 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F7F3EC;
  border-radius: 9px;
  padding: 13px 16px;
  margin-bottom: 10px;
}
.cookie-category .switch {
  margin-left: 18px;
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 18px;
  margin-top: 18px;
}
.cookie-modal button {
  padding: 8px 22px;
  border-radius: 18px;
  border: none;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.13s, color 0.11s;
}
.cookie-modal .modal-accept {
  background: #8A7D6B;
  color: #fff;
}
.cookie-modal .modal-accept:hover, .cookie-modal .modal-accept:focus {
  background: #6B5B3E;
}
.cookie-modal .modal-reject {
  background: #CEC5B4;
  color: #39322D;
}
.cookie-modal .modal-reject:hover, .cookie-modal .modal-reject:focus {
  background: #e5d7bf;
}
.cookie-modal .modal-close {
  background: #fff;
  border: 1.5px solid #8A7D6B;
  color: #6B5B3E;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #F7F3EC;
}
/* Custom styled toggle switches for cookies */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch-label {
  cursor: pointer;
  color: #39322D;
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #CEC5B4;
  border-radius: 22px;
  transition: .4s;
}
.switch .slider:before {
  position: absolute;
  content: '';
  height: 16px; width: 16px;
  left: 4px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .4s;
  box-shadow: 0 2px 5px 0 rgba(138,125,107,0.09);
}
.switch input:checked + .slider {
  background: #8A7D6B;
}
.switch input:checked + .slider:before {
  transform: translateX(15px);
}
.switch[aria-disabled="true"], .switch[aria-disabled="true"] .slider {
  opacity: .45;
  pointer-events: none;
}

/* === PROCESS STEPS === */
.process-steps {
  list-style: none inside;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.process-steps li {
  background: #FFF8EF;
  border-left: 6px solid #CEBB8F;
  padding: 12px 14px 12px 19px;
  border-radius: 6px;
  box-shadow: 0 1px 7px 0 rgba(206,197,180,0.06);
  font-size: 1rem;
  margin-bottom: 0 !important;
}

/**** FAQ SUMMARY ***/
.faq-summary, .curated-collections, .curated-objects, .editor-choice, .privacy-summary, .gdpr-summary, .terms-summary, .disclaimer, .user-obligations, .user-rights, .rights-overview, .data-request-instructions, .contact-for-questions, .preference-management, .optout-instructions {
  background: #FFF8EF;
  border-radius: 13px;
  margin-bottom: 18px;
  padding: 19px 18px;
  box-shadow: 0 2px 8px 0 rgba(206,197,180,0.06);
}
.faq-summary h3, .curated-collections h3, .curated-objects h3, .editor-choice h4 {
  margin-top: 0;
  margin-bottom: 6px;
}

/**** CONFIRMATION/THANK YOU ****/
.confirmation .thank-you-message {
  background: #FFF8EF;
  border-radius: 17px 8px 14px 24px;
  margin-bottom: 12px;
  padding: 19px 18px 10px 25px;
}
.next-steps-overview ul {
  list-style: disc inside;
  color: #39322D;
  margin-left: 18px;
  gap: 10px;
  display: flex;
  flex-direction: column;
}

/* === BUTTONS / INTERACTIVES === */
button, .cta-button {
  outline: none;
  border: none;
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
}
button:active, .cta-button:active {
  transform: scale(0.97);
}

/* === ARTISTIC DECOR ELEMENTS === */
.section:before {
  content: '';
  position: absolute;
  top: -30px;
  right: -25px;
  width: 90px;
  height: 68px;
  background: rgba(206,197,180,0.16);
  border-radius: 35% 65% 47% 53%/65% 40% 60% 35%;
  z-index: 1;
  pointer-events: none;
}
.section:nth-child(even):before {
  left: -20px;
  right: auto;
  background: rgba(138,125,107,0.13);
}

/* === RESPONSIVE (MOBILE FIRST) === */
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 11px;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 20px;
    padding: 14px 7px 10px 7px;
  }
  .content-wrapper, .features .feature-grid, .service-cards, .content-grid {
    flex-direction: column !important;
    gap: 22px !important;
  }
  .features .feature-grid li, .service-card {
    min-width: 0;
    width: 100%;
    margin-bottom: 20px;
  }
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: block !important; }
  .footer-nav {
    flex-direction: column;
    gap: 6px 0;
    margin-bottom: 12px;
  }
  .testimonial-card {
    padding: 17px 11px;
    font-size: 1rem;
  }
  .section, .about-preview, .about-main, .philosophy, .why-velvet-gaze, .services-overview, .service-features, .contact-home, .ankauf-contact, .raritaeten-cta, .galerie-cta, .other-request {
    padding: 26px 7px;
  }
  .hero, .hero-service, .ankauf-hero, .raritaeten-hero, .galerie-hero {
    padding: 26px 0 13px 0;
    min-height: 18vh;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .cookie-modal {
    min-width: 96vw;
    max-width: 99vw;
    padding: 18px 4vw 8px 4vw;
  }
  .cookie-banner {
    padding: 18px 6px 18px 9px;
    font-size: 0.96rem;
  }
}

@media (max-width:420px) {
  h1 { font-size: 1.52rem; } h2 { font-size: 1.13rem; }
  h3 { font-size: 1.09rem; } h4 { font-size: 1.04rem; }
}

@media (min-width:769px) {
  .features .feature-grid {
    flex-direction: row;
  }
  .service-cards, .content-grid {
    flex-direction: row;
  }
  .testimonials .content-wrapper {
    flex-direction: row;
  }
  .testimonial-card {
    min-width: 250px;
    max-width: 370px;
  }
}

/* === ARTISTIC SCROLLBAR === */
::-webkit-scrollbar {
  width: 13px;
  background: #FFF8EF;
}
::-webkit-scrollbar-thumb {
  background: #CEC5B4;
  border-radius: 6px;
}

/* === ANIMATIONS === */
@keyframes fadein-bottom {
  from { transform: translateY(60px); opacity:0;}
  to { transform: translateY(0); opacity:1;}
}
@keyframes riseIn {
  from { transform: translateY(35px) scale(0.96); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

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

/* =========== UTILITY CLASSES =========== */
.hide { display: none !important; }
.text-center { text-align: center !important; }

