/* --- EAGER ISLE MÖBELMANUFAKTUR -- MODERN BOLD BUNDLE STYLE --- */

/* CSS RESET & NORMALIZE */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F2EFE3;
  color: #2E3B32;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: break-word;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #2E3B32;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 600;
}
a:hover, a:focus {
  color: #B0956A;
}
ul, ol {
  margin-left: 1.7em;
  margin-bottom: 1.3em;
}
ul li, ol li {
  margin-bottom: 0.5em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #2E3B32;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.6rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 16px; }

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(46, 59, 50, 0.07);
  margin-bottom: 20px;
  padding: 32px 28px 28px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.22s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 36px 0 rgba(46,59,50,0.16);
  transform: translateY(-4px) scale(1.01);
}

.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;
  min-width: 260px;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(46,59,50,0.11);
  margin-bottom: 20px;
  transition: box-shadow 0.21s, transform 0.2s;
  border-left: 6px solid #B0956A;
}
.testimonial-card blockquote {
  font-size: 1.2rem;
  font-style: italic;
  letter-spacing: 0.01em;
  color: #2E3B32;
  margin-bottom: 10px;
  line-height: 1.5;
}
.testimonial-card p {
  margin: 0;
  color: #2E3B32;
}
.testimonial-card strong {
  color: #B0956A;
  font-weight: 800;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 34px 0 rgba(176,149,106,0.16), 0 2px 6px rgba(46,59,50,0.07);
  transform: scale(1.03);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 5px;
}

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(46, 59, 50, 0.04);
  display: flex;
  align-items: center;
  padding: 0 0;
  min-height: 74px;
  z-index: 10;
  position: relative;
}
header > a > img {
  height: 52px;
  margin: 12px 18px 12px 0;
}
header nav {
  display: flex;
  gap: 28px;
  margin-left: 12px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.015em;
  color: #2E3B32;
  padding: 10px 0 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.17s, border 0.22s;
}
header nav a:hover,
header nav a:focus {
  color: #B0956A;
  border-bottom: 2px solid #B0956A;
}

.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.13rem;
  background: #B0956A;
  color: #fff;
  padding: 11px 34px 11px 34px;
  border: none;
  border-radius: 24px;
  margin-left: auto;
  margin-right: 18px;
  cursor: pointer;
  box-shadow: 0 6px 24px 0 rgba(176,149,106,0.11);
  transition: background 0.17s, transform 0.18s, box-shadow 0.2s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #2E3B32;
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 16px 40px 0 rgba(176,149,106,0.14);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #2E3B32;
  cursor: pointer;
  padding: 10px 18px;
  z-index: 1002;
  transition: background 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #B0956A;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #2E3B32;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(0.7,0.06,0.25,1);
  display: flex;
  flex-direction: column;
  z-index: 1100;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #fff;
  align-self: flex-end;
  margin: 32px 26px 10px 0;
  cursor: pointer;
  z-index: 1102;
  transition: color 0.15s;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 60px;
  padding-left: 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.13s, border 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #B0956A;
  border-bottom: 2px solid #B0956A;
}

