/* RESET & BASE TYPOGRAPHY */
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, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, main, 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;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background: #FFFFFF;
  color: #475D39;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-width: 320px;
}
main, header, footer, section, nav, article, aside {
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Kanit", 'Roboto', Arial, Helvetica, sans-serif;
  color: #384928;
  font-weight: 700;
}
h1 {
  font-size: 2.75rem;
  letter-spacing: -2px;
  margin-bottom: 20px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.2;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-weight: 600;
}
p, ul, ol, li {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #475D39;
  margin-bottom: 10px;
}
ul, ol {
  padding-left: 20px;
}
a {
  color: #FFBC42;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #475D39;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
}
*{
  box-sizing: border-box;
}

/* CONTAINER LAYOUT */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

/* ============ HEADER & NAVIGATION ============ */
header {
  background: #CDF0EA;
  border-bottom: 4px solid #FFBC42;
  box-shadow: 0 4px 24px rgba(70, 58, 41, 0.04);
  position: relative;
}
.site-logo img {
  height: 54px;
  width: auto;
  display: block;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 16px 22px 16px;
}
.main-nav {
  display: flex;
  gap: 22px;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
}
.main-nav a {
  color: #384928;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: .5px;
  padding: 11px 6px;
  border-radius: 18px;
  position: relative;
  transition: background .15s, color .2s;
}
.main-nav a:hover, .main-nav a.active {
  background: #FFBC42;
  color: #fff;
  text-decoration: none;
}
.button-primary {
  background: #FFBC42;
  color: #384928;
  border: none;
  font-family: "Kanit", 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 13px 30px;
  border-radius: 25px 25px 18px 18px;
  box-shadow: 0 5px 20px rgba(70, 58, 41, 0.06);
  letter-spacing: 0.5px;
  cursor: pointer;
  outline: none;
  transition: background .22s, color .18s, transform .15s;
  position: relative;
  z-index: 1;
}
.button-primary:hover, .button-primary:focus {
  background: #475D39;
  color: #fff;
  transform: translateY(-2px) scale(1.045);
}
.button-secondary {
  background: #475D39;
  color: #fff;
  border: none;
  font-family: "Kanit", 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 11px 26px;
  border-radius: 19px 16px 19px 16px;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(39, 51, 23, 0.11);
  transition: background .18s, color .13s, transform .12s;
  cursor: pointer;
  outline: none;
  position: relative;
  z-index: 1;
}
.button-secondary:hover, .button-secondary:focus {
  background: #FFBC42;
  color: #384928;
  transform: translateY(-1.3px) scale(1.045);
}

