/* RESET & BASE TYPOGRAPHY */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F6DC8E;
  color: #2B3443;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #B04C0E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #E96C25;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #222B38;
  font-weight: 700;
  margin-bottom: 0.7em;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 0.5em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 0.5em;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35em;
  color: #B04C0E;
}
strong {
  font-weight: 700;
  color: #B04C0E;
}
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
ul {
  list-style: disc inside;
}
ol {
  list-style: decimal inside;
}
img {
  max-width: 100%;
  border-radius: 12px;
}

/* SECTIONS & LAYOUTS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fffbe9;
  border-radius: 24px;
  box-shadow: 0 3px 14px 0 rgba(224, 172, 60, 0.08);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(43, 52, 67, 0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  min-width: 260px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
}

/* FEATURE/TESTIMONIAL FLEX UTILS */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid,
.process-steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
  margin: 30px 0;
}
.feature-grid > div, .process-steps-grid > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(43,52,67,0.06);
  padding: 32px 24px;
  flex: 1 1 230px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.2s;
}
.feature-grid > div:hover, .process-steps-grid > div:hover {
  box-shadow: 0 4px 22px 0 rgba(224, 172, 60, 0.15);
}

.testimonials,
.quotes {
  background: #FFF6E6;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(43,52,67,0.10);
  margin-bottom: 24px;
  color: #222B38;
  font-size: 1.125rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-card strong {
  color: #E96C25;
  font-size: 1rem;
}

.cta {
  background: #FFE9BC;
  border-radius: 24px;
  text-align: center;
  padding: 48px 24px;
  margin-bottom: 60px;
}

/* HERO */
.hero {
  background: linear-gradient(100deg, #F6DC8E 55%, #FFE9BC 100%);
  border-radius: 0 0 32px 32px;
  padding: 48px 0 56px 0;
  margin-bottom: 40px;
}
.hero .cta-button {
  margin-top: 26px;
}

/* BUTTONS */
.cta-button, .cookie-btn, .mobile-menu-close {
  display: inline-block;
  background: #E96C25;
  color: #fff;
  border: none;
  border-radius: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.11rem;
  padding: 14px 42px;
  margin-top: 10px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(224,172,60,0.09);
  transition: background 0.15s, transform 0.2s, box-shadow 0.2s;
  text-align: center;
}
.cta-button:hover,
.cta-button:focus,
.cookie-btn:hover,
.cookie-btn:focus {
  background: #B04C0E;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 5px 18px 0 rgba(43,52,67,0.09);
  outline: none;
}
nav .cta-button {
  margin-left: 24px;
}

/* HEADER & MAIN NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #FFECB3;
  box-shadow: 0 2px 8px rgba(246,220,142,0.06);
  padding: 5px 0;
  position: sticky;
  top: 0;
  z-index: 1002;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 6px;
  padding-bottom: 6px;
}
header img {
  height: 42px;
  width: auto;
  border-radius: 8px;
  margin-right: 28px;
}
nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
nav a {
  color: #2B3443;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 30px;
  padding: 6px 16px;
  transition: background 0.18s, color 0.18s;
}
nav a:hover,
nav a:focus {
  background: #F6DC8E;
  color: #B04C0E;
  outline: none;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  background: #F6DC8E;
  color: #B04C0E;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  box-shadow: 0 2px 12px 0 rgba(246,220,142,0.17);
  cursor: pointer;
  z-index: 1003;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #FFE9BC;
  color: #E96C25;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fffbe9;
  z-index: 1050;
  box-shadow: 0 9px 48px 0 rgba(43,52,67,0.15);
  transform: translateX(-100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.33s cubic-bezier(.7,.1,.49,.86);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #FFE9BC;
  color: #B04C0E;
  border: none;
  position: relative;
  align-self: flex-end;
  margin: 24px 22px 0 0;
  font-size: 2.1rem;
  padding: 2px 14px;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #E96C25;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  margin-top: 40px;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: #2B3443;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 4px;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F6DC8E;
  color: #E96C25;
  outline: none;
}
@media (max-width: 1080px) {
  .container { max-width: 96vw; }
}
@media (max-width: 900px) {
  header nav { gap: 12px; }
  nav .cta-button { margin-left: 12px; }
}
@media (max-width: 760px) {
  header nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}

/* SECTION CLASSES & COMMONS */
.about-summary,
.process-brief,
.process-summary,
.values,
.values-process,
.blog-intro,
.featured-posts,
.services,
.contact,
.faq,
.legal,
.thank-you {
  background: #FFF8EB;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 0;
}
.about .content-wrapper, .about-summary .content-wrapper, .process-summary .content-wrapper, .values .content-wrapper, .process-brief .content-wrapper, .values-process .content-wrapper, .services .content-wrapper, .faq .content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  gap: 20px;
}

.services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 30px 0;
}
.services ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(43,52,67,0.07);
  padding: 26px 18px;
  min-width: 200px;
  flex: 1 1 200px;
  margin-bottom: 20px;
  gap: 10px;
  transition: box-shadow 0.17s;
}
.services ul li:hover {
  box-shadow: 0 4px 18px 0 rgba(224,172,60,0.14);
}
.services ul img {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}

