/* =========================
   CSS RESET & BASE STYLES
   ========================= */
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;
  vertical-align: baseline;
  box-sizing: border-box;
  font: inherit;
}
/* Normalize display */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F0ECE1;
  color: #25333C;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
input, button, textarea, select {
  font: inherit;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}

/* Import vintage/retro-friendly fonts (fallbacks included) */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Roboto:wght@400;500&display=swap');

:root {
  --primary: #25333C;
  --secondary: #7A614C;
  --accent: #F0ECE1;
  --danger: #B54627;
  --vintage-red: #B54627;
  --vintage-yellow: #F4D35E;
  --vintage-green: #45715A;
  --vintage-blue: #33658A;
  --vintage-cream: #F7EDD0;
  --font-display: 'Merriweather', Georgia, serif;
  --font-body: 'Roboto', 'Arial', sans-serif;
  --border-radius: 16px;
  --box-shadow-card: 0 3px 24px rgba(37,51,60,0.12), 0 1px 2px rgba(122,97,76,0.08);
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 60px;
  --transition: .22s cubic-bezier(.42,0,.58,1);
}

/* =============
   TYPOGRAPHY
   ============= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--primary);
  margin-bottom: var(--sp-2);
  text-shadow: 0 1px 0 #ffffff50;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: var(--sp-3);
  line-height: 1.19;
}
h2 {
  font-size: 2rem;
  margin-bottom: var(--sp-2);
}
h3 {
  font-size: 1.3rem;
  margin-bottom: var(--sp-1);
}
h4 {
  font-size: 1.1rem;
}
p, li, address, dt, dd {
  font-size: 1rem;
  color: var(--primary);
}
strong {
  color: var(--secondary);
}
blockquote {
  font-family: var(--font-display);
  font-style: italic;
  background: var(--vintage-cream);
  border-left: 5px solid var(--secondary);
  margin: 0 0 var(--sp-2) 0;
  padding: var(--sp-2) var(--sp-2) var(--sp-2) var(--sp-4);
  font-size: 1.1rem;
  color: var(--primary);
}

.text-section ul, .text-section ol {
  padding-left: var(--sp-3);
}

ul li, ol li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}
ul li:before {
  content: '\2022';
  position: absolute;
  color: var(--vintage-yellow);
  left: 0;
  font-size: 1.2em;
  top: 0.1em;
}

/* =============
   LAYOUT & UTILITY
   ============= */
.container {
  width: 100%;
  margin: 0 auto;
  padding-left: var(--sp-2);
  padding-right: var(--sp-2);
  max-width: 1150px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

.section {
  margin-bottom: var(--sp-5);
  padding: var(--sp-4) var(--sp-2);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-card);
  margin-bottom: 20px;
  position: relative;
  padding: var(--sp-3);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(179,70,39,0.12), 0 3px 6px rgba(122,97,76,0.10);
  transform: translateY(-3px) scale(1.012);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-card);
  margin-bottom: 24px;
  border-left: 8px solid var(--vintage-yellow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(244,211,94,0.11), 0 3px 6px rgba(122,97,76,0.10);
  transform: scale(1.018);
}
.testimonial-detail {
  font-size: 0.98rem;
  font-family: var(--font-body);
  color: var(--vintage-blue);
  margin-left: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: var(--sp-3);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-card);
  min-width: 220px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), background var(--transition);
}
.feature-item img {
  width: 40px;
  background: var(--vintage-cream);
  border-radius: 50%;
  border: 2.5px solid var(--vintage-yellow);
  padding: 6px;
}
.feature-item:hover {
  background: var(--vintage-yellow);
  box-shadow: 0 4px 24px rgba(244,211,94,0.15);
}

.feature-grid, .service-summary-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.service-item {
  flex: 1 1 220px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-card);
  margin-bottom: 20px;
  padding: var(--sp-3);
  min-width: 220px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-item:hover {
  box-shadow: 0 8px 32px 0 rgba(51,101,138,0.12), 0 3px 6px rgba(122,97,76,0.10);
  transform: scale(1.014);
}

.section > *, .about-section > *, .services-section > *, .features-section > *, .cta-section > * {
  margin-bottom: var(--sp-2);
}
.section > *:last-child, .about-section > *:last-child, .services-section > *:last-child, .features-section > *:last-child, .cta-section > *:last-child {
  margin-bottom: 0;
}

