/* Normalize & CSS reset - Luxury Premium Base */
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;  
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #f5f7fa;
  color: #233047;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}

/* Brand Variables (no CSS custom properties for legacy support) */

:root {
  /* Main palette for luxury style */
  --brand-primary: #20436F; /* deep blue */
  --brand-secondary: #ffffff;
  --brand-bg: #f5f7fa;
  --brand-gold: #C46B18;
  --brand-gold-lighter: #EE8E37;
  --brand-dark: #181F2C;
  --brand-text: #233047;
  --brand-muted: #7e879a;
  --shadow-light: 0 4px 24px rgba(32,67,111,0.10);
  --shadow-hover: 0 8px 32px rgba(32,67,111,0.16);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #181F2C;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.6rem; margin-bottom: 16px;}
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; font-weight: 600;}
h4 { font-size: 1.1rem; }


p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}

ul, ol { margin-left: 32px; margin-bottom: 20px;}
li { margin-bottom: 8px; }

strong { color: var(--brand-primary); font-weight: bold;}
a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--brand-gold-lighter);
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-secondary);
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/*************************
  HEADER & NAVIGATION
*************************/
header {
  background: var(--brand-secondary);
  border-bottom: 1px solid #e1e4e8;
  box-shadow: 0 2px 12px rgba(50,70,110,0.03);
  position: sticky;
  top: 0;
  z-index: 1002;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 0;
  position: relative;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 32px;
}

.main-nav {
  display: flex;
  flex-direction: row;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #222945;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.18s;
  letter-spacing: 0.01em;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--brand-gold);
  border-bottom: 2px solid var(--brand-gold);
}

.btn-primary {
  background: linear-gradient(90deg, var(--brand-gold), var(--brand-gold-lighter));
  color: var(--brand-secondary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  padding: 13px 36px;
  border-radius: 30px;
  box-shadow: 0 2px 14px 0 rgba(196,107,24,0.13);
  border: none;
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.16s, transform 0.13s;
  margin-left: 32px;
  outline: none;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(100,62,20,0.04);
  border: 1.5px solid var(--brand-gold);
  box-sizing: border-box;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, var(--brand-gold-lighter), var(--brand-gold));
  color: var(--brand-secondary);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 32px rgba(196,107,24,0.18);
  border-color: var(--brand-gold-lighter);
}

/*************************
  BURGER MENU (Mobile)
*************************/
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--brand-primary);
  margin-left: 28px;
  cursor: pointer;
  z-index: 1003;
  transition: color 0.15s;
}
.mobile-menu-toggle:hover{
  color: var(--brand-gold);
}
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(17,23,34,0.96);
  box-shadow: 0 2px 48px 0 rgba(32,67,111,0.25);
  z-index: 2020;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-110vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.8,0,0.2,1), opacity 0.25s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: transparent;
  color: var(--brand-gold);
  border: none;
  font-size: 2.2rem;
  position: absolute;
  right: 29px;
  top: 25px;
  cursor: pointer;
  z-index: 2022;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-top: 84px;
  width: 100vw;
  gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
}
.mobile-nav a {
  color: var(--brand-secondary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.35rem;
  padding: 22px 32px;
  width: 100vw;
  border-bottom: 1px solid rgba(240, 165, 62, 0.08);
  transition: background 0.19s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: rgba(255,157,44,0.13);
  color: var(--brand-gold);
}

/*************************
  HERO & SUBHEADLINE
*************************/
.hero-section {
  background: #20436F url('../assets/hero-bg.jpg') center center/cover no-repeat;
  color: var(--brand-secondary);
  padding: 60px 0 54px 0;
  min-height: 340px;
  text-align: left;
  border-radius: 0 0 28px 28px;
}
.hero-section h1 {
  color: var(--brand-secondary);
  font-size: 2.6rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 7px rgba(0,0,0,0.10);
}
.hero-section .subheadline {
  color: #e8e9f2;
  font-size: 1.15rem;
  margin-bottom: 30px;
  font-family: 'Roboto', Arial, sans-serif;
}
.hero-section .btn-primary {
  font-size: 1.23rem;
  margin: 0;
  margin-top: 7px;
}

/*************************
  FEATURES & CARDS
*************************/
.features-section {
  background: var(--brand-secondary);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 28px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 17px;
  box-shadow: var(--shadow-light);
  padding: 26px 24px 24px 24px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  border: 1.5px solid #eee6da;
  position: relative;
  transition: box-shadow 0.19s, border-color 0.18s, transform 0.13s;
}
.feature-item img {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 2px 6px #eaccaa66);
}
.feature-item h3 {
  margin-bottom: 4px;
  font-size: 1.15rem;
  color: var(--brand-primary);
}
.feature-item p {
  color: #233047;
  font-size: 1rem;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-gold);
  transform: translateY(-5px) scale(1.025);
}

