/* 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;
  outline: 0;
  font: inherit;
  box-sizing: border-box;
  vertical-align: baseline;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #fcf7ec; /* Vintage paper background */
  color: #3b2d23;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul,ol { list-style: none; }
table { border-collapse: collapse; border-spacing: 0; }
button,
input,
select,
textarea {
  font-family: inherit; font-size: 100%; margin: 0;
}
:root {
  --primary: #23597d;
  --primary-dark: #18384a;
  --secondary: #f1b522;
  --secondary-dark: #cc9420;
  --accent: #ffffff;
  --retro-green: #b2bfa3;
  --retro-orange: #e17d3d;
  --retro-red: #c94c37;
  --retro-bg: #fcf7ec;
  --retro-gray: #e7e1d0;
  --retro-shadow: 0 4px 18px rgba(96,68,41,0.09), 0 2px 6px rgba(44,30,15,0.08);
}

@media (max-width: 768px) {
  html { font-size: 15px; }
}

/* TYPOGRAPHY
-----------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  color: #3b2d23;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  line-height: 1.13;
  text-shadow:
    0 1px 0 #fff8e1,
    0 2px 0 #e7e1d0;
}
h1 { font-size: 2.75rem; margin-bottom: 1.1em; }
h2 { font-size: 2rem; margin-bottom: 1em; }
h3 { font-size: 1.375rem; margin-bottom: 0.8em; }
h4 { font-size: 1.125rem; }
p, ul, ol, .text-section {
  font-size: 1.07rem;
  color: #463215;
  margin-bottom: 1.1em;
  line-height: 1.7;
}
strong { font-weight: bold; color: #aa6611; }

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.15rem; }
}

/* LAYOUT WRAPPERS & FLEX
-----------------------------------------------*/
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 769px) {
  .content-wrapper { gap: 32px; }
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--retro-bg);
  border-radius: 22px;
  box-shadow: var(--retro-shadow);
}

/* HEADER & NAV
-----------------------------------------------*/
header {
  background: var(--retro-gray);
  border-bottom: 3px double var(--secondary-dark);
  position: relative;
  box-shadow: 0 2px 16px rgba(116, 82, 63, 0.10);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px; padding-bottom: 12px;
  position: relative;
}
header img[src*='logo'] {
  height: 54px;
  width: auto;
  margin-right: 20px;
}
nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  color: var(--primary);
  text-shadow: 0 1px 0 var(--accent);
  border-radius: 8px;
  padding: 5px 14px;
  transition: background 0.17s, color 0.17s;
  position: relative;
}
nav a:hover, nav a:focus {
  background: var(--secondary);
  color: #20323b;
}
.cta-btn {
  background: var(--secondary);
  color: #2f2a18;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  padding: 10px 30px;
  border: none;
  border-radius: 18px 5px 18px 5px;
  box-shadow: 0 1px 9px rgba(117,90,28,0.12);
  letter-spacing: 0.04em;
  font-weight: bold;
  text-shadow: 0 1px 0 #f9e7a3;
  margin-left: 24px;
  margin-top: 0; margin-bottom: 0;
  cursor: pointer;
  transition: background 0.18s, color 0.17s, transform 0.15s;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--secondary-dark);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

/* Mobile Nav & Hamburger
-----------------------------------------------*/
.mobile-menu-toggle {
  background: var(--secondary);
  color: var(--primary-dark);
  font-size: 2.1rem;
  border: none;
  border-radius: 8px;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 6px rgba(182,150,61,0.08);
  z-index: 300;
}
.mobile-menu-toggle:focus {
  box-shadow: 0 0 0 3px var(--secondary-dark);
}
@media (min-width: 950px) {
  .mobile-menu-toggle {
    display: none !important;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: linear-gradient(135deg, #e7e1d0 78%, #f1b522 120%);
  box-shadow: 0 4px 40px rgba(60,45,21,0.19);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-110vw);
  transition: transform 0.45s cubic-bezier(.7,.03,.26,.98);
  padding-top: 16px;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.38s cubic-bezier(.7,.03,.26,.98);
}
.mobile-menu-close {
  background: var(--primary);
  color: var(--accent);
  font-size: 2.1rem;
  border: none;
  padding: 5px 14px;
  border-radius: 8px;
  margin-left: auto;
  margin-right: 18px;
  margin-bottom: 10px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(19,38,60,0.10);
  transition: background 0.19s, color 0.2s;
  z-index: 9100;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary); color: var(--primary-dark);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.27rem;
  padding: 12px 0;
  color: var(--primary-dark);
  background: none;
  border-bottom: 1.5px dotted var(--primary);
  transition: color 0.21s, background 0.14s;
  border-radius: 4px;
  width: 92vw;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--secondary);
  color: #302817;
}
@media (max-width: 949px) {
  header nav,
  .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}