/* ================
   MAIN NAVIGATION
   ================ */
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
  background: var(--primary);
  padding: var(--sp-2) var(--sp-3);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 22px rgba(37,51,60,0.06);
  z-index: 1001;
  position: relative;
}
.main-nav a {
  color: var(--vintage-yellow);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 7px 15px;
  border-radius: 8px;
  letter-spacing: 0.013em;
  transition: background var(--transition), color var(--transition);
}
.main-nav a.cta-primary {
  background: var(--vintage-yellow);
  color: var(--primary);
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(244,211,94,0.09);
  border-radius: 10px;
  margin-left: 12px;
  border: 2px solid var(--vintage-yellow);
}
.main-nav a.cta-primary:hover, .cta-primary:hover, .main-nav a.cta-primary:focus {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
  box-shadow: 0 4px 16px rgba(122,97,76,0.12);
  transform: translateY(-2px) scale(1.03);
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: #fff;
}
.logo-link img {
  height: 40px;
  width: auto;
  margin-right: 8px;
  display: block;
}

/* ====================
   MOBILE NAVIGATION
   ==================== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 2rem;
  color: var(--vintage-yellow);
  background: var(--secondary);
  border-radius: 10px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  z-index: 1101;
  border: 2px solid var(--secondary);
  transition: background var(--transition), border var(--transition);
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--primary);
  border-color: var(--vintage-yellow);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #f7edd0ee;
  box-shadow: 0 2px 12px rgba(37,51,60,0.22);
  z-index: 1500;
  transform: translateX(100vw);
  transition: transform 0.32s cubic-bezier(0.77,0,0.175,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--primary);
  color: var(--vintage-yellow);
  border: 2px solid var(--secondary);
  border-radius: 10px;
  font-size: 2.3rem;
  margin: 28px 28px 0 0;
  padding: 3px 16px;
  align-self: flex-end;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--secondary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 22px;
  padding: 16px 32px;
}
.mobile-nav a {
  display: block;
  color: var(--primary);
  padding: 14px 10px;
  width: 100%;
  font-size: 1.19rem;
  border-radius: 8px;
  background: none;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--vintage-yellow);
  color: var(--secondary);
}

/* ===================
   HERO SECTIONS
   =================== */
.hero-section {
  background: linear-gradient(120deg, var(--vintage-cream) 80%, var(--vintage-yellow) 100%);
  padding: var(--sp-4) 0 var(--sp-5) 0;
  box-shadow: 0 4px 40px rgba(122,97,76,0.08);
  border-bottom: 7px dotted var(--secondary);
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-2);
}
.hero-section h1 {
  color: var(--primary);
  font-size: 2.2rem;
  background: linear-gradient(90deg, var(--secondary), var(--primary) 60%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  margin-bottom: var(--sp-1);
}
.hero-section p {
  color: var(--vintage-blue);
  font-size: 1.15rem;
  background: var(--vintage-cream);
  border-radius: 9px;
  padding: 9px 18px;
  margin-bottom: var(--sp-2);
}

/* ================
   CALL TO ACTIONS
   ================ */
.cta-section {
  text-align: center;
  background: var(--vintage-yellow);
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -2px 24px rgba(122,97,76,0.09);
  margin-top: var(--sp-5);
  margin-bottom: 0;
  padding: var(--sp-4) 0;
}
.cta-primary {
  display: inline-block;
  background: var(--vintage-red);
  color: #fff;
  padding: 14px 32px;
  font-size: 1.19rem;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 15px;
  border: 2.5px solid var(--vintage-red);
  box-shadow: 0 2px 6px rgba(179,70,39,0.09);
  transition: background var(--transition), border var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  margin-top: 8px;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--primary);
  color: var(--vintage-yellow);
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(37,51,60,0.14);
  transform: translateY(-4px) scale(1.04) rotate(-0.5deg);
}
.cta-link {
  color: var(--secondary);
  font-weight: 500;
  text-decoration: underline;
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--vintage-cream);
  margin-top: 10px;
  transition: background var(--transition), color var(--transition);
}
.cta-link:hover, .cta-link:focus {
  background: var(--secondary);
  color: #fff;
}

/* ===============
   FOOTER
   =============== */
