/* 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
  background: #F3F7FA;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background: #F3F7FA;
  color: #223140;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #164259;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B99A52;
  outline: none;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

strong, b {
  font-weight: 700;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #164259;
  margin-bottom: 18px;
  font-weight: 700;
}
h1 { font-size: 2.7rem; letter-spacing: -1.2px; }
h2 { font-size: 2rem; letter-spacing: -0.7px; }
h3 { font-size: 1.24rem; font-weight: 600;}
h4 { font-size: 1.08rem; }

p {
  font-size: 1rem;
  color: #223140;
  margin-bottom: 8px;
  line-height: 1.7;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

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

@media (min-width: 992px) {
  .content-wrapper {
    gap: 32px;
  }
}

/* HEADER / NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #E6EAEF;
  box-shadow: 0 4px 12px 0 rgba(22,66,89,0.03);
  position: relative;
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 20px;
}
.logo img {
  height: 46px;
  width: auto;
  transition: filter 0.2s;
}
.logo:hover img {
  filter: brightness(0.92);
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-size: 1rem;
  padding: 8px 0;
  color: #164259;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.5px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #B99A52;
  transition: width 0.25s;
  position: absolute;
  left: 0; bottom: -2px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}

.cta-button {
  background: #164259;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 36px;
  padding: 12px 34px;
  font-size: 1rem;
  border: none;
  box-shadow: 0 2px 10px 0 rgba(22,66,89,.06);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.25s, transform 0.12s;
  border: 1.5px solid #B99A52;
  margin-left: 18px;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 2;
}
.cta-button:hover,
.cta-button:focus {
  background: #B99A52;
  color: #164259;
  box-shadow: 0 4px 24px 0 rgba(185,154,82,.11);
  transform: translateY(-2px) scale(1.04);
  outline: none;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  background: none;
  font-size: 2rem;
  border: none;
  color: #B99A52;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 50%;
  transition: background 0.16s;
  z-index: 101;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #f9f6ed;
}

theader nav.main-nav {
  flex:1 1 auto;
}

@media (max-width:1024px) {
  .main-nav {
    gap: 18px;
  }
  header .container {
    gap: 10px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22,66,89, .97);
  color: #fff;
  z-index: 1002;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 18px;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.7,.14,.44,1.08);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.3rem;
  border: none;
  align-self: flex-end;
  margin: 0 24px 16px 0;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.16s;
  z-index: 2001;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #2B6787;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-left: 36px;
  margin-top: 8px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  padding: 10px 6px;
  border-radius: 5px;
  transition: background 0.12s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #B99A52;
  color: #1c2632;
}

@media (min-width: 901px) {
  .mobile-menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}

/* HERO BANNER */
.hero {
  background: #164259;
  color: #fff;
  padding: 66px 0 54px 0;
  margin-bottom: 38px;
  position: relative;
  overflow: hidden;
}
.hero:after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(185,154,82,0.14);
  z-index: 1;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
  max-width: 670px;
  padding-right: 5vw;
}
.hero h1, .hero h2 {
  color: #fff;
  letter-spacing: -1.2px;
}
.hero p {
  color: #F3F7FA;
  margin-bottom: 18px;
  font-size: 1.16rem;
}
.hero .cta-button {
  background: #B99A52;
  color: #164259;
  border: none;
  border-radius: 30px;
  font-size: 1.04rem;
  margin-top: 12px;
  margin-left: 0;
  box-shadow: 0 3px 22px rgba(185,154,82,0.14);
}
.hero .cta-button:hover, .hero .cta-button:focus {
  background: #fff;
  color: #B99A52;
  box-shadow: 0 6px 32px rgba(25,20,8,0.08);
}

@media (max-width: 768px) {
  .hero { padding: 46px 0 28px 0; }
  .hero .content-wrapper { padding-right: 0; }
}

