/* ======================================================
   Blattgold Gartenservice – gradient_modern style.css
   Modern flexbox CSS for all pages (NO grid/column properties)
   ======================================================
*/

/* ========== 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #F4F1EC;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #2A5934;
  background: linear-gradient(135deg, #F4F1EC 0%, #E5EFE8 100%);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* Avoid scrollbar overlay issues on mobile */
  overflow-x: hidden;
}

*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-style: none;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }

section, main, footer, header, nav, aside, article {
  display: block;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'PT Serif', serif;
  color: #2A5934;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
  font-weight: 700;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 18px;
  font-weight: 700;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

p, li, ul {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #2A5934;
  font-size: 1rem;
}
p {
  margin-bottom: 14px;
}
ul, ol {
  margin-bottom: 16px;
  margin-left: 20px;
}
li {
  margin-bottom: 8px;
}
strong, b { font-weight: 700; }
em, i { font-style: italic; }

blockquote {
  font-style: italic;
  font-size: 1.1rem;
  color: #395E46;
  margin-bottom: 8px;
  border-left: 4px solid #7FB685;
  padding-left: 18px;
  background: #F4F1EC;
}

/* ========== BASIC LAYOUT ========== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

@media (max-width: 600px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-wrapper {
    gap: 16px;
  }
}

/* ========== SPACING & SECTION PATTERNS ========== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(42, 89, 52, 0.07);
  background: #fff;
}
.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;
  background: #F4F1EC;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(42,89,52,0.04);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 14px;
  margin-bottom: 20px;
}

/* ================== HEADER ================== */
header {
  background: linear-gradient(90deg, #F4F1EC 60%, #DAE5D7 100%);
  box-shadow: 0 2px 10px rgba(42,89,52,0.04);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header img {
  height: 48px;
  width: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  color: #2A5934;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
nav a:not(.cta):hover, nav a:not(.cta):focus {
  background: #DAE5D7;
  color: #17381F;
}
nav a.cta {
  background: linear-gradient(90deg, #7FB685 13%, #2A5934 95%);
  color: #fff;
  font-weight: 700;
  border-radius: 32px;
  padding: 9px 22px;
  box-shadow: 0 2px 8px rgba(42,89,52,0.06);
  letter-spacing: 0.02em;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
}
nav a.cta:hover, nav a.cta:focus {
  background: #2A5934;
  color: #F4F1EC;
  box-shadow: 0 5px 20px rgba(42,89,52,0.10);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #2A5934;
  cursor: pointer;
  margin-left: 18px;
  padding: 3px 8px 3px 3px;
  border-radius: 10px;
  transition: background 0.12s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #E5EFE8;
  color: #17381F;
}

@media (max-width: 1050px) {
  nav {
    gap: 16px;
  }
  header img {
    height: 38px;
  }
}

@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    gap: 14px;
  }
  nav a {
    font-size: 0.98rem;
    padding: 6px 10px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    padding-top: 8px;
    padding-bottom: 8px;
    gap: 11px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    z-index: 201;
  }
}

/* ================== MOBILE MENU ================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #F4F1EC 80%, #7FB685 120%);
  box-shadow: 0 6px 48px rgba(42,89,52,0.13);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 0 0 0;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(0.13,0.84,0.36,1.01);
}
.mobile-menu.active {
  transform: translateX(0);
  transition: transform 0.38s cubic-bezier(0.26,0.84,0.36,1.01);
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  border: none;
  color: #2A5934;
  padding: 18px 24px 6px 18px;
  align-self: flex-end;
  cursor: pointer;
  z-index: 221;
  transition: color 0.16s, background 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff;
  background: #2A5934;
  border-radius: 100px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  align-items: flex-start;
  padding: 18px 35px 0 35px;
}
.mobile-nav a {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #2A5934;
  font-size: 1.2rem;
  padding: 14px 0;
  width: 100%;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #E4F6E1;
  color: #17381F;
}
.mobile-nav a.cta {
  background: linear-gradient(90deg, #7FB685 0%, #2A5934 95%);
  color: #fff;
  font-weight: 700;
  border-radius: 28px;
  margin-top: 15px;
  padding: 14px 0;
  text-align: center;
  transition: background 0.19s, color 0.19s, box-shadow 0.22s;
  box-shadow: 0 2px 8px rgba(42,89,52,0.11);
}
.mobile-nav a.cta:hover, .mobile-nav a.cta:focus {
  background: #2A5934;
  color: #F4F1EC;
}
@media (min-width: 769px) {
  .mobile-menu { display: none!important; }
}

/* ========== HERO SECTION ========== */
.hero {
  background: linear-gradient(140deg, #7FB685 0%, #2A5934 100%);
  color: #fff;
  padding: 52px 0 46px 0;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 18px;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.18rem;
  color: #F4F1EC;
  margin-bottom: 14px;
}
.hero .cta {
  background: linear-gradient(90deg, #F4F1EC 10%, #DAE5D7 90%);
  color: #2A5934;
  font-weight: 700;
  border-radius: 32px;
  padding: 12px 32px;
  font-size: 1.1rem;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  box-shadow: 0 4px 20px rgba(42, 89, 52, 0.18);
  margin-top: 14px;
}
.hero .cta:hover, .hero .cta:focus {
  background: #fff;
  color: #235f37;
}

@media (max-width: 700px) {
  .hero { padding: 36px 0 28px 0; }
  .hero h1 { font-size: 1.5rem; }
  .hero .cta { font-size: 1rem; padding: 9px 18px; }
}

/* ========== FEATURES GRID ========== */
.features-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 11px;
}
.feature, .service {
  background: linear-gradient(100deg, #F4F1EC 85%, #DAE5D7 100%);
  border-radius: 17px;
  padding: 22px 18px;
  flex: 1 1 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 24px rgba(42,89,52,0.06);
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 350px;
  transition: box-shadow 0.18s, transform 0.17s, background 0.17s;
}
.feature:hover, .service:hover {
  box-shadow: 0 7px 33px rgba(42, 89, 52, 0.13);
  background: #fff;
  transform: translateY(-5px) scale(1.01);
}
.feature img, .service img {
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
}
.feature h3, .service h2 {
  font-size: 1.25rem;
  color: #2A5934;
}
.feature p, .service p {
  color: #395E46;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .features-grid, .service-list {
    flex-direction: column;
    gap: 14px;
  }
}

/* ========== PROJECTS / BLOG PREVIEWS ========== */
.project-list, .blog-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 11px;
}
.project-summary, .blog-preview {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 22px rgba(42, 89, 52, 0.08);
  flex: 1 1 320px;
  min-width: 230px;
  max-width: 420px;
  padding: 24px 18px 21px 18px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.18s, background 0.18s;
}
.project-summary:hover, .blog-preview:hover {
  background: #F4F1EC;
  box-shadow: 0 8px 36px rgba(42, 89, 52, 0.17);
  transform: translateY(-3px) scale(1.01);
}
.project-summary h2, .blog-preview h2 {
  font-size: 1.23rem;
  margin-bottom: 9px;
  color: #2A5934;
}
.project-summary ul, .blog-preview ul {
  margin-left: 18px;
}
.blog-preview a {
  color: #2A5934;
  font-weight: 600;
  margin-top: 7px;
  transition: color 0.15s, text-decoration 0.14s;
}
.blog-preview a:hover, .blog-preview a:focus {
  color: #7FB685;
  text-decoration: underline;
}

@media (max-width: 880px) {
  .project-list, .blog-preview-grid {
    flex-direction: column;
    gap: 13px;
  }
}

/* ========== BLOG CATEGORIES ========== */
.blog-categories {
  margin-top: 32px;
  font-size: 1rem;
  font-weight: 600;
}
.blog-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.blog-categories li {
  background: #E4F6E1;
  color: #2A5934;
  border-radius: 9px;
  padding: 5px 15px;
  font-size: 0.95rem;
}

/* ========== NEWSLETTER SIGNUP ========= */
.newsletter-signup {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 14px;
}

/* ========== TEXT SECTIONS / PLACEHOLDERS ========= */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.map-placeholder {
  background: #E5EFE8;
  color: #7FB685;
  padding: 38px 0;
  border-radius: 18px;
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  margin-top: 9px;
}

/* ========== CONTACT INFO ========== */
.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2A5934;
  font-size: 1.05rem;
  margin-bottom: 7px;
}
.contact-info img {
  width: 22px;
  height: 22px;
}

/* ========== CARDS GENERAL ========= */
.card, .feature, .service, .project-summary, .blog-preview {
  box-shadow: 0 1.5px 12px rgba(42, 89, 52, 0.04);
  border-radius: 15px;
  background: #fff;
  transition: box-shadow 0.2s, background 0.13s;
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
  background: #F4F1EC;
  color: #234430;
  border-left: 4px solid #7FB685;
  font-size: 1.06rem;
  min-width: 220px;
  box-shadow: 0 1.5px 8px rgba(42,89,52,0.04);
}
.testimonial-card blockquote {
  color: #234430;
  border-left: 0;
  padding-left: 0;
  margin-bottom: 3px;
  background: none;
}
.testimonial-card p {
  font-weight: 600;
  font-size: 0.98rem;
  color: #39744B;
  margin-bottom: 0;
}
@media (max-width:650px) {
  .testimonial-card {
    padding: 15px;
    flex-direction: column;
    gap: 14px;
  }
}

/* ========== CTA BUTTON (GENERAL) ========== */
.cta {
  background: linear-gradient(90deg, #7FB685 0%, #2A5934 100%);
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  border-radius: 30px;
  padding: 10px 28px;
  font-size: 1.08rem;
  box-shadow: 0 2px 13px rgba(42,89,52,0.07);
  transition: background 0.22s, color 0.19s, box-shadow 0.23s, transform 0.16s;
  border: none;
  cursor: pointer;
  display: inline-block;
  margin-top: 7px;
}
.cta:hover, .cta:focus {
  background: #2A5934;
  color: #F4F1EC;
  box-shadow: 0 7px 24px rgba(42, 89, 52, 0.17);
  transform: scale(1.025);
}
/* For better tap targets on mobile */
@media (max-width:650px){
  .cta { padding: 12px 16px; font-size:1rem; }
}

/* ========== FOOTER ========== */
footer {
  background: linear-gradient(90deg, #DAE5D7 0%, #F4F1EC 100%);
  color: #2A5934;
  font-size: 0.99rem;
  border-top: 1px solid #E5EFE8;
  margin-top: 60px;
  padding-top: 32px;
  padding-bottom: 25px;
  box-shadow: 0 -2px 20px rgba(42,89,52,0.05);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-menu a {
  color: #2A5934;
  opacity: 0.75;
  transition: color 0.16s, opacity 0.16s;
  font-size: 0.99rem;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #395E46;
  opacity: 1;
}
.contact-short-info {
  line-height: 1.7;
}
.brand-logo img {
  height: 39px;
  width: auto;
  opacity: 0.90;
  margin-top: 7px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #2A5934;
  color: #fff;
  padding: 18px 7vw 18px 7vw;
  box-shadow: 0 -2px 22px rgba(42,89,52, 0.14);
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  z-index: 2500;
  transition: transform 0.4s cubic-bezier(0.41,0.82,0.49,1.01), opacity 0.13s;
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__msg {
  flex: 1 1 440px;
  font-size: 1.04rem;
  line-height: 1.7;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  border: none;
  border-radius: 23px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  padding: 8px 20px;
  margin: 0;
  cursor: pointer;
  box-shadow: 0 1.5px 8px rgba(42,89,52,0.06);
  transition: background 0.19s, color 0.16s, box-shadow 0.18s, border 0.15s;
}
.cookie-btn-accept {
  background: #7FB685;
  color: #fff;
  font-weight: 700;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: #55a46e;
}
.cookie-btn-reject {
  background: #fff;
  color: #2A5934;
  font-weight: 700;
  border: 1.5px solid #7FB685;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: #E5EFE8;
  color: #2A5934;
}
.cookie-btn-settings {
  background: #DAE5D7;
  color: #2A5934;
  font-weight: 600;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #E5EFE8;
}
@media (max-width:650px){
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 19px 4vw 13px 4vw;
    gap: 14px;
    font-size: 1rem;
  }
  .cookie-banner__actions{
    flex-direction: row;
    gap: 10px;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 89, 52, 0.38);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #2A5934;
  border-radius: 22px;
  max-width: 415px;
  min-width: 270px;
  width: 95vw;
  padding: 36px 22px 28px 22px;
  box-shadow: 0 7px 40px rgba(42,89,52,0.23);
  display: flex;
  flex-direction: column;
  gap: 19px;
  z-index: 3500;
  position: relative;
  animation: cookieModalZoomIn 0.51s cubic-bezier(.6,1.63,.29,.97);
}
@keyframes cookieModalZoomIn {
  0% { opacity:0; transform:scale(.8);}
  90% { opacity:.99; transform:scale(1.04);}
  100%{opacity:1; transform:scale(1);}
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 0;
}
.cookie-modal-close {
  position: absolute;
  top: 11px; right: 13px;
  font-size: 1.7rem;
  color: #2A5934;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 3px;
  border-radius: 13px;
  transition: background 0.14s, color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #E4F6E1;
  color: #4b7464;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 17px;
}
.cookie-cat-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.cookie-cat-label {
  font-size: 1rem;
  font-weight: 600;
  flex: 1 1 55%;
}
.cookie-toggle {
  margin-left: auto;
}
.cookie-toggle input[type='checkbox'] {
  display: none;
}
.cookie-switch {
  display: inline-block;
  width: 42px;
  height: 22px;
  border-radius: 12px;
  background: #DAE5D7;
  position: relative;
  transition: background 0.19s;
  cursor: pointer;
}
.cookie-switch-on {
  background: #7FB685;
}
.cookie-switch::after {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(42,89,52,0.06);
  transition: left 0.22s;
}
input[type='checkbox']:checked + .cookie-switch {
  background: #7FB685;
}
input[type='checkbox']:checked + .cookie-switch::after {
  left: 22px;
}
.cookie-category-desc {
  font-size: 0.95rem;
  color: #39744B;
  margin-left: 34px;
}
@media (max-width:520px) {
  .cookie-modal {padding: 27px 7px 15px 7px;}
  .cookie-modal h2 {font-size: 1.05rem;}
}

/* ========== GENERAL - MISC STYLES ========== */
::-webkit-input-placeholder { color: #BFC9B8; }
::-moz-placeholder          { color: #BFC9B8; }
:-ms-input-placeholder      { color: #BFC9B8; }
::placeholder              { color: #BFC9B8; }

hr {
  border: 0;
  height: 1px;
  background: #E5EFE8;
  margin: 32px 0;
}

/* Accessibility - High contrast for important texts */
[aria-live] {
  color: #2A5934;
  background: #fff7e1;
}

/* === Responsive layouts for key flex containers === */
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 18px; }
  .content-grid { flex-direction: column; gap: 18px; }
}

/* ========== FORM ELEMENTS (for possible forms) ========== */
input, select, textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 16px;
  border: 1.5px solid #DAE5D7;
  padding: 10px 16px;
  margin-bottom: 14px;
  background: #fff;
  color: #2A5934;
  transition: border 0.16s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border: 1.5px solid #7FB685;
  box-shadow: 0 0 0 2px #E5EFE8;
}

/* ========== UTILITY CLASSES ========== */
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mb-24 { margin-bottom: 24px; }
.mt-18 { margin-top: 18px; }

/* ========== ANIMATIONS / MICRO-INTERACTION ========== */
.card, .feature, .service, .project-summary, .blog-preview, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.13s, background 0.15s;
}
.card:hover, .feature:hover, .service:hover, .project-summary:hover, .blog-preview:hover {
  box-shadow: 0 7px 33px rgba(42, 89, 52, 0.13);
  background: #F4F1EC;
  transform: translateY(-4px) scale(1.015);
}

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

/* ========== END OF Blattgold Custom CSS ========== */

