/* RESET & NORMALIZE (simple version) */
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  box-sizing: border-box;
}

/* CUSTOM PROPERTIES for pastel theme */
:root {
  --color-primary: #46332A;
  --color-secondary: #A38972;
  --color-accent: #E6ECE9;
  --color-pastel-rose: #F7E4EB;
  --color-pastel-blue: #E6F0FA;
  --color-pastel-mint: #E6F7F0;
  --color-pastel-yellow: #FFF6E6;
  --color-pastel-lavender: #F3ECFF;
  --color-bg: #FCFBFA;
  --color-bg-light: #FFFFFF;
  --color-bg-section: #F7F5F2;
  --color-placeholder: #bdaea6;
  --color-border: #eeebe8;
  --color-shadow: rgba(164, 137, 114, 0.17);
  --font-display: 'Merriweather', serif;
  --font-body: 'Lato', Arial, sans-serif;
}

@media (max-width: 480px) {
  html { font-size: 14px; }
}
@media (min-width: 481px) and (max-width: 768px) {
  html { font-size: 16px; }
}
@media (min-width: 769px) {
  html { font-size: 18px; }
}

/* BODY + GENERAL */
body {
  background: var(--color-bg);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-section);
  border-radius: 22px;
  box-shadow: 0 2px 20px var(--color-shadow);
  transition: box-shadow 0.2s;
}

/* TYPOGRAPHY */
h1, .hero h1 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 14px;
  text-shadow: 0 2px 8px rgba(230,236,233,0.12);
}
h2 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 2.0rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
h3 {
  font-family: var(--font-display);
  color: var(--color-secondary);
  font-size: 1.36rem;
  font-weight: 500;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-family: var(--font-body);
  color: var(--color-primary);
}
p, ul, ol, li {
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 400;
}
p.subtitle, .subtitle {
  font-size: 1.25rem;
  color: var(--color-secondary);
  font-family: var(--font-body);
  margin-bottom: 22px;
  font-style: italic;
  opacity: 0.95;
}
strong {
  font-weight: 600;
}

/* LINKS */
a,
.main-nav a, .footer-nav a, .mobile-nav a {
  color: var(--color-primary);
  text-decoration: none;
  outline: none;
  position: relative;
  transition: color .2s;
}
.main-nav a:hover, .footer-nav a:hover, .mobile-nav a:hover {
  color: var(--color-secondary);
}
a.cta-btn, .cta-btn, .hero-cta {
  background: linear-gradient(90deg, #E6F0FA 0%, #F7E4EB 100%);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.13rem;
  border: none;
  border-radius: 38px;
  box-shadow: 0 4px 18px var(--color-shadow);
  padding: 15px 36px;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.25s, transform 0.15s, box-shadow .18s;
  display: inline-block;
  letter-spacing: 0.02em;
}
.hero-cta, .cta-btn {
  margin-bottom: 10px;
}
a.cta-btn:hover, .cta-btn:hover, .hero-cta:hover,
a.cta-btn:focus, .cta-btn:focus, .hero-cta:focus {
  background: linear-gradient(90deg, #F7E4EB 0%, #E6ECE9 100%);
  color: var(--color-secondary);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px var(--color-shadow);
  outline: none;
}
a.cta-btn:active, .cta-btn:active, .hero-cta:active {
  background: #E6ECE9;
  color: var(--color-primary);
  box-shadow: 0 2px 8px var(--color-shadow);
}

/* HEADER */
header {
  background: var(--color-bg-light);
  box-shadow: 0 2px 16px var(--color-shadow);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 101;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
nav.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-left: 38px;
}
nav.main-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  padding: 4px 0 2px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-bottom 0.2s;
}
nav.main-nav a.active, nav.main-nav a:focus {
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-secondary);
  cursor: pointer;
  padding: 8px 15px;
  border-radius: 50%;
  transition: background 0.18s;
  margin-left: 24px;
  z-index: 161;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-pastel-lavender);
  color: var(--color-primary);
  outline: 2px solid var(--color-accent);
}
@media (max-width: 1100px) {
  nav.main-nav { gap: 14px; margin-left: 12px; }
}
@media (max-width: 890px) {
  nav.main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 90vw;
  max-width: 340px;
  height: 100vh;
  background: linear-gradient(130deg, var(--color-pastel-blue) 40%, var(--color-pastel-rose) 100%);
  box-shadow: -6px 0 38px rgba(163,137,114,0.13);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 22px 24px 22px;
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.36s cubic-bezier(.86,0,.07,1), opacity 0.2s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: var(--color-secondary);
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 38px;
  margin-left: auto;
  display: block;
  padding: 8px 18px 8px 8px;
  border-radius: 50%;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-pastel-rose);
  color: var(--color-primary);
  outline: 2px solid var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 23px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--color-primary);
  padding: 8px 0;
  letter-spacing: 0.01em;
  border-bottom: 1px solid transparent;
  transition: color 0.17s, border-bottom 0.17s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--color-secondary);
  border-bottom: 1px solid var(--color-secondary);
}

