/* RaumFlair Minimalist CSS (Flexbox Only, Responsive, Accessible, Brand Compliant) */

/* === CSS RESET & NORMALIZE === */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.55;
  background: #F3F2ED;
  color: #222;
  font-family: "Open Sans", Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  list-style: none;
}

/* === TYPOGRAPHY === */
h1,h2,h3,h4,h5,h6 {
  font-family: "Montserrat",Arial,sans-serif;
  font-weight: 700;
  color: #3D4A59;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  font-weight: 600;
}
h4,h5,h6 {
  font-size: 1.125rem;
  margin-bottom: 12px;
  font-weight: 500;
}
p, .text-section p, ul.feature-list li, ul.timeline li {
  font-size: 1rem;
  color: #222;
}
blockquote {
  font-style: italic;
  color: #3D4A59;
  border-left: 3px solid #A89B83;
  padding-left: 18px;
  margin: 18px 0 22px 0;
  background: transparent;
}

strong, b {
  font-weight: 600;
  color: #3D4A59;
}

/* === BASIC LAYOUT === */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

/* === HEADER & NAVIGATION === */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(61,74,89,0.03);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 70px;
}
.logo img {
  width: 148px;
  height: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: "Montserrat",Arial,sans-serif;
  font-weight: 500;
  color: #3D4A59;
  font-size: 1rem;
  opacity: 0.88;
  padding: 7px 2px;
  position: relative;
  border-radius: 4px;
  transition: background 0.11s, color 0.11s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F3F2ED;
  color: #A89B83;
  opacity: 1;
}
.cta.primary {
  background: #3D4A59;
  color: #fff;
  border-radius: 32px;
  padding: 10px 28px;
  margin-left: 18px;
  font-family: "Montserrat",Arial,sans-serif;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 2px 14px rgba(61,74,89,0.08);
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.14s, box-shadow 0.16s, color 0.13s;
  text-align: center;
  display: inline-block;
}
.cta.primary:hover, .cta.primary:focus {
  background: #A89B83;
  color: #fff;
  box-shadow: 0 4px 18px rgba(168,155,131,0.08);
}
.cta {
  background: #A89B83;
  color: #fff;
  border-radius: 32px;
  padding: 10px 28px;
  font-family: "Montserrat",Arial,sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
}
.cta:hover, .cta:focus {
  background: #3D4A59;
  color: #fff;
  box-shadow: 0 4px 22px rgba(61,74,89,0.10);
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #3D4A59;
  cursor: pointer;
  padding: 6px 10px;
  transition: background 0.11s;
  z-index: 120;
}
.mobile-menu-toggle:focus {
  background: #F3F2ED;
  border-radius: 6px;
}
.mobile-menu {
  position: fixed;
  left: 0; top: 0; bottom: 0; right: 0;
  background: rgba(61, 74, 89, 0.96);
  z-index: 130;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 18px;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.5,1,.5,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
  transition: transform 0.38s cubic-bezier(.4,1,.4,1), opacity 0.15s;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #fff;
  margin: 8px 22px 18px 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #A89B83;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
  width: 100%;
  margin-top: 18px;
  padding-right: 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: "Montserrat", Arial, sans-serif;
  padding: 14px 0;
  width: 85%;
  text-align: right;
  border-radius: 4px;
  opacity: 0.95;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A89B83;
  color: #fff;
  opacity: 1;
}

/* === HERO SECTION === */
.hero-section {
  background: #fff;
  box-shadow: 0 4px 36px 0 rgba(61,74,89,0.03);
  padding: 70px 0 60px 0;
  margin-bottom: 54px;
  border-radius: 0 0 22px 22px;
  position: relative;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 8px;
}
.hero-section h1 {
  font-size: 2.5rem;
  color: #3D4A59;
  margin-bottom: 12px;
}
.hero-section p {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 24px;
}
.hero-section .cta {
  margin-top: 10px;
}

