/* --------------------------------------------------
  CSS RESET & NORMALIZE
-------------------------------------------------- */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #FCF7EE;
  color: #232324;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after { box-sizing: inherit; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
a:focus { outline: 2px dashed #E39A51; }
img { max-width: 100%; height: auto; display: block; border: none; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button { cursor: pointer; background: none; }
ul, ol { list-style: none; }

/* --------------------------------------------------
  VINTAGE RETRO BRAND COLORS & VARIABLES
-------------------------------------------------- */
:root {
  /* Brand Colors */
  --brand-primary: #2C3846;
  --brand-secondary: #8EB26F;
  --brand-accent: #F5F5F0;
  --brand-dark: #232324;
  --brand-warmbeige: #FCF7EE;
  --brand-retro-red: #B43B31;
  --brand-retro-yellow: #EAB95B;
  --brand-retro-blue: #3B93A7;
  --brand-retro-brown: #A67C52;
  --brand-white: #fff;
  --border-radius: 12px;
  --shadow-retro: 0 3px 16px rgba(44, 56, 70, 0.07);
  --shadow-card: 0 2px 8px rgba(87, 78, 62, 0.08);
  --pattern-stripes: repeating-linear-gradient(135deg, #F5F5F0 0 16px, #ECE1CE 16px 32px);
  /* Font Families */
  --font-display: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* Web Fonts (Google Fonts) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap');

/* --------------------------------------------------
  TYPOGRAPHY (RETRO-FLAVOR)
-------------------------------------------------- */
h1 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--brand-retro-red);
  text-shadow: 1px 1px 0 #F5F5F0, 2px 2px 0 #EAB95B;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--brand-primary);
  margin-bottom: 14px;
  margin-top: 0;
  text-shadow: 1px 1px 0 #fcf7ee;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 8px;
  margin-top: 0;
  text-shadow: 0.5px 0.5px 0 #F5F5F0;
}
h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--brand-retro-brown);
  font-weight: 700;
}
p, li, blockquote {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--brand-dark);
  letter-spacing: 0.01em;
}
blockquote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  background: var(--brand-retro-yellow);
  color: var(--brand-retro-brown);
  border-left: 6px solid var(--brand-retro-red);
  padding: 16px 20px 16px 30px;
  border-radius: var(--border-radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow-card);
}
strong, b { font-weight: 700; color: var(--brand-retro-brown); }

ul li, ol li {
  margin-bottom: 10px;
  padding-left: 0.5em;
  position: relative;
}
ul li:before {
  content: '◉';
  color: var(--brand-retro-brown);
  margin-right: 8px;
  font-size: 0.88em;
}

ol li {
  counter-increment: step-counter;
}
ol {
  counter-reset: step-counter;
}
ol li:before {
  content: counter(step-counter)'.';
  color: var(--brand-retro-blue);
  margin-right: 7px;
  font-weight: bold;
}

hr {
  border: none;
  border-top: 1.5px dashed var(--brand-retro-blue);
  margin: 32px 0;
}

/* --------------------------------------------------
  LAYOUT CONTAINERS & SECTION SPACING
-------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section, section:not(.hero):not(.call-to-action) {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-retro);
}
section.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  background: var(--pattern-stripes);
  border-bottom: 7px double var(--brand-retro-brown);
  margin-bottom: 48px;
  padding: 40px 0;
}
.call-to-action {
  background: var(--brand-retro-yellow);
  border-radius: var(--border-radius);
  margin-bottom: 48px;
  box-shadow: var(--shadow-retro);
  padding: 40px 0 36px 0;
}

/* FLEX CARD AND GRID PATTERNS */
.card-container, .feature-grid, .service-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid, .service-grid {
  gap: 24px;
  justify-content: flex-start;
}
.card, .feature, .service, .project-summary {
  background: var(--brand-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 28px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 2.5px solid var(--brand-retro-brown);
  position: relative;
}
.card {
  min-width: 220px;
  flex: 1 1 260px;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.text-image-section, .testimonial-card, .feature-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  border-radius: var(--border-radius);
}
.testimonial-card {
  background: var(--brand-retro-yellow);
  box-shadow: var(--shadow-card);
  border: 2px solid var(--brand-retro-brown);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--brand-dark);
}
.feature-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.project-summary {
  background: var(--brand-retro-blue);
  color: var(--brand-white);
  border: 2px solid var(--brand-retro-brown);
  box-shadow: var(--shadow-card);
}