/*************************
  CARDS CONTAINERS (blog, projects)
*************************/
.card-container, .blog-cards, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 32px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: var(--shadow-light);
  border: 1.5px solid #ebebeb;
}
/* Blog Cards */
.blog-card {
  background: #fff;
  border: 1.5px solid #e6e9f1;
  border-radius: 17px;
  box-shadow: 0 4px 24px #e7e9f14d;
  padding: 28px 23px 23px 23px;
  flex: 1 1 300px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, border-color 0.12s, transform 0.14s;
}
.blog-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-primary);
}
.blog-card p {
  font-size: 1rem;
  color: var(--brand-text);
}
.blog-card .read-more {
  color: var(--brand-gold);
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: 0.01em;
  font-size: 1rem;
  transition: color 0.16s;
}
.blog-card .read-more:hover {
  color: var(--brand-gold-lighter);
}
.blog-card:hover, .blog-card:focus-within {
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-gold);
  transform: translateY(-3px) scale(1.025);
}

/*************************
  CTA SECTION
*************************/
.cta-section {
  margin-bottom: 60px;
  padding: 60px 20px;
  background: var(--brand-primary);
  color: var(--brand-secondary);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 2px 24px #0a163061;
}
.cta-section h2 {
  color: var(--brand-secondary);
  font-size: 2rem;
  margin-bottom: 28px;
}
.cta-section .btn-primary {
  margin-top: 0;
  font-size: 1.2rem;
}

/*************************
 SERVICE & CONTENT BLOCKS
*************************/
.services-section, .services-overview {
  background: var(--brand-bg);
  border-radius: 20px;
  padding-bottom: 10px;
  margin-bottom: 60px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 20px 0;
}
.service-item {
  background: #fff;
  border: 1.5px solid #f4e6cf;
  border-left: 4px solid var(--brand-gold);
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  padding: 28px 22px;
  flex: 1 1 260px;
  min-width: 225px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  transition: border-color 0.17s, box-shadow 0.18s, transform 0.12s;
}
.service-item h3 {
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 1.13rem;
  margin-bottom: 7px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.service-item h3 span {
  color: var(--brand-gold);
  font-size: 1rem;
  font-weight: 600;
}
.service-item p {
  color: #293652;
}
.service-item:hover, .service-item:focus-within {
  border-color: var(--brand-gold-lighter);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.015);
}

/*************************
  TESTIMONIALS
*************************/
.testimonials-section {
  background: var(--brand-secondary);
  border-radius: 22px;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow-light);
  border: 1.5px solid #f2e9da;
  border-radius: 14px;
  flex: 1 1 290px;
  min-width: 240px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.13s, border-color 0.12s;
}
.testimonial-card p {
  color: #253153;
  font-size: 1.08rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 6px;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-client {
  color: var(--brand-primary);
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-top: 7px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-gold);
}

/*************************
  PROJECT HIGHLIGHTS & MISC CONTENT
*************************/
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section, .contact-section .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 10px;
  margin-bottom: 16px;
}
.usp-list { 
  list-style-type: disc;
  color: var(--brand-primary);
  margin-bottom: 20px;
  margin-left: 32px;
}
.usp-list li {
  color: var(--brand-text);
  margin-bottom: 8px;
}
/* Neutrale Map */
.map-neutral {
  background: #edeae5;
  border: 1.5px solid #e7dac2;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 155px;
  padding: 26px 19px;
  color: #a29683;
  font-style: italic;
}

