/* --- CSS RESET & 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.5;
  background: #FAF8F5;
  color: #4B3925;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #4B3925;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A37B54;
  outline: none;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  color: #4B3925;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}
p, li {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1em;
}
strong {
  font-weight: 700;
}
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(170,146,124,0.04);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 760px;
}

/* --- HEADER & NAV --- */
header {
  width: 100%;
  background: #FAF8F5;
  border-bottom: 1px solid #E8E3DC;
  position: sticky;
  top: 0;
  z-index: 1001;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #4B3925;
  padding: 8px 12px;
  border-radius: 6px;
  position: relative;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: #E8E3DC;
  color: #A37B54;
}
header nav a.cta {
  background: #A37B54;
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: bold;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  box-shadow: 0 1px 6px rgba(74,57,36,0.10);
}
header nav a.cta:hover, header nav a.cta:focus {
  background: #4B3925;
  color: #fff;
  box-shadow: 0 3px 10px rgba(74,57,36,0.13);
}

header .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #4B3925;
  font-size: 2.2rem;
  cursor: pointer;
  padding: 7px 10px;
  margin-left: 20px;
  border-radius: 8px;
  transition: background 0.18s;
  z-index: 1002;
}
header .mobile-menu-toggle:focus,
header .mobile-menu-toggle:hover {
  background: #E8E3DC;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: -6px 0 18px rgba(170,146,124,0.14);
  z-index: 2002;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.7,.21,.33,.97);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #A37B54;
  font-size: 2rem;
  padding: 14px 18px 8px 14px;
  align-self: flex-end;
  cursor: pointer;
  transition: background 0.18s;
  border-radius: 8px;
  margin-bottom: 6px;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #E8E3DC;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 32px;
}
.mobile-nav a {
  font-size: 1.12rem;
  padding: 12px 0 8px 0;
  color: #4B3925;
  font-weight: 500;
  border-bottom: 1px solid #F3EEE8;
  transition: color 0.22s, background 0.18s;
  touch-action: manipulation;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: #A37B54;
  background: #E8E3DC;
  border-radius: 6px;
}

/* Hide desktop nav on mobile */
@media (max-width: 980px) {
  header nav {
    display: none;
  }
  header .mobile-menu-toggle {
    display: block;
  }
}
/* Hide mobile menu by default on desktop */
@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- MAIN LAYOUT --- */
main {
  width: 100%;
  padding-top: 18px;
}

/* SECTION SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Cards */
.card-container, .card-grid, .features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(170,146,124,0.07);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.features-grid > div {
  background: #FAF8F5;
  border-radius: 11px;
  box-shadow: 0 1px 5px rgba(170,146,124,0.03);
  padding: 26px 22px 22px 22px;
  flex: 1 1 260px;
  min-width: 215px;
  max-width: 320px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition: box-shadow 0.18s;
}
.features-grid > div:hover {
  box-shadow: 0 6px 22px rgba(74,57,36,0.10);
}
.features-grid img {
  width: 48px;
  height: 48px;
}

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

.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;
  margin-bottom: 20px;
  background: #FEFCFA;
  border-radius: 11px;
  box-shadow: 0 2px 10px rgba(74,57,36,0.07);
  flex-direction: column;
  text-align: left;
  max-width: 480px;
  color: #312210;
}
.testimonial-card p {
  font-size: 1.06rem;
  margin-bottom: 6px;
  color: #4b3925;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #7E6853;
}

/* Unique case-study card*/
.case-study {
  background: #E8E3DC;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(74,57,36,0.06);
  color: #3A2717;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.service-highlights, .inspiration-section, .consulting-highlights, .team-highlights, .next-steps {
  background: #F6F2ED;
  border-radius: 10px;
  padding: 23px 20px;
  margin: 18px 0 0 0;
  box-shadow: 0 1px 4px rgba(170,146,124,0.06);
  color: #4B3925;
}

/* --- BUTTONS & LINKS --- */
.cta {
  display: inline-block;
  background: #A37B54;
  color: #fff !important;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 14px 34px;
  border-radius: 50px;
  margin-top: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px rgba(74,57,36,0.10);
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
}
.cta:hover, .cta:focus {
  background: #4B3925;
  color: #fff;
  box-shadow: 0 6px 26px rgba(74,57,36,0.14);
  outline: none;
}

button, input[type=submit], .button {
  cursor: pointer;
  font-family: 'Roboto', Arial, sans-serif;
  transition: background 0.18s, color 0.18s;
}

/* --- LISTS & UTILITIES --- */
ul, ol {
  margin-left: 20px;
  margin-top: 0.5em;
}
ul li, ol li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 7px;
}
ul li::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #A37B54;
  border-radius: 50%;
  margin-right: 13px;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 7px;
}
ul li img {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  padding: 0;
}

ol {
  list-style: decimal inside;
}
ol li {
  padding-left: 0;
}
ol li::before {
  display: none;
}

