/* ===========================================================
  Amber Yield Weddings Hamburg
  VINTAGE RETRO STYLE - CSS by Senior UI Developer
  Brand: Elegance meets Hanseatic charm
=========================================================== */

/* ========================
   CSS RESET & NORMALIZE
======================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F5F1EC;
  color: #302F2F;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  transition: background 0.2s, color 0.2s;
}
a {
  color: #302F2F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #EAA225;
}
ul, ol {
  margin-left: 1.25em;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: inline-block;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 12px 16px;
}
th {
  background: #F5E2B8;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.02em;
  font-size: 20px;
}
tr {
  border-bottom: 1px solid #e0d4b7;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #302F2F;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* retro accent for headings */
h1, h2 {
  text-shadow: 0 2px 0 #e0d4b7,0 0px 0 #EAA225;
  letter-spacing: 1.5px;
}

p, li, td, th {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
p, ul, ol, table, .text-section {
  margin-bottom: 20px;
}
strong {
  font-weight: 700;
  color: #a16813;
}
.subheadline {
  color: #a16813;
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.4px;
}

/* ==============
  CONTAINER
================ */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

/* ===========================
   HEADER & NAVIGATION
=========================== */
header {
  background: #FFF7EA;
  border-bottom: 6px double #e0d4b7;
  padding: 0;
  box-shadow: 0 2px 8px rgba(232, 196, 120, 0.10);
  position: relative;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 20px;
  min-height: 78px;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 15px;
  height: 65px;
}
.logo img {
  height: 50px;
  width: auto;
  filter: sepia(0.09) contrast(1.03) brightness(0.97);
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #302F2F;
  padding: 8px 10px;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FFD56C;
  color: #302F2F;
}
.cta.primary {
  font-family: 'Playfair Display', serif;
  background: #EAA225;
  color: #fff;
  border: none;
  border-radius: 32px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 13px 36px;
  box-shadow: 0 2px 16px rgba(206, 149, 36, 0.09);
  margin-left: 24px;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  cursor: pointer;
  outline: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: #302F2F;
  color: #FFD56C;
  box-shadow: 0 3px 20px rgba(48,47,47,0.10);
}
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #EAA225;
  font-size: 2.2rem;
  padding: 2px 12px;
  cursor: pointer;
  display: none;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px dotted #EAA225;
}

