/* ====================================================== */
/* CSS RESET & BASELINE NORMALIZATION                     */
/* ====================================================== */
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;
  background: transparent;
  box-sizing: border-box;
}
body {
  line-height: 1.6;
  background: #FCFAF2;
  color: #222;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  background: none;
  border: none;
  outline: none;
}
*, *:before, *:after {
  box-sizing: border-box;
}

/* ====================================================== */
/* FONT-FACE & TYPOGRAPHY                                */
/* ====================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;700&display=swap');

:root {
  --brand-primary: #254D3B;
  --brand-primary-rgb: 37,77,59;
  --brand-secondary: #D9E6D3;
  --brand-accent: #A07623;
  --brand-bg: #FCFAF2;
  --brand-grey: #ECE2D0;
  --brand-light: #FFFFFF;
  --brand-dark: #21211a;
  --shadow-vintage: 0 4px 24px rgba(37,77,59,0.08), 0 1.5px 0 0 #B5914B;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --radius-card: 14px;
  --radius-btn: 24px;
  --pattern-bg: repeating-linear-gradient(135deg, #FAF4E0 0 4px, transparent 4px 20px);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--brand-primary);
  font-weight: 900;
  letter-spacing: -1px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  text-shadow: 0.5px 1px 0 var(--brand-accent);
}
h2 {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}
h3 {
  font-size: 1.375rem;
  margin-bottom: var(--space-md);
  font-weight: 700;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}
p, ul, ol {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

strong {
  font-weight: 700;
  color: var(--brand-accent);
}

/* Vintage/Retro Patterns */
body {
  background: var(--brand-bg);
}

.pattern-bg {
  background: var(--pattern-bg);
}

/* ====================================================== */
/* LAYOUT - CONTAINERS, FLEX SPACING, SECTION SPACING     */
/* ====================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-secondary);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-vintage);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  flex: 1 1 280px;
  min-width: 240px;
  margin-bottom: 20px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-vintage);
  background: var(--brand-light);
  position: relative;
  padding: var(--space-lg);
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 40px rgba(37,77,59,0.2), 0 2px 0 0 var(--brand-accent);
}
.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: #FFF8E1;
  border-radius: var(--radius-card);
  box-shadow: 0 2px 16px rgba(37,77,59,0.11);
  min-width: 260px;
  margin-bottom: 24px;
  border: 2px solid var(--brand-accent);
  color: #332A16;
}
.testimonial-card strong {
  color: var(--brand-primary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: var(--space-md);
}
.features-grid > div {
  flex: 1 1 280px;
  min-width: 200px;
  background: var(--brand-light);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-vintage);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: 20px;
  border: 1.5px solid #DFD6C3;
  transition: box-shadow 0.2s, border 0.2s;
}
.features-grid > div:hover {
  box-shadow: 0 8px 28px rgba(37,77,59,0.19), 0 2px 0 0 var(--brand-accent);
  border: 1.5px solid var(--brand-accent);
}

/* Case study/portfolio */
.case-study-summaries {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: var(--space-md);
  margin-bottom: 24px;
}
.case-study-card {
  background: #FAEEE6;
  border-radius: var(--radius-card);
  box-shadow: 0 1px 12px rgba(37,77,59,0.10);
  padding: 24px 22px;
  min-width: 260px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  border: 1.5px solid var(--brand-accent);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.short-project-descriptions,
.category-summaries {
  background: #FFF7DF;
  border-radius: 12px;
  padding: var(--space-md);
  box-shadow: 0 1px 12px rgba(37,77,59,0.05);
}

/* Testimonial slider structure (horizontal, flex) */
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.star-rating-overview {
  font-family: var(--font-display);
  color: var(--brand-accent);
  font-size: 1.1rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Newsletter, Blog, etc. */
.newsletter-section,
.cta-section,
.featured-articles {
  background: #FCEFC1;
  border-radius: var(--radius-card);
  box-shadow: 0 2px 16px rgba(37,77,59,0.09);
  margin-bottom: 60px;
  padding: 40px 20px;
}

.newsletter-benenfits ul {
  padding-left: 24px;
}
.newsletter-signup p {
  font-size: 1.06rem;
  margin-bottom: var(--space-md);
}

/* Cards & Utility */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-sm);
}

