/* ================================================== */
/*      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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #F6F4E6;
  color: #27473F;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
}
img, video {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #426945;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #ADC178;
}
ul, ol {
  list-style: none;
}
strong, b {
  font-weight: 700;
}

/* Font Imports (Montserrat for display, Lato for body) */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@700;900&display=swap');

/* ================================================== */
/*      BRANDING COLORS & FONTS                       */
/* ================================================== */
:root {
  --color-primary: #27473F;
  --color-secondary: #ADC178;
  --color-accent: #F6F4E6;
  --color-dark: #2A2E25;
  --color-white: #FFFFFF;
  --color-grey: #D8D8D8;
  --color-shade: #e7e6dc;
  --color-warning: #FCDA77;

  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Lato', Arial, Helvetica, sans-serif;
}

/* Artistic, playful extras */
body {
  background: var(--color-accent);
  letter-spacing: 0.01em;
}

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}

/* ================================================== */
/*      TYPOGRAPHY                                    */
/* ================================================== */
h1, .hero-section h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.18;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1.21;
  margin-bottom: 12px;
  letter-spacing: 0.011em;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
}
.subheadline {
  font-size: 1.125rem;
  font-family: var(--font-body);
  color: #3A5242;
  line-height: 1.7;
  margin-bottom: 8px;
  font-style: italic;
}
p, li, dt, dd {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 8px;
  line-height: 1.7;
}
ul, ol, dl {
  margin-bottom: 12px;
  padding-left: 18px;
}
dl { margin-bottom: 0; }
dl dt {
  margin-bottom: 4px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--color-secondary);
}
dl dd {
  margin-bottom: 12px;
}
.text-section ul {
  padding-left: 24px;
  list-style-type: disc;
}
.text-section li {
  margin-bottom: 6px;
}

/* Artistic subtitles */
h2, h3 {
  position: relative;
}
h2::after, .hero-section h1::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: var(--color-secondary);
  border-radius: 2px;
  margin-top: 8px;
}

/* ================================================== */
/*      HEADER & NAVIGATION                           */
/* ================================================== */
header {
  background: var(--color-white);
  box-shadow: 0 1px 12px 0 rgba(39, 71, 63, 0.06);
  position: sticky;
  top: 0;
  z-index: 99;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
  border-radius: 16px;
  padding: 5px 16px;
  transition: background 0.18s, color 0.18s;
  position: relative;
  z-index: 1;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--color-secondary);
  color: #FFF;
}
header img {
  height: 42px;
}

/* Burger menu button for mobile */
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: var(--color-primary);
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 18px;
  transition: box-shadow 0.2s;
  z-index: 110;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-primary);
  color: #FFF;
  box-shadow: 0 2px 8px 0 rgba(39,71,63,0.18);
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(39,71,63,0.98);
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  align-self: flex-end;
  margin: 24px 24px 8px 0;
  cursor: pointer;
  z-index: 9999;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 32px;
  padding-left: 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.38rem;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 6px 0;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  padding-left: 16px;
}

/* Hide desktop nav on mobile, show burger */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .header-flex {
    gap: 14px;
  }
}
@media (max-width: 600px) {
  .mobile-nav {
    padding-left: 18px;
    margin-top: 24px;
  }
}

/* ================================================== */
/*      BUTTONS & LINKS                               */
/* ================================================== */
.btn-primary {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  padding: 11px 34px;
  border-radius: 30px 10px 30px 10px;
  margin: 10px 0;
  display: inline-block;
  box-shadow: 0 3px 14px rgba(39,71,63,0.11);
  transition: background 0.23s, color 0.23s, box-shadow 0.23s, transform 0.18s;
  cursor: pointer;
  text-align: center;
  position: relative;
  z-index: 1;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--color-primary);
  color: #FFF;
  box-shadow: 0 5px 20px rgba(39,71,63,0.19);
  transform: translateY(-2px) scale(1.025);
}

a.btn-primary {
  text-decoration: none;
}

/* ================================================== */
/*      SECTIONS & GAPS (MANDATORY PATTERNS)          */
/* ================================================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px 6px 18px 6px;
  box-shadow: 0 2px 14px rgba(39,71,63,0.08);
  padding: 24px 20px 24px 32px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 24px rgba(173,193,120,0.28);
  transform: translateY(-3px) scale(1.02);
}
.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: #fff;
  border-radius: 16px 24px 16px 24px;
  box-shadow: 0 3px 18px rgba(39,71,63,0.11);
  margin-bottom: 24px;
  flex-direction: column;
  max-width: 650px;
  transition: box-shadow 0.20s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 38px rgba(173,193,120,0.22);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-info {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 1.1rem;
  color: var(--color-primary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Additional spacing for content sections */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (max-width: 900px) {
  .section, section {
    margin-bottom: 36px;
    padding: 28px 6px 28px 6px;
  }
}