/* ==========================
  MOBILE NAVIGATION OVERLAY
========================== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #302F2Fe9;
  z-index: 500;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.86,.18,.45,1.02), opacity 0.25s cubic-bezier(.86,.18,.45,1.02);
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #FFD56C;
  font-size: 2.2rem;
  position: absolute;
  top: 24px;
  right: 28px;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
}
.mobile-menu-close:focus {
  outline: 2px dotted #FFD56C;
}
.mobile-nav {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mobile-nav a {
  color: #F5F1EC;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  padding: 10px 26px;
  border-radius: 12px;
  background: none;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFD56C;
  color: #302F2F;
}

/* show/hide on breakpoints */
@media (max-width: 1020px) {
  .main-nav, .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block !important;
  }
}
@media (min-width: 1021px) {
  .mobile-menu, .mobile-menu-close, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===================
      MAIN LAYOUT
=================== */
main {
  width: 100%;
  margin: 0 auto;
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* =====================
  HERO SECTION STYLES
===================== */
.hero {
  background: repeating-linear-gradient(45deg,#FFE7A8 0 8px,#FFF7EA 9px 32px);
  border-bottom: 4px solid #EAA225;
  padding-top: 36px;
  padding-bottom: 40px;
}
.hero .container {
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  gap: 20px;
  text-align: center;
  margin: 0 auto;
}
.hero h1 {
  font-size: 2.4rem;
  color: #a16813;
  letter-spacing: 1.5px;
  font-weight: 800;
  text-shadow: 0 3px 0 #ffe3a6, 0 0.5px #e0d4b7;
}
.hero .cta.primary {
  margin-top: 20px;
}

/* ==============================
        FEATURES & CARDS
============================== */
.features, .benefits {
  background: #F5E2B8;
  border-radius: 24px;
  box-shadow: 0 3px 18px rgba(206,149,36,0.035);
  border: 1.5px dashed #EAA225;
}
.features .content-wrapper, .benefits .content-wrapper {
  align-items: flex-start;
}
.feature-grid, .benefit-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}
.feature-grid li, .benefit-list li {
  flex: 1 1 230px;
  min-width: 230px;
  max-width: 310px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(48,47,47,0.08), 0 1px 0 #e0d4b7;
  padding: 26px 20px 18px 20px;
  margin-bottom: 20px; /* CRITICAL SPACING */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 1.5px solid #F3D28B;
  position: relative;
}
.feature-grid li img, .benefit-list li img {
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
}
.feature-grid li h3, .benefit-list li h3 {
  color: #a16813;
  font-size: 1.2rem;
  letter-spacing: 1.1px;
}

/* =======================
      SERVICES OVERVIEW
======================= */
.services-overview, .services, .service-list {
  background: #fff7ea;
  border-radius: 24px;
  border: 1.5px dotted #cfa44b;
}
.services-overview ul, .services-overview li {
  margin-bottom: 10px !important;
}

/* individual .service-item for services.html */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.service-item {
  background: #fff;
  border: 1.5px solid #F3D28B;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(203,162,37,0.06);
  padding: 24px 20px 18px 20px;
  margin-bottom: 20px; /* CRITICAL SPACING */
  flex: 1 1 270px;
  min-width: 270px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.service-item img {
  width: 36px;
  height: 36px;
}
.service-item:hover, .feature-grid li:hover, .benefit-list li:hover {
  box-shadow: 0 10px 36px rgba(48,47,47,0.11);
  transform: translateY(-3px) scale(1.024);
  border-color: #EAA225;
}

/* =============================
      TESTIMONIALS & REVIEWS
============================= */
.testimonials {
  background: #EBE3CF;
  border-radius: 24px;
  border: 1.5px solid #F3D28B;
  padding-bottom: 56px !important;
}
.testimonials .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 28px 24px 28px;
  background: #fffefa;
  border-radius: 15px;
  box-shadow: 0 3px 24px rgba(48,47,47,0.09);
  margin-bottom: 20px; /* CRITICAL SPACING */
  max-width: 630px;
  min-width: 0;
}
.testimonial-card p {
  color: #302F2F;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 8px;
  text-shadow: 0 1px #e6cebab4;
}
.testimonial-details {
  font-family: 'Roboto', Arial, sans-serif;
  color: #a16813;
  font-size: 0.97rem;
  letter-spacing: 0.05em;
}
.stars {
  display: flex;
  gap: 3px;
}
.stars img {
  width: 20px;
  height: 20px;
  filter: grayscale(0) sepia(40%) brightness(1.06);
}

/* =======================
        CARDS PATTERN
======================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(48,47,47,0.10);
  margin-bottom: 20px;
  padding: 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(232,162,37,0.13);
}

/* =========================
        CTA & TEASER
========================= */
.cta, .contact-teaser {
  background: #FFF7EA;
  border-radius: 24px;
  border: 1px dashed #EAA225;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.cta h2 {
  color: #a16813;
}

/* =======================
        FOOTER
======================= */
footer {
  background: #302F2F;
  color: #FFD56C;
  padding-top: 32px;
  padding-bottom: 25px;
  border-top: 6px double #EAA225;
}
footer .container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #FFD56C;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.footer-nav a:hover {
  color: #FFF7EA;
  text-decoration: underline;
}
.footer-details {
  font-size: 0.98rem;
  opacity: 0.82;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.02em;
  text-align: center;
}

/* ================
   CONTENT GRID
================ */
.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;
}

/************************************
  TABLES for PRICING, RETRO EFFECTS
*************************************/
table {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 8px rgba(234,162,37,0.05);
  overflow: hidden;
  margin-bottom: 18px;
  border: 1.5px solid #EAA225;
}
thead tr {
  background: #FFD56C;
}
td {
  border-bottom: 1px solid #eee2bc;
  color: #302F2F;
  background: #fff;
  font-family: 'Roboto',Arial,sans-serif;
  font-size: 1rem;
}
tr:last-child td {
  border-bottom: none;
}

/************************************
  PHILOSOPHY & TEXT SECTION
*************************************/
.text-section {
  background: #fffefa;
  border-radius: 12px;
  border: 1.5px dashed #EAA22533;
  padding: 22px 22px 14px 22px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 8px rgba(48,47,47,0.04);
}
.text-section ul, .text-section ol {
  margin-bottom: 14px;
}