/* --------------------------------------------------
  HEADER & NAVIGATION (RETRO FLAVOR)
-------------------------------------------------- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--brand-retro-brown);
  padding: 18px 0 12px 0;
  position: sticky;
  top: 0;
  z-index: 15;
  box-shadow: 0 2px 12px rgba(44, 56, 70, 0.05);
}
header a img {
  height: 47px;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-accent);
  border-radius: 999px;
  padding: 7px 18px;
  letter-spacing: 0.01em;
  position: relative;
  transition: background 0.2s, color 0.2s;
}
.main-nav .cta-btn {
  background: var(--brand-retro-yellow);
  color: var(--brand-retro-red);
  margin-left: 10px;
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 1.11rem;
  font-weight: 900;
  box-shadow: 0 1px 7px rgba(178,150,73,0.07);
  border: 2.5px solid var(--brand-retro-red);
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-retro-yellow);
  color: var(--brand-retro-red);
  text-decoration: none;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: var(--brand-retro-red);
  color: var(--brand-retro-yellow);
  border-color: var(--brand-retro-yellow);
}

/* MOBILE NAV TOGGLE */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-retro-yellow);
  color: var(--brand-retro-red);
  border: 2.5px solid var(--brand-retro-brown);
  font-size: 2rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-retro);
  margin-left: 18px;
  transition: background 0.17s;
  z-index: 70;
}
.mobile-menu-toggle:active {
  background: var(--brand-retro-red);
  color: var(--brand-retro-yellow);
}

@media (max-width: 1020px) {
  .main-nav { gap: 16px; }
  header { padding: 12px 0; }
}

@media (max-width: 900px) {
  .main-nav { gap: 10px; }
}

@media (max-width: 840px) {
  .main-nav { gap: 5px; }
}

@media (max-width: 780px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* --------------------------------------------------
  MOBILE OVERLAY NAVIGATION
-------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--brand-retro-red);
  color: var(--brand-retro-yellow);
  z-index: 1000;
  transform: translateX(-102vw);
  transition: transform 0.36s cubic-bezier(.69,.03,.50,1.22);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 28px 22px 28px 22px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  font-size: 2.2rem;
  color: var(--brand-retro-yellow);
  border: none;
  margin-bottom: 16px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-retro-yellow);
  color: var(--brand-retro-red);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  color: var(--brand-retro-yellow);
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  padding: 11px 0 9px 0;
  border-bottom: 1px dotted var(--brand-retro-yellow);
  transition: background 0.13s, color 0.13s;
  border-radius: 3px;
}
.mobile-nav .cta-btn {
  background: var(--brand-retro-yellow);
  color: var(--brand-retro-red);
  margin-top: 18px;
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 1.07rem;
  font-weight: 900;
  box-shadow: 0 1px 7px rgba(178,150,73,0.10);
  border: 2px solid var(--brand-primary);
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-retro-yellow);
  color: var(--brand-retro-red);
}
.mobile-nav .cta-btn:active, .mobile-nav .cta-btn:focus {
  background: var(--brand-retro-red);
  color: var(--brand-retro-yellow);
}

/* Disable body scroll when menu is open */
body.mobile-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100vw;
}

