/* =========================================
   CSS RESET & BASELINES
========================================= */
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, 
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F6F0E9;
  color: #4A3B28;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
table {
  border-collapse: collapse;
  width: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* ========================================
   VINTAGE RETRO BRAND VARIABLES
======================================== */
:root {
  --primary: #1C1C22; /* dark dusty charcoal */
  --secondary: #26A69A; /* retro turquoise */
  --accent: #F9F9F6; /* off-white paper/cream */
  --vintage-brown: #B48B5B;
  --vintage-orange: #DA9847;
  --vintage-blue: #498CA8;
  --vintage-green: #50604C;
  --danger: #AF3A45;
  --success: #48A076;
  --shadow: 0 8px 24px rgba(92, 62, 36, 0.08), 0 1.5px 6px rgba(58,42,24,0.08);  /* soft, vintage shadow*/
  --border-radius: 18px;
  --font-display: 'Montserrat', 'Montserrat Variable', 'Arial Black', Arial, sans-serif;
  --font-body: 'Roboto', 'Roboto Slab', 'Franklin Gothic Medium', Arial, sans-serif;
}

/* =========================================
   TYPOGRAPHY
========================================= */
body {
  font-family: var(--font-body);
  font-size: 18px;
  background: var(--accent);
  color: #3e2c17;
  font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary);
  letter-spacing: 1px;
  text-shadow: 0 1.5px 0 #e8dcca;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.17rem;
  margin-bottom: 16px;
}
p, li {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #4A3B28;
  font-family: var(--font-body);
}
strong {
  font-weight: 700;
  color: var(--vintage-brown);
}
ul, ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 0.9em;
}
ul li::before {
  content: '\2022';
  color: var(--vintage-orange);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  position: absolute;
  left: 0;
}

/* Classic Retro Patterns as background for accents -- minimal and subtle */
.section.pattern {
  background: repeating-linear-gradient(135deg, #e8dcca 0 2px, transparent 2px 24px);
}

/* =========================================
   LAYOUT: CONTAINERS & SECTIONS
========================================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

/* CARD & FLEX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fffbe6;
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 3px 14px rgba(60,42,16,0.065);
  position: relative;
  padding: 26px 22px 22px 22px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover, .service-card:hover,
.testimonial-card:hover {
  box-shadow: 0 11px 32px rgba(113, 81, 34, 0.19);
  transform: translateY(-3px) scale(1.018);
}
.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: flex-start;
  gap: 12px;
  background: #f9eedd;
  color: #1C1C22;
  border-left: 5px solid var(--vintage-orange);
  padding: 20px 28px 20px 18px;
  margin-bottom: 26px;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(115,85,41,.13);
  min-width: 260px;
  max-width: 400px;
  transition: box-shadow .17s;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff9f3;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(186,142,65,0.08);
  padding: 24px 18px;
  margin-bottom: 24px;
  min-width: 240px;
  flex: 1 1 210px;
  transition: box-shadow 0.2s, background 0.2s;
}
.feature-item:hover {
  box-shadow: 0 7px 21px rgba(196, 136, 25, 0.13);
  background: #fdeece;
}

/**** Custom Layouts matching actual HTML ****/
.main-nav,
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  background: transparent;
}
footer .footer-nav {
  margin-bottom: 14px;
  gap: 22px;
}

/* =========================================
   HEADER, NAVIGATION & CTAs
========================================= */
header {
  padding: 0 0 18px 0;
  background: var(--primary);
  box-shadow: 0 2px 10px rgba(28, 28, 34, 0.094);
  position: relative;
  z-index: 10;
}
header .main-nav {
  flex-direction: row;
  justify-content: flex-start;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  height: 76px;
}
header .main-nav a {
  font-family: var(--font-display);
  font-size: 1.03rem;
  color: var(--accent);
  padding: 10px 16px;
  border-radius: 9px;
  transition: background .18s, color .15s;
  position: relative;
}
header .main-nav a:hover {
  background: var(--vintage-brown);
  color: var(--primary);
}
header .main-nav img {
  height: 44px;
  margin-right: 15px;
  background: transparent;
}
header .main-nav a.cta-primary {
  background: var(--vintage-orange);
  color: #2A2115;
  font-weight: 700;
  border-radius: 13px;
  margin-left: auto;
  padding: 12px 24px;
  box-shadow: 0 4px 16px rgba(187, 135, 51, 0.08);
  transition: background .14s, box-shadow .14s, transform .15s;
  border: 2px solid var(--primary);
}
header .main-nav a.cta-primary:hover {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
  box-shadow: 0 7px 24px rgba(46,156,154,0.09);
  transform: translateY(-2.5px);
}