/* ================================================== */
/*      HERO, FEATURES, ABOUT, CATEGORIES, ETC.       */
/* ================================================== */
.hero-section {
  background: linear-gradient(91deg, #ADC178 0%, #F6F4E6 100%);
  box-shadow: 0 8px 36px 0 rgba(39,71,63,0.13);
  margin-bottom: 54px;
  border-radius: 0 0 36px 36px;
  padding-bottom: 60px;
}
@media (max-width: 600px) {
  .hero-section {
    padding-bottom: 38px;
    border-radius: 0 0 18px 18px;
  }
}
.hero-section h1 {
  color: var(--color-primary);
  font-size: 2.4rem;
}
.hero-section p {
  font-size: 1.18rem;
  color: #3A5242;
  margin-bottom: 18px;
}

/* Features Grid */
.feature-grid, .service-list-grid, .team-bio-grid, .project-category-grid, .category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
}
.feature-grid > div, .service-list-grid > .service-card, .team-bio-grid > div, .project-category-grid > div, .category-list > div {
  flex: 1 1 220px;
  background: #FFF;
  border-radius: 20px 6px;
  box-shadow: 0 2px 12px 0 rgba(39,71,63,0.07);
  padding: 24px 18px;
  min-width: 220px;
  transition: box-shadow 0.18s, transform 0.16s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  margin-bottom: 20px;
}
.feature-grid > div:hover, .service-list-grid > .service-card:hover, .team-bio-grid > div:hover, .project-category-grid > div:hover, .category-list > div:hover {
  box-shadow: 0 6px 28px 4px rgba(173,193,120,0.22);
  transform: translateY(-4px) scale(1.018);
}
.feature-grid img, .team-bio-grid img, .project-category-grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
}
.price {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--color-secondary);
  font-size: 1.1rem;
  margin-top: 6px;
}

/* About / Philosophy Section */
.about-highlight, .about-section {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 1px 12px 0 rgba(39, 71, 63, 0.07);
}
.brand-values li {
  font-size: 1rem;
  margin-bottom: 5px;
}

/* Team grid responsive fix */
@media (max-width: 900px) {
  .feature-grid, .service-list-grid, .team-bio-grid, .project-category-grid, .category-list {
    gap: 18px;
  }
  .feature-grid > div, .service-list-grid > .service-card, .team-bio-grid > div, .project-category-grid > div, .category-list > div {
    min-width: 160px;
  }
}
@media (max-width: 600px) {
  .feature-grid, .service-list-grid, .team-bio-grid, .project-category-grid, .category-list {
    flex-direction: column;
    gap: 12px;
  }
  .feature-grid > div, .service-list-grid > .service-card, .team-bio-grid > div, .project-category-grid > div, .category-list > div {
    min-width: 0;
    width: 100%;
    margin-bottom: 8px;
  }
}

/* USP List, Promise */
.usp-list {
  margin-bottom: 22px;
  font-size: 1.045rem;
  color: var(--color-primary);
}
.brand-promise {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 16px 30px 16px 30px;
  padding: 18px 24px;
  font-size: 1.13rem;
  font-family: var(--font-display);
  box-shadow: 0 2px 14px rgba(39,71,63,0.15);
  margin-top: 18px;
}

/* Process Steps */
.process-steps {
  margin-bottom: 24px;
  padding-left: 16px;
}
.process-steps li {
  margin-bottom: 12px;
  font-size: 1.07rem;
  font-family: var(--font-body);
}

/* FAQ Section */
.faq-list dt {
  margin-bottom: 2px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--color-secondary);
}
.faq-list dd {
  margin-bottom: 14px;
  padding-left: 8px;
  font-size: 1rem;
  color: var(--color-primary);
}

/* Newsletter, Contact Teaser, CTA Banner */
.newsletter-signup, .contact-teaser, .contact-cta-banner {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 24px 8px 24px 8px;
  box-shadow: 0 2px 14px rgba(39,71,63,0.13);
  text-align: left;
}
.newsletter-signup h2, .contact-teaser h2, .contact-cta-banner h2 { color: var(--color-primary); }
.newsletter-signup p, .contact-teaser p, .contact-cta-banner p {
  color: var(--color-primary);
}

