/* ===================================== */
/*      CSS RESET & GENERAL STYLES       */
/* ===================================== */
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, 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;
  box-sizing: border-box;
  font-size: 16px;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F2E6CF;
  color: #2E241B;
  min-height: 100vh;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #887052;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #2E241B;
  text-decoration: underline;
}
strong {
  font-weight: bold;
  color: #2E241B;
}

/* ================================ */
/*        TYPOGRAPHY                */
/* ================================ */
@import url('https://fonts.googleapis.com/css?family=Merriweather:700,900|Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: #2E241B;
  margin-bottom: 16px;
  font-weight: 900;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #2E241B;
  text-shadow: 2px 3px 0 #f9d5ac, 0 2px 20px rgba(174,114,2,0.12);
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #887052;
  text-shadow: 1px 1.5px 0 #ffe8ab;
}
h3 {
  font-size: 1.4rem;
  color: #2E241B;
}
h4 {
  font-size: 1.1rem;
  color: #2E241B;
}
p, ul, ol {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: #2E241B;
}
section ul, section ol {
  margin-left: 24px;
}

/* -> Artistic Headline Decoration */
h1, h2 {
  position: relative;
}
h1::before, h2::before {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: #887052;
  border-radius: 2px;
  margin-bottom: 16px;
}

/* ================================ */
/*      CONTAINER AND LAYOUT        */
/* ================================ */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Mandatory spacing/alignment */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(255,255,255,0.72);
  border-radius: 32px 32px 20px 80px/40px 80px 20px 32px;
  box-shadow: 0 8px 32px rgba(136,112,82,0.09);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 24px 80px 24px 32px/32px 40px 32px 48px;
  box-shadow: 0 4px 20px rgba(46,36,27,0.10);
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 40px rgba(136,112,82,0.18);
  transform: translateY(-4px) scale(1.03) rotate(-2deg);
}
.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: #fffbe9;
  color: #2E241B;
  border-radius: 32px 40px 16px 32px;
  box-shadow: 0 2px 10px rgba(46,36,27,0.12);
  margin-bottom: 20px;
  min-width: 240px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ================================ */
/*              HEADER              */
/* ================================ */
header {
  background: #2E241B;
  color: #F2E6CF;
  padding: 0;
  width: 100%;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 18px rgba(46,36,27,0.08);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
}
header img {
  height: 48px;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Open Sans';
  font-weight: 700;
  color: #F2E6CF;
  padding: 8px 19px;
  border-radius: 20px 32px 16px 20px;
  background: transparent;
  transition: background 0.18s, color 0.17s;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F2E6CF;
  color: #2E241B;
  text-decoration: none;
}
.main-nav .cta {
  background: #887052;
  color: #fff;
  border-radius: 30px 48px 16px 32px;
  font-weight: bold;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 10px rgba(136,112,82,0.10);
  transition: background 0.16s, color 0.16s, box-shadow 0.15s;
}
.main-nav .cta:hover, .main-nav .cta:focus {
  background: #F2E6CF;
  color: #2E241B;
  box-shadow: 0 5px 18px rgba(136,112,82,0.19);
}

/* =============== MOBILE MENU =============== */
.mobile-menu-toggle {
  display: none;
  background: #887052;
  color: #fff;
  border: none;
  font-size: 2.3rem;
  padding: 5px 18px;
  border-radius: 10px 32px 18px 24px;
  cursor: pointer;
  transition: background 0.17s;
  margin-left: 12px;
  z-index: 1202;
}
.mobile-menu-toggle:hover {
  background: #2E241B;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #2E241B;
  color: #F2E6CF;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 28px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.23,.74,.54,1.13);
  z-index: 1200;
  box-shadow: -4px 0 40px rgba(46,36,27,0.18);
  width: 100vw;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #F2E6CF;
  font-size: 2.3rem;
  border: none;
  padding: 7px 19px;
  margin-bottom: 12px;
  margin-right: 15px;
  cursor: pointer;
  z-index: 1201;
  transition: color 0.15s;
}
.mobile-menu-close:hover {
  color: #ffe19f;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  padding-left: 36px;
  padding-top: 18px;
}
.mobile-nav a {
  color: #F2E6CF;
  font-family: 'Open Sans';
  font-size: 1.16rem;
  letter-spacing: 0.02em;
  font-weight: 700;
  padding: 13px 0;
  border-radius: 16px 32px 12px 24px;
  width: 90vw;
  max-width: 480px;
  transition: background 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #887052;
  color: #fff;
  text-decoration: none;
}