/* =========================================
   MOBILE NAVIGATION (Burger Menu)
========================================= */
.mobile-menu-toggle {
  background: var(--vintage-orange);
  color: var(--primary);
  font-size: 2.1rem;
  border: none;
  border-radius: 9px;
  padding: 7px 14px;
  cursor: pointer;
  position: absolute;
  right: 23px;
  top: 17px;
  z-index: 102;
  display: none;
  transition: background .13s, color .13s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--secondary);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100%;
  background: #231e15ef;
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.68,-0.53,.41,1.65);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  color: var(--vintage-orange);
  font-size: 2.5rem;
  border: none;
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 222;
  cursor: pointer;
  transition: color .18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 88px 0px 0px 32px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.24rem;
  color: var(--accent);
  padding: 12px 0 11px 0;
  border-radius: 8px;
  transition: color .17s, background .14s;
  min-width: 220px;
}
.mobile-nav a:hover {
  color: var(--vintage-orange);
  background: rgba(255,216,130,0.08);
}
@media (max-width: 1009px) {
  header .main-nav a.cta-primary {
    margin-left: 10px;
  }
}
@media (max-width: 990px) {
  header .main-nav a:not(.cta-primary),
  header .main-nav img {
    font-size: 1rem;
    padding: 8px 10px;
  }
}
@media (max-width: 900px) {
  header .main-nav a {
    font-size: .96rem;
    padding: 8px 8px;
  }
  .container { padding: 0 13px; }
}
@media (max-width: 789px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 490px) {
  .mobile-nav {
    margin-top: 66px;
    gap: 15px;
    padding-left: 13px;
  }
}

/* =========================================
   HERO (INDEX)
========================================= */
.hero {
  background: var(--vintage-blue);
  color: var(--accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 48px 0 48px 0;
  position: relative;
}
.hero h1 {
  color: #faf1e1;
  text-shadow: 0 3px 14px rgba(21,30,55,0.15);
  font-size: 2.8rem;
  margin-bottom: 18px;
}
.hero p {
  color: #F9F9F6;
  font-size: 1.14rem;
  max-width: 620px;
  margin-bottom: 32px;
}
.hero .cta-primary {
  background: var(--vintage-orange);
  color: #2A2115;
  font-family: var(--font-display);
}

/* =========================================
   FEATURES
========================================= */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features .feature-item img {
  width: 36px;
  height: 36px;
  filter: sepia(0.6) saturate(0.85);
}

/* =========================================
   SERVICE CARDS & OVERVIEWS
========================================= */
.service-cards,.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
  justify-content: flex-start;
}
.service-card, .service-entry {
  background: #fcf9f2;
  border-radius: 16px;
  box-shadow: 0 2px 11px rgba(186,142,65,0.10);
  min-width: 230px;
  max-width: 320px;
  flex: 1 1 220px;
  padding: 24px 18px;
  margin-bottom: 22px;
  transition: box-shadow .2s, background .19s;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}
.service-card:hover, .service-entry:hover {
  background: #fdeece;
  box-shadow: 0 9px 18px rgba(180,93,29,0.105);
}
.service-card img, .service-entry img {
  width: 34px;
  height: 34px;
  filter: sepia(.5) hue-rotate(-17deg) saturate(1.1);
  margin-bottom: 10px;
}
.service-card h3, .service-entry h2{
  color: var(--primary);
  font-size: 1.16rem;
  margin-bottom: 10px;
}
.service-card p, .service-entry p{
  color: #655a42;
}

/* =========================================
   TESTIMONIALS, RATING CARDS
========================================= */
.testimonials .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 18px;
}
.review-summary, .rating-overview {
  background: #fff8ea;
  color: var(--primary);
  border-radius: 10px;
  padding: 13px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  box-shadow: 0 1.5px 4px rgba(180,140,100,0.06);
  margin-bottom: 18px;
  font-size: 1.07em;
}

/* =========================================
   ABOUT PAGE, WHY-CHOOSE-US
========================================= */
.about, .team, .why-choose-us, .about-highlight {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff9f3;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 16px rgba(160,106,22,.06);
}
.about h1, .team h2, .about-highlight h2, .why-choose-us h2 {
  color: var(--vintage-brown);
  letter-spacing: 0.2px;
}
.trust-badges {
  display: flex;
  gap: 16px;
  align-items: center;
}
.trust-badges img {
  height: 36px;
  background: #fff3ce;
  border-radius: 8px;
  box-shadow: 0 2px 8px #ecdba8;
  padding: 7px;
}