/* FEATURES, CARDS & FLEX GRIDS */
.features, .values, .blog-list, .case-studies, .about-short, .services, .process, .contact, .legal, .thank-you {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2.5px 24px rgba(22,66,89,0.07);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features .content-wrapper,
.values .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-card {
  background: #F3F7FA;
  border: 1px solid #E6EAEF;
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(185,154,82,0.04);
  padding: 28px 22px 22px 22px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.23s, border 0.16s, transform 0.13s;
}
.feature-card img {
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  filter: brightness(0.96) drop-shadow(0 0 0.07rem #B99A52);
}
.feature-card h3 {
  color: #164259;
  font-size: 1.15rem;
  margin-bottom: 10px;
  min-height: 45px;
}
.feature-card p {
  color: #223140;
  font-size: 1rem;
}
.feature-card:after {
  content: '';
  display: block;
  background: #B99A52;
  height: 3.5px;
  width: 42px;
  border-radius: 2px;
  margin-top: 16px;
}
.feature-card:hover, .feature-card:focus-within {
  box-shadow: 0 8px 32px 0 #b99a5232, 0 3px 14px 0 #16425913;
  border-color: #B99A52;
  transform: translateY(-3px) scale(1.025);
  z-index: 3;
}

@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}

.card-container, .article-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 32px;
}
.card {
  background: #fff;
  border: 1.5px solid #E6EAEF;
  border-radius: 15px;
  box-shadow: 0 2px 10px 0 rgba(185,154,82,.06);
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.2s, border-color 0.17s, transform 0.14s;
}
.card:hover, .card:focus-within {
  border-color: #B99A52;
  box-shadow: 0 6px 24px rgba(185,154,82,0.13);
  transform: scale(1.019) translateY(-2px);
  z-index: 4;
}

/* BLOG TEASERS */
.article-teasers article {
  flex: 1 1 265px;
  min-width: 200px;
  max-width: 350px;
  background: #fff;
  border-radius: 16px;
  padding: 26px 22px 16px 22px;
  border: 1px solid #E6EAEF;
  box-shadow: 0 2.5px 14px rgba(22,66,89,0.055);
  transition: box-shadow 0.2s, border 0.16s;
  margin-bottom: 20px;
}
.article-teasers article:hover {
  box-shadow: 0 8px 28px #b99a5231, 0 1px 7px #16425919;
  border-color: #B99A52;
}
.article-teasers h3 {
  font-size: 1.16rem;
  color: #164259;
  margin-bottom: 8px;
}
.article-teasers p {
  font-size: 1rem;
  color: #223140;
}

/* SEARCH BAR & FILTERS */
.search-bar {
  margin-bottom: 18px;
  display: flex;
}
.search-bar input[type="text"] {
  flex: 1;
  border: 1.3px solid #B99A52;
  border-radius: 22px;
  padding: 10px 18px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #fffbee;
  outline: none;
  transition: border-color 0.15s;
  margin-right: 10px;
}
.search-bar input[type="text"]:focus {
  border-color: #164259;
  box-shadow: 0 4px 14px #16425912;
}
.categories-filter {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
}
.categories-filter span {
  font-weight: 600;
  font-size: 1rem;
  color: #223140;
}
.categories-filter a {
  color: #164259;
  background: #e9e6db;
  border-radius: 12px;
  padding: 6px 14px;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.12s, color 0.14s;
}
.categories-filter a:hover, .categories-filter a:focus {
  background: #B99A52;
  color: #fff;
}

/* CTA BANNER */
.cta-banner {
  background: #164259;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 2.5px 17px rgba(185,154,82,0.08);
  margin-bottom: 48px;
  padding: 42px 18px 37px 18px;
  text-align: center;
}
.cta-banner h2 {
  color: #fff;
}
.cta-banner p {
  color: #fff;
  opacity: 0.98;
}
.cta-banner .cta-button {
  background: #B99A52;
  color: #164259;
  margin-top: 16px;
  border-color: #fff;
}
.cta-banner .cta-button:hover, .cta-banner .cta-button:focus {
  background: #fff;
  color: #B99A52;
  border-color: #B99A52;
}