/* Map Placeholder */
.map-placeholder {
  background: var(--color-shade);
  border-radius: 14px;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6A7D6E;
  font-size: 1.1rem;
  font-family: var(--font-display);
  margin-top: 10px;
  margin-bottom: 20px;
}

/* Contact Details Block */
.contact-details-block img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
}
.contact-details-block ul {
  margin: 0 0 12px 0;
  padding-left: 0;
  list-style: none;
}
.contact-details-block li {
  margin-bottom: 8px;
  color: var(--color-primary);
  font-size: 1.01rem;
  display: flex;
  align-items: center;
}

/* ================================================== */
/*      TESTIMONIALS                                 */
/* ================================================== */
.testimonials-section, .portfolio-testimonials {
  background: #FFF;
  border-radius: 24px 8px 24px 8px;
  padding: 38px 18px;
  margin-bottom: 48px;
  box-shadow: 0 1px 16px rgba(39,71,63,0.10);
}
.testimonial-card {
  background: #FFF;
  color: var(--color-dark);
  font-size: 1.12rem;
  border-left: 6px solid var(--color-secondary);
  border-radius: 14px 24px 14px 24px;
  margin-bottom: 28px;
  padding: 22px 16px 12px 24px;
  box-shadow: 0 3px 10px 0 rgba(39,71,63,0.09);
  font-family: var(--font-body);
  transition: box-shadow 0.16s, transform 0.15s;
  max-width: 650px;
}
.testimonial-card em {
  color: var(--color-primary);
}
.testimonial-info strong {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--color-primary);
}
.testimonial-info span:last-child {
  color: var(--color-secondary);
  font-size: 1.09rem;
  margin-left: 12px;
  letter-spacing: 0.05em;
}

/* Contrast for testimonials/reviews */
.testimonial-card,
.testimonial-card p,
.testimonial-card em {
  background: #fff;
  color: #2a2e25;
}