@media (min-width: 950px) {
  .mobile-menu {
    display: none !important;
  }
}

/* MAIN STRUCTURE + HERO
-----------------------------------------------*/
main {
  margin-bottom: 60px;
}
.hero {
  background: linear-gradient(110deg, #fef8e6 72%, #e7e1d0 100%);
  box-shadow: 0 12px 40px -10px #e4d5a9ee;
  border-bottom: 3px double var(--secondary);
  border-radius: 0 0 40px 40px;
  margin-bottom: 42px;
}
.hero .container {
  padding-top: 40px; padding-bottom: 40px;
}
.hero h1 {
  font-size: 2.75rem;
  color: #a75f22;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 1px #fff1d13a;
  margin-bottom: 14px;
}
.hero p {
  font-size: 1.2rem;
  color: #493b2d;
}
.hero .cta-btn {
  margin-top: 22px;
}
@media (max-width: 768px) {
  .hero .container { padding-top: 25px; padding-bottom: 25px; }
  .hero { border-radius: 0 0 22px 22px; }
}

/* FLEXBOX STRUCTURE & CARDS
-----------------------------------------------*/
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin: 26px 0 10px 0;
}
.feature-item {
  background: var(--accent);
  color: #4a3220;
  border-radius: 20px 5px 20px 5px;
  box-shadow: 0 4px 20px #e4d5a9cc;
  padding: 32px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 240px;
  max-width: 360px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  border: 2px dashed #f1b52255;
  transition: box-shadow 0.22s, border 0.18s, transform 0.15s;
}
.feature-item img {
  width: 44px; height: 44px;
  margin-bottom: 7px;
}
.feature-item h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.1em;
}
.feature-item p {
  color: #4a3220;
  font-size: 1.05rem;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 32px #ccb27844;
  border: 2px solid var(--secondary-dark);
  transform: translateY(-3px) scale(1.032);
}

.service-cards, .service-types {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  align-items: stretch;
  margin: 22px 0 10px 0;
}
.service-card, .service-type {
  background: var(--accent);
  border-radius: 16px;
  box-shadow: var(--retro-shadow);
  padding: 28px 22px 20px 22px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 2px solid #e7e1d0;
  transition: box-shadow 0.16s, border 0.14s, transform 0.17s;
}
.service-card h3,
.service-type h3 {
  color: var(--retro-red);
}
.service-card a, .service-type a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  padding: 8px 0;
  width: fit-content;
  margin-top: 12px;
  border-bottom: 2px dashed var(--primary);
  transition: color 0.15s;
}
.service-card a:hover,.service-type a:hover { color: var(--secondary); border-bottom-style: solid;}
.service-card:hover, .service-type:hover {
  box-shadow: 0 8px 26px #ad955355;
  border: 2px solid var(--secondary-dark);
  transform: scale(1.033);
}

@media (max-width: 950px) {
  .features-grid,
  .service-cards, .service-types {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature-item, .service-card, .service-type {
    max-width: 100%;
    min-width: 0;
  }
}

/* Feature icons used in Privathaushalt/Bueroreinigung */
.feature-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
  margin-bottom: 12px;
}
.feature-icons img {
  width: 38px; height: 38px;
}

/* Tables (Preise) */
.pricing-table {
  width: 100%;
  background: var(--retro-bg);
  border-radius: 14px;
  margin: 24px 0 12px 0;
  box-shadow: var(--retro-shadow);
  border: 2px solid #f1b52255;
}
.pricing-table th, .pricing-table td {
  padding: 12px 18px;
  text-align: left;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  color: #2f2333;
}
.pricing-table th {
  background: var(--secondary);
  color: #452c0f;
  font-weight: bold;
  border-radius: 13px 13px 0 0;
}
.pricing-table tbody tr {
  border-top: 1.5px solid #ead5a5;
}
.pricing-table td {
  background: var(--accent);
}

.price-notes {
  background: #ffe9a4;
  color: #533a07;
  border-radius: 9px;
  padding: 12px;
  font-size: 0.99rem;
  margin-top: 8px;
}

/* FAQ styles (Preise) */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.faq-item {
  flex: 1 1 220px;
  background: #fff7e2;
  border: 1.5px dashed #f1b522;
  border-radius: 13px;
  box-shadow: 0 3px 11px #e4d5a977;
  padding: 18px 16px;
  margin-bottom: 20px;
}
.faq-item h3 {
  font-size: 1.11rem;
  color: #b75d18;
  margin-bottom: 0.7em;
}
.faq-item p {
  font-size: 1.03rem;
}
@media (max-width: 920px) {
  .faq-list { flex-direction: column; gap: 14px; }
}