/* Overlay effect for mobile menu (for later JS if needed) */
body.menu-open {
  overflow: hidden;
}

/* FOOTER */
footer {
  background: var(--color-bg-section);
  color: var(--color-primary);
  padding: 0 0 24px 0;
  box-shadow: 0 -1px 16px var(--color-shadow);
}
footer .container {
  padding-top: 38px;
  padding-bottom: 0;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 22px;
  margin-bottom: 18px;
}
.footer-top .logo img {
  height: 42px;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--color-primary);
  opacity: 0.82;
  transition: opacity 0.17s, color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  opacity: 1;
  color: var(--color-secondary);
}
.social-icons {
  display: flex;
  gap: 12px;
}
.social-icons a img {
  width: 26px;
  height: 26px;
  filter: grayscale(0.2) brightness(1.1);
  transition: filter 0.18s, transform 0.15s;
}
.social-icons a:hover img, .social-icons a:focus img {
  filter: grayscale(0) drop-shadow(0 2px 8px #F7E4EB);
  transform: scale(1.08);
}
.footer-bottom {
  text-align: center;
  font-size: 0.93rem;
  color: var(--color-secondary);
  margin-top: 8px;
}

/* HERO */
.hero {
  background: linear-gradient(120deg, var(--color-pastel-mint) 60%, var(--color-pastel-lavender) 100%);
  border-radius: 24px;
  margin-bottom: 50px;
  padding: 60px 0 60px 0;
  box-shadow: 0 6px 44px var(--color-shadow);
}
.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}

/* FEATURES, CARDS & GRIDS */
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-section);
  border-radius: 22px;
}
.feature-grid, .advantage-grid, .personalization-grid, .unique-items-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 18px;
}
.feature-item, .unique-item, .personalization-grid > div, .advantage-grid > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 32px 22px;
  flex: 1 1 210px;
  max-width: 290px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform .15s;
}
.feature-item:hover, .unique-item:hover, .personalization-grid > div:hover, .advantage-grid > div:hover {
  box-shadow: 0 6px 30px var(--color-shadow);
  transform: translateY(-4px) scale(1.025);
}
.feature-item img, .unique-item img, .advantage-grid img, .personalization-grid img {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 4px 8px #F7E4EB88);
}

.usp-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 18px;
}
.usp-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.05rem;
  background: var(--color-pastel-blue);
  border-radius: 18px;
  padding: 10px 14px;
}
.usp-list img {
  width: 26px; height: 26px;
}

/* BADGES */
.badge {
  display: inline-block;
  background: var(--color-pastel-rose);
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: 26px;
  padding: 5px 19px;
  margin-right: 10px;
  margin-top: 7px;
  margin-bottom: 7px;
  box-shadow: 0 3px 12px var(--color-shadow);
  letter-spacing: 0.01em;
}
.badge:last-child { margin-right: 0; }
.guarantee-badges, .trust-signals, .authenticity-badges, .expertise-guarantee {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 8px 0;
}

/* TESTIMONIALS */
.testimonials h2, .testimonial-snippets h2 {
  margin-bottom: 16px;
}
.testimonial-grid, .testimonial-snippets {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: linear-gradient(113deg, var(--color-bg-light) 70%, var(--color-pastel-blue) 100%);
  box-shadow: 0 2px 16px var(--color-shadow);
  border-radius: 14px;
  min-width: 200px;
  max-width: 330px;
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.testimonial-card p {
  font-style: italic;
  font-size: 1.09rem;
  color: var(--color-primary);
}
.testimonial-name {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--color-secondary);
  letter-spacing: 0.02em;
}
.testimonial-stars {
  color: #F9B131;
  letter-spacing: 0.08em;
  font-size: 1.13em;
}

