/* ----------------------------------------------------
   CSS RESET & BASE 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;
}

/* Modern normalize improvements */
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
  background: #fff;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #202020;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  outline: none;
}

/* ----------------------------------------------------
   BRAND & STYLE: monochrome_sophisticated
-------------------------------------------------------*/
:root {
  --mono-black: #111111;
  --mono-gray-dark: #232323;
  --mono-gray: #757575;
  --mono-gray-light: #ECECEC;
  --mono-white: #FFFFFF;
  --brand-primary: #111111;
  --brand-accent: #C0871A; /* from brand accent */
  --brand-secondary: #F0F2EF;
  --brand-green: #155D27;
  --container-max: 1032px;
}

/* Typography: strong hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--brand-primary);
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.16;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.22;
}
h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.25;
}
h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
}
p, li, dd {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #222;
  font-size: 1rem;
  margin-bottom: 18px;
  line-height: 1.6;
}
strong {
  font-weight: 700;
  color: var(--brand-primary);
}

em {
  font-style: italic;
  color: var(--mono-gray);
}

blockquote {
  border-left: 4px solid var(--brand-accent);
  padding-left: 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-style: italic;
  color: var(--mono-gray-dark);
  font-size: 1.1rem;
  margin-bottom: 12px;
}
cite {
  font-style: normal;
  font-size: 0.98em;
  color: var(--mono-gray);
  margin-left: 12px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

hr {
  border: none;
  border-bottom: 1px solid var(--mono-gray-light);
  margin: 32px 0;
}


/* ----------------------------------------------------
   LAYOUT STRUCTURE & CONTAINERS
-------------------------------------------------------*/
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--mono-white);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(20,20,20,0.06), 0 1.5px 6px rgba(20,20,20,0.01);
  transition: box-shadow 0.24s;
}

/* Card Container Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--mono-white);
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(35,35,35,0.07);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 280px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(17,17,17,0.12);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f7f7f7;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(60,60,60,0.07);
  padding: 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, background 0.18s;
}
.testimonial-card blockquote {
  color: #131313;
  margin-bottom: 0;
  border-left: 3px solid var(--brand-accent);
  font-size: 1.04rem;
}
.testimonial-card cite {
  color: var(--brand-primary);
  font-weight: 500;
}
/* Card Spacing pattern */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ----------------------------------------------------
   HEADER & NAVIGATION
-------------------------------------------------------*/
header {
  padding-top: 24px;
  background: var(--mono-white);
  width: 100%;
  z-index: 100;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
header nav img {
  height: 42px;
  width: auto;
  margin-right: 18px;
}
header nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}
header nav ul li {
  margin-bottom: 0;
}
header nav ul li a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--mono-black);
  font-weight: 500;
  padding: 5px 7px;
  position: relative;
  transition: color 0.21s;
}
header nav ul li a:hover,
header nav ul li a:focus {
  color: var(--brand-accent);
}
header .cta-button {
  margin-left: 18px;
}

.mobile-menu-toggle {
  display: none;
  background: var(--mono-black);
  color: var(--mono-white);
  border-radius: 8px;
  font-size: 2rem;
  padding: 5px 18px;
  z-index: 115;
  border: 1.5px solid var(--mono-black);
  transition: background 0.14s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--mono-gray-dark);
}

.mobile-menu {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #171717f2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100vw);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.41s cubic-bezier(.6,.04,.98,.33), opacity 0.31s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  margin-top: 36px;
  margin-right: 36px;
  background: #fff;
  border-radius: 100px;
  color: var(--mono-black);
  font-size: 2.1rem;
  box-shadow: 0 3px 12px 0 rgba(30,30,30,0.11);
  border: 1px solid #d1d1d1;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1220;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--brand-accent);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 56px;
  align-items: flex-end;
  padding-right: 45px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 13px 0 13px 0;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-bottom: 1px solid #23232326;
  text-align: right;
  width: 220px;
  transition: color 0.16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--brand-accent);
}

@media (max-width: 1024px) {
  .container {
    max-width: 820px;
  }
  header nav {
    gap: 10px;
  }
  header nav ul {
    gap: 18px;
  }
}
@media (max-width: 780px) {
  .container {
    max-width: 97vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  header nav ul {
    display: none;
    gap: 0;
  }
  header nav .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 16px;
    top: 18px;
  }
}