/* TESTIMONIALS */
.testimonials {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: 0 2.5px 24px #16425913;
  padding: 40px 20px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #FDFDFD;
  color: #223140;
  border-radius: 15px;
  border: 1.5px solid #E6EAEF;
  box-shadow: 0 2.5px 13px #B99A5230;
  padding: 20px 24px;
  min-width: 260px;
  max-width: 410px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, border 0.14s, transform 0.14s;
}
.testimonial-card p {
  color: #223140;
  font-size: 1.08rem;
  margin-bottom: 10px;
  font-style: italic;
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-card span {
  color: #B99A52;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px #B99A525c;
  border-color: #B99A52;
  transform: translateY(-3px) scale(1.025);
}

@media (max-width: 850px) {
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
}

/* CASE STUDIES */
.case-studies .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 27px;
}
.case-summary {
  background: #F3F7FA;
  border: 1px solid #E6EAEF;
  border-radius: 16px;
  padding: 22px 19px 18px 23px;
  margin-bottom: 20px;
  box-shadow: 0 2.5px 10px #B99A5240;
  transition: box-shadow 0.18s, border 0.13s;
}
.case-summary:hover {
  border-color: #B99A52;
  box-shadow: 0 7px 20px #B99A525a;
}

/* FOOTER */
footer {
  background: #164259;
  color: #F3F7FA;
  padding: 36px 0 24px 0;
  font-size: 1rem;
  box-shadow: 0 -2px 13px #B99A5235;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #B99A52;
  font-weight: 500;
  letter-spacing: 0.03em;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-brand {
  text-align: center;
  color: #fff;
  font-size: 0.98rem;
  opacity: 0.82;
}

@media (max-width:600px) {
  .footer-nav, .container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-nav a {
    margin-bottom: 6px;
  }
}

/* LEGAL/BODY SECTIONS */
.legal .container, .about .container, .contact .container {
  padding: 0 13px;
}
.legal h1, .legal h2 {
  color: #164259;
}
/* SERVICE CARDS (services.html) */
.services .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.service-card {
  background: #F3F7FA;
  border-radius: 15px;
  box-shadow: 0 2px 10px 0 #B99A5235;
  border: 1.2px solid #E6EAEF;
  flex: 1 1 260px;
  min-width: 200px;
  max-width: 330px;
  padding: 28px 22px 16px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: border-color 0.18s, box-shadow 0.2s, transform 0.13s;
}
.service-card h3 {
  color: #164259;
  margin-bottom: 8px;
}
.service-card p {
  color: #223140;
  margin-bottom: 16px;
}
.service-price {
  color: #B99A52;
  font-weight: 700;
  font-size: 1.02rem;
}
.service-card:hover {
  border-color: #B99A52;
  box-shadow: 0 8px 24px #B99A5258;
  transform: scale(1.03) translateY(-2px);
}

/* ABOUT / VALUES */
.values .content-wrapper ul, .features .content-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.values .content-wrapper ul li, .features .content-wrapper ul li {
  background: #F3F7FA;
  border-radius: 12px;
  padding: 13px 18px 11px 17px;
  min-width: 185px;
  font-size: 1rem;
  color: #164259;
  margin-bottom: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #E6EAEF;
  box-shadow: 0 2px 9px #B99A5232;
}
.values .content-wrapper ul li img, .features .content-wrapper ul li img {
  width: 30px; height: 30px; filter: brightness(0.95) drop-shadow(0 0 0.06rem #B99A52); }
@media (max-width: 768px) {
  .values .content-wrapper ul, .features .content-wrapper ul {
    flex-direction: column;
    gap: 13px;
  }
}

/* TEXT-IMAGE SECTIONS & FLEX SPACING */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ABOUT-SHORT */
.about-short .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-short ul {
  margin-bottom: 12px;
}
.about-short li {
  margin-bottom: 9px;
}

/* THANK-YOU PAGE */
.thank-you .content-wrapper {
  text-align: center;
}
.thank-you h1 {
  margin-bottom: 16px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 2px solid #B99A52;
  box-shadow: 0 -2px 20px #16425927;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 18px 20px 20px 20px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: transform 0.33s cubic-bezier(.26,.7,.52,1.25), opacity 0.15s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner p {
  color: #164259;
  margin-bottom: 0;
}
.cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 3px;
}
.cookie-button {
  padding: 8px 22px;
  border-radius: 30px;
  border: 1.3px solid #B99A52;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: #fff;
  color: #164259;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, border-color 0.17s, box-shadow 0.2s;
  font-size: 1rem;
  margin-right: 0;
  box-shadow: 0 1px 7px #B99A5233;
}
.cookie-button.accept {
  background: #B99A52;
  color: #fff;
}
.cookie-button.reject {
  background: #F3F7FA;
  color: #164259;
  border: 1.5px solid #B99A52;
}
.cookie-button.settings {
  background: #fffbee;
  color: #B99A52;
}
.cookie-button:focus,
.cookie-button:hover {
  background: #164259;
  color: #fff;
  border-color: #B99A52;
}
.cookie-button.accept:focus,
.cookie-button.accept:hover {
  background: #fff;
  color: #B99A52;
  border-color: #B99A52;
}

@media (max-width:480px) {
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .cookie-banner {
    font-size: 0.97rem;
    padding: 18px 8px 21px 8px;
  }
}

/* COOKIE MODAL OVERLAY */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(22,66,89, 0.41);
  z-index: 5010;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.27s, visibility 0.27s;
  visibility: visible;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 32px 25px 24px 25px;
  box-shadow: 0 6px 48px #B99A5257;
  min-width: 330px;
  max-width: 96vw;
  color: #223140;
  font-size: 1.05rem;
  font-family: 'Open Sans', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h2 {
  color: #164259;
  font-size: 1.25rem;
  margin-bottom: 5px;
}
.cookie-close {
  background: none;
  border: none;
  color: #164259;
  font-size: 1.55rem;
  position: absolute;
  top: 13px; right: 12px;
  cursor: pointer;
  border-radius: 50%;
  padding: 7px 11px;
  transition: background 0.13s;
}
.cookie-close:hover, .cookie-close:focus {
  background: #B99A52;
  color: #fff;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-category label {
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #164259;
}
.cookie-category input[type="checkbox"] {
  accent-color: #B99A52;
  width: 22px; height: 22px;
  border-radius: 7px;
  border: 1.5px solid #B99A52;
}
.cookie-category .always-on {
  color: #B99A52;
  font-weight: 500;
  padding-left: 6px;
  font-size: 0.96rem;
  font-style: italic;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 7px;
}
.cookie-modal-actions .cookie-button {
  padding: 8px 18px;
  min-width: 102px;
}
@media (max-width:600px) {
  .cookie-modal-content {
    min-width: 85vw;
    padding: 22px 6px 16px 6px;
  }
}

/* ANIMATIONS & MICRO-INTERACTIONS */
:root {
  --shadow-light: 0 2px 10px 0 #B99A5235;
  --shadow-gold: 0 6px 34px #B99A5260;
}

.card, .feature-card, .testimonial-card, .case-summary, .service-card, .article-teasers article {
  transition: box-shadow 0.13s, border-color 0.13s, transform 0.13s, background 0.18s;
}
.cta-button, .cookie-button {
  transition: background 0.18s, color 0.18s, box-shadow 0.21s, border 0.18s, transform 0.13s;
}

/* GENERAL RESPONSIVE FIXES */
@media (max-width: 990px) {
  .container { padding: 0 10px; }
}
@media (max-width: 700px) {
  h1 { font-size: 1.67rem; }
  h2 { font-size: 1.21rem; }
  .hero, .features, .testimonials, .cta-banner, .about-short, .services, .case-studies, .blog-list, .contact, .legal, .thank-you {
    padding: 29px 8px 24px 8px;
    margin-bottom: 36px;
    border-radius: 12px;
  }
  .feature-card, .testimonial-card, .service-card, .case-summary {
    padding: 18px 8px;
    border-radius: 10px;
  }
  .cta-banner,
  .cta-banner .container {
    padding-left: 2px; padding-right: 2px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 3px; }
  .hero { padding: 27px 0 12px 0; }
  .cta-banner { padding: 20px 2px 15px 2px; }
}

::-webkit-input-placeholder { color: #bbbecc; opacity: 1; }
::-moz-placeholder { color: #bbbecc; opacity: 1; }
:-ms-input-placeholder { color: #bbbecc; opacity: 1; }
::placeholder { color: #bbbecc; opacity: 1; }