/* =========== Main / Hero Section ============ */
.hero {
  padding: 0;
  margin-bottom: 0;
  background: linear-gradient(115deg, #F2E6CF 88%, #ffeec0 100%);
}
.hero .container {
  padding: 55px 10px 24px 10px;
  min-height: 300px;
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 18px;
  align-items: flex-start;
}
.hero h1 {
  font-family: 'Merriweather', serif;
  font-size: 2.8rem;
  color: #2E241B;
  text-shadow: 3px 6px 0 #ffeec0, 0 6px 60px rgba(187,134,11,0.12);
}
.hero p {
  font-size: 1.18rem;
  margin-bottom: 18px;
  max-width: 650px;
}
.hero .cta {
  margin-top: 12px;
}

/* Features style */
.features {
  background: #fffbe7;
  border-radius: 0 0 80px 0/0 0 32px 40px;
  margin-bottom: 60px;
}
.features .container {
  padding: 36px 18px 12px 18px;
}
.features ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-left: 0;
}
.features li {
  display: flex;
  align-items: center;
  font-size: 1.13rem;
  gap: 11px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #2E241B;
  padding: 12px 0;
}
.features li img {
  height: 32px;
  width: 32px;
  margin-right: 8px;
}

/* About-preview & similar sections */
.about-preview, .about, .values, .case-studies, .inspiration, .services-preview, .services, .process, .benefits, .faq, .legal, .contact-info, .thank-you, .posts-list {
  background: #fff;
  border-radius: 24px 60px 40px 32px/32px 64px 24px 52px;
  box-shadow: 0 3px 18px rgba(136,112,82,0.10);
  margin-bottom: 60px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 1.08rem;
  color: #2E241B;
}
.text-section ul {
  margin-left: 18px;
  margin-bottom: 12px;
}
.text-section li {
  margin-bottom: 8px;
}

.services .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-block {
  background: #F2E6CF;
  border-radius: 24px 40px 20px 36px;
  flex: 1 1 240px;
  min-width: 240px;
  max-width: 350px;
  padding: 26px 20px;
  box-shadow: 0 2px 9px rgba(136,112,82,0.08);
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.service-block:hover {
  box-shadow: 0 8px 18px #ffe8ab22;
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
}

.process ol {
  list-style: decimal inside;
  margin-left: 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.process li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.13rem;
}
.process li img {
  height: 30px;
  width: 30px;
}

.benefits ul {
  margin-left: 0;
  padding-left: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.posts-list .blog-post-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
}
.posts-list .featured-posts {
  background: #ffe9b8;
  border-radius: 18px 32px 18px 24px;
  padding: 18px 16px;
  box-shadow: 0 1px 8px #88705218;
  margin-top: 22px;
  font-style: italic;
  color: #2E241B;
}

/* CTA sections */
section.cta, .cta-newsletter {
  background: #f9d5ac;
  border-radius: 42px 32px 32px 28px/32px 40px 28px 32px;
  margin-bottom: 60px;
  box-shadow: 0 1px 10px #f2e6cf2a;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta .container, .cta-newsletter .container {
  align-items: center;
  padding: 20px 8px;
}
.cta .content-wrapper, .cta-newsletter .content-wrapper {
  align-items: center;
  gap: 18px;
  justify-content: center;
}
section.cta h2, .cta-newsletter h2 {
  color: #887052;
  margin-bottom: 10px;
}
.cta .cta, .cta-newsletter .cta {
  margin-top: 10px;
}

/* Testimonials & review summary */
.testimonials-preview {
  background: #fffbe7;
  border-radius: 32px 42px 28px 42px/42px 80px 24px 52px;
  margin-bottom: 60px;
}
.testimonials-preview .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.testimonial-card {
  color: #2E241B;
  background: #fffcef;
  border-radius: 32px 40px 16px 32px;
  box-shadow: 0 4px 18px rgba(210,188,106,0.07);
  min-width: 220px;
  font-style: italic;
  font-size: 1.13rem;
  transition: box-shadow 0.14s, transform 0.12s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 22px #ffe8ab44;
  transform: scale(1.04) rotate(-2.5deg);
}
.rating-summary {
  font-family: 'Merriweather', serif;
  font-size: 1.07rem;
  color: #887052;
}

/* FAQ Accordion */
.faq-accordion h3 {
  cursor: pointer;
  background: #f9d5ac;
  padding: 14px 16px;
  border-radius: 20px 36px 14px 26px;
  margin-bottom: 0;
  color: #887052;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.2rem;
  transition: background 0.17s, color 0.15s;
}
.faq-accordion h3:hover {
  background: #ffeec0;
  color: #2E241B;
}
.faq-accordion p {
  background: #fffbe7;
  border-radius: 0px 14px 14px 22px;
  margin: 0 0 14px 0;
  padding: 12px 18px 10px 16px;
  color: #2E241B;
  font-size: 1.02rem;
}

.cta-contact-support {
  margin-top: 32px;
  text-align: center;
}
.cta-contact-support .cta {
  display: inline-block;
  margin-top: 9px;
}

/* Contact Info & Map */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #2E241B;
}
.contact-details img {
  height: 22px;
  width: 22px;
}
.map {
  background: #ffe8ab50;
  border-radius: 20px 28px 12px 19px;
  padding: 15px 12px;
  color: #887052;
  box-shadow: 0 2px 8px #ffe8ab15;
}