@media (max-width: 1100px) {
  .container {
    max-width: 94vw;
  }
  section {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}

/* Hide desktop nav on mobile, show burger */
@media (max-width: 980px) {
  header nav {
    display: none;
  }
  .cta-btn {
    margin-right: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 981px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* --- HERO/SECTIONS --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 0;
}
section > .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* --- LISTS --- */
section ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
section ul li {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.04rem;
  color: #2E3B32;
  gap: 14px;
  margin-bottom: 0;
  background: none;
  border-radius: 10px;
  transition: background 0.12s;
}
section ul li img {
  width: 32px;
  min-width: 32px;
  height: 32px;
}
section ul li strong {
  color: #B0956A;
  font-weight: 900;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* --- FOOTER --- */
footer {
  width: 100%;
  background: #2E3B32;
  color: #F2EFE3;
  padding: 34px 0 9px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
footer nav {
  display: flex;
  gap: 24px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
footer nav a {
  color: #F2EFE3;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-bottom: 1.5px solid transparent;
  transition: color 0.11s, border-bottom 0.14s;
  padding-bottom: 2px;
}
footer nav a:hover {
  color: #B0956A;
  border-bottom: 1.5px solid #B0956A;
}
.footer-contact {
  text-align: center;
  font-size: 0.99rem;
  opacity: 0.88;
  margin-bottom: 10px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #F2EFE3;
}
.footer-brand img {
  margin: 20px auto 0 auto;
  width: 60px;
  height: auto;
}

/* --- COOKIES CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #2E3B32;
  color: #fff;
  box-shadow: 0 -4px 24px 0 rgba(46,59,50,0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9999;
  padding: 22px 18px 20px 18px;
  animation: slideUpCookie 400ms cubic-bezier(0.76,0.13,0.35,1.04);
  gap: 18px;
}
@keyframes slideUpCookie {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  font-size: 1.06rem;
  font-family: 'Roboto', Arial, sans-serif;
  opacity: 0.97;
  margin-bottom: 0;
}
.cookie-btns {
  display: flex;
  gap: 16px;
}
.cookie-banner button,
.cookie-btns button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  background: #B0956A;
  color: #fff;
  border: none;
  padding: 10px 26px;
  border-radius: 18px;
  margin: 0;
  transition: background 0.15s, color 0.13s, outline 0.09s;
  cursor: pointer;
  box-shadow: 0 4px 18px 0 rgba(176,149,106,0.12);
}
.cookie-banner button:hover, .cookie-btns button:hover {
  background: #fff;
  color: #2E3B32;
  outline: 2px solid #B0956A;
}
.cookie-btns .cookie-settings-btn {
  background: transparent;
  color: #B0956A;
  border: 2px solid #B0956A;
  box-shadow: none;
  padding: 10px 18px;
}
.cookie-btns .cookie-settings-btn:hover {
  background: #B0956A;
  color: #fff;
}

/* COOKIES MODAL */
.cookie-modal {
  position: fixed;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%,50%);
  min-width: 340px;
  max-width: 95vw;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 22px 56px 0 rgba(46,59,50,0.27), 0 1.5px 8px rgba(176,149,106,0.16);
  z-index: 10000;
  padding: 34px 28px 28px 28px;
  display: none;
  flex-direction: column;
  gap: 22px;
  animation: cookieModalIn 0.35s cubic-bezier(0.76,0.13,0.35,1.04);
}
@keyframes cookieModalIn {
  0% { opacity: 0; transform: translate(-50%,60%) scale(0.93); }
  100% { opacity: 1; transform: translate(-50%,50%) scale(1); }
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal h2 {
  font-size: 1.36rem;
  margin-bottom: 5px;
  color: #2E3B32;
}
.cookie-modal label {
  cursor: pointer;
  font-size: 1.02rem;
  color: #2E3B32;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #B0956A;
  transform: scale(1.12);
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 17px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal .close-modal-btn {
  background: transparent;
  color: #2E3B32;
  border: none;
  font-size: 2.1rem;
  align-self: flex-end;
  margin-bottom: -12px;
  margin-right: -8px;
  opacity: 0.45;
  cursor: pointer;
  transition: opacity 0.13s;
}
.cookie-modal .close-modal-btn:hover {
  opacity: 0.8;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  section {
    padding: 26px 8px;
    border-radius: 0;
    margin-bottom: 40px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 12px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .card {
    padding: 22px 7px 18px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.43rem; }
  .cta-btn {
    width: 100%;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    margin: 16px 0 0 0;
  }
  .footer-brand img {
    width: 38px;
    margin-top: 10px;
  }
}

/* --- MICRO-INTERACTIONS & EFFECTS --- */
button, .cta-btn {
  transition: background 0.19s, color 0.17s, box-shadow 0.20s, transform 0.16s;
  outline: none;
}
button:focus-visible, .cta-btn:focus-visible {
  outline: 3px solid #B0956A;
  outline-offset: 3px;
}

/* --- TYPOGRAPHY SCALE --- */
p, li, ul, ol {
  font-size: 1.06rem;
  letter-spacing: 0.01em;
}
h4 { font-size: 1.1rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.95rem; }

/* --- Z-INDEX MANAGEMENT --- */
header { z-index: 10; }
.mobile-menu { z-index: 1100; }
.cookie-banner { z-index: 9999; }
.cookie-modal { z-index: 10000; }

/* --- CARD/SECTION SPACING --- */
section > .container > .content-wrapper > *,
section > .container > .content-wrapper,
section > .container > *:not(:last-child) {
  margin-bottom: 20px;
}

.section:not(:last-child) {
  margin-bottom: 60px;
}

/* --- ACCESSIBILITY --- */
:focus {
  outline: 3px solid #B0956A;
  outline-offset: 2px;
}

/* --- GEOMETRIC SHAPE THEME DECORATIVE CLASSES --- */
.decoration-geo {
  width: 58px;
  height: 58px;
  border-radius: 18px 8px 24px 18px;
  background: #B0956A;
  opacity: 0.11;
  position: absolute;
  top: -20px;
  right: -17px;
  z-index: 1;
  pointer-events: none;
}

/* --- BRAND FONT FAMILIES --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Roboto:wght@400;500;700&display=swap');

body, .footer-contact, .content-wrapper, .text-section, section ul li {
  font-family: 'Roboto', Arial, sans-serif;
}
h1, h2, h3, .cta-btn, header nav a, .mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
}

/* --- UTILITY CLASSES --- */
.m-20 { margin: 20px; }
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.d-flex { display: flex; }
.d-column { flex-direction: column; }
.d-row { flex-direction: row; }
.gap-24 { gap: 24px; }
.text-center { text-align: center; }
.bold { font-weight: 800; }

/* --- PRINT FRIENDLY --- */
@media print {
  header, footer, .cookie-banner, .cookie-modal, .mobile-menu { display: none !important; }
  section, .container { box-shadow: none !important; background: #fff !important; }
}