footer {
  background: var(--primary);
  color: var(--vintage-yellow);
  padding: var(--sp-4) 0 var(--sp-3) 0;
  margin-top: var(--sp-5);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: var(--sp-3);
}
.footer-nav a {
  color: var(--vintage-yellow);
  font-size: 1rem;
  text-decoration: underline;
  padding: 7px 10px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--primary);
  background: var(--vintage-yellow);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  font-size: 0.95rem;
  margin-top: 16px;
}
.footer-contact img {
  height: 44px;
  margin-bottom: 8px;
}
.footer-contact address,
.footer-contact span {
  color: var(--vintage-yellow);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact span img {
  height: 16px;
  width: 16px;
}

/* ===========
   LEGAL SECTIONS
   =========== */
.legal-section {
  margin-bottom: var(--sp-4);
  padding: var(--sp-4) 0;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-card);
}
.legal-section .text-section h2 {
  margin-top: var(--sp-3);
  color: var(--secondary);
}

/* ==============
   MAP/EMBED
   ============= */
.map-embed {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
}
.map-embed img {
  width: 100%;
  max-width: 430px;
  border-radius: 14px;
  box-shadow: 0 0 13px rgba(51,101,138,0.08);
}

/* ===========
   FAQ
   =========== */
.faq-section dl dt {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  margin-top: var(--sp-2);
  margin-bottom: 4px;
  color: var(--secondary);
}
.faq-section dl dd {
  margin-bottom: 10px;
  font-family: var(--font-body);
  color: var(--primary);
}

/* ============== 
   UTILITY CLASSES & OTHERS
   ============== */
.text-section {
  padding: 0;
  margin-bottom: var(--sp-2);
}

.text-section h3 {
  color: var(--secondary);
  margin-bottom: 6px;
  font-size: 1.09rem;
  font-weight: 700;
}
.text-section p {
  margin-bottom: var(--sp-2);
}

.pricing img, .price-info img {
  vertical-align: middle;
  margin-right: 10px;
}

::-webkit-scrollbar {
  width: 11px;
  background: var(--vintage-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--vintage-yellow);
  border-radius: 50px;
}

/* =======================
   RESPONSIVE DESIGN
   ======================= */
