/* 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,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #38211a;
  background: linear-gradient(135deg, #f5f3ed 0%, #ece3d1 100%);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #572d23;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #d4b483;
}
ul,ol {
  margin-left: 24px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 10px;
  line-height: 1.5;
}
blockquote {
  margin-left: 0;
  margin-right: 0;
  font-style: italic;
  color: #5b473b;
  border-left: 4px solid #d4b483;
  padding-left: 16px;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Merriweather', 'Roboto', serif;
  color: #572d23;
  font-weight: 700;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.7rem;
  line-height: 1.15;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
}
p {
  margin-bottom: 16px;
  color: #38211a;
}
strong,b {
  color: #572d23;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

/* GRADIENT_MODERN SECTIONS */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 18px;
  background: linear-gradient(140deg, #fff 0%, #f5f3ed 100%);
  box-shadow: 0 4px 24px rgba(87,45,35,0.04),0 1.5px 6px rgba(212,180,131,0.02);
}
.hero {
  background: linear-gradient(120deg, #d4b483 0%, #f5f3ed 100%);
  padding: 60px 0 60px 0;
  box-shadow: 0 10px 40px 0 rgba(87,45,35,0.07);
  margin-bottom: 60px;
}
.hero h1,
.hero p {
  color: #572d23;
  text-shadow: 0 2px 8px #f5f3ed56;
}
.cta-banner {
  background: linear-gradient(90deg, #d4b483 0%, #f5f3ed 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 15px;
  padding: 40px 24px;
}
.cta-banner h2 {
  margin-bottom: 20px;
}

/* FLEXBOX LAYOUTS */
.feature-grid, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 12px 0 rgba(87,45,35,0.09);
  margin-bottom: 20px;
  position: relative;
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  flex: 1 1 260px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover {
  transform: translateY(-2px) scale(1.011);
  box-shadow: 0 6px 24px 0 rgba(87,45,35,0.13);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px 0 rgba(87,45,35,0.08);
  margin-bottom: 20px;
  min-width: 260px;
  flex: 1 1 300px;
}
.testimonial-card blockquote {
  margin-bottom: 8px;
  color: #38211a;
  font-size: 1.08rem;
}
.testimonial-card cite {
  font-style: normal;
  font-size: 0.98rem;
  color: #572d23;
  letter-spacing: .4px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.icon-list {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 24px 0 8px 0;
}

/* NAVIGATION HEADER */
header {
  background: #fff;
  border-bottom: 1.5px solid #f5f3ed;
  box-shadow: 0 2.5px 10px 0 rgba(87,45,35,0.04);
  padding: 0 0 0 0;
  z-index: 20;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
header img {
  height: 45px;
  width: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  padding: 12px 10px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #572d23;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.16s, color 0.18s;
}
nav a:hover,nav a:focus {
  background: #d4b483;
  color: #fff;
}
nav .cta {
  background: linear-gradient(90deg, #d4b483 0%, #572d23 100%);
  color: #fff;
  font-weight: 600;
  border-radius: 100px;
  padding: 10px 30px;
  margin-left: 14px;
  box-shadow: 0 2px 12px 0 rgba(212,180,131,0.11);
  transition: transform 0.18s, box-shadow 0.18s, background 0.25s;
}
nav .cta:hover,nav .cta:focus {
  background: linear-gradient(90deg, #572d23 0%, #d4b483 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 5px 20px 0 rgba(87,45,35,0.14);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #572d23;
  cursor: pointer;
  padding: 10px 10px;
  margin-left: 14px;
  z-index: 105;
  border-radius: 6px;
  transition: background 0.12s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #f6edd6;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: linear-gradient(135deg, #fff 60%, #d4b483 100%);
  box-shadow: 0 8px 34px 0 rgba(212,180,131,0.10);
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  overflow-y: auto;
  padding: 0 0 0 0;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #572d23;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 22px 20px 7px 0;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 50%;
  transition: background 0.12s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #f5f3ed;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.1rem;
  align-items: flex-start;
  margin-top: 16px;
  padding-left: 32px;
}
.mobile-nav a {
  color: #572d23;
  padding: 12px 8px;
  border-radius: 7px;
  min-width: 180px;
  transition: background 0.17s, color 0.14s;
  font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: #d4b483;
}

/* FOOTER */
footer {
  background: #572d23;
  color: #fff;
  padding: 48px 0 32px 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
footer nav a {
  color: #d4b483;
  font-weight: 400;
}
footer nav a:hover,footer nav a:focus {
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  font-size: 0.99rem;
  color: #f5f3ed;
  margin-bottom: 14px;
  margin-top: 6px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 2px;
  vertical-align: middle;
}
.footer-contact a {
  color: #d4b483;
  margin-right: 8px;
  font-weight: 500;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.footer-social a img {
  width: 26px;
  height: 26px;
  transition: filter 0.15s, transform 0.15s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: brightness(1.2) drop-shadow(0 3px 6px #d4b48321);
  transform: scale(1.14);
}
footer .newsletter {
  margin-top: 6px;
  margin-bottom: 8px;
  max-width: 310px;
}
footer .newsletter h3 {
  color: #fff;
  font-size: 1.15rem;
}
footer small {
  color: #d4b483;
  letter-spacing: 0.25px;
  margin-top: 18px;
  font-size: 0.96rem;
  width: 100%;
  display: block;
  text-align: left;
}

/* BUTTONS & CTA */
.cta, button, .button, .btn {
  display: inline-block;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  background: linear-gradient(90deg, #d4b483 0%, #572d23 100%);
  color: #fff;
  font-size: 1.14rem;
  padding: 11px 32px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.17s;
  box-shadow: 0 1px 8px 0 rgba(87,45,35,0.12);
}
.cta:hover, .cta:focus, button:hover, .button:hover, .btn:hover {
  background: linear-gradient(90deg, #572d23 0%, #d4b483 100%);
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(212,180,131,0.16);
  transform: scale(1.03) translateY(-2px);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: linear-gradient(90deg, #f5f3ed 85%, #d4b483 100%);
  color: #572d23;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px 16px 24px 16px;
  box-shadow: 0 -2px 18px 0 rgba(87,45,35,0.07);
  z-index: 2000;
  animation: banner-slidein 0.7s cubic-bezier(.77,0,.18,1);
}
@keyframes banner-slidein {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-banner button {
  border: none;
  background: linear-gradient(90deg,#d4b483 0%, #572d23 100%);
  color: #fff;
  padding: 9px 22px;
  font-weight: 600;
  border-radius: 26px;
  cursor: pointer;
  font-size: 1rem;
  margin-left: 6px;
  transition: background 0.19s, transform 0.18s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: linear-gradient(90deg, #572d23 0%, #d4b483 100%);
  transform: scale(1.04);
}
/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(87,45,35,0.35);
  z-index: 2050;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein-overlay 0.3s;
}
@keyframes fadein-overlay {
  from { opacity: 0;} to { opacity: 1;}
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 32px 0 rgba(87,45,35,0.13);
  padding: 35px 28px 26px 28px;
  min-width: 280px;
  max-width: 98vw;
  transition: box-shadow 0.17s;
  animation: popup-slidein 0.35s cubic-bezier(.77,0,.18,1);
  color: #38211a;
}
@keyframes popup-slidein {
  from { transform: translateY(60px) scale(.97); opacity:0; }
  to   { transform: translateY(0) scale(1); opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #572d23;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.cookie-modal label {
  margin-left: 9px;
  font-weight: 500;
  font-size: 1.01rem;
  color: #572d23;
}
.cookie-modal input[type="checkbox"][disabled] {
  accent-color: #d4b48370;
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 17px;
  flex-wrap: wrap;
}
.cookie-modal button {
  border-radius: 22px;
  background: linear-gradient(90deg, #d4b483 0%, #572d23 100%);
  color: #fff;
  border: none;
  padding: 9px 16px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.13s, transform 0.17s;
  margin-top: 2px;
}
.cookie-modal button:hover,.cookie-modal button:focus {
  background: linear-gradient(90deg, #572d23 0%, #d4b483 100%);
  transform: scale(1.04);
}

/* CONTENT STYLES */
.text-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
}
.info-section {
  background: #f5f3ed;
  border-radius: 8px;
  padding: 20px 16px;
  margin-top: 24px;
  color: #872e23;
  font-size: 1.02rem;
}

/* ICON SIZING */
.feature-grid img,
.card img,
.testimonial-card img,
.card-container img {
  width: 46px;
  height: 46px;
  margin-bottom: 6px;
  border-radius: 8px;
  box-shadow: 0 1.5px 5px 0 rgba(212,180,131,0.10);
  background: #faf4ea;
  object-fit: contain;
}

/* RESPONSIVENESS - MOBILE FIRST */
@media (max-width: 1100px) {
  .container { max-width: 99vw; }
}
@media (max-width: 900px) {
  .container { padding-left: 10px; padding-right: 10px;}
  nav { gap: 14px; }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.45rem;
  }
  .cta-banner {
    padding: 32px 6px;
  }
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .footer-contact,
  .footer-social {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .newsletter {max-width: 90vw;}
  .section,.hero {
    padding: 26px 3px 26px 3px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 769px) {
  .mobile-menu,
  .mobile-menu.open {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* FOCUS STATES FOR ACCESSIBILITY */
a:focus, button:focus, .cta:focus {
  outline: 2.5px solid #d4b483;
  outline-offset: 2px;
  z-index: 2;
}

/* EXTRAS & MICRO-INTERACTIONS */
.card, .testimonial-card, .info-section, .cta-banner, section {
  transition: box-shadow 0.18s, transform 0.19s, background 0.2s;
}
.card:active, .testimonial-card:active, .cta:active {
  transform: scale(0.98);
}
.testimonial-card:hover {
  box-shadow: 0 2px 24px 0 rgba(87,45,35,0.13);
  transform: translateY(-2px) scale(1.01);
}

/* VISUAL CALLOUTS */
mark, .highlight {
  background: linear-gradient(90deg, #d4b483 0%, #f5f3ed 100%);
  color: #572d23;
  border-radius: 2.5px;
  padding: 1px 5px;
}

/* MISC */
::-webkit-scrollbar {
  width: 10px;
  background: #f5f3ed;
}
::-webkit-scrollbar-thumb {
  background: #d4b483aa;
  border-radius: 10px;
}

/* Z-INDEX FIXES */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay { z-index: 120; }

/* Hide nav on mobile */
@media (max-width: 768px) {
  nav { display: none !important; }
  .mobile-menu-toggle { display: block !important; }
}