/* === SPACING & FLEXBOX LAYOUTS === */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(61,74,89,0.05);
  padding: 26px 22px 18px 22px;
  flex: 1 1 250px;
  min-width: 230px;
  max-width: 340px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.feature-item img {
  width: 44px;
  height: 44px;
}
.feature-item h3 {
  margin-bottom: 0;
  color: #3D4A59;
}
.feature-item:hover {
  box-shadow: 0 4px 28px rgba(61,74,89,0.09);
  transform: translateY(-2px) scale(1.02);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(61,74,89,0.06);
  padding: 26px 22px 18px 22px;
  flex: 1 1 250px;
  min-width: 250px;
  max-width: 340px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.14s;
}
.service-item img {
  width: 44px;
  height: 44px;
}
.service-item .price {
  font-family: "Montserrat",Arial,sans-serif;
  font-weight: 600;
  color: #A89B83;
  font-size: 1.08rem;
  margin-top: 12px;
}
.service-item:hover {
  box-shadow: 0 4px 28px rgba(168,155,131,0.12);
  transform: translateY(-2px) scale(1.02);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(61,74,89,0.06);
  padding: 32px 22px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(61,74,89,0.14);
  transform: translateY(-2px) scale(1.02);
}

.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;
  margin-bottom: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Testimonial Cards & Ratings */
.testimonials, .testimonials-section {
  background: #F3F2ED;
  padding: 54px 0 28px 0;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(61,74,89,0.09);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
  flex: 1 1 380px;
  min-width: 220px;
  transition: box-shadow 0.13s, transform 0.14s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 30px rgba(168,155,131,0.08);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card p {
  color: #222;
  font-size: 1rem;
  margin-bottom: 6px;
}
.testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-name {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
  color: #3D4A59;
  font-size: 1.08rem;
  margin-top: 3px;
}
.star-rating img {
  display: block;
  width: 80px;
  height: auto;
}
.project-result {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.95rem;
  color: #A89B83;
  font-weight: 500;
  margin-left: 12px;
}\n
/* Timeline & Feature List */
ul.timeline, ul.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}
ul.timeline li, ul.feature-list li {
  font-size: 1rem;
  color: #3D4A59;
  background: #fff;
  padding: 10px 18px;
  border-radius: 7px;
  box-shadow: 0 1px 4px rgba(61,74,89,0.04);
}

/* CTA Section */
.cta-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(61,74,89,0.04);
  margin: 56px 0 40px 0;
  padding: 56px 0 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-section .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta-section .cta {
  margin-top: 24px;
}