/* Thank-you section */
.thank-you ul {
  margin-bottom: 20px;
}
.thank-you li {
  margin-bottom: 7px;
}

/* ===================================== */
/*                BUTTONS               */
/* ===================================== */
.cta, .cta-contact-support .cta, .thank-you .cta {
  display: inline-block;
  border: none;
  font-family: 'Merriweather', serif;
  background: #2E241B;
  color: #fff;
  font-weight: 700;
  font-size: 1.18rem;
  padding: 12px 32px;
  border-radius: 32px 48px 18px 36px;
  letter-spacing: 0.02em;
  transition: background 0.18s, color 0.18s, box-shadow .14s, transform .16s;
  box-shadow: 0 2px 7px #2E241B22;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.cta:hover, .cta:focus {
  background: #887052;
  color: #fffbe9;
  box-shadow: 0 4px 16px #88705232;
  transform: translateY(-2px) scale(1.04) rotate(-1.5deg);
}

/* Lists, forms etc */
ul, ol {
  margin-bottom: 8px;
}
li {
  margin-bottom: 8px;
}

/* ===================================== */
/*                 FOOTER                */
/* ===================================== */
footer {
  background: #2E241B;
  color: #fffbe9;
  padding: 42px 0 14px 0;
  margin-top: 50px;
  border-radius: 72px 0 0 0/24px 52px 0px 0px;
  box-shadow: 0 -2px 18px #2E241B16;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #ffeec0;
  font-size: 1.05rem;
  font-family: 'Open Sans', sans-serif;
  transition: color .17s, background .17s;
  border-radius: 14px 28px 8px 14px;
  padding: 5px 12px;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #ffeec0;
  color: #2E241B;
  text-decoration: none;
}
.footer-contact {
  display: flex;
  flex-direction: row;
  gap: 21px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 1.01rem;
}
.footer-contact img {
  height: 19px;
  width: 19px;
  vertical-align: middle;
  margin-right: 6px;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  color: #ffeec0;
}
.footer-brand img {
  height: 36px;
}