/* Blog Overview */
.blog-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.blog-overview article {
  flex: 1 1 260px;
  background: #FAEEE6;
  border-radius: var(--radius-card);
  padding: var(--space-md) var(--space-lg);
  box-shadow: 0 1.5px 10px rgba(37,77,59,0.09);
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.blog-overview article:hover {
  box-shadow: 0 7px 30px rgba(160,118,35,0.15);
}
.featured-articles ul,
.category-list ul,
.newsletter-benenfits ul {
  padding-left: 24px;
  margin-bottom: 0;
}
.featured-articles li,
.category-list li,
.newsletter-benenfits li {
  margin-bottom: 10px;
}
.featured-articles a {
  color: var(--brand-primary);
  font-weight: 700;
  border-bottom: 2px dashed var(--brand-accent);
  transition: border-color 0.3s, color 0.2s;
}
.featured-articles a:hover {
  color: var(--brand-accent);
  border-bottom: 2px solid var(--brand-accent);
}

.category-list {
  margin-bottom: 20px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

/* Timeline/Info layout */
.timeline-overview {
  background: #FFF7DF;
  border-radius: 12px;
  padding: var(--space-md);
  box-shadow: 0 1px 8px rgba(37,77,59,0.07);
  margin-bottom: 20px;
}
.timeline-overview ul {
  margin-left: 24px;
}

.info {
  background: #F8F5E9;
  border-radius: 10px;
  padding: var(--space-md);
  margin-bottom: 20px;
}

/* ====================================================== */
/* HEADER & NAVIGATION (Desktop & Mobile)                 */
/* ====================================================== */
header {
  background: var(--brand-secondary);
  box-shadow: 0 1px 10px rgba(37,77,59,0.09);
  border-bottom: 2.5px solid var(--brand-accent);
  position: relative;
  z-index: 11;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 20px 18px 0;
}
header nav > a img {
  height: 48px;
  width: auto;
  margin-right: 10px;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
nav ul li {
  list-style: none;
}
nav ul li a {
  font-family: var(--font-display);
  font-weight: bold;
  color: var(--brand-primary);
  letter-spacing: 1px;
  font-size: 1.05rem;
  transition: color 0.2s;
  padding: 4px 14px;
  border-radius: 8px;
  border: 2px solid transparent;
}
nav ul li a:hover,
nav ul li a:focus {
  color: var(--brand-accent);
  border-color: var(--brand-accent);
}
.cta-btn {
  font-family: var(--font-display);
  color: var(--brand-light);
  background: var(--brand-accent);
  font-weight: 700;
  font-size: 1.04rem;
  padding: 11px 32px;
  border-radius: var(--radius-btn);
  box-shadow: 0 1.6px 0 0 var(--brand-primary);
  transition: background 0.15s, transform 0.07s, box-shadow 0.22s;
  cursor: pointer;
  margin-left: 24px;
  border: none;
  outline: none;
  letter-spacing: 0.5px;
  text-shadow: 0.5px 1px #FAEEE6;
  position: relative;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #b5914b;
  transform: translateY(-2px) scale(1.05) rotate(-1deg);
  box-shadow: 0 6px 20px rgba(160,118,35,0.18);
}

.mobile-menu-toggle {
  background: var(--brand-accent);
  color: var(--brand-light);
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  display: none;
  cursor: pointer;
  margin-right: 12px;
  position: absolute;
  right: 15px;
  top: 22px;
  z-index: 40;
  transition: background 0.15s;
  box-shadow: 0 2px 8px rgba(160,118,35,0.115);
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--brand-primary);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FAF4E0;
  box-shadow: 0 2px 40px 0 rgba(37,77,59,0.15);
  transform: translateX(-100vw);
  transition: transform .38s cubic-bezier(0.6,0,0.4,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 48px 32px 32px 24px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--brand-accent);
  color: var(--brand-light);
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  display: flex;
  cursor: pointer;
  margin-bottom: 26px;
  margin-top: 0;
  transition: background 0.15s;
  box-shadow: 0 2px 8px rgba(160,118,35,0.13);
}
.mobile-menu-close:hover {
  background: var(--brand-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--brand-primary);
  padding: 12px 6px;
  border-radius: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  transition: background 0.16s, color 0.18s;
  box-shadow: none;
}
.mobile-nav a:hover {
  background: var(--brand-accent);
  color: var(--brand-light);
}

/* Hide navigation on mobile - show burger icon */
@media (max-width: 1024px) {
  header nav ul, header nav .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

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

/* Keep header sticky (optional, looks vintage) */
@media (min-width: 769px) {
  header {
    position: sticky;
    top: 0;
  }
}

/* ====================================================== */
/* HERO SECTION, CTA & RETRO ELEMENTS                     */
/* ====================================================== */
.hero {
  margin-bottom: 56px;
  min-height: 440px;
  background: var(--pattern-bg), var(--brand-secondary);
  display: flex;
  align-items: center;
  border-bottom: 8px solid var(--brand-accent);
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 320px;
}
.hero .content-wrapper {
  padding: 64px 0 48px;
  background: rgba(255,255,255,0.88);
  border-radius: 18px 80px 32px 0 / 56px 65px 18px 14px;
  box-shadow: 0 7px 32px rgba(37,77,59,0.07);
  gap: 32px;
}
.hero .cta-btn {
  font-size: 1.16rem;
  font-family: var(--font-display);
  letter-spacing: 1px;
  margin-top: 16px;
  padding: 15px 40px;
}

.cta-section {
  margin-bottom: 60px;
  padding: 44px 20px;
  background: repeating-linear-gradient(-45deg,#f8ecd6 0 20px,#ffffff 20px 40px);
  border: 2.5px solid var(--brand-accent);
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 2px 20px rgba(37,77,59,0.07);
}
.cta-section .cta-btn {
  margin-top: 18px;
  font-size: 1.15rem;
}

/* ====================================================== */
/* FOOTER                                                */
/* ====================================================== */
footer {
  background: var(--brand-secondary);
  box-shadow: 0 -2px 18px 0 rgba(37,77,59,0.09);
  padding-top: 40px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 0 20px 0;
}
.footer-nav > div img {
  height: 46px;
  margin-bottom: 8px;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav nav a {
  font-size: 1rem;
  color: var(--brand-primary);
  font-family: var(--font-display);
  letter-spacing: 1px;
  margin-bottom: 0;
  transition: color .18s;
}
.footer-nav nav a:hover {
  color: var(--brand-accent);
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 9px;
}
.footer-contact img {
  height: 16px;
  width: 16px;
  margin-right: 7px;
  vertical-align: middle;
}
.footer-legal {
  border-top: 1.2px dashed #B5914B;
  color: #787159;
  font-size: 0.97rem;
  padding-top: 11px;
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}
.footer-legal a {
  color: var(--brand-primary);
  font-weight: 600;
  margin-right: 7px;
}
.footer-legal a:hover {
  color: var(--brand-accent);
  text-decoration: underline;
}

/* ====================================================== */
/* BUTTONS, LINKS, MICRO-INTERACTIONS                     */
/* ====================================================== */
button,
.cta-btn {
  cursor: pointer;
  transition: background 0.15s, transform 0.08s, box-shadow 0.18s, color 0.13s;
  outline: none;
}
button:active,
.cta-btn:active {
  transform: translateY(1px) scale(0.995);
}
a:focus-visible, .cta-btn:focus-visible {
  outline: 3px solid var(--brand-accent);
  outline-offset: 1px;
}

/* Retro style focus ring for accessibility */
:focus {
  outline: 2.5px dashed var(--brand-accent);
  outline-offset: 2.5px;
}

/* ====================================================== */
/* COOKIE CONSENT BANNER & COOKIE MODAL                   */
/* ====================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 500;
  background: #FFD778;
  color: #332A16;
  font-family: var(--font-body);
  box-shadow: 0 -6px 40px 0 rgba(160,118,35,0.10);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  padding: 22px 20px;
  justify-content: space-between;
  border-top: 4px solid var(--brand-accent);
  border-radius: 16px 16px 0 0;
  animation: fadein-ctr .7s;
}
@keyframes fadein-ctr { from { opacity: 0; bottom: -80px; } to { opacity: 1; bottom: 0; } }
.cookie-banner .cookie-banner-text {
  flex: 1 1 260px;
  font-size: 1.04rem;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}
.cookie-banner button {
  font-family: var(--font-display);
  border-radius: var(--radius-btn);
  font-size: 1rem;
  padding: 9px 22px;
  background: var(--brand-primary);
  color: var(--brand-light);
  border: none;
  box-shadow: 0 2px 6px 0 rgba(37,77,59,0.15);
  font-weight: 700;
}
.cookie-banner .cookie-settings-btn {
  background: var(--brand-accent);
  color: var(--brand-light);
  border: 1.8px solid var(--brand-accent);
}
.cookie-banner .cookie-reject-btn {
  background: var(--brand-grey);
  color: var(--brand-accent);
  border: 1.8px solid var(--brand-accent);
}
.cookie-banner button:hover {
  opacity: 0.91;
  filter: brightness(1.03);
}

/********* COOKIE MODAL OVERLAY **********/
.cookie-modal-bg {
  position: fixed;
  z-index: 1300;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44, 35, 4, 0.33);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein-bg .4s;
}
@keyframes fadein-bg { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  min-width: 320px;
  width: 96vw;
  max-width: 430px;
  border-radius: 18px;
  background: #F9F3E9;
  padding: 36px 28px 28px 36px;
  box-shadow: 0 8px 60px 0 rgba(37,77,59,0.18);
  color: var(--brand-dark);
  position: relative;
  animation: slideDownModal .36s cubic-bezier(.6,0,.4,1);
}
@keyframes slideDownModal { from { transform: translateY(-50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-modal-close {
  position: absolute;
  right: 17px;
  top: 12px;
  background: var(--brand-accent);
  color: var(--brand-light);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-modal-close:hover {
  background: var(--brand-primary);
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0 6px 0;
  border-bottom: 1.2px dashed var(--brand-accent);
  margin-bottom: 7px;
  font-size: 1.08rem;
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal .switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}
.cookie-modal .switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #d7c7a6;
  border-radius: 16px;
  transition: .2s;
}
.cookie-modal .slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background: var(--brand-accent);
  border-radius: 50%;
  transition: .2s;
}
.cookie-modal .switch input:checked + .slider {
  background: var(--brand-accent);
}
.cookie-modal .switch input:checked + .slider:before {
  background: var(--brand-light);
  transform: translateX(22px);
}
.cookie-modal .switch input:disabled + .slider {
  background: #cfc6b6;
  opacity: .65;
  cursor: default;
}
.cookie-modal .cookie-essential-label {
  color: var(--brand-accent);
  font-weight: bold;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 28px;
}
.cookie-modal .cookie-modal-actions button {
  font-family: var(--font-display);
  font-size: 1rem;
  background: var(--brand-primary);
  color: var(--brand-light);
  border-radius: 24px;
  border: none;
  padding: 9px 22px;
  font-weight: 700;
  transition: background 0.13s;
}
.cookie-modal .cookie-modal-actions button.secondary {
  background: var(--brand-accent);
  color: var(--brand-light);
}
.cookie-modal .cookie-modal-actions button:hover,
.cookie-modal .cookie-modal-actions button:focus {
  filter: brightness(1.11);
}

/* ====================================================== */
/* MISCELLANEOUS BUTTON, FORM, MARGIN CLASSES             */
/* ====================================================== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  margin-bottom: 8px;
}
.contact-details img {
  margin-right: 6px;
  height: 17px;
  width: 17px;
  vertical-align: middle;
}
.map-location p img {
  margin-right: 6px;
  height: 16px;
  width: 16px;
  vertical-align: middle;
}
.info p strong {
  color: var(--brand-accent);
}

@media (max-width: 1024px) {
  .footer-nav {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .footer-nav nav {
    flex-direction: row;
    gap: 14px 18px;
    flex-wrap: wrap;
  }
}

@media (max-width: 900px) {
  .case-study-summaries, .card-container, .content-grid, .features-grid, .testimonials-slider, .blog-overview {
    flex-direction: column;
    gap: 20px;
  }
  .features-grid > div, .card, .case-study-card, .testimonial-card {
    flex: 1 1 100%;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .section, .newsletter-section, .cta-section, .featured-articles {
    padding: 26px 5px;
    margin-bottom: 40px;
  }
  h1 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
  }
  h2 {
    font-size: 1.23rem;
    margin-bottom: var(--space-sm);
  }
  .hero .content-wrapper {
    padding: 36px 5px 24px;
    border-radius: 16px;
    gap: 20px;
  }
  .content-wrapper, .text-section, .card-content, .category-list ul {
    gap: 12px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .content-grid, .features-grid, .card-container, .case-study-summaries, .testimonials-slider, .blog-overview {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card, .features-grid > div, .case-study-card, .card {
    min-width: 0;
    padding: 14px;
  }
  .mobile-menu, .cookie-modal {
    padding: 20px 7vw;
    max-width: 99vw;
  }
}

@media (max-width: 520px) {
  .footer-legal {
    flex-direction: column;
    gap: 5px;
    text-align: left;
    padding-top: 5px;
  }
}

/********** RETRO/ VINTAGE MICRO-DECOR **********/
.features-grid > div::before, .case-study-card::before {
  content: '';
  display: block;
  width: 40px;
  height: 5px;
  margin-bottom: 14px;
  background: repeating-linear-gradient(90deg,#FFD778 0 10px, #EFD275 10px 20px);
  border-radius: 20px;
  opacity: 0.7;
}
.features-grid > div h3, .case-study-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--brand-accent);
  text-shadow: 1px 1px 0 #ffefd3;
  letter-spacing: 0.6px;
}

.section {
  border: 2px solid #f2e5cd;
}

/* Ensuring spacing and horizontal rules between sections */
section + section:not(.cta-section) {
  margin-top: 30px;
  border-top: 6px dotted #B5914B;
  padding-top: 28px;
}

/********** QUOTES & BLOCKS **********/
blockquote, .testimonial-card p {
  font-family: var(--font-display);
  font-size: 1.16rem;
  color: #6a5524;
  letter-spacing: 0.05em;
  font-style: italic;
}

/************************************************************/
/*             END OF GLANZBLATT INTERIORS CSS             */
/************************************************************/