/* ================================================== */
/*      FOOTER                                        */
/* ================================================== */
footer {
  background: var(--color-primary);
  color: #FFF;
  padding: 40px 0 22px 0;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -3px 36px 0 rgba(39,71,63,0.07);
  margin-top: 70px;
  width: 100%;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
footer a {
  color: #F6F4E6;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin: 0 3px;
  transition: color 0.14s;
}
footer a:hover,
footer a:focus {
  color: var(--color-secondary);
  text-decoration: underline;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
  margin-top: 4px;
}
footer img {
  height: 38px;
  margin-bottom: 10px;
}
.contact-info {
  margin-top: 8px;
  color: #E4E7DD;
  font-size: 0.97rem;
  line-height: 1.6;
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.contact-info img {
  height: 18px;
  width: 18px;
  margin-right: 5px;
  vertical-align: middle;
}

@media (max-width: 800px) {
  footer {
    padding: 26px 0 14px 0;
    border-radius: 18px 18px 0 0;
  }
  .footer-nav {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
  .contact-info {
    align-items: center;
  }
}

/* ================================================== */
/*      COOKIE CONSENT BANNER                         */
/* ================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2A2E25;
  color: #FFF;
  z-index: 4500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 32px;
  font-size: 1rem;
  font-family: var(--font-body);
  box-shadow: 0 -2px 20px 0 rgba(39, 71, 63, 0.18);
  animation: banner-slide-up 0.5s cubic-bezier(0.7,0.4,0.65,1) 1;
}
@keyframes banner-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 16px;
}
.cookie-btn {
  padding: 9px 18px;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 20px 8px 20px 8px;
  font-size: 1rem;
  margin-right: 4px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.15s;
}
.cookie-btn-accept {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-btn-accept:hover,
.cookie-btn-accept:focus {
  background: var(--color-primary);
  color: #FFF;
}
.cookie-btn-reject {
  background: #fff;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}
.cookie-btn-reject:hover,
.cookie-btn-reject:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-btn-settings {
  background: transparent;
  color: #FCDA77;
  border: 2px solid #FCDA77;
}
.cookie-btn-settings:hover,
.cookie-btn-settings:focus {
  background: #FCDA77;
  color: var(--color-primary);
}
/* Responsive cookie banner */
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 13px;
    font-size: 0.98rem;
    gap: 12px;
  }
  .cookie-banner-buttons {
    margin-left: 0;
    gap: 10px;
  }
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  z-index: 5000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(39, 71, 63, 0.79);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.33s;
  animation: modal-fade-in 0.4s cubic-bezier(0.7,0.4,0.65,1);
}
@keyframes modal-fade-in {
  from { opacity: 0.5; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px 6px 18px 6px;
  padding: 30px 30px 24px 30px;
  width: 96vw;
  max-width: 400px;
  color: var(--color-primary);
  font-family: var(--font-body);
  box-shadow: 0 6px 38px 0 rgba(39,71,63,0.23);
  animation: modal-pop 0.28s cubic-bezier(0.7,0.4,0.65,1) 1;
  position: relative;
}
@keyframes modal-pop {
  from { transform: scale(0.92); opacity: 0.1; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--color-secondary);
  font-size: 1.25rem;
  font-family: var(--font-display);
  margin-bottom: 12px;
}
.cookie-modal ul {
  margin: 8px 0 12px 0;
  padding-left: 2px;
}
.cookie-modal li {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-toggle {
  appearance: none;
  border: 2px solid var(--color-secondary);
  width: 36px; height: 20px;
  border-radius: 13px;
  background: #f3f5e5;
  position: relative;
  transition: background 0.16s, border 0.16s;
}
.cookie-toggle:checked {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: var(--color-primary);
  transition: left 0.22s cubic-bezier(0.56,0,0.42,1), background 0.16s;
}
.cookie-toggle:checked:before {
  left: 18px;
  background: #fff;
}
.cookie-modal .cookie-categories {
  margin-bottom: 22px;
}
.cookie-modal .cookie-btn {
  margin-top: 8px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: var(--color-primary);
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: var(--color-secondary);
}

/* Ensure consent banners are above all */
.cookie-banner, .cookie-modal-overlay {
  z-index: 10000;
}

/* ================================================== */
/*      RESPONSIVE FLEXBOX LAYOUTS & SPACING          */
/* ================================================== */
@media (max-width: 1000px) {
  .container {
    padding: 0 8px;
    max-width: 99vw;
  }
}
@media (max-width: 768px) {
  .content-grid, .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card, .feature-grid > div, .service-list-grid > .service-card {
    width: 100%;
    min-width: unset;
    max-width: 100vw;
  }
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .brand-promise {
    padding: 14px;
  }
}

@media (max-width: 550px) {
  .container {
    padding: 0 3vw;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .section, section {
    padding: 12px 2px;
    margin-bottom: 18px;
  }
}

/* ================================================== */
/*      MICRO-INTERACTIONS / ANIMATION                */
/* ================================================== */
.btn-primary, .cookie-btn, .main-nav a, .mobile-nav a {
  transition: background 0.20s, color 0.20s, box-shadow 0.20s, transform 0.13s;
}

.feature-grid > div::before, .service-list-grid > .service-card::before {
  content: '';
  display: block;
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px; height: 12px;
  border-radius: 50px 16px 50px 16px;
  background: var(--color-shade);
  opacity: 0.22;
  z-index: 0;
}

.feature-grid > div:hover::before, .service-list-grid > .service-card:hover::before {
  opacity: 0.38;
}

/* Artistic brush stroke for creative vibe */
h1, h2 {
  position: relative;
  z-index: 2;
}
h1::before, h2::before {
  content: '';
  position: absolute;
  left: 0; top: 60%;
  width: 72px; height: 15px;
  background: var(--color-warning);
  opacity: 0.19;
  border-radius: 9px 18px 11px 6px;
  z-index: -1;
  pointer-events: none;
}
h2::before {
  width: 44px; height: 10px; top: 85%; left: 1px;
}
@media (max-width: 600px) {
  h1::before, h2::before {
    width: 33vw;max-width:49px;height:10px;left:0;top:90%;
  }
}

/* ================================================== */
/*      MISC                                        */
/* ================================================== */
::-webkit-scrollbar {
  width: 12px;
  background: #e7e6dc;
}
::-webkit-scrollbar-thumb {
  background: #ADC178;
  border-radius: 8px;
}

::-selection {
  background: #ADC178;
  color: #FFF;
}

/* Hide outline except TAB focus */
:focus { outline: 2px dashed var(--color-secondary); outline-offset: 2px; }
:focus:not(:focus-visible) { outline: none; }

/* Hide decorative elements from screen readers */
[aria-hidden='true'] {
  opacity: 0.16;
  pointer-events: none;
}

/* Ensure all cards and content sections have minimum 20px margin between them */
.card, .service-card, .feature-grid > div, .testimonial-card, .brand-promise, .project-category-grid > div, .category-list > div {
  margin-bottom: 20px;
}

/* ----------------------------------------------- */
/* END SMOOTH ADJUST CSS FOR CREATIVE_ARTISTIC STYLE */