/* =========================================
   PRICING TABLE
========================================= */
.pricing-table {
  margin-bottom: 58px;
  background: #F9F3EC;
  border-radius: var(--border-radius);
  box-shadow: 0 1.5px 9px rgba(163,120,71,0.08);
}
.service-pricing-grid {
  width: 100%;
  margin-bottom: 28px;
  font-family: var(--font-display);
}
.service-pricing-grid th, .service-pricing-grid td {
  padding: 16px 20px;
  border-bottom: 1px dotted #d8bfa0;
  text-align: left;
  color: #423820;
}
.service-pricing-grid tbody tr {
  background: #fcf6e6;
  transition: background 0.15s;
}
.service-pricing-grid tbody tr:hover {
  background: #fdeee3;
}
.service-pricing-grid th {
  background: #e8dcca;
  font-size: 1.06rem;
  color: var(--primary);
}

.opening-hours-table {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}
.opening-hours-table td {
  padding: 10px 8px;
  color: #795F44;
  font-size: 1em;
}

/* =========================================
   ACCORDION FAQ
========================================= */
.accordion-faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 18px;
}
.faq-item {
  background: #fff8ea;
  border-radius: 10px;
  box-shadow: 0 1px 7px rgba(205,167,88,0.07);
  padding: 18px 17px;
  transition: box-shadow 0.16s;
}
.faq-item h2 {
  font-size: 1.13rem;
  color: var(--vintage-green);
  margin-bottom: 6px;
  cursor: pointer;
}
.faq-answer {
  font-size: 0.98rem;
  color: #3e2c17;
}

.quick-contact-prompt {
  background: var(--vintage-blue);
  color: #f8f4ee;
  border-radius: 12px;
  padding: 15px 22px;
  font-size: 1.01em;
  font-family: var(--font-display);
  margin-bottom: 10px;
}
.quick-contact-prompt strong {
  color: #FFF59D;
}

/* =========================================
   BUTTONS & INTERACTION
========================================= */
.cta-primary,
.cta-primary:visited {
  padding: 12px 36px;
  border-radius: 14px;
  background: var(--vintage-orange);
  color: #251106;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.14rem;
  border: 2px solid transparent;
  box-shadow: 0 4px 16px rgba(178, 101, 33, 0.089);
  margin-top: 18px;
  transition: background .21s, color .13s, transform .17s, border-color .16s, box-shadow .18s;
  cursor: pointer;
  text-align: center;
  letter-spacing: 1.4px;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--secondary);
  color: #fffbe9;
  border-color: var(--vintage-blue);
  outline: none;
  box-shadow: 0 7px 21px rgba(17, 102, 100, 0.14);
  transform: translateY(-3px) scale(1.035);
}

button, .button {
  border: none;
  border-radius: 8px;
  background: var(--vintage-blue);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 600;
  padding: 9px 23px;
  box-shadow: 0 1.5px 6px rgba(0,0,0,0.07);
  cursor: pointer;
  transition: background .14s, color .16s, box-shadow .12s;
}
button:hover, .button:hover {
  background: var(--vintage-orange);
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(207, 133, 50, 0.09);
}

/* Utilities for visual hierarchy */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* =========================================
   FORM ELEMENTS (for future forms)
