/* =================== CSS RESET & BASE =================== */
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #FBFAF8;
  color: #23272A;
}
/* Prevent default link style */
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  padding-left: 24px;
}
li {
  margin-bottom: 10px;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
  color: inherit;
}
button {
  cursor: pointer;
  background: none;
}

/* ===================== FONT IMPORT ================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #FBFAF8;
  color: #23272A;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6, .display {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #23272A;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.13;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.text-section h2, .text-section h1 {
  color: #23272A;
}
p, ul, ol {
  color: #2e3239;
  font-size: 1rem;
  margin-bottom: 12px;
}
strong, b {
  font-weight: 600;
}

/* Typography scale (for luxury feel) */
@media (min-width: 600px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.75rem; }
}

/* =================== CONTAINER & LAYOUT =================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.text-section {
  max-width: 720px;
}

@media (max-width: 850px) {
  .content-wrapper {
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
  }
  .hero .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===================== SECTIONS =====================*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features, .about-section, .cta-section, .design-features, .blog-feature,
.services-detail, .project-cases, .testimonials, .contact-details-section, .about-highlight {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
.hero {
  margin-bottom: 60px;
  background: #fff;
  border-bottom: 1px solid #EFE8DE;
  box-shadow: 0 4px 32px 0 rgba(45, 36, 24, 0.04);
  padding: 32px 0 28px 0;
  position: relative;
}
.hero .container {
  align-items: center;
  justify-content: center;
}

.cta-section {
  background: #fffbe5;
  border-radius: 20px;
  box-shadow: 0 2px 18px 0 rgba(231, 197, 138, 0.07);
}

@media (max-width: 768px) {
  .section, .features, .about-section, .about-highlight, .cta-section, .design-features, .blog-feature, .services-detail, .project-cases, .testimonials, .contact-details-section {
    margin-bottom: 40px;
    padding: 28px 0;
  }
  .hero {
    padding: 30px 0;
    margin-bottom: 36px;
  }
}

/* ================ HEADER & MAIN NAV ================ */
header {
  background: #fff;
  box-shadow: 0 2px 18px 0 rgba(45, 36, 24, 0.06);
  position: sticky;
  top: 0;
  z-index: 110;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 74px;
  min-height: 60px;
}
.logo {
  display: flex;
  align-items: center;
  height: 54px;
  margin-right: 16px;
}
.logo img {
  display: block;
  height: 44px;
  width: auto;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  font-size: 1rem;
}
nav a {
  position: relative;
  padding: 5px 2px;
  color: #23272A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: color .22s;
}
nav a:hover, nav a:focus {
  color: #E7C58A;
}
nav a.cta.primary {
  margin-left: 18px;
}

@media (max-width: 980px) {
  nav {
    gap: 16px;
    font-size: 15px;
  }
}
@media (max-width: 820px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* =========== CTA BUTTONS (reuse for links, nav, forms) ============= */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.13rem;
  letter-spacing: 0.01em;
  padding: 11px 30px;
  border-radius: 30px;
  background: #E7C58A;
  color: #23272A;
  box-shadow: 0 3px 20px 0 rgba(231,197,138, 0.13);
  border: none;
  transition: background .2s, color .2s, box-shadow .2s, outline .15s;
  outline: 0;
}
.cta.primary {
  background: #E7C58A;
  color: #23272A;
  border: 2px solid #E7C58A;
}
.cta.primary:hover, .cta.primary:focus {
  background: #23272A;
  color: #E7C58A;
  border-color: #E7C58A;
  box-shadow: 0 5px 20px 0 rgba(35,39,42,0.13);
}
/* Secondary button for cookie modals, etc. */
.cta.secondary {
  background: #23272A;
  color: #E7C58A;
  border: 2px solid #23272A;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #E7C58A;
  color: #23272A;
}

/* BUTTON MICROINTERACTION */
.cta {
  transition: background .18s, color .18s, box-shadow .18s, transform .10s;
}
.cta:active {
  transform: scale(.965);
}