/* ----------------------------------------------------
   CALL-TO-ACTION BUTTONS & INTERACTIVES
-------------------------------------------------------*/
.cta-button,
button.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
  padding: 14px 32px;
  background: var(--mono-black);
  color: var(--mono-white);
  border: none;
  border-radius: 32px;
  box-shadow: 0 2px 12px 0 rgba(20,20,20,0.09);
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.17s, transform 0.16s;
  margin-top: 12px;
  margin-bottom: 8px;
  outline: none;
  letter-spacing: 0.01em;
  position: relative;
  text-align: center;
}
.cta-button:hover, .cta-button:focus {
  background: var(--brand-accent);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 5px 20px 0 rgba(17,17,17,0.13);
}

/* ----------------------------------------------------
   List, DL, OL, UL, Section spacing
-------------------------------------------------------*/
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--mono-white);
  border-radius: 16px;
  box-shadow: 0 2.2px 14px 0 rgba(17,17,17,0.06);
}
section:last-child {
  margin-bottom: 0;
}
.section ul, .section ol, .content-wrapper ul, .content-wrapper ol {
  padding-left: 22px;
  margin-bottom: 12px;
}
.content-wrapper ul li, .content-wrapper ol li {
  margin-bottom: 9px;
  position: relative;
}
.content-wrapper ul li:before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--mono-black);
  border-radius: 100%;
  margin-right: 9px;
  vertical-align: middle;
}
.content-wrapper ol {
  counter-reset: li;
}
.content-wrapper ol li {
  list-style: none;
  margin-left: 0;
}
.content-wrapper ol li:before {
  counter-increment: li;
  content: counter(li) '.';
  color: var(--brand-accent);
  font-weight: 600;
  margin-right: 9px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* definition list FAQ */
dt {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  margin-top: 14px;
  color: var(--brand-primary);
}
dd {
  font-size: 1rem;
  color: #232323;
  margin-bottom: 12px;
}

.text-section {
  width: 100%;
  padding: 8px 0 10px 0;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
  margin-top: 10px;
}
.service-list > div {
  flex: 1 1 235px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0px 2px 10px 0 rgba(20,20,20,0.07);
  padding: 22px 18px 26px 18px;
  transition: box-shadow 0.18s;
  border-left: 5px solid var(--brand-accent);
  min-width: 220px;
  margin-bottom: 20px;
}
.service-list > div:hover {
  box-shadow: 0 6px 24px 0 rgba(20,20,20,0.14);
}
.service-list h3 {
  margin-bottom: 10px;
}

.project-summaries > h3 {
  margin: 21px 0 8px 0;
  font-size: 1.26rem;
}
.project-summaries p {
  margin-bottom: 11px;
  color: #191919;
}

/* Card, grid, and testimonials separation */
.card:not(:last-child),
.testimonial-card:not(:last-child),
.service-list > div:not(:last-child) {
  margin-bottom: 20px;
}

/* ----------------------------------------------------
   FOOTER
-------------------------------------------------------*/
footer {
  width: 100%;
  padding: 38px 16px 16px 16px;
  background: var(--mono-black);
  color: #fff;
  text-align: center;
}
footer nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
footer a {
  color: var(--mono-white);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 4px 6px;
  border-radius: 2px;
  transition: background 0.11s, color 0.15s;
}
footer a:hover, footer a:focus {
  color: var(--brand-accent);
  background: #222;
}
footer p {
  color: var(--mono-gray-light);
  font-size: .97rem;
  margin: 0;
}

/* ----------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
-------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 2000;
  background: #181818ef;
  color: #FFF;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: .99rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px;
  gap: 25px;
  box-shadow: 0 -3px 18px 0 rgba(18,18,18,0.11);
  animation: slideUpBanner 0.43s cubic-bezier(.72,-0.02,.83,.73);
}
@keyframes slideUpBanner {
  from { transform: translateY(120%); opacity: 0.3; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: .98rem;
  padding: 9px 18px;
  border-radius: 28px;
  border: none;
  margin: 0 0 0 0;
  cursor: pointer;
  transition: background 0.12s, color 0.14s, transform 0.14s;
}
.cookie-banner .accept-btn {
  background: var(--brand-accent);
  color: #fff;
  font-weight: 600;
}
.cookie-banner .accept-btn:hover, .cookie-banner .accept-btn:focus {
  background: #fff;
  color: var(--brand-primary);
}
.cookie-banner .reject-btn {
  background: #fff;
  color: var(--brand-primary);
  border: 1px solid #b5b5b5;
}
.cookie-banner .reject-btn:hover, .cookie-banner .reject-btn:focus {
  background: var(--mono-gray-dark);
  color: #fff;
}
.cookie-banner .settings-btn {
  background: none;
  color: var(--brand-accent);
  border: 1px solid var(--brand-accent);
  font-weight: 500;
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus {
  background: var(--brand-accent);
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2200;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(30,30,30,0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #191919;
  border-radius: 16px;
  padding: 38px 32px 28px 32px;
  box-shadow: 0 8px 36px 0 rgba(17,17,17,0.17);
  max-width: 430px;
  width: 86vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: popModal 0.27s cubic-bezier(.5,.31,0,1.09);
}
@keyframes popModal {
  from { transform: translateY(60px) scale(0.98); opacity: 0.5; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.38rem;
  margin-bottom: 8px;
}
.cookie-modal label {
  font-size: 1rem;
  margin-left: 6px;
  color: #191919;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 14px 0;
}
.cookie-option-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal-footer {
  width: 100%;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal-footer button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: .98rem;
  padding: 9px 18px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
}
.cookie-modal-footer .accept-btn {
  background: var(--brand-accent);
  color: #fff;
  font-weight: 600;
}
.cookie-modal-footer .accept-btn:hover {
  background: var(--brand-primary);
}
.cookie-modal-footer .reject-btn {
  background: #ececec;
  color: #222;
  border: 1px solid #ccc;
}
.cookie-modal-footer .reject-btn:hover {
  background: var(--brand-accent);
  color: #fff;
}

/* toggle switches for modal */
.cookie-switch {
  width: 40px;
  height: 22px;
  background: #bbb;
  border-radius: 22px;
  position: relative;
  display: inline-block;
  margin-right: 9px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch span {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.19s, background 0.17s;
}
.cookie-switch input:checked + span {
  left: 20px;
  background: var(--brand-accent);
}
.cookie-switch.essential {
  background: var(--brand-primary);
}
.cookie-switch.essential span {
  background: var(--brand-accent);
}
.cookie-switch.essential input + span {
  background: var(--brand-accent);
}
.cookie-switch.essential input:checked + span {
  background: var(--brand-accent);
}

/* ----------------------------------------------------
   RESPONSIVE DESIGN & FLEXBOX LAYOUTS
-------------------------------------------------------*/
@media (max-width: 1024px) {
  .content-grid, .card-container, .service-list {
    gap: 14px;
  }
  .card {
    padding: 20px 13px;
  }
  .service-list > div {
    min-width: 170px;
  }
}
@media (max-width: 900px) {
  .section, section {
    padding: 23px 8px;
    margin-bottom: 36px;
  }
}
@media (max-width: 768px) {
  .content-grid,
  .card-container,
  .service-list {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  h1 {
    font-size: 2.02rem;
  }
  h2 {
    font-size: 1.42rem;
  }
  .container {
    max-width: 97vw;
    padding: 0 6px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    font-size: 1rem;
    padding: 16px 9px;
  }
  .service-list > div {
    min-width: unset;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.35rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  .cta-button {
    padding: 13px 14px;
    font-size: .98rem;
  }
  .testimonial-card {
    padding: 12px;
    gap: 9px;
  }
  .cookie-modal {
    padding: 20px 7px 19px 7px;
  }
}

/* ----------------------------------------------------
   MICROS, HOVERS, EFFECTS, DETAILS
-------------------------------------------------------*/
.card, .service-list > div, .testimonial-card, .section {
  transition: box-shadow 0.21s, background 0.15s;
}
.card:hover, .service-list > div:hover, .testimonial-card:hover {
  box-shadow: 0 12px 28px 0 rgba(30,30,30,0.12);
}
.cta-button:active { transform: scale(0.97); }
.button:focus, .cta-button:focus {
  outline: 2px solid var(--brand-accent);
  outline-offset: 1.5px;
}

/* visually hide but accessible */
.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

::-webkit-input-placeholder { color: var(--mono-gray); }
::-moz-placeholder { color: var(--mono-gray); }
:-ms-input-placeholder { color: var(--mono-gray); }
::placeholder { color: var(--mono-gray); }


/* ----------------------------------------------------
   UTILITY & OVERRIDES FOR HIGH CONTRAST
-------------------------------------------------------*/
.text-on-dark, .section.text-on-dark {
  background: var(--brand-primary);
  color: #fff;
}
.text-on-dark h1, .text-on-dark h2, .text-on-dark h3 {
  color: #fff;
}

/* End of style.css */