/* --------------------------------------------------
  BUTTONS & CTA
-------------------------------------------------- */
.cta-btn, .button {
  background: var(--brand-retro-red);
  color: var(--brand-retro-yellow);
  border: 2.5px solid var(--brand-retro-yellow);
  border-radius: 999px;
  padding: 12px 36px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.17rem;
  margin-top: 8px;
  box-shadow: 0 2px 9px rgba(178,59,49,0.09);
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s, border-color 0.17s, transform 0.17s;
  display: inline-block;
  position: relative;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus, .button:hover, .button:focus {
  background: var(--brand-retro-yellow);
  color: var(--brand-retro-red);
  border-color: var(--brand-retro-red);
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
  box-shadow: 0 4px 17px rgba(178,59,49,0.14);
}

/* --------------------------------------------------
  TESTIMONIALS & CARDS
-------------------------------------------------- */
.testimonials {
  background: var(--brand-retro-red);
  color: var(--brand-retro-yellow);
  border-radius: var(--border-radius);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials h2 {
  color: var(--brand-retro-yellow);
  text-shadow: 1px 1px 0 var(--brand-retro-brown);
}
.testimonial-card {
  background: var(--brand-retro-yellow);
  color: var(--brand-dark);
  border: 2px solid var(--brand-retro-brown);
  box-shadow: var(--shadow-card);
  padding: 20px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  border-radius: var(--border-radius);
}
.testimonial-card strong {
  color: var(--brand-retro-red);
}

/* --------------------------------------------------
  ABOUT & VALUES, LEGAL
-------------------------------------------------- */
.values ul li:before {
  content: '✱';
  color: var(--brand-retro-red);
}
.certifications img {
  width: 28px;
  height: 28px;
  margin-right: 9px;
  vertical-align: middle;
}
.legal a {
  color: var(--brand-retro-blue);
}
.legal a:hover,
.legal a:focus {
  color: var(--brand-retro-red);
  text-decoration: underline;
}

/* --------------------------------------------------
  CONTACT & MAPS
-------------------------------------------------- */
.contact-details p img, .map p img {
  width: 28px;
  height: 28px;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
  filter: sepia(0.45) hue-rotate(-10deg) brightness(96%);
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
}
.map {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--brand-accent);
  padding: 13px 15px;
  border-radius: 7px;
  box-shadow: 0 1px 4px rgba(87, 78, 62, 0.14);
}

/* --------------------------------------------------
  FOOTER
-------------------------------------------------- */
footer {
  background: var(--brand-primary);
  color: var(--brand-accent);
  padding: 36px 0 15px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-top: 6px double var(--brand-retro-yellow);
  margin-top: 55px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  margin-bottom: 0px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--brand-retro-yellow);
  font-family: var(--font-display);
  font-size: 1.01rem;
  opacity: 0.85;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus { color: var(--brand-retro-red); }
.footer-brand {
  margin: 0 auto 0px auto;
}
.footer-brand img {
  height: 60px;
  display: block;
}
.footer-contact {
  font-size: 1rem;
  color: var(--brand-accent);
  opacity: 0.93;
}
.footer-contact a {
  color: var(--brand-retro-yellow);
  text-decoration: underline;
  transition: color 0.18s;
}
.footer-contact a:hover,
.footer-contact a:focus {
  color: var(--brand-retro-brown);
}

/* --------------------------------------------------
  FAQ ACCORDION (RETRO-LINE)
-------------------------------------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: var(--brand-accent);
  border: 2px dotted var(--brand-retro-brown);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(44,56,70,0.04);
  padding: 17px 23px;
  margin-bottom: 12px;
  transition: box-shadow 0.2s;
}
.faq-item h3 {
  cursor: pointer;
  color: var(--brand-retro-red);
  text-shadow: none;
  position: relative;
}
.faq-item h3:after {
  content: '\25BC';
  font-size: 1rem;
  color: var(--brand-retro-yellow);
  position: absolute;
  right: -25px;
  top: 4px;
}
.faq-item.open h3:after {
  content: '\25B2';
}
.faq-item p { margin-top: 9px; }

/* --------------------------------------------------
  CHECKLIST & STEPS
-------------------------------------------------- */
.checklist ul li:before {
  content: '\2714';
  color: var(--brand-retro-blue);
  margin-right: 7px;
}
.steps ol li:before {
  color: var(--brand-retro-yellow);
  font-size: 1.10em;
  font-family: var(--font-display);
}

/* --------------------------------------------------
  COOKIE CONSENT BANNER & MODAL
-------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2200;
  background: var(--brand-retro-yellow);
  color: var(--brand-retro-brown);
  box-shadow: 0px -2px 16px rgba(176,140,93,0.17);
  padding: 22px 18px 21px 18px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  border-top: 4px solid var(--brand-retro-red);
  font-family: var(--font-display);
  animation: slideup 0.75s cubic-bezier(.61,.46,.45,1.37);
}

@keyframes slideup {
  0% { transform: translateY(85px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.cookie-btn {
  background: var(--brand-retro-red);
  color: var(--brand-retro-yellow);
  border-radius: 999px;
  border: 2.5px solid var(--brand-retro-brown);
  padding: 9px 23px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  margin: 0;
  transition: background 0.16s, color 0.16s, border .16s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--brand-retro-yellow);
  color: var(--brand-retro-red);
  border-color: var(--brand-retro-red);
}
.cookie-settings-btn {
  background: var(--brand-retro-blue);
  color: var(--brand-white);
  border: 2.5px solid var(--brand-retro-brown);
  margin-left: 8px;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: var(--brand-retro-yellow);
  color: var(--brand-retro-red);
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%) scale(1);
  background: var(--brand-accent);
  border: 3.5px solid var(--brand-retro-red);
  border-radius: 20px;
  box-shadow: 0 11px 80px rgba(52,41,8,0.22);
  max-width: 98vw;
  z-index: 2500;
  padding: 42px 32px 32px 32px;
  display: none;
  flex-direction: column;
  gap: 25px;
  animation: modalfade 0.6s cubic-bezier(.53,.13,.36,1.25);
}

.footer-contact p {
  color: white;
}

@keyframes modalfade {
  0% { opacity: 0; transform: translate(-50%, -42%) scale(0.91); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.cookie-modal.open { display: flex; }
.cookie-modal h2 {
  font-size: 1.3rem;
  color: var(--brand-retro-red);
  margin-bottom: 6px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: bold;
  font-family: var(--font-display);
  margin-bottom: 13px;
  cursor: pointer;
}
.cookie-modal input[type=checkbox] {
  accent-color: var(--brand-retro-blue);
  width: 23px; height: 23px;
}
.cookie-modal .cookie-modal-btn-group {
  display: flex; gap: 17px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .cookie-btn {
  font-size: 1.05rem;
}

/* Cookie Overlay */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2450;
  background: rgba(68,32,23,0.60);
  display: none;
}
.cookie-modal-overlay.open { display: block; }

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 11px;
}
.cookie-categories .category-desc {
  font-size: 0.98rem;
  color: var(--brand-retro-brown);
}