/* ===================================== */
/*          COOKIE CONSENT BANNER        */
/* ===================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffbe9;
  color: #2E241B;
  box-shadow: 0 -1px 26px #2E241b18;
  border-radius: 22px 32px 0 0;
  z-index: 1400;
  padding: 32px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: center;
  animation: cookie-banner-slide-in 0.7s cubic-bezier(.23,.74,.54,1.13);
}
@keyframes cookie-banner-slide-in {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1.05rem;
  text-align: center;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: center;
  margin-top: 6px;
}
.cookie-banner button {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 22px 28px 9px 16px;
  padding: 11px 24px;
  margin-left: 0;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.16s, color 0.16s, transform 0.13s;
}
.cookie-banner .accept-all {
  background: #887052;
  color: #fff;
}
.cookie-banner .accept-all:hover, .cookie-banner .accept-all:focus {
  background: #2E241B;
  color: #ffe8ab;
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
}
.cookie-banner .reject-all {
  background: #ffeec0;
  color: #2E241B;
}
.cookie-banner .reject-all:hover, .cookie-banner .reject-all:focus {
  background: #F2E6CF;
  color: #887052;
}
.cookie-banner .cookie-settings {
  background: #fffbe9;
  color: #887052;
  border: 1px solid #88705233;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #ffeec0;
  color: #2E241B;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(46,36,27,0.28);
  z-index: 1800;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-bgfade 0.45s;
}
@keyframes cookie-modal-bgfade {
  from { opacity: 0; } 
  to { opacity: 1; }
}
.cookie-modal {
  background: #fffbe9;
  color: #2E241B;
  border-radius: 42px 32px 24px 42px/28px 40px 18px 32px;
  box-shadow: 0 12px 42px #2E241b33;
  width: 95vw;
  max-width: 440px;
  padding: 40px 24px 27px 24px;
  position: relative;
  animation: cookie-modal-slide-in 0.6s cubic-bezier(.41,.7,.67,1.02);
}
@keyframes cookie-modal-slide-in {
  from { transform: translateY(60px) scale(.99); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #887052;
  margin-bottom: 14px;
  text-shadow: 1px 2px #ffe8ab;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
  padding: 12px 0 10px 0;
  font-size: 1.04rem;
  border-radius: 14px 22px 8px 12px;
}
.cookie-modal .cookie-toggle {
  width: 36px; height: 20px;
  appearance: none;
  background: #ffe8ab;
  border-radius: 10px;
  outline: none;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  transition: background 0.2s;
  margin-right: 4px;
}
.cookie-modal .cookie-toggle:checked {
  background: #887052;
}
.cookie-modal .cookie-toggle::before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.2s;
}
.cookie-modal .cookie-toggle:checked::before {
  left: 19px;
  background: #ffe8ab;
}
.cookie-modal .essential {
  color: #2E241B;
  font-weight: bold;
  opacity: .7;
}
.cookie-modal .close-cookie-modal {
  background: none;
  color: #887052;
  border: none;
  font-size: 2.1rem;
  position: absolute;
  top: 13px;
  right: 17px;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal .close-cookie-modal:hover {
  color: #2E241B;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions button {
  font-family: inherit;
  font-size: 1rem;
  background: #887052;
  color: #fff;
  border: none;
  border-radius: 20px 32px 16px 20px;
  padding: 9px 26px;
  cursor: pointer;
  transition: background .13s, color .13s;
}
.cookie-modal .cookie-modal-actions .cancel {
  background: #ffeec0;
  color: #887052;
}
.cookie-modal .cookie-modal-actions .cancel:hover {
  background: #F2E6CF;
}

/* ===================================== */
/*            RESPONSIVE DESIGN          */
/* ===================================== */
@media (max-width: 1020px) {
  .container {
    max-width: 95vw;
  }
}
@media (max-width: 900px) {
  .main-nav, .footer-contact, .service-grid, .testimonials-preview .testimonial-slider {
    gap: 10px !important;
  }
  .service-block {
    max-width: 320px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container {
    padding: 0 7px;
  }
  header .container {
    flex-direction: row;
    padding: 10px 7px;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
  .section, .about-preview, .about, .values, .case-studies, .inspiration, .services-preview, .services, .process, .benefits, .faq, .contact-info, .thank-you, .legal, .posts-list, .testimonials-preview {
    border-radius: 20px 30px 16px 30px/15px 35px 12px 30px;
    padding: 25px 8px;
  }
  .testimonial-card {
    font-size: 1rem;
    padding: 13px;
  }
  .service-block {
    min-width: 160px;
    max-width: 98vw;
    padding: 15px 8px;
  }
  .hero .container {
    padding: 30px 5px 13px 5px;
  }
  .hero .content-wrapper {
    gap: 11px;
  }
}
@media (max-width: 520px) {
  html { font-size: 13.7px; }
  h1 { font-size: 1.96rem; }
  h2 { font-size: 1.35rem; }
  .hero h1 { font-size: 2.1rem; }
  .main-nav, .testimonials-preview .testimonial-slider, .service-grid {
    flex-direction: column;
    gap: 13px !important;
  }
  footer {
    padding: 15px 0 9px 0;
  }
  .footer-brand img {
    height: 23px;
  }
  .footer-contact {
    font-size: 0.99rem;
  }
  .cookie-banner {
    padding: 18px 4px 10px 4px;
  }
  .cookie-modal {
    padding: 18px 6px 17px 9px;
    border-radius: 20px 16px 12px 22px/15px 22px 8px 12px;
  }
}

/* ===================================== */
/*     ARTISTIC/UNIQUE DECORATIVE BITS   */
/* ===================================== */
.card:before, .service-block:before, .testimonial-card:before {
  content: "»";
  position: absolute;
  top: -18px; left: 18px;
  color: #ffe8ab;
  font-size: 2.1rem;
  pointer-events: none;
  z-index: 0;
  opacity: 0.23;
  font-weight: bold;
  font-family: 'Merriweather', serif;
  display: block;
}
.card:before { left: 24px; color: #f9d5ac; }
.service-block:before { left: 18px; color: #ffe8ab; }
.testimonial-card:before { left: 18px; color: #ffe8ab; }

/* Hide if parent is too short */
.card, .service-block, .testimonial-card {
  overflow: visible;
}

/* ===================================== */
/*     MICRO-INTERACTIONS/ANIMATION      */
/* ===================================== */
a, button, .cta {
  transition: background 0.18s, color 0.18s, box-shadow 0.16s, transform 0.17s;
}
.card, .service-block, .testimonial-card, .faq-accordion h3 {
  transition: box-shadow .15s, background .15s, transform .14s;
}

/* ===================================== */
/*           ACCESSIBILITY               */
/* ===================================== */
:focus {
  outline: 2px solid #F2E6CF;
  outline-offset: 2px;
}
::-webkit-input-placeholder { color: #88705299; }
::-moz-placeholder          { color: #88705299; }
:-ms-input-placeholder      { color: #88705299; }
::placeholder              { color: #88705299; }

/* ===================================== */
/*             END OF CSS                */
/* ===================================== */