/* ================ BURGER MENU (MOBILE NAV) ================ */
.mobile-menu-toggle {
  background: #fff;
  border-radius: 8px;
  height: 40px;
  width: 40px;
  color: #23272A;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #EFE8DE;
  box-shadow: 0 1px 5px rgba(35,39,42,0.05);
  display: none;
  z-index: 120;
  transition: border .2s, box-shadow .2s;
}
.mobile-menu-toggle:focus {
  border: 1.5px solid #E7C58A;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: #23272A;
  color: #fff;
  transform: translateX(-105%);
  transition: transform .35s cubic-bezier(.9, .05, .27, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100vw;
  height: 100vh;
  padding: 0 0 24px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #23272A;
  color: #E7C58A;
  font-size: 2.2rem;
  border-radius: 8px;
  border: 2px solid #E7C58A;
  margin: 18px 0 0 16px;
  padding: 4px 12px;
  align-self: flex-start;
  box-shadow: 0 2px 8px 0 rgba(231,197,138,0.10);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin: 32px 0 0 24px;
  gap: 22px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 12px 0;
  border-bottom: 1.5px solid rgba(255,255,255,0.07);
  min-width: 200px;
  transition: color .17s, border .2s;
  border-radius: 6px;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  color: #E7C58A;
}
@media (max-width: 820px) {
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 821px) {
  .mobile-menu {
    display: none;
  }
}

/* ===================== FOOTER ==================== */
footer {
  background: #fff;
  border-top: 1.5px solid #EFE8DE;
  margin-top: 60px;
  padding: 32px 0 8px 0;
  font-size: 0.94rem;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
footer nav {
  gap: 18px;
  font-size: 1rem;
}
footer nav a {
  color: #888;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  padding: 2px 0;
  transition: color .25s, border .15s;
}
footer nav a:hover {
  color: #23272A;
  border-bottom: 1px solid #E7C58A;
}
.footer-info {
  margin-top: 14px;
  color: #AAA;
  font-size: 0.94rem;
}
@media (max-width: 600px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .footer-info {
    margin-top: 14px;
  }
}

/* ================= CARD PATTERNS ================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 5px 24px rgba(35, 39, 42, 0.10);
  padding: 32px 22px 24px 22px;
  min-width: 280px;
  max-width: 370px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .22s, transform .17s;
  border: 1.5px solid #EFE8DE;
}
.card:hover {
  box-shadow: 0 10px 46px 0 rgba(231,197,138,0.18);
  border-color: #E7C58A;
  transform: translateY(-4px) scale(1.012);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* =============== FLEX GRIDS & CONTENT LAYOUTS =============== */
.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;
}
@media (max-width: 768px) {
  .content-grid,
  .text-image-section,
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
}

/***** Features grid (Index) *****/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 16px rgba(231,197,138,0.09);
  border: 1.5px solid #EFE8DE;
  padding: 28px 26px 22px 26px;
  min-width: 220px;
  max-width: 330px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .19s, border .17s, transform .13s;
}
.feature-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 7px;
}
.feature-item h3 {
  color: #23272A;
  font-size: 1.17rem;
  margin-bottom: 3px;
}
.feature-item .price {
  color: #E7C58A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.06rem;
  margin-top: 10px;
}
.feature-item:hover, .feature-item:focus {
  border-color: #E7C58A;
  box-shadow: 0 10px 40px 0 rgba(231,197,138,0.13);
  transform: translateY(-2px) scale(1.010);
}

@media (max-width: 900px) {
  .feature-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* ================= TESTIMONIALS ================ */
.testimonials .content-wrapper {
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 26px 22px 26px;
  background: #fff;
  box-shadow: 0 5px 28px 0 rgba(35,39,42,0.08);
  border-radius: 20px;
  border: 1.5px solid #EFE8DE;
  font-size: 1.04rem;
  margin-bottom: 20px;
  color: #23272A;
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
  transition: box-shadow .18s, border .17s, transform .12s;
}
.testimonial-card:hover {
  border-color: #E7C58A;
  box-shadow: 0 10px 40px 0 rgba(231,197,138,0.14);
  transform: scale(1.006);
}
.testimonial-card p {
  color: #23272A;
}
.testimonial-card span {
  font-style: italic;
  color: #B2B5BD;
  margin-left: 18px;
  font-size: 1.03rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 12px 15px 12px;
  }
}