========================================= */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 10px 12px;
  border-radius: 7px;
  border: 1.5px solid #ceb875;
  margin-bottom: 15px;
  background: #fffbe9;
  color: #32230b;
  box-shadow: 0 1px 4px rgba(185,109,26,.06);
  outline: none;
  transition: border-color 0.17s, background 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
  background: #fff7c6;
}
label {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

/* =========================================
   FOOTER
========================================= */
footer {
  background: var(--primary);
  color: #d9caab;
  font-family: var(--font-display);
  text-align: center;
  margin-top: 80px;
  padding: 40px 12px 26px 12px;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -2px 8px rgba(36,30,22;.08);
}
footer nav a {
  color: #e6d8be;
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 7px;
  transition: background .13s, color .13s;
}
footer nav a:hover {
  background: var(--vintage-orange);
  color: var(--primary);
}
footer p {
  color: #bba580;
  margin-top: 10px;
}

/* =========================================
   COOKIE CONSENT BANNER
========================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #f5e9d5;
  color: #422c1c;
  font-family: var(--font-body);
  box-shadow: 0 -2px 14px rgba(90,60,24,0.12);
  padding: 13px 21px 22px 21px;
  z-index: 2200;
  display: flex;
  align-items: center;
  gap: 27px;
  flex-wrap: wrap;
  transition: transform .32s;
  border-radius: 19px 19px 0 0;
}
.cookie-banner.hide {
  transform: translateY(140%);
}
.cookie-banner .banner-text {
  flex: 2;
  font-size: 1.04rem;
}
.cookie-banner .cookie-buttons {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-btn {
  background: var(--vintage-orange);
  color: #32200e;
  padding: 11px 17px;
  border-radius: 8px;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.04em;
  border: 2px solid #ccb79a;
  margin-right: 6px;
  min-width: 120px;
  cursor: pointer;
  transition: background .15s, color .12s, border-color .13s; 
}
.cookie-btn:last-child {
  margin-right: 0;
}
.cookie-btn:hover {
  background: var(--secondary);
  color: #fffbe6;
  border-color: var(--vintage-blue);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-54%) scale(1);
  background: #fff8ec;
  box-shadow: 0 14px 48px rgba(34,23,13,0.23);
  z-index: 2400;
  border-radius: 15px;
  min-width: 310px;
  max-width: 98vw;
  padding: 34px 28px 28px 28px;
  display: none;
  flex-direction: column;
  gap: 22px;
  animation: cookieModalPop .24s cubic-bezier(.4,1.6,.3,1.03);
}
.cookie-modal.open {
  display: flex;
  animation: cookieModalPop .44s cubic-bezier(.4,1.6,.3,1.03);
}
@keyframes cookieModalPop {
  from { transform: translate(-50%,-62%) scale(0.95); opacity: 0; }
  to   { transform: translate(-50%,-54%) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--primary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-category label {
  font-family: var(--font-display);
  color: var(--primary);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.cookie-modal .close-cookie-modal {
  background: none;
  color: var(--danger);
  border: none;
  font-size: 2rem;
  position: absolute;
  top: 16px;
  right: 22px;
  cursor: pointer;
  transition: color .13s;
}
.cookie-modal .close-cookie-modal:hover{
  color: var(--vintage-blue);
}

/* =========================================
   SPECIAL PAGE CLASS ENHANCEMENTS
========================================= */
.project-showcase, .testimonial-highlight, .success, .legal {
  margin-bottom: 65px;
  background: #fbeddd;
  border-radius: var(--border-radius);
  box-shadow: 0 1.5px 9px rgba(163,120,71,0.08);
  padding: 38px 17px;
}
.before-after-descriptions h2 {
  color: var(--vintage-blue);
  font-size: 1.1rem;
  margin: 18px 0 8px 0;
}

/* Thank you page highlights */
.thank-you-message {
  background: #fffbe9;
  border-radius: 13px;
  padding: 22px 18px;
  margin-bottom: 18px;
  font-size: 1.04rem;
}

.next-steps-info ul li {
  color: #70542c;
  font-size: 0.98rem;
}

/* Legal sections */
.privacy-policy-text ul li,
.gdpr-compliance-text ul li,
.cookie-policy-text ul li,
.terms-conditions-text ul li {
  font-size: 0.99rem;
  color: #503a1e;
}

/* =========================================
   RESPONSIVE DESIGN (Mobile First)
========================================= */
@media (max-width: 1000px) {
  .service-cards,.service-list,.features .feature-grid {
    gap: 16px;
  }
  .about, .team, .why-choose-us, .about-highlight, .section {
    padding: 34px 7px;
  }
  .hero { padding: 39px 0; }
  .project-showcase, .testimonial-highlight, .success, .legal {
    padding: 26px 5px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding: 0px 7vw;
  }
  .content-wrapper {
    gap: 18px;
  }
  .section {
    margin-bottom: 43px;
    padding: 24px 4px;
  }
  .hero {
    padding: 21px 0 31px 0;
    border-radius: 0 0 18px 18px;
  }
  .hero h1 {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }
  .service-cards, .service-list, .testimonial-slider, .features .feature-grid {
    flex-direction: column;
    gap: 13px;
  }
  .card-container, .content-grid, .testimonial-slider,
  .features .feature-grid {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-card, .service-card, .service-entry, .feature-item {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 540px) {
  .container {
    padding: 0 6px;
  }
  .section, .about, .team, .why-choose-us, .about-highlight {
    padding: 12px 1.5vw;
    border-radius: 12px;
  }
  .hero {
    padding: 12px 0 18px 0;
    border-radius: 0 0 12px 12px;
  }
  .testimonial-card, .service-card, .service-entry, .feature-item {
    padding: 14px 7px;
  }
  .footer-nav a {
    font-size: 0.9em;
    padding: 5px 5px;
  }
  .cookie-modal {
    min-width: 0;
    padding: 22px 8px 13px 8px;
  }
}
@media (max-width: 370px) {
  .cookie-banner {
    gap: 5px;
    padding: 10px 3px 12px 3px;
  }
  .cookie-btn {
    min-width: 90px;
    font-size: .89em;
  }
}

/* =========================================
   VARIOUS MINOR ADJUSTMENTS
========================================= */
.text-section {
  margin-bottom: 10px;
}
.company-details {
  font-size: 1rem;
  color: #6b5630;
  margin-bottom: 18px;
}

/**** Accessibility tweaks ****/
h1, h2, h3 { outline: none; }

/**** Hide spatially for accessibility ****/
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap !important;
}

/* Z-INDEX HANDLING */
header { z-index: 10; }
.mobile-menu { z-index: 200; }
.cookie-banner { z-index: 2200; }
.cookie-modal { z-index: 2400; }

/**** END OF STYLE.CSS ****/