/* --------------------------------------------------
  RESPONSIVE DESIGN & MEDIA QUERIES
-------------------------------------------------- */
@media (max-width: 1024px) {
  .container { max-width: 97vw; }
  section { padding: 32px 7vw; }
}
@media (max-width: 900px) {
  .container { padding: 0 5vw; }
  .content-wrapper { gap: 12px; }
}
@media (max-width: 780px) {
  .container { padding: 0 2vw; }
}
@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.57rem; }
  .section, section:not(.hero):not(.call-to-action), .testimonials {
    margin-bottom: 36px;
    padding: 28px 10px;
  }
  .card, .feature, .service, .project-summary, .testimonial-card {
    padding: 17px 11px;
    min-width: 170px;
    font-size: 0.95rem;
  }
  .footer-brand img { height: 38px; }
  .map, .contact-details { font-size: 0.97rem; }
  .call-to-action { padding: 18px 0 14px 0; }
}
@media (max-width: 600px) {
  .content-wrapper { gap: 8px; }
  .card-container, .feature-grid, .service-grid {
    flex-direction: column;
    gap: 15px;
  }
  .content-grid {
    flex-direction: column;
    gap: 11px;
  }
  .footer-nav { gap: 12px; flex-wrap: wrap; }
}
@media (max-width: 540px) {
  .container { padding: 0 1vw; }
  footer { padding: 24px 0 10px 0; }
  .footer-brand img { height: 29px; }
  .cookie-modal { width: 99vw; max-width: 99vw; padding: 23px 7vw; }
}
@media (max-width: 400px) {
  h1 { font-size: 1.31rem; }
  h2 { font-size: 1.01rem; }
  .card, .feature, .service, .project-summary, .testimonial-card { font-size: 0.91rem; }
}

/* Text-Image Section Flex Responsiveness */
.text-image-section {
  flex-direction: row;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 18px; }
}

/* Prevent Overlapping & Spacing Utilities */
.card:not(:last-child), .feature:not(:last-child), .project-summary:not(:last-child) {
  margin-bottom: 20px;
}
.section, .card-container, .testimonial-card, .content-grid, .feature-grid, .service-grid {
  margin-bottom: 20px;
}

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

/* Utility: Show/Hide (JS) */
.hide { display: none !important; }
.show { display: block !important; }

/* --------------
 VINTAGE/RETRO PATTERNS & MICRO-EFFECTS
--------------- */
section.hero {
  background: repeating-linear-gradient(-45deg, #ECE1CE 0 23px, #F5F5F0 23px 46px);
  border-bottom: 6px double var(--brand-retro-brown);
  position: relative;
  overflow: hidden;
}
section.hero:after {
  content: '';
  position: absolute;
  left: 0; bottom: -28px;
  width: 100%; height: 38px;
  background: repeating-linear-gradient(90deg, #EAB95B 0 16px, transparent 16px 32px);
  opacity: 0.13;
  pointer-events: none;
}
.card, .feature, .service, .testimonial-card {
  transition: transform 0.17s cubic-bezier(.44,1.72,.38,1.12), box-shadow 0.23s;
}
.card:hover, .feature:hover, .service:hover, .testimonial-card:hover {
  transform: translateY(-5px) scale(1.01) rotate(-0.6deg);
  box-shadow: 0 5px 19px rgba(44,56,70,.14);
}

/* Retro border effect for active/content cards */
.card.active, .feature.active, .service.active {
  border-color: var(--brand-retro-red);
}

/* -------------------------------------------------- */