/* Footer */
footer {
  background: #fff;
  border-top: 1px solid #E6E4DF;
  padding: 36px 0 30px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
.footer-nav a {
  color: #3D4A59;
  font-size: 0.98rem;
  opacity: 0.8;
  transition: color 0.13s, background 0.13s;
  padding: 4px 7px;
  border-radius: 4px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #A89B83;
  opacity: 1;
  background: #F3F2ED;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #888;
  font-size: 0.98rem;
  align-items: center;
}

/* === Cookie Consent Banner and Modal === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 250;
  background: #fff;
  color: #3D4A59;
  box-shadow: 0 -4px 24px rgba(61,74,89,0.09);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.25s, opacity 0.18s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}
.cookie-banner button {
  border: none;
  border-radius: 24px;
  padding: 9px 20px;
  font-family: "Montserrat",Arial,sans-serif;
  font-size: 1rem;
  margin: 0;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, box-shadow 0.14s;
  font-weight: 500;
}
.cookie-banner .accept {
  background: #3D4A59;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #A89B83;
}
.cookie-banner .reject {
  background: #F3F2ED;
  color: #3D4A59;
  border: 1px solid #3D4A59;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #A89B83;
  color: #fff;
  border: 1px solid #A89B83;
}
.cookie-banner .settings {
  background: #fff;
  border: 1px solid #A89B83;
  color: #A89B83;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #A89B83;
  color: #fff;
}

.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 251;
  background: rgba(61,74,89, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 40px rgba(61,74,89,0.17);
  padding: 32px 30px 22px 30px;
  max-width: 95vw;
  min-width: 320px;
  width: 100%;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: stretch;
  animation: modalFadeIn .35s both;
}
@keyframes modalFadeIn {
  from { transform: scale(0.94); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.15rem;
  color: #3D4A59;
  margin-bottom: 0;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #F3F2ED;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-size: 0.99rem;
  color: #3D4A59;
  font-family: "Montserrat",Arial,sans-serif;
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: #A89B83;
}
.cookie-category .essential {
  color: #A89B83;
  font-size: 0.93rem;
  font-style: italic;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 14px;
}
.cookie-modal button {
  border: none;
  border-radius: 20px;
  background: #A89B83;
  color: #fff;
  font-family: "Montserrat",Arial,sans-serif;
  font-size: 0.98rem;
  padding: 8px 18px;
  cursor: pointer;
  transition: background 0.14s;
  margin-top: 5px;
}
.cookie-modal button.cancel {
  background: #fff;
  color: #A89B83;
  border: 1px solid #A89B83;
}
.cookie-modal button.cancel:hover, .cookie-modal button.cancel:focus {
  background: #A89B83;
  color: #fff;
}
.cookie-modal button.save {
  background: #3D4A59;
}
.cookie-modal button.save:hover, .cookie-modal button.save:focus {
  background: #A89B83;
}

/* === Misc Elements === */
.privacy-note {
  font-size: 0.97rem;
  color: #A89B83;
  margin-top: 10px;
}

/* --- General Margins/Spacing --- */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .feature-grid, .service-list, .content-grid {
  gap: 20px;
}

/* === RESPONSIVENESS === */
@media (max-width: 1024px) {
  .container {
    max-width: 980px;
    padding: 0 14px;
  }
  .feature-item, .service-item {
    min-width: 200px;
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 14px;
  }
  .feature-grid, .service-list {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.35rem; }
  section, .section {
    padding: 24px 8px;
    margin-bottom: 38px;
  }
  .hero-section {
    padding: 40px 0 34px;
    margin-bottom: 36px;
    border-radius: 0 0 16px 16px;
  }
  .main-nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .testimonial-card, .feature-item, .service-item {
    flex: 1 1 100%;
    min-width: 0;
    max-width: 100%;
  }
  .cta-section {
    margin: 34px 0 24px 0;
    padding: 32px 0 22px 0;
    border-radius: 10px;
  }
  .footer-info {
    font-size: 0.92rem;
    gap: 6px;
  }
}

@media (max-width: 600px) {
  h1 { font-size: 1.32rem; }
  h2 { font-size: 1.08rem; }
  .logo img { width: 104px; }
  .container {
    padding: 0 7px;
  }
  .footer-info span {
    font-size: 0.92rem;
  }
  .cookie-modal .modal-content {
    min-width: 90vw;
    padding: 18px 8px 18px 8px;
  }
  .hero-section, .cta-section, .section {
    padding: 16px 3px;
  }
}

/* === FOCUS STATES FOR ACCESSIBILITY === */
a:focus, button:focus {
  outline: 2px solid #A89B83;
  outline-offset: 1.5px;
}

/* === MICRO-INTERACTIONS & TRANSITIONS === */
.card, .testimonial-card, .feature-item, .service-item {
  transition: box-shadow 0.17s, transform 0.13s;
}
.cta, .cta.primary, .footer-nav a, .main-nav a {
  transition: color 0.15s, background 0.13s, box-shadow 0.15s;
}
.mobile-menu, .cookie-banner, .cookie-modal {
  will-change: transform, opacity;
}

/* === PREVENT OVERLAPPING GAP ENFORCEMENTS === */
.card-container > *, .feature-grid > *, .service-list > *, .content-grid > * {
  margin-bottom: 20px;
}
.content-wrapper > *:not(:last-child) {
  margin-bottom: 20px;
}

/* === UTILITY === */
.hide { display: none !important; }
.show { display: block !important; }

/* End RaumFlair CSS */