/************************************
   FAQ-LIST PATTERN
*************************************/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #f3ead3;
  border-radius: 10px;
  padding: 20px 20px 14px 27px;
  box-shadow: 0 1.5px 8px rgba(48,47,47,0.04);
  margin-bottom: 20px;
}
.faq-item h2 {
  font-size: 1.15rem;
  color: #a16813;
  margin-bottom: 8px;
}
.faq-answer {
  padding-left: 6px;
}

/************************************
   PROCESS TEASER & TIMELINE
*************************************/
.process-teaser, .process {
  background: #fffde9;
  border-radius: 22px;
  border: 1.5px dashed #EAA225;
}
.step-by-step-timeline ol {
  list-style: none;
  counter-reset: step;
}
.step-by-step-timeline li {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  font-size: 1.08rem;
  position: relative;
}
.step-by-step-timeline li img {
  width: 27px;
  height: 27px;
  display: inline-block;
}
.step-by-step-timeline li:before {
  counter-increment: step;
  content: counter(step,decimal-leading-zero) ".";
  color: #EAA225;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
  font-size: 1.12em;
}

/************************************
    USP & SHORT-INTRO
*************************************/
.short-intro {
  color: #5f4416;
  font-size: 1.11rem;
  font-style: italic;
  margin-bottom: 12px;
}
.usps {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-left: 0;
  list-style: none;
}
.usps li {
  background: #faf1db;
  color: #a16813;
  border-radius: 7px;
  padding: 9px 21px;
  font-weight: bold;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.08em;
  font-size: 1rem;
  box-shadow: 0 1px 5px rgba(232,162,37,0.04);
}

/************************************
    CONFIRMATION / THANK-YOU
*************************************/
.thank-you {
  background: #FFF7EA;
  border-radius: 24px;
  border: 1.5px dashed #EAA225;
  text-align: center;
  padding: 44px 17px 40px 17px;
  margin-bottom: 56px;
}
.thank-you h1 {
  color: #a16813;
  margin-bottom: 12px;
}
.confirmation-message, .next-steps {
  background: #fffefa;
  border-radius: 11px;
  border: 1.5px dashed #EAA22533;
  padding: 17px 28px;
  margin-bottom: 17px;
  font-size: 1.08rem;
}

/************************************
   CONTACT & MAP PLACEHOLDER
*************************************/
.contact-info {
  background: #f5e2b8;
  border-radius: 10px;
  padding: 16px 16px 8px 16px;
  margin-bottom: 15px;
  font-size: 1rem;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fffff6;
  border: 1.5px dashed #cfa44b;
  border-radius: 7px;
  padding: 13px 17px;
  font-size: 0.97rem;
  color: #a16813;
  margin-bottom: 16px;
}

/************************************
  LEGAL SECTION (IMPRINT, COOKIE...)
*************************************/
.legal {
  background: #fffefa;
  border-radius: 18px;
  border: 1.5px solid #e0d4b7;
  padding: 40px 15px;
  margin-bottom: 60px;
}
.legal .text-section {
  border: none;
  padding: 0;
  box-shadow: none;
  background: none;
}