.contact .content-wrapper img,
.faq .content-wrapper img {
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin-right: 7px;
}
.contact .cta-button {
  margin-top: 24px;
}

.faq ul,
.process-summary ul,
.values ul,
.process-brief ol {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: transparent;
  box-shadow: none;
}
.faq ul li, .values ul li, .process-summary ul li, .process-brief ol li {
  background: #fffbe9;
  border-radius: 14px;
  padding: 18px 16px;
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: #2B3443;
  box-shadow: 0 1px 5px 0 rgba(224,172,60,0.08);
}
.faq ul h3 {
  margin: 0 0 8px 0;
}

/* BLOG FEATURED POSTS */
.featured-posts ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 24px;
  margin-bottom: 32px;
}
.featured-posts ul li {
  background: #fffbe9;
  border-radius: 14px;
  margin-bottom: 6px;
  padding: 16px 18px;
  box-shadow: 0 1px 4px 0 rgba(224,172,60,0.07);
  transition: box-shadow 0.13s;
}
.featured-posts ul li:hover { box-shadow: 0 3px 14px 0 rgba(43,52,67,0.08); }

/* LEGAL PAGES */
.legal {
  background: #fffefb;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 0;
}
.legal a {
  color: #B04C0E;
  text-decoration: underline;
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 1px solid #ffedbc;
  padding: 32px 0 12px 0;
  color: #2B3443;
  font-size: 1rem;
  margin-top: 60px;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}
.footer-columns > div {
  min-width: 220px;
}
.footer-columns img {
  height: 36px;
  width: auto;
  margin-bottom: 12px;
}
.footer-columns nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 2px;
}
.footer-columns nav a {
  color: #2B3443;
  border-radius: 6px;
  padding: 5px 7px;
  transition: background 0.16s, color 0.16s;
}
.footer-columns nav a:hover,
.footer-columns nav a:focus {
  background: #F6DC8E;
  color: #B04C0E;
}
.footer-bottom {
  text-align: center;
  font-size: 0.95rem;
  color: #6d6c70;
  margin-top: 0;
}