/*************************
  FOOTER
*************************/
footer {
  background: var(--brand-primary);
  color: var(--brand-secondary);
  padding: 54px 0 24px 0;
  border-radius: 32px 32px 0 0;
  margin-top: 40px;
  box-shadow: 0 -2px 34px #20436f14;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 7px;
}
.footer-brand p {
  color: #e0eafe;
  font-size: 0.99rem;
}
.footer-nav {
  flex: 2 1 350px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 1px;
}
.footer-nav a {
  color: #e2e4ec;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  opacity: 0.94;
  margin-bottom: 5px;
  border-bottom: 1.5px dotted transparent;
  padding-bottom: 1px;
  transition: color 0.13s, border-color 0.14s;
}
.footer-nav a:hover {
  color: var(--brand-gold-lighter);
  border-bottom: 1.5px dotted var(--brand-gold-lighter);
}
.footer-contact {
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.98rem;
}
.footer-contact h3 {
  color: var(--brand-gold);
  font-size: 1.09rem;
  margin-bottom: 5px;
}
.footer-contact a {
  color: #fffbe5;
  font-size: 0.98rem;
}
.footer-contact a:hover {
  color: var(--brand-gold);
}
.footer-social {
  flex: 1 1 80px;
  display: flex;
  align-items: flex-end;
  gap: 17px;
  margin-top: 20px;
}
.footer-social a img {
  height: 26px;
  width: 26px;
  filter: grayscale(0.32) brightness(1.07) drop-shadow(0 1px 6px #e6e6e622);
  transition: filter 0.12s, transform 0.12s;
}
.footer-social a:hover img {
  filter: brightness(1.24) drop-shadow(0 3px 18px #C46B18CC);
  transform: scale(1.08) translateY(-2px);
}

/*************************
  BLOG SEARCH
*************************/
.blog-search {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin: 12px 0 8px 0;
}
.blog-search input[type='search'] {
  border-radius: 9px;
  border: 1.5px solid #e2e4ec;
  padding: 10px 18px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  min-width: 160px;
  background: #fbfaf6;
  color: #223050;
  transition: border-color 0.14s;
}
.blog-search input[type='search']:focus {
  outline: none;
  border: 1.5px solid var(--brand-gold);
}
.blog-search select {
  border-radius: 9px;
  border: 1.5px solid #e2e4ec;
  padding: 10px 18px;
  font-size: 1rem;
  background: #fff;
  color: #223050;
  font-family: 'Roboto', Arial, sans-serif;
  transition: border-color 0.12s;
}
.blog-search select:focus {
  outline: none;
  border: 1.5px solid var(--brand-gold);
}

/*************************
  FORM ELEMENTS (if there are forms)
*************************/
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
  color: #233047;
}
button {
  cursor: pointer;
}
input, textarea {
  background: #fff;
  border: 1.5px solid #e2e4ec;
  border-radius: 7px;
  padding: 10px 15px;
  transition: border-color 0.18s;
  margin-bottom: 18px;
}
input:focus, textarea:focus {
  border-color: var(--brand-gold);
  outline: none;
}

/*************************
  COOKIE CONSENT BANNER & MODAL
*************************/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe5;
  color: #1B263D;
  border-top: 3px solid var(--brand-gold);
  box-shadow: 0 -2px 24px #c46b181a;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 22px 24px 18px 24px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: transform 0.32s cubic-bezier(0.8,0,0.2,1), opacity 0.18s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-left: 30px;
}
.cookie-btn {
  background: var(--brand-gold);
  color: var(--brand-secondary);
  border: none;
  border-radius: 19px;
  padding: 10px 25px;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  margin: 0 2px;
  box-shadow: 0 1px 6px #c46b1824;
  transition: background 0.18s, box-shadow 0.18s, color 0.12s;
}
.cookie-btn.settings {
  background: transparent;
  color: var(--brand-gold);
  border: 1.5px solid var(--brand-gold);
}
.cookie-btn.reject {
  background: #f7f2e5;
  color: var(--brand-gold);
  border: 1.5px solid var(--brand-gold);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--brand-gold-lighter);
  color: #fff;
  box-shadow: 0 2px 16px #ee8e3744;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus, .cookie-btn.reject:hover, .cookie-btn.reject:focus {
  color: var(--brand-secondary);
  background: var(--brand-gold);
}