/* --- FOOTER --- */
footer {
  background: #F6F2ED;
  color: #4B3925;
  padding: 0 0 0 0;
  font-size: 1rem;
  border-top: 1px solid #E8E3DC;
  margin-top: 60px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 44px 0 18px 0;
}
.footer-logo img {
  height: 48px;
  width: auto;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer nav a {
  color: #4B3925;
  transition: color 0.18s;
  font-size: 1rem;
  padding: 2px 0;
}
footer nav a:hover, footer nav a:focus {
  color: #A37B54;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.97rem;
}
.footer-contact {
  font-size: 0.98rem;
  color: #A37B54;
  margin-top: 7px;
}
.footer-contact img {
  width: 15px;
  height: 15px;
  margin-right: 4px;
  vertical-align: middle;
}
.footer-bottom {
  border-top: 1px solid #E8E3DC;
  margin-top: 19px;
  padding: 12px 0 17px 0;
  text-align: center;
  color: #7E6853;
  font-size: 0.96rem;
}

/* --- COOKIE CONSENT BANNER --- */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #E8E3DC;
  box-shadow: 0 -2px 22px rgba(74,57,36,0.09);
  z-index: 5000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 12px;
  gap: 14px;
  font-size: 0.97rem;
  animation: cookieBannerIn 0.42s ease;
}
@keyframes cookieBannerIn {
  0% { opacity: 0; transform: translateY(90px); }
  100% { opacity: 1; transform: translateY(0); }
}
#cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn {
  background: #A37B54;
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 11px 24px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  margin: 0;
  transition: background 0.21s, color 0.21s, box-shadow 0.22s;
  box-shadow: 0 1px 5px rgba(74,57,36,0.06);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #4B3925;
  color: #fff;
}
.cookie-btn.secondary {
  background: #F5F1EC;
  color: #A37B54;
  border: 1px solid #E8E3DC;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #E8E3DC;
  color: #A37B54;
}

/* Cookie Preferences Modal */
#cookie-modal {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -54%);
  width: 97vw;
  max-width: 392px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 42px rgba(74,57,36,0.17);
  z-index: 8000;
  padding: 30px 25px 24px 25px;
  animation: cookieModalIn 0.33s ease;
}
@keyframes cookieModalIn {
  0% { opacity: 0; transform: translate(-50%, 50px); }
  100% { opacity: 1; transform: translate(-50%, -54%); }
}
#cookie-modal.open {
  display: block;
}
#cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 18px;
  color: #4B3925;
}
#cookie-modal ul {
  margin: 12px 0 21px 0;
}
#cookie-modal li {
  font-size: 1rem;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 0;
}
#cookie-modal label {
  cursor: pointer;
}
#cookie-modal input[type='checkbox'] {
  accent-color: #A37B54;
  width: 16px;
  height: 16px;
}
#cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 14px;
}
#cookie-modal .close-modal {
  background: #E8E3DC;
  color: #4B3925;
  padding: 9px 18px;
  border: none;
  border-radius: 40px;
  font-size: 1rem;
  margin-right: 10px;
  font-family: 'Roboto', Arial, sans-serif;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
#cookie-modal .close-modal:hover, #cookie-modal .close-modal:focus {
  background: #A37B54;
  color: #fff;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 900px) {
  .container {
    max-width: 95vw;
  }
  .footer-main {
    flex-wrap: wrap;
    gap: 18px;
  }
  .content-wrapper {
    max-width: 98vw;
  }
  .features-grid {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  h1 {
    font-size: 1.8rem;
    margin-bottom: 18px;
  }
  h2 {
    font-size: 1.3rem;
    margin-bottom: 13px;
  }
  section, .section {
    margin-bottom: 38px;
    padding: 28px 5px;
    border-radius: 12px;
  }
  .features-grid > div {
    min-width: 160px;
    max-width: 100%;
    padding: 17px 8px;
    font-size: 0.94rem;
  }
  .testimonial-card {
    padding: 13px 9px;
    font-size: 0.99rem;
    max-width: 100%;
  }
  .case-study {
    padding: 13px 9px;
  }
  .footer-main {
    flex-direction: column;
    gap: 19px;
    padding: 28px 0 9px 0;
    align-items: flex-start;
  }
}
@media (max-width: 590px) {
  .features-grid, .card-container, .card-grid, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .card, .features-grid > div {
    max-width: 100%;
    min-width: 0;
  }
  .section, section {
    padding: 16px 0;
  }
}
@media (max-width: 500px) {
  main {
    padding-top: 14px;
  }
  .footer-legal, .footer-contact {
    font-size: 0.93rem;
  }
  .footer-main {
    padding: 17px 0 6px 0;
  }
}

/* --- UNIQUE CONTENT BLOCKS --- */
.text-section {
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.text-section ul {
  margin-top: 0;
}
.service-highlights, .consulting-highlights, .inspiration-section, .next-steps {
  font-size: 1rem;
  margin-bottom: 10px;
}

/* --- TESTIMONIALS SLIDER --- */
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .testimonials-slider {
    flex-direction: column;
    gap: 18px;
  }
}

/* --- MICRO-ANIMATIONS / TRANSITIONS --- */
.card:hover, .features-grid > div:hover, .testimonial-card:hover {
  box-shadow: 0 6px 26px rgba(74,57,36,0.08), 0 1.5px 13px rgba(163,123,84,0.10);
  transition: box-shadow 0.18s;
}
.cta,
button,
.cookie-btn, .close-modal {
  transition: background 0.16s, color 0.16s, box-shadow 0.19s, border 0.18s;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 10px;
  background: #E8E3DC;
}
::-webkit-scrollbar-thumb {
  background: #A37B54;
  border-radius: 2em;
}

/* --- FOCUS STATES ACCESSIBILITY --- */
a:focus, button:focus, .cta:focus, .cookie-btn:focus {
  outline: 2px solid #A37B54;
  outline-offset: 2px;
}

/* --- Z-INDEX / LAYER MANAGEMENT --- */
header {
  z-index: 1001;
}
.mobile-menu {
  z-index: 2002;
}
#cookie-banner {
  z-index: 5000;
}
#cookie-modal {
  z-index: 8000;
}

/* ------------------
  END OF CSS
-------------------- */