/* ============ MOBILE NAVIGATION ============ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  z-index: 903;
  font-size: 2rem;
  background: #FFBC42;
  color: #384928;
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(255, 188, 66, 0.1);
  cursor: pointer;
  transition: background .18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #475D39;
  color: #fff;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #CDF0EA;
  z-index: 9999;
  overflow-y: auto;
  padding-top: 48px;
  transform: translateX(-100vw);
  transition: transform .45s cubic-bezier(0.77,0,0.175,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #FFBC42;
  border: none;
  color: #384928;
  font-size: 2.1rem;
  width: 48px;
  height: 48px;
  margin: 10px 22px 0 0;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(255, 188, 66, 0.13);
  transition: background .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #475D39;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-top: 32px;
  gap: 16px;
  width: 90%;
  max-width: 400px;
  align-self: center;
}
.mobile-nav a {
  background: #475D39;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 17px 30px;
  border-radius: 17px 30px 17px 30px;
  letter-spacing: 0.2px;
  text-align: center;
  transition: background .15s, color .1s;
  box-shadow: 0 2px 8px rgba(71,93,57,0.04);
  margin-bottom: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFBC42;
  color: #384928;
}

/* Show mobile nav toggle at <=900px */
@media (max-width:900px) {
  .main-nav {
    display: none;
  }
  .button-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Hide mobile menu on wide screens */
@media (min-width:901px) {
  .mobile-menu,
  .mobile-menu.open {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* ============ HERO and ARTISTIC ACCENTS ============ */
.hero {
  min-height: 48vh;
  padding: 0;
  margin-bottom: 60px;
  background: #FFBC42;
  background-image: repeating-linear-gradient(-45deg, #FFBC42 0px, #FFBC42 30px, #CDF0EA 30px, #CDF0EA 60px);
  border-bottom: 6px solid #475D39;
  border-radius: 0 0 48px 0;
  box-shadow: 0 14px 64px rgba(71, 93, 57, 0.08);
  position: relative;
  overflow: hidden;
}
.hero .container {
  min-height: 48vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
  background: rgba(255,255,255,0.80);
  padding: 36px 22px;
  margin: 34px 0 16px 0;
  border-radius: 26px 44px 16px 32px;
  box-shadow: 0 2.5px 20px rgba(71, 93, 57, 0.1);
  z-index: 1;
}
.hero h1 {
  color: #384928;
  font-family: "Kanit", 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  letter-spacing: -1.2px;
  margin-bottom: 8px;
}
.hero .subheadline {
  color: #475D39;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

/* ==== FLEX LAYOUT UTILS ==== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 28px;
  box-shadow: 0 4px 18px rgba(71,93,57,.09);
  background: #fff;
  transition: box-shadow .19s, transform .15s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 9px 36px rgba(255, 188, 66, .22);
  transform: translateY(-4px) scale(1.012);
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  background: #fff;
  border-radius: 24px 44px 24px 44px;
  box-shadow: 0 6px 28px rgba(205, 240, 234, 0.19);
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 340px;
  transition: box-shadow .21s, transform .13s;
}
.testimonial-card .stars {
  color: #FFBC42;
  font-size: 1.28rem;
  font-family: "Kanit", 'Roboto', Arial, Helvetica, sans-serif;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: 1.05rem;
  margin-bottom: 6px;
  font-style: italic;
  color: #475D39;
  text-align: center;
}
.testimonial-card .testimonial-author {
  color: #475D39;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.4px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ============ FEATURE GRIDS & SERVICES ============ */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature {
  background: #CDF0EA;
  border-radius: 22px 38px 22px 38px;
  box-shadow: 0 2px 10px rgba(71,93,57,.07);
  padding: 28px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  flex: 1 1 250px;
  margin-bottom: 8px;
  position: relative;
  transition: background .2s, box-shadow .2s;
}
.feature img {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
}
.feature:hover {
  background: #FFBC42;
  box-shadow: 0 5px 40px rgba(255,188,66,.14);
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service {
  display: flex;
  flex-direction: column;
  min-width: 230px;
  max-width: 315px;
  flex: 1 1 290px;
  background: #fff;
  border-radius: 26px 26px 18px 34px;
  box-shadow: 0 5px 20px rgba(255, 188, 66, .09);
  padding: 30px 24px 20px 24px;
  transition: box-shadow .15s, transform .13s;
  position: relative;
  margin-bottom: 20px;
}
.service h3 {
  margin-bottom: 9px;
  color: #475D39;
  font-family: "Kanit", 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.14rem;
}
.service .price {
  color: #FFBC42;
  font-size: 1.16rem;
  font-family: "Kanit", Arial, Helvetica, sans-serif;
  font-weight: bold;
  margin-bottom: 12px;
}
.service .button-secondary,
.service .button-primary {
  width: fit-content;
}
.service:hover, .service:focus-within {
  box-shadow: 0 8px 38px rgba(71,93,57,0.17);
  transform: translateY(-2px) scale(1.016);
}
.services-cta {
  margin: 16px 0 0 0;
  display: flex;
  justify-content: center;
}

/* Team List Section */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.team-member {
  background: #CDF0EA;
  border-radius: 28px 14px 28px 44px;
  box-shadow: 0 2px 18px rgba(71,93,57,0.10);
  padding: 25px 22px 16px 22px;
  flex: 1 1 220px;
  min-width: 185px;
  max-width: 320px;
  margin-bottom: 8px;
}
.team-member h3 {
  margin-bottom: 6px;
  color: #384928;
  font-size: 1.13rem;
}
.team-member .role {
  color: #FFBC42;
  font-family: "Kanit", 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  font-style: italic;
  margin-bottom: 10px;
}

/* FAQ LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 12px;
}
.faq-item {
  background: #fff;
  border-radius: 16px 32px 16px 32px;
  box-shadow: 0 3px 11px rgba(71,93,57,.10);
  padding: 22px 20px 18px 24px;
  transition: box-shadow .13s, transform .10s;
}
.faq-item h3 {
  cursor: pointer;
  color: #475D39;
  font-weight: 700;
  font-size: 1.02rem;
}
.faq-answer {
  margin-top: 7px;
  color: #475D39;
  font-size: 1.02rem;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 8px 24px rgba(255,188,66,0.13);
  transform: translateY(-1px) scale(1.01);
}
.faq-preview-list ul {
  margin-bottom: 8px;
}
.faq-preview-list a {
  font-weight: bold;
  margin-top: 12px;
  display: inline-block;
}

/* ARTICLES LIST on inspiration page */
.articles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.articles-list article {
  background: #CDF0EA;
  border-radius: 21px 44px 21px 30px;
  box-shadow: 0 2px 12px rgba(71,93,57,0.10);
  padding: 19px 22px 13px 20px;
  flex: 1 1 220px;
  min-width: 180px;
  max-width: 323px;
  margin-bottom: 6px;
}
.articles-list article h3 {
  margin-bottom: 8px;
  color: #475D39;
  font-size: 1.08rem;
}

/* COMPARISON TABLE (glino) */
.comparison-table {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}
.comparison-table table {
  border-collapse: collapse;
  min-width: 580px;
  width: 100%;
  margin-top: 6px;
}
.comparison-table th, .comparison-table td {
  border: 1.2px solid #CDF0EA;
  font-size: 1rem;
  padding: 14px 9px;
  text-align: left;
}
.comparison-table th {
  background: #FFBC42;
  color: #384928;
  font-size: 1.07rem;
  font-family: "Kanit", 'Roboto', Arial, Helvetica, sans-serif;
}
.comparison-table td {
  background: #fff;
}

/* MAP + CONTACT BLOCKS */
.text-section {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
}
.contact-details {
  min-width: 230px;
  flex: 1 1 260px;
  background: #CDF0EA;
  border-radius: 16px 22px 22px 38px;
  box-shadow: 0 2px 14px rgba(205, 240, 234, 0.16);
  padding: 22px 18px 16px 22px;
}
.map-location {
  flex: 2 1 310px;
  background: #fff;
  border-radius: 36px 14px 36px 14px;
  box-shadow: 0 2px 8px rgba(255,188,66,0.09);
  padding: 22px 18px 16px 22px;
}

/* CTA, NEXT STEPS, STEP GUIDE */
.next-steps ul, .step-guide ol {
  padding-left: 27px;
  margin-bottom: 16px;
}
.success-stories-teaser p,
.services-cta, .faq-contact {
  margin-top: 10px;
  font-size: 1.07rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

/* FOOTER */
footer {
  background: #475D39;
  color: #fff;
  border-top: 5px solid #FFBC42;
  border-radius: 44px 0 0 0;
  margin-top: 50px;
  padding-top: 36px;
  padding-bottom: 22px;
  box-shadow: 0 -8px 38px rgba(71,93,57,0.13);
}
.footer-logo img {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
  display: block;
}
.footer-nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #FFBC42;
  font-family: "Kanit", 'Roboto', Arial;
  font-size: 1.03rem;
  padding: 3px 8px;
  border-radius: 8px;
  transition: background .14s, color .12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #CDF0EA;
  color: #384928;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  font-size: .99rem;
  color: #fff;
  margin-bottom: 0;
}
.footer-contact a {
  color: #FFBC42;
  font-weight: 500;
}

/* ============ COOKIE BANNER ============ */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  z-index: 10500;
  background: #475D39;
  color: #fff;
  padding: 18px 26px 18px 16px;
  box-shadow: 0 -3px 17px rgba(71,93,57,0.16);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 19px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  animation: cookieBannerIn .8s cubic-bezier(0.8,0,0.16,1);
}
@keyframes cookieBannerIn {
  from { opacity: 0; transform: translateY(48px); }
  to { opacity: 1; transform: none; }
}
.cookie-consent-banner .cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.cookie-consent-banner .cookie-btn {
  padding: 8px 20px;
  font-size: 1rem;
  font-family: "Kanit", 'Roboto', Arial, Helvetica, sans-serif;
  border: none;
  border-radius: 11px 22px 11px 22px;
  font-weight: 700;
  background: #FFBC42;
  color: #384928;
  cursor: pointer;
  transition: background .16s, color .10s;
}
.cookie-consent-banner .cookie-btn:hover, .cookie-consent-banner .cookie-btn:focus {
  background: #CDF0EA;
  color: #384928;
} 
.cookie-consent-banner .cookie-settings-btn {
  background: #475D39;
  color: #fff;
  border: 1.5px solid #fff;
  margin-left: 6px;
}
.cookie-consent-banner .cookie-settings-btn:hover, .cookie-consent-banner .cookie-settings-btn:focus {
  background: #FFBC42;
  color: #475D39;
  border-color: #FFBC42;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 11000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(67,82,57,0.48);
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  animation: cookieModalFadeIn .6s cubic-bezier(0.62,0,0.23,1);
}
.cookie-modal-overlay.active {
  display: flex;
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #FFFFFF;
  color: #475D39;
  border-radius: 30px 46px 30px 20px;
  box-shadow: 0 6px 31px rgba(205,240,234,0.23);
  padding: 34px 24px 29px 22px;
  min-width: 310px;
  max-width: 98vw;
  width: 100%;
  max-width: 430px;
  animation: cookieDialogIn .66s cubic-bezier(.93,0,.17,1);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes cookieDialogIn {
  from { opacity: 0; transform: scale(.91) translateY(110px); }
  to { opacity: 1; transform: none; }
}
.cookie-modal h2 {
  color: #384928;
  margin-bottom: 5px;
  font-size: 1.26rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 7px 0 6px 0;
}
.cookie-category .cookie-switch {
  width: 30px;
  height: 18px;
  background: #CDF0EA;
  border-radius: 18px;
  display: inline-block;
  position: relative;
  transition: background .17s;
  vertical-align: middle;
}
.cookie-switch input[type="checkbox"] {
  display: none;
}
.cookie-switch-label {
  font-size: 1rem;
  color: #475D39;
  padding-left: 4px;
}
.cookie-switch input[type="checkbox"] + span {
  display: block;
  width: 30px;
  height: 18px;
  border-radius: 18px;
  background: #CDF0EA;
  position: relative;
  transition: background .14s;
}
.cookie-switch input[type="checkbox"]:checked + span {
  background: #FFBC42;
}
.cookie-switch input[type="checkbox"] + span:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(71,93,57,0.11);
  transition: left .16s;
}
.cookie-switch input[type="checkbox"]:checked + span:before {
  left: 14px;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.cookie-modal-actions .cookie-btn {
  flex: 1;
}
.cookie-modal-close {
  position: absolute;
  right: 24px;
  top: 23px;
  background: #FFBC42;
  color: #384928;
  border: none;
  border-radius: 16px;
  font-size: 1.4rem;
  width: 36px; height: 36px;
  cursor: pointer;
  box-shadow: 0 2px 7px rgba(255,188,66,.10);
  transition: background .18s;
  z-index: 1;
}
.cookie-modal-close:hover { background: #475D39; color: #fff; }

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 1000px) {
  .container { max-width: 95vw; }
  .features, .feature-grid, .services-list, .card-container, .team-list, .articles-list { gap: 14px; }
}
@media (max-width: 900px) {
  .hero h1 { font-size: 2.1rem; }
}
@media (max-width: 768px) {
  .container { padding: 0 7px; }
  .hero .container { padding: 16px 2px; }
  .hero .content-wrapper {padding: 23px 8px;}
  .content-wrapper, .feature-grid, .services-list, .card-container, .team-list, .articles-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature, .service, .team-member, .testimonial-card, .card {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  .testimonials {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .footer-nav { flex-wrap: wrap; gap: 10px; }
  .text-section {
    flex-direction: column;
    gap: 18px;
  }
  .map-location, .contact-details { border-radius: 24px; padding: 18px 9px; }
  .section { padding: 26px 7px; }
  .comparison-table table { min-width: 410px; }
}
@media (max-width: 520px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.26rem; }
  .hero h1 { font-size: 1.19rem; }
  .footer-nav a { font-size: .95rem; }
  .footer-logo img { height: 31px; }
  .cookie-modal { padding: 17px 8px 17px 8px; }
  .mobile-nav a { font-size: 1.02rem; padding: 12px 8px; }
}

/* ============ ARTISTIC DECORATIVE HIGHLIGHTS ============ */
/* Decorative artistic brush edge accent for buttons */
.button-primary:after, .button-secondary:after {
  content: '';
  display: block;
  position: absolute;
  left: 10px; right: 10px; bottom: 4px;
  height: 8px;
  border-radius: 12px 20px 12px 20px;
  background: rgba(205, 240, 234, .41);
  z-index: -1;
  transition: background .15s;
}
.button-primary:hover:after, .button-secondary:hover:after {
  background: rgba(255, 188, 66, .28);
}

/* Fun hand-drawn underline for h2 */
@media (min-width: 400px) {
  h2 {
    position: relative;
    padding-bottom: 7px;
  }
  h2:after {
    content: '';
    display: block;
    position: absolute;
    left: 0; bottom: 0;
    width: 55px;
    height: 6px;
    border-radius: 6px 14px 6px 12px;
    background: #FFBC42;
    opacity: .6;
  }
}

/* ============= UTILS & MICRO-ANIMATION ============= */
strong { color: #384928; font-weight: bold; }
::-webkit-input-placeholder { color: #ABBCA9; opacity:.97; }
::placeholder { color: #ABBCA9; opacity:.97; }

/* Subtle fade up animation */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  animation: fadeInUp .8s ease forwards;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: none; }
}

/* HIDE SCROLL ON BODY WHEN MODAL/MENU OPEN */
body.menu-open, body.cookie-modal-open {
  overflow: hidden;
}