.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10050;
  background: #fff;
  color: #181F2C;
  border-radius: 18px;
  border: 2.5px solid var(--brand-gold);
  padding: 36px 38px 28px 38px;
  box-shadow: 0 6px 54px #c46b1839;
  transform: translate(-50%,-50%) scale(0.92);
  opacity: 0;
  pointer-events: none;
  width: 95vw;
  max-width: 480px;
  transition: opacity 0.24s, transform 0.28s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: var(--brand-primary);
  margin-bottom: 20px;
}
.cookie-modal ul {
  list-style: disc inside;
  margin: 0 0 22px 0;
}
.cookie-modal li {
  margin-bottom: 10px;
  color: #233047;
  font-size: 1rem;
}
.cookie-toggle-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee8d3;
}
.cookie-toggle-row:last-child {
  border-bottom: none;
}
.cookie-modal label {
  font-weight: 500;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    color: #181F2C;
  font-size: 1rem;
}
/* Fake toggle for appearance */
.cookie-switch {
  width: 40px;
  height: 22px;
  border-radius: 16px;
  background: #eae1d2;
  display: inline-block;
  position: relative;
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-switch.checked {
  background: var(--brand-gold);
}
.cookie-switch:after {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px #0001;
  transition: left 0.18s;
}
.cookie-switch.checked:after {
  left: 22px;
}
/* Close button for cookie modal */
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  color: var(--brand-gold);
  border: none;
  font-size: 1.6rem;
  opacity: 0.83;
  cursor: pointer;
  z-index: 11;
}

/* Overlay for cookie modal background */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,67,111,0.18);
  z-index: 10045;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.17s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/*************************
   THANK-YOU PAGE/SECTION
*************************/
.thank-you-section {
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow-light);
  margin: 40px 0;
  padding: 54px 24px;
  text-align: center;
}
.thank-you-section h1 {
  color: var(--brand-primary);
  margin-bottom: 23px;
}
.thank-you-section .text-section {
  max-width: 590px;
  margin: 0 auto;
}

/*************************
  RESPONSIVE DESIGN
*************************/
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
  .footer-nav { flex-wrap: wrap; }
}
@media (max-width: 990px) {
  header .main-nav { gap: 20px; }
  .feature-grid,
  .testimonial-list,
  .service-list,
  .blog-cards {
    gap: 20px;
  }
  .content-wrapper, .content-grid { gap: 16px; }
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
  .footer-nav { flex-direction: column; gap: 8px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
    margin-right: 8px;
    font-size: 1rem;
    padding: 12px 22px;
  }
  .mobile-menu-toggle {
    display: inline;
    position: relative;
  }
  .feature-grid, .testimonial-list, .service-list, .blog-cards {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .service-item, .testimonial-card, .blog-card {
    min-width: unset;
    width: 100%;
    max-width: 100%;
  }
  .content-wrapper, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section, .contact-section .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-brand, .footer-contact, .footer-social {
    width: 100%;
    margin-top: 10px;
  }
  .cta-section {
    padding: 32px 9px;
    border-radius: 12px;
  }
  .hero-section {
    padding: 32px 0 28px 0;
    min-height: 220px;
    border-radius: 0 0 16px 16px;
  }
}
@media (max-width: 480px) {
  .container { padding: 0 5px; }
  .section { padding: 24px 5px;]
  .hero-section h1 { font-size: 2rem; }
  .cta-section h2 { font-size: 1.22rem; }
  .footer-brand img { height: 34px; }
  .footer-social a img { height: 22px; width: 22px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 16px 7px 9px 7px; font-size: 0.95rem; }
}

/*************************
  ACCESSIBILITY micro-interactions
*************************/
a, button, .btn-primary, .cookie-btn {
  outline: none;
}
a:active, a:focus, button:active, button:focus, .btn-primary:focus, .cookie-btn:focus {
  box-shadow: 0 0 0 3px #C46B1880;
  outline: none;
}