/* TESTIMONIALS
-----------------------------------------------*/
.testimonials {
  background: #fffcf6;
  border-top: 3px double var(--secondary-dark);
  border-bottom: 1.5px dotted #e4d5a955;
  padding-bottom: 48px;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px 16px 24px;
  background: #fffefc;
  color: #311e13;
  border-radius: 16px 16px 36px 14px;
  box-shadow: 0 6px 26px rgba(68,56,38,0.10);
  min-width: 235px;
  max-width: 350px;
  margin-bottom: 20px;
  border-left: 6px solid var(--secondary);
  position: relative;
}
.testimonial-rating {
  font-size: 1.3rem;
  color: #ebaa24;
  letter-spacing: 3px;
  font-family: 'Montserrat', Arial, sans-serif;
  text-shadow: 0 1px 0 #fff6c555;
}
.testimonial-meta {
  font-size: 0.99rem;
  color: #225079;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
}
.testimonial-card p {
  font-size: 1.079rem;
  color: #473d28;
}
.testimonial-card::before {
  content: "\201C";
  font-size: 3.3rem;
  color: #e8d6b6;
  position: absolute;
  left: 14px; top: -18px;
  font-family: 'Montserrat', serif;
}

@media (max-width: 900px) {
  .testimonial-list {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card { max-width: 100%; }
}

/* CTA SECTION
-----------------------------------------------*/
.cta {
  background: #fff4c7;
  border: 2.3px solid #ffe187;
  border-radius: 25px 7px 25px 7px;
  box-shadow: 0 6px 30px #e1be6e55, 0 1px 3px #e4d5a955;
}
.cta h2 {
  color: var(--primary);
  text-shadow: 0 1px 0 #f9e7a3;
}
.cta .cta-btn {
  background: var(--primary);
  color: var(--accent);
  margin-top: 18px;
  box-shadow: 0 2px 10px #caa50a2a;
  border-radius: 20px;
  letter-spacing: 0.02em;
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: var(--secondary-dark); color: #322308;
}

/* GENERAL SECTIONS, TEXT IMAGES
-----------------------------------------------*/
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column!important;
    gap: 18px;
    align-items: stretch;
  }
}
.text-section {
  margin-bottom: 24px;
}

/* FOOTER
-----------------------------------------------*/
footer {
  width: 100%;
  background: linear-gradient(180deg, #f3e8c1 60%, #e7e1d0 100%);
  border-top: 3px double var(--secondary);
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -2px 24px rgba(148,120,54,0.08);
  padding-top: 36px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 35px;
}
.footer-nav {
  display: flex;
  gap: 19px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 6px;
  transition: background 0.16s, color 0.18s;
  font-weight: 500;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--secondary);
  color: #2e3640;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #7e5e2c;
  font-size: 0.97rem;
}
.footer-contact img[src*="logo-mark"] { height: 30px; width: auto; margin-right: 12px;  display:inline-block; }
.footer-contact img[alt="Telefon"], .footer-contact img[alt="E-Mail"] {
  height: 18px; width:18px; vertical-align: middle; margin:0 4px 0 7px; display:inline-block;
}
.footer-contact a {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px dotted var(--primary);
  transition: color 0.13s;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: var(--secondary-dark);
  border-color: var(--secondary-dark);
}
.footer-copy {
  width: 100%;
  font-size: 0.94rem;
  color: #8d6950;
  padding-top: 12px;
  border-top: 1.1px dashed #e7e1d043;
  text-align: left;
}
@media (max-width: 650px) {
  footer .container { padding-bottom: 18px; gap: 13px; font-size: 15px; }
  .footer-nav { gap: 10px; }
}

/* ALIGNMENT, SPACING, FLEX UTILS
-----------------------------------------------*/
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; border-radius: 10px; }
.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; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }
.section { margin-bottom: 60px; padding: 40px 20px; }