/* COOKIE CONSENT BANNER + MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9000;
  background: #fffbe9;
  color: #2B3443;
  box-shadow: 0 -2px 14px 0 rgba(43, 52, 67, 0.13);
  border-radius: 16px 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 24px 26px;
  gap: 20px;
  animation: fadeInUp 0.4s cubic-bezier(.54,.26,.64,.99);
  font-size: 1.08rem;
}
.cookie-banner .cookie-btn {
  margin-right: 8px;
  background: #E96C25;
  color: #fff;
  border: none;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 22px;
  margin-top: 0;
}
.cookie-banner .cookie-btn.settings {
  background: #F6DC8E;
  color: #B04C0E;
  border: 1px solid #E96C25;
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  color: #E96C25;
  border: 1.5px solid #E96C25;
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: #FFE9BC;
  color: #B04C0E;
}
@keyframes fadeInUp {
  from {transform: translateY(64px); opacity: 0;}
  to {transform: translateY(0px);opacity: 1;}
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43, 52, 67, 0.47);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  animation: fadeIn 0.25s;
}
.cookie-modal {
  background: #fffbe9;
  border-radius: 20px;
  box-shadow: 0 7px 32px 0 rgba(43,52,67,0.13);
  max-width: 375px;
  width: 94vw;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}
.cookie-modal h3 {
  color: #B04C0E;
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.07rem;
  margin-bottom: 16px;
  color: #2B3443;
}
.cookie-modal input[type="checkbox"], .cookie-modal input[type="radio"] {
  width: 19px;
  height: 19px;
  accent-color: #E96C25;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  font-size: 1rem;
  padding: 9px 22px;
}
.cookie-modal .modal-close {
  background: #FFE9BC;
  color: #B04C0E;
  border: none;
  position: absolute;
  top: 13px;
  right: 16px;
  border-radius: 50%;
  font-size: 1.6rem;
  width: 34px; height: 34px;
  transition: background 0.21s;
  cursor: pointer;
}
.cookie-modal .modal-close:hover,
.cookie-modal .modal-close:focus {
  background: #B04C0E;
  color: #fff;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* THANK YOU & UTILITY */
.thank-you .cta-button { margin-top: 26px; }

/* RESPONSIVENESS (mobile first) */
@media (max-width: 1200px) {
  .feature-grid, .process-steps-grid {
    gap: 16px;
  }
}
@media (max-width: 990px) {
  .footer-columns {gap: 32px;}
  .container { max-width: 97vw; }
  .section { padding: 35px 8px; }
  .about-summary, .process-brief, .cta, .testimonials, .quotes, .values, .values-process, .blog-intro, .featured-posts, .services, .contact, .faq, .legal, .thank-you {
    padding-left: 8px; padding-right: 8px;
  }
}
@media (max-width: 768px) {
  .footer-columns {flex-direction: column; gap: 18px;}
  .footer-columns > div {min-width: 0;}
  .feature-grid, .process-steps-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div, .process-steps-grid > div {
    min-width: 0;
    padding: 22px 13px;
  }
  .services ul { flex-direction: column; gap: 15px; }
  .services ul li { min-width: 0; padding: 18px 10px; }
  .card-container, .content-grid { flex-direction: column; gap: 16px; }
  .cta, .testimonials, .quotes, .section, .legal, .about-summary, .process-brief, .contact, .faq, .thank-you {
    padding: 28px 0;
    margin-bottom: 36px;
  }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .mobile-menu { padding-bottom: 30px; }
  header .container { flex-direction: row; align-items: center; }
}
@media (max-width: 520px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.1rem; }
  .cta-button, .cookie-btn {
    font-size: 0.97rem; padding: 11px 22px;
  }
  .cookie-banner { font-size: 0.95rem; padding: 15px 10px; }
}

/* MICRO-INTERACTIONS */
.card, .process-steps-grid > div, .feature-grid > div, .services ul li {
  transition: box-shadow 0.2s, transform 0.17s;
}
.card:hover, .process-steps-grid > div:hover, .feature-grid > div:hover, .services ul li:hover {
  box-shadow: 0 6px 24px 0 rgba(224, 172, 60, 0.18);
  transform: translateY(-2px) scale(1.03);
}

.cta-button:active,
.cookie-btn:active,
.mobile-menu-close:active {
  transform: scale(0.97);
}

/* Focus visible support */
:focus-visible {
  outline: 2px solid #E96C25;
  outline-offset: 2px;
}

/* Scrollbar Styling */
body {
  scrollbar-color: #E96C25 #FFE9BC;
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 8px;
  background: #FFE9BC;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #E96C25;
  border-radius: 8px;
}