@media (max-width: 1100px) {
  .feature-grid, .service-summary-grid {
    gap: 14px;
    flex-wrap: wrap;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
  .feature-grid,
  .service-summary-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    flex-direction: column;
    padding: var(--sp-2);
    gap: 8px;
  }
  .main-nav a {
    font-size: 1.08rem;
    padding: 10px 4px;
  }
  .logo-link img {
    height: 34px;
  }
  .feature-grid, .service-summary-grid {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card,
  .feature-item,
  .card,
  .service-item {
    min-width: 0;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 10px;
  }
  .hero-section h1 {
    font-size: 1.55rem;
  }
  .footer-contact {
    font-size: 0.92rem;
    gap: 4px;
  }
  .section {
    padding: var(--sp-3) var(--sp-1);
    margin-bottom: var(--sp-4);
  }
  .cta-section {
    padding: var(--sp-3) 0;
    border-radius: 18px 18px 0 0;
  }
}
@media (max-width: 600px) {
  .container {
    padding-left: var(--sp-1);
    padding-right: var(--sp-1);
  }
  .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .footer-contact {
    align-items: flex-start;
    text-align: left;
  }
  .map-embed img {
    max-width: 99vw;
  }
  .hero-section {
    padding: var(--sp-2) 0 var(--sp-3) 0;
    border-radius: 0 0 22px 22px;
  }
}
@media (max-width: 670px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
}

/* ========================
   COOKIE CONSENT BANNER
   ======================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 2999;
  background: #fff8ec;
  color: var(--primary);
  box-shadow: 0 -2px 24px rgba(122,97,76,0.12);
  border-top: 4px solid var(--vintage-yellow);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 18px 8px 18px;
  font-size: 1.02rem;
  animation: banner-slide-in 0.65s cubic-bezier(.3,.65,.73,.31);
}
@keyframes banner-slide-in {
  0% { transform: translateY(80px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  margin-bottom: 12px;
  color: var(--primary);
}
.cookie-consent-banner .cookie-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 6px;
}
.cookie-btn {
  display: inline-block;
  font-family: var(--font-body);
  border-radius: 8px;
  padding: 11px 18px;
  margin: 0 2px;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(244,211,94,0.11);
  border: 2px solid var(--vintage-yellow);
  background: var(--vintage-yellow);
  color: var(--primary);
  transition: background var(--transition), color var(--transition), border var(--transition);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
}
.cookie-btn.reject {
  background: var(--vintage-red);
  color: #fff;
  border: 2px solid var(--vintage-red);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--vintage-yellow);
}
.cookie-btn.settings {
  background: #fff;
  color: var(--primary);
  border: 2px dashed var(--secondary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--vintage-yellow);
  border-style: solid;
  color: var(--vintage-red);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 325px;
  max-width: 92vw;
  background: #fff8ec;
  color: var(--primary);
  box-shadow: 0 8px 38px rgba(37,51,60,0.18);
  border-radius: 18px;
  z-index: 3002;
  padding: 32px 24px 24px 24px;
  transform: translate(-50%,-50%) scale(0.96);
  animation: modal-in 0.37s cubic-bezier(.42,0,.58,1);
}
@keyframes modal-in {
  0% { transform: translate(-50%,-40%) scale(0.9); opacity:0; }
  100% { transform: translate(-50%,-50%) scale(1.0); opacity:1; }
}
.cookie-modal h2 {
  color: var(--secondary);
  margin-bottom: 10px;
  font-size: 1.23rem;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  font-family: var(--font-body);
  margin-bottom: 13px;
}
.cookie-modal input[type='checkbox'] {
  accent-color: var(--vintage-yellow);
  width: 17px;
  height: 17px;
  border-radius: 4px;
  border: 1.5px solid var(--secondary);
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal .cookie-category-desc {
  font-size: 0.98rem;
  color: var(--secondary);
  margin-bottom: 8px;
}
.cookie-modal .category-essential {
  font-style: italic;
  color: var(--vintage-green);
  font-weight: 600;
}
.cookie-modal-close {
  background: var(--primary);
  color: var(--vintage-yellow);
  border-radius: 8px;
  border: 1.5px solid var(--secondary);
  font-size: 1.6rem;
  padding: 3px 18px;
  position: absolute;
  right: 18px;
  top: 18px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--secondary);
  color: #fff;
}

@media (max-width: 480px) {
  .cookie-modal {
    padding: 21px 5vw;
    min-width: 0;
    font-size: 0.97rem;
  }
}

/* ============
   ANIMATIONS
   ============ */
.card, .service-item, .testimonial-card, .feature-item, .cta-primary, .cta-section {
  transition: box-shadow var(--transition), transform var(--transition), background var(--transition), color var(--transition);
}
a, .cta-primary, .cta-link, .cookie-btn {
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

/* ==============
   RETRO DECORATIONS
   ============== */
.section {
  background: var(--vintage-cream);
  box-shadow: 0 2px 28px rgba(122,97,76,0.05);
  border-radius: var(--border-radius);
  position: relative;
  overflow: visible;
}
.section::before {
  content: '';
  display: block;
  position: absolute;
  left: 32px;
  right: 32px;
  top: 0px;
  height: 12px;
  background: repeating-linear-gradient(90deg, var(--vintage-yellow) 0 20px, transparent 21px 30px);
  opacity: 0.16;
  border-radius: 5px;
  z-index: 0;
}
.section > * {
  position: relative;
  z-index: 1;
  background: transparent;
}

/* Nostalgic polka dot pattern for selected sections */
.features-section, .testimonials-section {
  background:
    radial-gradient(circle, var(--vintage-yellow) 1px, transparent 1.5px) 0 0,
    radial-gradient(circle, var(--vintage-yellow) 1px, transparent 1.5px) 10px 10px;
  background-size: 20px 20px;
  background-color: var(--vintage-cream);
  border: 3px dashed var(--vintage-yellow);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 26px rgba(244,211,94,0.08);
}

/* Classic border for about section */
.about-section {
  border: 2.5px double var(--secondary);
  background: var(--vintage-cream);
}

/* ================
   COLOR CONTRAST FOR TESTIMONIALS
   ================ */
.testimonial-card {
  color: #222;
  background: #fff;
  box-shadow: 0 4.5px 16px rgba(51,101,138,0.13);
}
.testimonial-card blockquote {
  background: transparent;
  border-left: 5px solid var(--secondary);
  color: var(--primary);
}

/* =============
   ACCESSIBILITY
   ============= */
*:focus-visible {
  outline: 2.5px dashed var(--vintage-blue);
  outline-offset: 2px;
}

/* Hide visually but keep accessible for icons/text when needed */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