/* PANELS, VALUES, LISTS */
.panel {
  background: var(--color-pastel-yellow);
  border-radius: 18px;
  box-shadow: 0 1px 8px var(--color-shadow);
  padding: 24px 18px 18px 24px;
  margin-bottom: 18px;
}
.panel h3 {
  color: var(--color-primary);
  margin-bottom: 9px;
  font-weight: 700;
  letter-spacing: .01em;
}
.values-list, .history-timeline {
  margin-top: 9px;
  margin-bottom: 9px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.01rem;
}
.core-values ul {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.category-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

/* SERVICE LISTS */
.service-list, .reasons-list, .step-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 19px;
}
.service-list li, .reasons-list li {
  background: var(--color-pastel-mint);
  border-radius: 18px;
  color: var(--color-primary);
  padding: 14px 18px;
  font-size: 1.05rem;
  box-shadow: 0 2px 8px var(--color-shadow);
  display: flex;
  align-items: center;
  gap: 11px;
}
.service-list .service-price {
  font-family: var(--font-display);
  background: var(--color-pastel-rose);
  color: var(--color-secondary);
  border-radius: 12px;
  padding: 4px 10px;
  margin-left: 12px;
  font-size: 0.99rem;
}

ol.process-steps, ol.step-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 24px;
}
ol.process-steps li, ol.step-list li {
  font-size: 1.01rem;
  color: var(--color-primary);
}

.examples-of-success ul {
  margin-top: 8px;
  margin-bottom: 2px;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* CONTACT INFORMATION SECTIONS & MAP */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 10px;
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.map-snippet {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 120px;
  background: var(--color-pastel-blue);
  padding: 17px 18px;
  border-radius: 14px;
}
.map-snippet img {
  width: 64px;
  height: 64px;
}

/* BUTTONS GENERIC (for panel buttons, settings, etc.) */
.button, .cookie-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-accent);
  border: none;
  border-radius: 32px;
  padding: 11px 26px;
  box-shadow: 0 2px 10px var(--color-shadow);
  cursor: pointer;
  transition: background 0.18s, color 0.17s, box-shadow 0.16s, transform 0.12s;
  margin-right: 10px;
  margin-bottom: 5px;
}
.button:hover, .button:focus, .cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-pastel-mint);
  color: var(--color-secondary);
  box-shadow: 0 6px 24px var(--color-shadow);
  outline: none;
  transform: scale(1.04);
}
.button:active, .cookie-btn:active {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* LAYOUT & FLEXBOX SPACING PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  box-shadow: 0 2px 14px var(--color-shadow);
  border-radius: 18px;
  padding: 32px 22px;
}
.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;
}

/* Cookie Consent Banner (fixed to bottom, animated) */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: linear-gradient(93deg, var(--color-pastel-lavender) 70%, var(--color-pastel-mint) 100%);
  box-shadow: 0 -3px 30px #bdaea655;
  padding: 23px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 99999;
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.36s cubic-bezier(.86,0,.07,1), opacity 0.25s;
}
.cookie-consent-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-consent-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.cookie-buttons {
  display: flex;
  gap: 13px;
  margin-top: 8px;
}
.cookie-btn-accept {
  background: var(--color-pastel-mint);
  color: var(--color-primary);
}
.cookie-btn-reject {
  background: var(--color-pastel-rose);
  color: var(--color-secondary);
}
.cookie-btn-settings {
  background: var(--color-accent);
  color: var(--color-secondary);
}
.cookie-btn-accept:hover, .cookie-btn-settings:hover, .cookie-btn-reject:hover, .cookie-btn-accept:focus, .cookie-btn-reject:focus, .cookie-btn-settings:focus {
  color: var(--color-primary);
  background: var(--color-pastel-yellow);
}

/* Cookie Modal (preferences) */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(36,31,32,0.25);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.visible {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: var(--color-bg);
  border-radius: 32px;
  box-shadow: 0 9px 36px var(--color-shadow);
  width: 98vw;
  max-width: 420px;
  padding: 36px 26px 26px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  animation: modalFadeIn 0.44s cubic-bezier(.74,0,.23,1) both;
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(34px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-secondary);
  padding: 6px 12px;
  border-radius: 50%;
  transition: background 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--color-primary);
  background: var(--color-pastel-lavender);
}
.cookie-preference-category {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-pastel-blue);
  border-radius: 14px;
  padding: 10px 18px;
  margin-bottom: 13px;
}
.cookie-preference-category label {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-secondary);
  font-size: 1.05rem;
}
.cookie-switch input[type="checkbox"] {
  appearance: none;
  width: 42px;
  height: 24px;
  background: var(--color-pastel-mint);
  border-radius: 13px;
  position: relative;
  outline: none;
  box-shadow: 0 1px 4px var(--color-shadow);
  transition: background 0.18s;
  cursor: pointer;
  margin-left: 8px;
}
.cookie-switch input[type="checkbox"]:checked {
  background: var(--color-pastel-rose);
}
.cookie-switch input[type="checkbox"]:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 9px var(--color-shadow);
  transition: left 0.17s;
}
.cookie-switch input[type="checkbox"]:checked:before {
  left: 22px;
}
.cookie-preference-category input[disabled],
.cookie-preference-category input[disabled] + label {
  opacity: 0.65 !important;
  cursor: not-allowed;
}