/* Misc Elements
-----------------------------------------------*/
a:focus-visible,
button:focus-visible {
  outline: 2.7px dashed var(--secondary-dark);
  outline-offset: 2px;
}
::-webkit-scrollbar { width: 10px; background: #fef8e6; }
::-webkit-scrollbar-thumb { background: #e4d5a9; border-radius: 8px; }

/* Responsive Lists */
ul,ol { margin-bottom: 1em; }
ul li,ol li { margin-bottom: 0.6em; padding-left: 2px; }
ul li:before {
  content: "\25CF"; color: #f1b522; display: inline-block; width: 1.4em; margin-left: -1.5em;
  font-size: 1.09em; position:relative; top:1px; }

/* Cookie Consent Banner & Modal
-----------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #f9df95;
  color: #503b18;
  border-top: 2.5px solid var(--secondary-dark);
  box-shadow: 0 -6px 30px #e1be6e33;
  z-index: 10020;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px 18px 18px;
  font-size: 1rem;
  transition: transform 0.42s cubic-bezier(.8,.06,.19,.98), opacity 0.5s;
  transform: translateY(120%);
  opacity: 0;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner span {
  flex: 1;
  font-size: 1.06rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
}
.cookie-btn {
  background: var(--primary);
  color: #fff8e1;
  border: none;
  border-radius: 10px 5px 10px 5px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  padding: 8px 22px;
  box-shadow: 0 2px 7px #ba9f547e;
  margin-left: 0;
  transition: background 0.17s, color 0.19s, transform 0.18s;
  cursor: pointer;
}
.cookie-btn:focus,
.cookie-btn:hover {
  background: var(--secondary-dark);
  color: #2f2413;
  transform: scale(1.06);
}
.cookie-btn.settings {
  background: var(--secondary);
  color: #232312;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 8px 16px 12px;
    gap: 13px;
    font-size: 0.98rem;
  }
  .cookie-buttons {
    width: 100%;
    gap: 5px;
  }
}

/* Cookie Banner Preference Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(51,39,12,0.43);
  display: flex;
  align-items: center; justify-content: center;
  z-index: 10040;
  opacity: 0; pointer-events: none;
  transition: opacity 0.38s cubic-bezier(.4,.58,.43,1.03);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff7e2;
  color: #614720;
  border-radius: 19px;
  box-shadow: 0 10px 44px #b79c5a44, 0 2px 8px #e9ddab19;
  padding: 36px 32px 22px 32px;
  max-width: 410px;
  width:95vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 1rem;
}
.cookie-modal-content h2 {
  color: var(--primary);
  font-size: 1.22rem;
  margin-bottom: 12px;
  margin-top: 0;
}
.cookie-category {
  display: flex; flex-direction: row; align-items: center; gap:13px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #52421e;
  font-weight: 600;
}
.cookie-toggle {
  appearance: none;
  width: 34px; height: 20px;
  background: #e5cf95;
  border-radius: 15px;
  position: relative;
  outline: none;
  transition: background 0.16s;
  margin-right: 8px;
}
.cookie-toggle:checked {
  background: var(--primary);
}
.cookie-toggle:before {
  content: "";
  display: block;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fffef7;
  position: absolute;
  top: 2px; left: 3px;
  box-shadow: 0 1px 4px #c9b05438;
  transition: left 0.18s, background .09s;
}
.cookie-toggle:checked:before {
  left: 15px;
  background: #ebaa24;
}
.cookie-modal-actions {
  display: flex; gap: 13px; margin-top: 18px;
}
.cookie-modal-actions .cookie-btn {
  font-size: 1.02rem;
  padding: 8px 25px;
}
.cookie-modal-close {
  background: transparent;
  border: none;
  font-size: 1.95rem;
  color: #bd9732;
  position: absolute;
  right: 12px; top: 12px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 8px;
  padding: 2px 11px;
  transition: background 0.12s, color 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #fff;
  background: var(--primary);
}

/* Animations
-----------------------------------------------*/
@keyframes retroFadeInUp {
  from {opacity: 0; transform: translateY(32px);}
  to {opacity: 1; transform: translateY(0);}
}
.section, .card, .feature-item, .service-card, .service-type, .testimonial-card, .cta {
  animation: retroFadeInUp 0.7s cubic-bezier(.5,1.6,.26,1) backwards;
}

/* RESPONSIVE ADJUSTMENTS
-----------------------------------------------*/
@media (max-width: 768px) {
  html { font-size: 15px; }
  .section { padding: 28px 7px; margin-bottom:38px; }
  .feature-item, .service-card, .service-type {
    padding: 20px 12px 15px 12px;
  }
  .footer-contact { flex-direction: column; gap: 5px; align-items: flex-start; }
}
@media (max-width: 520px) {
  .container { padding: 0 4px; }
  .section { padding: 15px 1px; }
  .hero .container { padding-bottom: 12px; padding-top:12px; }
}

/* VINTAGE RETRO TOUCHES
-----------------------------------------------*/
/* Paper texture as grungy background spot overlay (if desired, can use a PNG/SVG for further effect.) */
body:before {
  content: '';
  position: fixed; left:0; top:0; pointer-events: none;
  width: 100vw; height: 100vh;
  background: repeating-linear-gradient(125deg,#fdf5da22 0 10px,#fffbe255 10px 20px), repeating-linear-gradient(-155deg,#ffeda922 0 18px,#fffce255 18px 30px);
  z-index: 0;
}

/* Subtle retro border effect in .hero and .section */
.section {
  border: 2.8px double #e7e1d0;
  border-radius: 22px 8px 26px 14px;
  background-blend-mode: lighten;
}

/* Vintage underlines for headings */
h2, h3 {
  position: relative;
}
h2:after, h3:after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--secondary);
  margin-top: 7px;
  border-radius: 3px;
}
@media (max-width: 600px) {
  h2:after, h3:after { width: 34px; }
}

/* ----------------------------------------------- */
/* END OF CSS */