/************************************
   COOKIE CONSENT BANNER & MODAL
*************************************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFF7EA;
  border-top: 4px double #EAA225;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  z-index: 1200;
  padding: 20px 24px;
  box-shadow: 0 -4px 18px rgba(48,47,47,0.10);
  width: 100vw;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  animation: cookiebanner-in 0.45s cubic-bezier(.4,0,.2,1);
}
@keyframes cookiebanner-in {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btn {
  margin-left: 8px;
  background: #EAA225;
  color: #fff;
  border: none;
  border-radius: 22px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.055em;
  padding: 9px 21px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 6px rgba(234,162,37,0.06);
}
.cookie-banner .cookie-btn:focus {
  outline: 2px dotted #EAA225;
}
.cookie-banner .cookie-btn.settings {
  background: #FFD56C;
  color: #a16813;
}
.cookie-banner .cookie-btn.reject {
  background: #302F2F;
  color: #FFD56C;
}
.cookie-banner .cookie-btn:hover {
  background: #302F2F;
  color: #FFD56C;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #EAA225;
  color: #fff;
}
.cookie-banner .cookie-btn.reject:hover {
  background: #FFD56C;
  color: #a16813;
}

.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1300;
  background: rgba(48,47,47, 0.54);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalfade-in 0.25s linear;
}
@keyframes modalfade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fffdfa;
  border-radius: 18px;
  border: 2px dashed #eaa225bb;
  box-shadow: 0 6px 36px rgba(234,162,37, 0.21);
  width: 93vw;
  max-width: 390px;
  padding: 32px 19px 20px 19px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 21px;
  position: relative;
  animation: modal-in 0.27s cubic-bezier(.4,0,.2,1);
}
@keyframes modal-in {
  from { transform: scale(.87); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.26rem;
  color: #a16813;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding-bottom: 11px;
  border-bottom: 1.2px solid #eee3cb;
  margin-bottom: 8px;
}
.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.cookie-category-label {
  font-weight: bold;
  color: #a16813;
  min-width:110px;
}
.cookie-toggle {
  min-width: 40px;
  min-height: 24px;
  appearance: none;
  background: #e0d4b7;
  border-radius: 14px;
  border: none;
  transition: background 0.19s;
  position: relative;
  outline: none;
}
.cookie-toggle:checked {
  background: #EAA225;
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 4px; left: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.19s;
  box-shadow: 0 0.5px 2px rgba(0,0,0,0.07);
}
.cookie-toggle:checked::after {
  left: 20px;
}
.cookie-modal .btn-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
}
.cookie-modal .cookie-btn {
  min-width: 85px;
}

/* ===============================
    RESPONSIVE DESIGN (MOBILE)
================================ */
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .container { max-width: 95vw; }
  .feature-grid li, .benefit-list li, .service-item {
    min-width: 170px;
    max-width: 98vw;
    flex: 1 1 98vw;
    padding: 23px 10px 14px 10px;
  }
  .service-item {
    padding: 18px 12px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    gap: 12px;
    padding: 0 10px;
  }
  .hero .content-wrapper {
    align-items: center;
    text-align: center;
    gap: 11px;
  }
  .usps {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
  .feature-grid, .benefit-list, .service-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid li, .benefit-list li, .service-item {
    max-width: 100vw;
    min-width: 0;
    width: 100%;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    max-width: 99vw;
    padding: 17px 10px 17px 16px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    padding: 17px 10px 15px 10px;
    font-size: 0.97rem;
  }
  .cookie-modal {
    padding: 20px 5vw 14px 5vw;
    max-width: 98vw;
    min-width: 0;
  }
}
@media (max-width: 450px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.08rem; }
  .thank-you, .cta, .contact, .info, .testimonials, .features, .legal, .benefits {
    padding: 19px 7px;
  }
  .testimonial-card {
    padding: 12px 5px;
  }
}

/* ===============================
  RETRO BADGES & PATTERNS
================================ */
.retro-badge {
  display: inline-block;
  background: #FFD56C;
  color: #302F2F;
  font-family: 'Playfair Display', serif;
  font-size: 0.99rem;
  padding: 5px 18px;
  border-radius: 24px;
  border: 1.5px dashed #EAA225;
  box-shadow: 0 2px 8px rgba(234,162,37,0.05);
  letter-spacing: 0.09em;
  margin-bottom: 9px;
}

/************************************
  MICRO-INTERACTIONS, TRANSITIONS
*************************************/
button, .cta, .cta.primary, .service-item, .card, .feature-grid li,
.benefit-list li, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: box-shadow 0.2s cubic-bezier(.4,0,.2,1), background 0.18s, color 0.18s, transform 0.13s;
}

/************************************
  Hide visually helper
*************************************/
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* =================================
   OVERRIDES FOR LEGAL/LONGTEXT
================================= */
.legal ul, .legal ol {
  margin-left: 1.8em;
  margin-bottom: 10px;
  list-style-type: disc;
}
.legal li {
  margin-bottom: 7px;
}
.legal a {
  color: #a16813;
  text-decoration: underline;
}

/************************************
    Z-INDEX STACKING FOR DIALOGS
*************************************/
.mobile-menu { z-index: 500; }
.mobile-menu-close { z-index: 501; }
.cookie-banner { z-index: 1200; }
.cookie-modal-backdrop { z-index: 1300; }

/* ===============================
  Print Styles for retro
================================ */
@media print {
  body, .container, .content-wrapper {
    background: #fff !important;
    color: #000;
  }
  .hero, .features, .cta, .footer, .section {
    background: #fff !important;
    border: none!important;
    box-shadow: none!important;
  }
}