/* LEGAL/INFO PAGE STYLING */
.legal .content-wrapper {
  margin-top: 38px;
  padding: 38px 18px;
  background: var(--color-pastel-lavender);
  border-radius: 18px;
  box-shadow: 0 1px 14px var(--color-shadow);
}
.legal h1 {
  font-size: 2.2rem;
}
.legal h2 {
  margin-top: 21px;
  font-size: 1.22rem;
  color: var(--color-secondary);
}
.legal ul, .legal p {
  margin-bottom: 13px;
}

/* THANK-YOU PAGE */
.hero .content-wrapper p {
  font-size: 1.15rem;
}
.hero .content-wrapper .cta-btn {
  margin-top: 22px;
}

/* Animations */
.cta-btn, .hero-cta, .button, .cookie-btn, .feature-item, .testimonial-card {
  transition: box-shadow 0.16s, background 0.18s, color .16s, transform 0.13s;
}

/* RESPONSIVE ADAPTATION */
@media(max-width: 1300px) {
  .container { max-width: 970px; }
}
@media(max-width: 980px) {
  .container { max-width: 94vw; }
  .feature-grid, .advantage-grid, .personalization-grid, .unique-items-grid, .testimonial-grid {
    gap: 18px;
  }
}
@media (max-width: 910px) {
  .footer-top { flex-direction: column; align-items: flex-start; gap: 18px; }
}
@media (max-width: 768px) {
  .content-wrapper, .hero .content-wrapper, .features .content-wrapper, .about .content-wrapper {
    gap: 22px;
    padding: 0;
  }
  .hero {
    padding: 38px 0 38px 0;
    border-radius: 18px;
  }
  .feature-grid, .advantage-grid, .personalization-grid, .unique-items-grid, .testimonial-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature-item, .unique-item, .personalization-grid > div, .advantage-grid > div {
    max-width: 100%;
    min-width: 0;
    padding: 20px 16px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
    padding: 16px;
  }
  .section {
    margin-bottom: 40px;
    padding: 24px 7px;
  }
  .card-container, .content-grid, .testimonials, .usp-list, .about, .services, .map-snippet {
    gap: 14px;
  }
  .contact-info {
    flex-direction: column;
    gap: 17px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .panel { padding: 14px 8px 8px 10px; }
}
@media (max-width: 576px) {
  .container { padding: 0 6px; }
  .hero { padding: 20px 0 20px 0; }
  h1 { font-size: 1.72rem; }
  h2 { font-size: 1.3rem; }
  .logo img { height: 38px; }
  .footer-top .logo img {height: 30px;}
}

/* FORMATTING FOR RAW TABLES IN TEXT-SECTIONS IF ANY (not in sample HTML but for completeness) */
.text-section table {
  width: 100%;
  background: var(--color-accent);
  border-collapse: collapse;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 14px;
}
.text-section th, .text-section td {
  padding: 10px 8px;
  border: 1px solid var(--color-border);
  text-align: left;
}

/* CARD-SPECIFIC CONTENT (raritaeten etc) */
.unique-item {
  background: var(--color-bg-light);
  border-radius: 18px;
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
}
.unique-item:hover { box-shadow: 0 6px 30px var(--color-shadow); }

/* Card hover microinteraction everywhere */
.card:hover, .unique-item:hover, .feature-item:hover {
  transform: translateY(-3px) scale(1.02);
  z-index: 2;
}

/* Misc */
::-webkit-input-placeholder { color: var(--color-placeholder); }
::-moz-placeholder { color: var(--color-placeholder); }
:-ms-input-placeholder { color: var(--color-placeholder); }
::placeholder { color: var(--color-placeholder); }

/* Hide visually but available for screenreaders */
.sr-only {
  border: 0 !important;
  clip: rect(1px,1px,1px,1px) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}