/* ================ BLOG/PROJECT/CARD STYLES ================ */
.text-section {
  margin-bottom: 20px;
}
.text-section h3 {
  font-size: 1.23rem;
  margin-top: 18px;
  margin-bottom: 6px;
  color: #23272A;
}

/* ================ SERVICE LIST (Leistungen) ================ */
.services-detail ul {
  margin-top: 24px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.services-detail ul li {
  padding: 28px 24px 20px 28px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(231, 197, 138, 0.09);
  border: 1.5px solid #EFE8DE;
  margin-bottom: 12px;
  transition: box-shadow .16s, border .13s, transform .09s;
}
.services-detail ul li:hover {
  border-color: #E7C58A;
  box-shadow: 0 7px 30px 0 rgba(231,197,138,0.13);
  transform: translateY(-2px) scale(1.005);
}
.services-detail .price {
  color: #E7C58A;
  font-weight: 500;
  font-size: 1.06rem;
}

/* ============== PROJECT CASES (projekte) ============= */
.project-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}
.project-overview .text-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(231, 197, 138, 0.07);
  border: 1.5px solid #EFE8DE;
  padding: 22px 18px 15px 26px;
  flex: 1 1 250px;
  min-width: 270px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .project-overview {
    flex-direction: column;
    gap: 14px;
  }
}

/* ============= DESIGN FEATURES (galerie) ============= */
.design-features ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 26px;
}
.design-features li {
  background: #fff;
  box-shadow: 0 1px 12px 0 rgba(231, 197, 138, 0.08);
  border-radius: 14px;
  border: 1.2px solid #EFE8DE;
  padding: 18px 18px 12px 22px;
  font-size: 1.02rem;
}

/* =================== CONTACT =============== */
.contact-details-section ul {
  margin-top: 20px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-details-section ul li {
  background: #fff;
  border-radius: 14px;
  border: 1.2px solid #EFE8DE;
  box-shadow: 0 1px 12px 0 rgba(231, 197, 138, 0.08);
  padding: 14px 12px 11px 18px;
  font-size: 1.01rem;
  color: #23272A;
}
.contact-details-section ul li a {
  color: #E7C58A;
  text-decoration: underline;
}

/*============== LEGAL PAGES ==========*/
.legal-section .text-section {
  font-size: 1.05rem;
}
.legal-section ul {
  margin: 24px 0 10px 0;
}
.legal-section li {
  margin-bottom: 15px;
}

/* =============== THANK YOU ================== */
.thank-you-section {
  padding: 54px 0 60px 0;
  text-align: center;
}
.thank-you-section .text-section {
  max-width: 420px;
  margin: 0 auto;
}

/* =================== LUXURY DETAILS (ACCENTS, GOLD LINES) ================== */
h1, h2, h3, .cta.primary, .feature-item .price, .services-detail .price {
  letter-spacing: .015em;
}
.section h2, .hero h1 {
  border-bottom: 3px solid #E7C58A;
  display: inline-block;
  padding-bottom: 7px;
  margin-bottom: 19px;
}
@media (max-width: 768px) {
  .section h2, .hero h1 {
    padding-bottom: 4px;
    margin-bottom: 13px;
  }
}

/* ================== LUXURY SHADOW (All Cards, Subtle) ================= */
.card, .feature-item, .testimonial-card, .services-detail ul li, .project-overview .text-section, .design-features li, .contact-details-section ul li {
  box-shadow: 0 4px 28px 0 rgba(231, 197, 138, 0.10);
}

/* =================== SPACING CLARITY =================== */
main > section, .section {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  main > section, .section {
    margin-bottom: 36px;
  }
}
.section + .section {
  margin-top: 20px;
}

/* ====================== COOKIE CONSENT ===================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 999;
  background: #fffbe5;
  color: #23272A;
  box-shadow: 0 -2px 30px rgba(35,39,42,0.07);
  border-top: 2.5px solid #E7C58A;
  padding: 22px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  font-size: 1rem;
  justify-content: space-between;
  opacity: 1;
  transition: opacity .45s cubic-bezier(.58,0,.31,1);
  animation: cookie-banner-in .65s ease;
}
@keyframes cookie-banner-in {
  0% { transform: translateY(100%); opacity:0; }
  100% { transform: translateY(0); opacity:1;}
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-msg {
  flex: 1 1 auto;
  max-width: 500px;
  color: #23272A;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.cookie-banner .cta {
  font-size: 0.98rem;
  padding: 8px 20px;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 16px 10px 16px 10px;
  }
  .cookie-banner .cookie-actions {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 1101;
  background: rgba(35,39,42,0.40);
  display: none;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-in .35s cubic-bezier(.68, -.55, .27, 1.55);
}
.cookie-modal-overlay.active {
  display: flex;
}
@keyframes cookie-modal-in {
  0% { opacity:0; }
  100% { opacity:1;}
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 50px 0 rgba(35,39,42,0.16);
  padding: 36px 28px 28px 28px;
  max-width: 420px;
  width: 98%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 1.01rem;
}
.cookie-modal h2 {
  font-size: 1.32rem;
  margin-bottom: 7px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 18px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
}
.cookie-modal .cookie-category label {
  font-weight: 500;
  color: #23272A;
}
.cookie-modal .cookie-toggle {
  margin-right: 0;
}
.cookie-modal .cta {
  margin-right: 8px;
  min-width: 96px;
}
.cookie-modal .close {
  position: absolute;
  top: 14px; right: 19px;
  background: #fff;
  border-radius: 7px;
  color: #23272A;
  font-size: 1.4rem;
  border: 1.2px solid #E7C58A;
  padding: 3px 9px;
  transition: background .16s, border .18s, color .18s;
}
.cookie-modal .close:hover {
  background: #E7C58A;
  color: #23272A;
  border-color: #23272A;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 24px 10px 18px 10px;
  }
}

/****** Cookie custom toggles ******/
.cookie-toggle {
  appearance: none;
  width: 34px;
  height: 20px;
  border-radius: 50px;
  background: #EFE8DE;
  position: relative;
  outline: none;
  cursor: pointer;
  box-shadow: 0 1px 7px 0 rgba(231,197,138,0.14);
  transition: background .23s;
}
.cookie-toggle:checked {
  background: #E7C58A;
}
.cookie-toggle:disabled {
  background: #B2B5BD;
  cursor: not-allowed;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(35,39,42,0.10);
  transition: left .2s;
  z-index: 2;
}
.cookie-toggle:checked:before {
  left: 16px;
}

/* ====================== RESPONSIVE ======================== */
@media (max-width: 1180px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  h1 { font-size: 2.13rem; }
  h2 { font-size: 1.42rem; }
  .section,.hero,main>section {
    margin-bottom: 30px;
    padding: 24px 0;
  }
  .feature-item, .services-detail ul li {
    padding: 16px 12px 12px 16px;
  }
}
@media (max-width: 540px) {
  .container {
    padding: 0 10px;
  }
  .card, .feature-item, .testimonial-card, .services-detail ul li, .project-overview .text-section, .design-features li, .contact-details-section ul li {
    padding: 13px 7px 10px 11px;
    min-width: unset;
    max-width: unset;
  }
  .hero .container {
    padding: 0 4px;
  }
}

/* Focus state for accessibility */
a:focus, button:focus, .cta:focus, .mobile-nav a:focus {
  outline: 2px solid #E7C58A;
  outline-offset: 1px;
}

/* ===== Selection Styles ===== */
::selection {
  background: #E7C58A;
  color: #23272A;
}

/* =================== GOLD ACCENT CLASSES ====================== */
.gold {
  color: #E7C58A;
}
.bg-gold {
  background: #E7C58A !important;
  color: #23272A !important;
}

/* ================== SCROLLBAR STYLING (luxury detail) =============== */
::-webkit-scrollbar {
  width: 8px;
  background: #f7f3ea;
}
::-webkit-scrollbar-thumb {
  background: #E7C58A;
  border-radius: 8px;
}

/* =================== MICRO INTERACTIONS & ANIMATION =================== */
.card, .feature-item, .testimonial-card, .services-detail ul li, .project-overview .text-section, .design-features li, .contact-details-section ul li, .cta {
  transition: box-shadow .18s, border .14s, transform .10s, background .12s, color .13s;
}
.card:active, .feature-item:active, .testimonial-card:active, .cta:active {
  transform: scale(.983);
}

/* ====== Hide visually but keep for screenreaders ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
